favetelinguis
I have a bunch of IOT devices generating event to my Elixir app. Each IOT device has its own topic/channel in Hub. What I would like to build is a monitor GUI where I have a list of all the IOT devices I can click and then I subscribe on all events from that device, I can click on another device and then I should unsubscribe from the old device and subscribe to the clicked device. I see Drab as a perfect fit for this but im not able to get it to work and im not sure what is the best way to design my code for this use case. This is what I have so far.
defmodule BfgWebWeb.PageController do
use BfgWebWeb, :controller
def index(conn, _params) do
market_ids = BfgEngine.MarketsServer.list_market_ids()
render conn, "index.html", market_ids: market_ids, genevent: ""
end
end
defmodule BfgWebWeb.PageCommander do
use Drab.Commander
require Hub
require Logger
# onconnect :connected
defhandler subscribe_market(socket, _sender, market_id) when is_float(market_id) do
market_id = Float.to_string(market_id)
Logger.debug("Change subscription to #{market_id} is it string #{is_binary(market_id)}")
# TODO where can I save this sub so that I can use it to unsubscribe later Hub.unsubscribe(sub)
sub = Hub.subscribe(market_id, _)
handle_event(socket)
end
# def connected(socket) do
# sub = Hub.subscribe("market_id", _)
# Logger.debug("Connected and subscribed to market_id #{inspect sub}")
# handle_event(socket)
# end
defp handle_event(socket) do
receive do
msg ->
Logger.warn("Got msg #{inspect msg}")
{:ok, events} = Drab.Live.peek(socket, :genevent)
socket
|> poke(genevent: inspect(msg) <> "\n" <> events)
end
handle_event(socket)
end
end
<div class="page-header">
<h1>Select market</h1>
<div class="btn-group" role="group" aria-label="...">
<%= for market_id <- @market_ids do %>
<button type="button" class="btn btn-default" drab-click="subscribe_market(<%= market_id %>)"><%= market_id %></button>
<% end %>
</div>
<pre><code class="accesslog"><%= @genevent %></code></pre>
</div>
My app is starting and im getting no errors but im getting no messages. There are some issues I need to solve here:
- Get this example working.
- When I hit another button I should unsubscribe from the old subscription.
- I should only be able to have one subscription going at any one time.
Any ideas on design/bug hunt of this would be much appreciated.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
grych
That could be a tricky part. Are “market_ids” float? Actually I’ve never tested handlers with guards. I am using
apply/3to run the handler. Hmm, need to try it.Could you please remove the guard and paste the exact output? Is it showing “Change subscripiton to …” in the logs?
favetelinguis
Even with guard im getting the correct log message:
grych
So, from the Drab point-of-view everything works, you have “change subscription to ..” message. I understand that everything after
Hub.subscriptdoes not work.I would suggest checking what is returned by
Hub.subscribe. I understand it subscribes something toself(), which is received later. You may try to debug it in iex, without phoenix or drab involved.favetelinguis
I have Hub working in my core application. Im just trying to get the GUI layer working now.
How would you suggest I can switch subscriptions? To do that I ned to save the sub returned by
Hub.subscribeand the second problem is to cancel the one long running process I start when I hit a button and to start another one.favetelinguis
So I found the bug but not sure what to do about it, this is the issue:
"__additional_argument" => 1.14630004"text" =>"1.146300040", "html" => "1.146300040"This is wrong:
[debug] Change subscription to 1.14630004 is it string trueIt should say:
[debug] Change subscription to 1.146300040 is it string trueBut the additional argument cuts off, not sure what is going on since the argument shown in the button is the right on but the additional argument is one digit short.
grych
In your model, you start the handler function and do a
receiveforever. Fair enough, but to cancel this from the other process, you need to store the pid somewhere, and send the cancel message to it, or just kill it.Sorry, but without the knowledge of
HubI can’t tell more. Maybe it already got the unsubscribe api?favetelinguis
So am I understanding correct if I say drab is starting a new process (GenServer?) for each call I make to any
defhandler, and self() would be the pid of the process this call as spawned?grych
Welcome to the float hell. This is why you should never use floats in non-scientific applications
Especially when inter-operating between different languages.
I would suggest that you should send string to the backend, so instead of:
do:
Or multiple it by 10000000 and use integer.
That would save you a lot of sleepless nights
But the only real solution is to not to use floats. Never ever.
grych
True. Each handler runs in it’s own process. Otherwise you could push the only 1 button on the page in the same time
favetelinguis
Then its clear to me what I need to do
Thanks for the help!
Btw, The float is treated as a string in every place except here, somehow it gets infered as a float in the client.