Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram:op
> ./lib/op_web/live/chronicle/show.ex
Lenses
(coming soon!)
defmodule OpWeb.Chronicle.Show do
alias Phoenix.LiveView.JS
import LiveMotion
use OpWeb, :live_view
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
def handle_params(%{"key" => key}, _, socket) do
JS.dispatch(%JS{}, "live_motion:hide", to: "#dump")
{:noreply,
socket
|> assign(:page_title, key <> " | Operand Chronicle")
|> assign(:page, Press.query_by_key!(Op.Page, key))}
end
end