geo-therminator/lib/geo_therminator_web/live/main/pump.html.heex
2021-11-07 11:01:39 +02:00

18 lines
462 B
Text

<%= live_redirect("« Go back", to: Routes.live_path(@socket, GeoTherminatorWeb.MainLive.Index)) %>
<%= if is_nil(@pid) do %>
Some fail happened.
<% else %>
<%= if is_nil(@device) do %>
Loading pump data…
<% else %>
<.live_component
module={GeoTherminatorWeb.Components.MainView}
id={"pump-#{@device.id}"}
device={@device}
status={@status}
registers={@registers}
opstat={@opstat}
/>
<% end %>
<% end %>