mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-01 19:58:50 +08:00
90e7941fe4
* Update cell actions * Add new focus indicator * Update headings typography * Update cell actions and insert buttons * Add sidebar menu * Add settings modal * Update homepage * Update settings dialog * Rename classes * Add floating menu * Update icon colors on hover * Fix homepage tests * Format assets source * Update monaco editor * Fix editor width on resize * Add more padding to the notebook content * Update settings dialog title * Show reevaluate button when the cell is in evaluated state * Show section actions on focus or hover only * Pre-fill runtime selector with the current configuration * Ignore cmd + enter in Markdown cells
138 lines
4.3 KiB
Elixir
138 lines
4.3 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
|
|
~L"""
|
|
<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 %>
|
|
<div class="flex flex-col space-y-1">
|
|
<span class="text-xs text-gray-500">
|
|
Type
|
|
</span>
|
|
<span class="text-gray-800 text-sm font-semibold">
|
|
<%= runtime_type_label(@runtime) %>
|
|
</span>
|
|
</div>
|
|
<div class="flex flex-col space-y-1">
|
|
<span class="text-xs text-gray-500">
|
|
Node name
|
|
</span>
|
|
<span class="text-gray-800 text-sm font-semibold">
|
|
<%= @runtime.node %>
|
|
</span>
|
|
</div>
|
|
<button class="button text-sm button-danger"
|
|
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">
|
|
<%= content_tag :button, "Elixir standalone",
|
|
class: "choice-button #{if(@type == "elixir_standalone", do: "active")}",
|
|
phx_click: "set_runtime_type",
|
|
phx_value_type: "elixir_standalone",
|
|
phx_target: @myself %>
|
|
<%= content_tag :button, "Mix standalone",
|
|
class: "choice-button #{if(@type == "mix_standalone", do: "active")}",
|
|
phx_click: "set_runtime_type",
|
|
phx_value_type: "mix_standalone",
|
|
phx_target: @myself %>
|
|
<%= content_tag :button, "Attached node",
|
|
class: "choice-button #{if(@type == "attached", do: "active")}",
|
|
phx_click: "set_runtime_type",
|
|
phx_value_type: "attached",
|
|
phx_target: @myself %>
|
|
</div>
|
|
<div>
|
|
<%= if @type == "elixir_standalone" do %>
|
|
<%= live_render @socket, LivebookWeb.SessionLive.ElixirStandaloneLive,
|
|
id: :elixir_standalone_runtime,
|
|
session: %{"session_id" => @session_id} %>
|
|
<% end %>
|
|
<%= if @type == "mix_standalone" do %>
|
|
<%= live_render @socket, LivebookWeb.SessionLive.MixStandaloneLive,
|
|
id: :mix_standalone_runtime,
|
|
session: %{
|
|
"session_id" => @session_id,
|
|
"current_runtime" => if_matches_type(@runtime, @type)
|
|
} %>
|
|
<% end %>
|
|
<%= if @type == "attached" do %>
|
|
<%= live_render @socket, LivebookWeb.SessionLive.AttachedLive,
|
|
id: :attached_runtime,
|
|
session: %{
|
|
"session_id" => @session_id,
|
|
"current_runtime" => if_matches_type(@runtime, @type)
|
|
} %>
|
|
<% end %>
|
|
</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"
|
|
|
|
def if_matches_type(runtime, type) do
|
|
if runtime && runtime_type(runtime) == type do
|
|
runtime
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
defp runtime_type(%Runtime.ElixirStandalone{}), do: "elixir_standalone"
|
|
defp runtime_type(%Runtime.MixStandalone{}), do: "mix_standalone"
|
|
defp runtime_type(%Runtime.Attached{}), do: "attached"
|
|
|
|
@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_id)
|
|
|
|
{:noreply, socket}
|
|
end
|
|
end
|