defmodule LivebookWeb.SessionLive do use LivebookWeb, :live_view alias Livebook.{SessionSupervisor, Session, Delta, Notebook} @impl true def mount(%{"id" => session_id}, _session, socket) do if SessionSupervisor.session_exists?(session_id) do data = if connected?(socket) do data = Session.register_client(session_id, self()) Phoenix.PubSub.subscribe(Livebook.PubSub, "sessions:#{session_id}") data else Session.get_data(session_id) end platform = platform_from_socket(socket) {:ok, socket |> assign(platform: platform, session_id: session_id, data_view: data_to_view(data)) |> assign_private(data: data)} else {:ok, redirect(socket, to: Routes.home_path(socket, :page))} end end # Puts the given assigns in `socket.private`, # to ensure they are not used for rendering. defp assign_private(socket, assigns) do Enum.reduce(assigns, socket, fn {key, value}, socket -> put_in(socket.private[key], value) end) end defp platform_from_socket(socket) do with connect_info when connect_info != nil <- get_connect_info(socket), {:ok, user_agent} <- Map.fetch(connect_info, :user_agent) do platform_from_user_agent(user_agent) else _ -> nil end end @impl true def render(assigns) do ~L""" <%= if @live_action == :settings do %> <%= live_modal @socket, LivebookWeb.SessionLive.SettingsComponent, id: :settings_modal, return_to: Routes.session_path(@socket, :page, @session_id), tab: @tab, session_id: @session_id, data_view: @data_view %> <% end %> <%= if @live_action == :shortcuts do %> <%= live_modal @socket, LivebookWeb.SessionLive.ShortcutsComponent, id: :shortcuts_modal, platform: @platform, return_to: Routes.session_path(@socket, :page, @session_id) %> <% end %> <%= if @live_action == :cell_settings do %> <%= live_modal @socket, LivebookWeb.SessionLive.CellSettingsComponent, id: :cell_settings_modal, session_id: @session_id, cell: @cell, return_to: Routes.session_path(@socket, :page, @session_id) %> <% end %>
<%= live_patch to: Routes.home_path(@socket, :page) do %> livebook <% end %> <%= live_patch to: Routes.session_path(@socket, :settings, @session_id, "file"), class: "text-gray-600 hover:text-gray-50 focus:text-gray-50 #{if(@live_action == :settings, do: "text-gray-50")}" do %> <%= remix_icon("settings-4-fill", class: "text-2xl") %> <% end %>
<%= live_patch to: Routes.session_path(@socket, :shortcuts, @session_id), class: "text-gray-600 hover:text-gray-50 focus:text-gray-50 #{if(@live_action == :shortcuts, do: "text-gray-50")}" do %> <%= remix_icon("keyboard-box-fill", class: "text-2xl") %> <% end %>

Sections

<%= for section_item <- @data_view.sections_items do %> <% end %>

<%= @data_view.notebook_name %>

<%= if @data_view.section_views == [] do %>
<% end %> <%= for {section_view, index} <- Enum.with_index(@data_view.section_views) do %> <%= live_component @socket, LivebookWeb.SectionComponent, id: section_view.id, index: index, session_id: @session_id, section_view: section_view %> <% end %>
<%# Show a tiny insert indicator for clarity %>
insert
""" end @impl true def handle_params(%{"cell_id" => cell_id}, _url, socket) do {:ok, cell, _} = Notebook.fetch_cell_and_section(socket.private.data.notebook, cell_id) {:noreply, assign(socket, cell: cell)} end def handle_params(%{"tab" => tab}, _url, socket) do {:noreply, assign(socket, tab: tab)} end def handle_params(_params, _url, socket) do {:noreply, socket} end @impl true def handle_event("cell_init", %{"cell_id" => cell_id}, socket) do data = socket.private.data case Notebook.fetch_cell_and_section(data.notebook, cell_id) do {:ok, cell, _section} -> payload = %{ source: cell.source, revision: data.cell_infos[cell.id].revision } {:reply, payload, socket} :error -> {:noreply, socket} end end def handle_event("add_section", _params, socket) do end_index = length(socket.private.data.notebook.sections) Session.insert_section(socket.assigns.session_id, end_index) {:noreply, socket} end def handle_event("insert_section", %{"index" => index}, socket) do index = ensure_integer(index) |> max(0) Session.insert_section(socket.assigns.session_id, index) {:noreply, socket} end def handle_event("delete_section", %{"section_id" => section_id}, socket) do Session.delete_section(socket.assigns.session_id, section_id) {:noreply, socket} end def handle_event( "insert_cell", %{"section_id" => section_id, "index" => index, "type" => type}, socket ) do index = ensure_integer(index) |> max(0) type = String.to_atom(type) Session.insert_cell(socket.assigns.session_id, section_id, index, type) {:noreply, socket} end def handle_event("insert_cell_below", %{"cell_id" => cell_id, "type" => type}, socket) do type = String.to_atom(type) insert_cell_next_to(socket, cell_id, type, idx_offset: 1) {:noreply, socket} end def handle_event("insert_cell_above", %{"cell_id" => cell_id, "type" => type}, socket) do type = String.to_atom(type) insert_cell_next_to(socket, cell_id, type, idx_offset: 0) {:noreply, socket} end def handle_event("delete_cell", %{"cell_id" => cell_id}, socket) do Session.delete_cell(socket.assigns.session_id, cell_id) {:noreply, socket} end def handle_event("set_notebook_name", %{"name" => name}, socket) do name = normalize_name(name) Session.set_notebook_name(socket.assigns.session_id, name) {:noreply, socket} end def handle_event("set_section_name", %{"section_id" => section_id, "name" => name}, socket) do name = normalize_name(name) Session.set_section_name(socket.assigns.session_id, section_id, name) {:noreply, socket} end def handle_event( "apply_cell_delta", %{"cell_id" => cell_id, "delta" => delta, "revision" => revision}, socket ) do delta = Delta.from_compressed(delta) Session.apply_cell_delta(socket.assigns.session_id, cell_id, delta, revision) {:noreply, socket} end def handle_event( "report_cell_revision", %{"cell_id" => cell_id, "revision" => revision}, socket ) do Session.report_cell_revision(socket.assigns.session_id, cell_id, revision) {:noreply, socket} end def handle_event("move_cell", %{"cell_id" => cell_id, "offset" => offset}, socket) do offset = ensure_integer(offset) Session.move_cell(socket.assigns.session_id, cell_id, offset) {:noreply, socket} end def handle_event("queue_cell_evaluation", %{"cell_id" => cell_id}, socket) do Session.queue_cell_evaluation(socket.assigns.session_id, cell_id) {:noreply, socket} end def handle_event("queue_section_cells_evaluation", %{"section_id" => section_id}, socket) do with {:ok, section} <- Notebook.fetch_section(socket.private.data.notebook, section_id) do for cell <- section.cells, cell.type == :elixir do Session.queue_cell_evaluation(socket.assigns.session_id, cell.id) end end {:noreply, socket} end def handle_event("queue_all_cells_evaluation", _params, socket) do data = socket.private.data for {cell, _} <- Notebook.elixir_cells_with_section(data.notebook), data.cell_infos[cell.id].validity_status != :evaluated do Session.queue_cell_evaluation(socket.assigns.session_id, cell.id) end {:noreply, socket} end def handle_event("queue_child_cells_evaluation", %{"cell_id" => cell_id}, socket) do with {:ok, cell, _section} <- Notebook.fetch_cell_and_section(socket.private.data.notebook, cell_id) do for {cell, _} <- Notebook.child_cells_with_section(socket.private.data.notebook, cell.id) do Session.queue_cell_evaluation(socket.assigns.session_id, cell.id) end end {:noreply, socket} end def handle_event("cancel_cell_evaluation", %{"cell_id" => cell_id}, socket) do Session.cancel_cell_evaluation(socket.assigns.session_id, cell_id) {:noreply, socket} end def handle_event("show_shortcuts", %{}, socket) do {:noreply, push_patch(socket, to: Routes.session_path(socket, :shortcuts, socket.assigns.session_id))} end def handle_event("show_notebook_settings", %{}, socket) do {:noreply, push_patch(socket, to: Routes.session_path(socket, :settings, socket.assigns.session_id, "file") )} end @impl true def handle_info({:operation, operation}, socket) do case Session.Data.apply_operation(socket.private.data, operation) do {:ok, data, actions} -> new_socket = socket |> assign_private(data: data) |> assign(data_view: data_to_view(data)) |> after_operation(socket, operation) |> handle_actions(actions) {:noreply, new_socket} :error -> {:noreply, socket} end end def handle_info({:error, error}, socket) do message = error |> to_string() |> String.capitalize() {:noreply, put_flash(socket, :error, message)} end def handle_info({:info, info}, socket) do message = info |> to_string() |> String.capitalize() {:noreply, put_flash(socket, :info, message)} end def handle_info(:session_closed, socket) do {:noreply, socket |> put_flash(:info, "Session has been closed") |> push_redirect(to: Routes.home_path(socket, :page))} end def handle_info(_message, socket), do: {:noreply, socket} defp after_operation(socket, _prev_socket, {:insert_section, client_pid, _index, section_id}) do if client_pid == self() do push_event(socket, "section_inserted", %{section_id: section_id}) else socket end end defp after_operation(socket, _prev_socket, {:delete_section, _client_pid, section_id}) do push_event(socket, "section_deleted", %{section_id: section_id}) end defp after_operation(socket, _prev_socket, {:insert_cell, client_pid, _, _, _, cell_id}) do if client_pid == self() do push_event(socket, "cell_inserted", %{cell_id: cell_id}) else socket end end defp after_operation(socket, prev_socket, {:delete_cell, _client_pid, cell_id}) do # Find a sibling cell that the client would focus if the deleted cell has focus. sibling_cell_id = case Notebook.fetch_cell_sibling(prev_socket.private.data.notebook, cell_id, 1) do {:ok, next_cell} -> next_cell.id :error -> case Notebook.fetch_cell_sibling(prev_socket.private.data.notebook, cell_id, -1) do {:ok, previous_cell} -> previous_cell.id :error -> nil end end push_event(socket, "cell_deleted", %{cell_id: cell_id, sibling_cell_id: sibling_cell_id}) end defp after_operation(socket, _prev_socket, {:move_cell, client_pid, cell_id, _offset}) do if client_pid == self() do push_event(socket, "cell_moved", %{cell_id: cell_id}) else socket end end defp after_operation(socket, _prev_socket, _operation), do: socket defp handle_actions(socket, actions) do Enum.reduce(actions, socket, &handle_action(&2, &1)) end defp handle_action(socket, {:broadcast_delta, client_pid, cell, delta}) do if client_pid == self() do push_event(socket, "cell_acknowledgement:#{cell.id}", %{}) else push_event(socket, "cell_delta:#{cell.id}", %{delta: Delta.to_compressed(delta)}) end end defp handle_action(socket, _action), do: socket defp normalize_name(name) do name |> String.trim() |> String.replace(~r/\s+/, " ") |> case do "" -> "Untitled" name -> name end end defp insert_cell_next_to(socket, cell_id, type, idx_offset: idx_offset) do {:ok, cell, section} = Notebook.fetch_cell_and_section(socket.private.data.notebook, cell_id) index = Enum.find_index(section.cells, &(&1 == cell)) Session.insert_cell(socket.assigns.session_id, section.id, index + idx_offset, type) end defp ensure_integer(n) when is_integer(n), do: n defp ensure_integer(n) when is_binary(n), do: String.to_integer(n) # Builds view-specific structure of data by cherry-picking # only the relevant attributes. # We then use `@data_view` in the templates and consequently # irrelevant changes to data don't change `@data_view`, so LV doesn't # have to traverse the whole template tree and no diff is sent to the client. defp data_to_view(data) do %{ path: data.path, runtime: data.runtime, notebook_name: data.notebook.name, sections_items: for section <- data.notebook.sections do %{id: section.id, name: section.name} end, section_views: Enum.map(data.notebook.sections, §ion_to_view(&1, data)) } end defp section_to_view(section, data) do %{ id: section.id, name: section.name, cell_views: Enum.map(section.cells, &cell_to_view(&1, data)) } end defp cell_to_view(cell, data) do info = data.cell_infos[cell.id] %{ id: cell.id, type: cell.type, empty?: cell.source == "", outputs: cell.outputs, validity_status: info.validity_status, evaluation_status: info.evaluation_status, changed?: info.evaluation_digest != nil and info.digest != info.evaluation_digest } end end