mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 12:57:32 +08:00
e3d9c5fa35
* allow embedded runtime by env * fix session live test * This reverts commit f36931d6ef9b..81ca7d * allow runtime modules * Apply suggestions from code review
94 lines
3.1 KiB
Elixir
94 lines
3.1 KiB
Elixir
defmodule LivebookWeb.SessionLive.RuntimeComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
alias Livebook.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 = runtime_type(assigns.runtime)
|
|
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-5">
|
|
<h3 class="text-2xl font-semibold text-gray-800">
|
|
Runtime settings
|
|
</h3>
|
|
<div class="w-full flex-col space-y-5">
|
|
<div class="flex space-x-4">
|
|
<%= if Livebook.Config. runtime_enabled?(Livebook.Runtime.ElixirStandalone) do %>
|
|
<.choice_button
|
|
active={@type == "elixir_standalone"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="elixir_standalone"
|
|
phx-target={@myself}>
|
|
Elixir standalone
|
|
</.choice_button>
|
|
<% end %>
|
|
<%= if Livebook.Config. runtime_enabled?(Livebook.Runtime.MixStandalone) do %>
|
|
<.choice_button
|
|
active={@type == "mix_standalone"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="mix_standalone"
|
|
phx-target={@myself}>
|
|
Mix standalone
|
|
</.choice_button>
|
|
<% end %>
|
|
<%= if Livebook.Config. runtime_enabled?(Livebook.Runtime.Attached) do %>
|
|
<.choice_button
|
|
active={@type == "attached"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="attached"
|
|
phx-target={@myself}>
|
|
Attached node
|
|
</.choice_button>
|
|
<% end %>
|
|
<%= if Livebook.Config. runtime_enabled?(Livebook.Runtime.Embedded) do %>
|
|
<.choice_button
|
|
active={@type == "embedded"}
|
|
phx-click="set_runtime_type"
|
|
phx-value-type="embedded"
|
|
phx-target={@myself}>
|
|
Embedded
|
|
</.choice_button>
|
|
<% end %>
|
|
</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(%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
|
|
end
|