2021-03-04 05:56:28 +08:00
|
|
|
defmodule LivebookWeb.SessionLive.ElixirStandaloneLive do
|
|
|
|
use LivebookWeb, :live_view
|
2021-02-27 03:53:29 +08:00
|
|
|
|
2021-03-04 05:56:28 +08:00
|
|
|
alias Livebook.{Session, Runtime}
|
2021-02-27 03:53:29 +08:00
|
|
|
|
|
|
|
@impl true
|
2021-03-24 02:41:03 +08:00
|
|
|
def mount(_params, %{"session_id" => session_id, "current_runtime" => current_runtime}, socket) do
|
|
|
|
if connected?(socket) do
|
|
|
|
Phoenix.PubSub.subscribe(Livebook.PubSub, "sessions:#{session_id}")
|
|
|
|
end
|
|
|
|
|
2021-05-10 20:37:38 +08:00
|
|
|
{:ok,
|
|
|
|
assign(socket, session_id: session_id, current_runtime: current_runtime, error_message: nil)}
|
2021-02-27 03:53:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def render(assigns) do
|
|
|
|
~L"""
|
2021-04-04 18:42:46 +08:00
|
|
|
<div class="flex-col space-y-5">
|
2021-05-10 20:37:38 +08:00
|
|
|
<%= if @error_message do %>
|
|
|
|
<div class="error-box">
|
|
|
|
<%= @error_message %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2021-03-20 21:10:15 +08:00
|
|
|
<p class="text-gray-700">
|
2021-02-27 03:53:29 +08:00
|
|
|
Start a new local node to handle code evaluation.
|
|
|
|
This is the default runtime and is started automatically
|
|
|
|
as soon as you evaluate the first cell.
|
|
|
|
</p>
|
2021-03-26 00:39:18 +08:00
|
|
|
<button class="button button-blue" phx-click="init">
|
2021-03-24 02:41:03 +08:00
|
|
|
<%= if(matching_runtime?(@current_runtime), do: "Reconnect", else: "Connect") %>
|
2021-02-27 03:53:29 +08:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2021-03-24 02:41:03 +08:00
|
|
|
defp matching_runtime?(%Runtime.ElixirStandalone{}), do: true
|
|
|
|
defp matching_runtime?(_runtime), do: false
|
|
|
|
|
2021-02-27 03:53:29 +08:00
|
|
|
@impl true
|
|
|
|
def handle_event("init", _params, socket) do
|
2021-05-10 20:37:38 +08:00
|
|
|
case Runtime.ElixirStandalone.init() do
|
|
|
|
{:ok, runtime} ->
|
|
|
|
Session.connect_runtime(socket.assigns.session_id, runtime)
|
|
|
|
{:noreply, assign(socket, error_message: nil)}
|
|
|
|
|
|
|
|
{:error, message} ->
|
|
|
|
{:noreply, assign(socket, error_message: message)}
|
|
|
|
end
|
2021-02-27 03:53:29 +08:00
|
|
|
end
|
2021-03-24 02:41:03 +08:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_info({:operation, {:set_runtime, _pid, runtime}}, socket) do
|
|
|
|
{:noreply, assign(socket, current_runtime: runtime)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_info(_message, socket), do: {:noreply, socket}
|
2021-02-27 03:53:29 +08:00
|
|
|
end
|