2021-03-04 05:56:28 +08:00
|
|
|
defmodule LivebookWeb.SessionLive.MixStandaloneLive 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, Utils}
|
2021-02-27 03:53:29 +08:00
|
|
|
|
|
|
|
@type status :: :initial | :initializing | :finished
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def mount(_params, %{"session_id" => session_id}, socket) do
|
|
|
|
{:ok,
|
|
|
|
assign(socket,
|
|
|
|
session_id: session_id,
|
|
|
|
status: :initial,
|
|
|
|
path: default_path(),
|
|
|
|
outputs: [],
|
|
|
|
emitter: nil
|
|
|
|
), temporary_assigns: [outputs: []]}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def render(assigns) do
|
|
|
|
~L"""
|
|
|
|
<div class="flex-col space-y-3">
|
|
|
|
<p class="text-gray-500">
|
|
|
|
Start a new local node in the context of a Mix project.
|
|
|
|
This way all your code and dependencies will be available
|
|
|
|
within the notebook.
|
|
|
|
</p>
|
|
|
|
<%= if @status == :initial do %>
|
2021-03-04 05:56:28 +08:00
|
|
|
<%= live_component @socket, LivebookWeb.PathSelectComponent,
|
2021-02-27 03:53:29 +08:00
|
|
|
id: "path_select",
|
|
|
|
path: @path,
|
|
|
|
extnames: [],
|
|
|
|
running_paths: [],
|
|
|
|
target: nil %>
|
2021-03-12 18:57:01 +08:00
|
|
|
<%= content_tag :button, "Connect", class: "button-base", phx_click: "init", disabled: not mix_project_root?(@path) %>
|
2021-02-27 03:53:29 +08:00
|
|
|
<% end %>
|
|
|
|
<%= if @status != :initial do %>
|
|
|
|
<div class="markdown">
|
|
|
|
<pre><code class="max-h-40 overflow-y-auto tiny-scrollbar"
|
|
|
|
id="mix-standalone-init-output"
|
|
|
|
phx-update="append"
|
|
|
|
phx-hook="ScrollOnUpdate"
|
|
|
|
><%= for {output, i} <- @outputs do %><span id="output-<%= i %>"><%= ansi_string_to_html(output) %></span><% end %></code></pre>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_event("set_path", %{"path" => path}, socket) do
|
|
|
|
{:noreply, assign(socket, path: path)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_event("init", _params, socket) do
|
|
|
|
emitter = Utils.Emitter.new(self())
|
|
|
|
Runtime.MixStandalone.init_async(socket.assigns.path, emitter)
|
|
|
|
{:noreply, assign(socket, status: :initializing, emitter: emitter)}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_info({:emitter, ref, message}, %{assigns: %{emitter: %{ref: ref}}} = socket) do
|
|
|
|
case message do
|
|
|
|
{:output, output} ->
|
|
|
|
{:noreply, add_output(socket, output)}
|
|
|
|
|
|
|
|
{:ok, runtime} ->
|
|
|
|
Session.connect_runtime(socket.assigns.session_id, runtime)
|
|
|
|
{:noreply, socket |> assign(status: :finished) |> add_output("Connected successfully")}
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
{:noreply, socket |> assign(status: :finished) |> add_output("Error: #{error}")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_info(_, socket), do: {:noreply, socket}
|
|
|
|
|
|
|
|
defp add_output(socket, output) do
|
|
|
|
assign(socket, outputs: socket.assigns.outputs ++ [{output, Utils.random_id()}])
|
|
|
|
end
|
|
|
|
|
|
|
|
defp default_path(), do: File.cwd!() <> "/"
|
|
|
|
|
|
|
|
defp mix_project_root?(path) do
|
|
|
|
File.dir?(path) and File.exists?(Path.join(path, "mix.exs"))
|
|
|
|
end
|
|
|
|
end
|