mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 21:05:38 +08:00
4ff1ff0d5a
* Use Phoenix.Tracker to keep track of sessions within the cluster * Apply review comments * Cleanup topics and updates * Update lib/livebook_web/live/session_live.ex
123 lines
4 KiB
Elixir
123 lines
4 KiB
Elixir
defmodule LivebookWeb.SessionLive.RuntimeComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
alias Livebook.{Session, Runtime}
|
|
|
|
@impl true
|
|
def mount(socket) do
|
|
{:ok, assign(socket, type: nil)}
|
|
end
|
|
|
|
@impl true
|
|
def update(assigns, socket) do
|
|
assigns =
|
|
if socket.assigns.type == nil do
|
|
type =
|
|
if assigns.runtime do
|
|
runtime_type(assigns.runtime)
|
|
else
|
|
"elixir_standalone"
|
|
end
|
|
|
|
Map.put(assigns, :type, type)
|
|
else
|
|
assigns
|
|
end
|
|
|
|
{:ok, assign(socket, assigns)}
|
|
end
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<div class="p-6 pb-4 max-w-4xl flex flex-col space-y-3">
|
|
<h3 class="text-2xl font-semibold text-gray-800">
|
|
Runtime
|
|
</h3>
|
|
<div class="w-full flex-col space-y-5">
|
|
<p class="text-gray-700">
|
|
The code is evaluated in a separate Elixir runtime (node),
|
|
which you can configure yourself here.
|
|
</p>
|
|
<div class="flex items-center justify-between border border-gray-200 rounded-lg p-4">
|
|
<%= if @runtime do %>
|
|
<.labeled_text label="Type" text={runtime_type_label(@runtime)} />
|
|
<.labeled_text label="Node name" text={@runtime.node} />
|
|
<button class="button button-outlined-red"
|
|
type="button"
|
|
phx-click="disconnect"
|
|
phx-target={@myself}>
|
|
Disconnect
|
|
</button>
|
|
<% else %>
|
|
<p class="text-sm text-gray-700">
|
|
No connected node
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="flex space-x-4">
|
|
<.choice_button
|
|
active={@type == "elixir_standalone"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="elixir_standalone"
|
|
phx-target={@myself}>
|
|
Elixir standalone
|
|
</.choice_button>
|
|
<.choice_button
|
|
active={@type == "mix_standalone"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="mix_standalone"
|
|
phx-target={@myself}>
|
|
Mix standalone
|
|
</.choice_button>
|
|
<.choice_button
|
|
active={@type == "attached"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="attached"
|
|
phx-target={@myself}>
|
|
Attached node
|
|
</.choice_button>
|
|
<.choice_button
|
|
active={@type == "embedded"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="embedded"
|
|
phx-target={@myself}>
|
|
Embedded
|
|
</.choice_button>
|
|
</div>
|
|
<div>
|
|
<%= live_render @socket, live_view_for_type(@type),
|
|
id: "runtime-config-#{@type}",
|
|
session: %{"session" => @session, "current_runtime" => @runtime} %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
defp runtime_type_label(%Runtime.ElixirStandalone{}), do: "Elixir standalone"
|
|
defp runtime_type_label(%Runtime.MixStandalone{}), do: "Mix standalone"
|
|
defp runtime_type_label(%Runtime.Attached{}), do: "Attached"
|
|
defp runtime_type_label(%Runtime.Embedded{}), do: "Embedded"
|
|
|
|
defp runtime_type(%Runtime.ElixirStandalone{}), do: "elixir_standalone"
|
|
defp runtime_type(%Runtime.MixStandalone{}), do: "mix_standalone"
|
|
defp runtime_type(%Runtime.Attached{}), do: "attached"
|
|
defp runtime_type(%Runtime.Embedded{}), do: "embedded"
|
|
|
|
defp live_view_for_type("elixir_standalone"), do: LivebookWeb.SessionLive.ElixirStandaloneLive
|
|
defp live_view_for_type("mix_standalone"), do: LivebookWeb.SessionLive.MixStandaloneLive
|
|
defp live_view_for_type("attached"), do: LivebookWeb.SessionLive.AttachedLive
|
|
defp live_view_for_type("embedded"), do: LivebookWeb.SessionLive.EmbeddedLive
|
|
|
|
@impl true
|
|
def handle_event("set_runtime_type", %{"type" => type}, socket) do
|
|
{:noreply, assign(socket, type: type)}
|
|
end
|
|
|
|
def handle_event("disconnect", _params, socket) do
|
|
Session.disconnect_runtime(socket.assigns.session.pid)
|
|
|
|
{:noreply, socket}
|
|
end
|
|
end
|