livebook/lib/livebook_web/live/app_session_live/source_component.ex

57 lines
1.7 KiB
Elixir
Raw Normal View History

defmodule LivebookWeb.AppSessionLive.SourceComponent do
2023-02-28 00:05:36 +08:00
use LivebookWeb, :live_component
alias Livebook.Session
@impl true
def update(assigns, socket) do
socket = assign(socket, assigns)
socket =
assign_new(socket, :source, fn ->
# Note: we need to load the notebook, so that we don't track
# the whole notebook in assigns
notebook = Session.get_notebook(socket.assigns.session.pid)
Livebook.LiveMarkdown.notebook_to_livemd(notebook, include_outputs: false)
end)
{:ok, socket}
end
@impl true
def render(assigns) do
~H"""
<div class="p-6 max-w-4xl flex flex-col space-y-3">
<h3 class="text-2xl font-semibold text-gray-800">
App source
</h3>
<p class="text-gray-700">
This app is built from the following notebook source:
</p>
<div class="flex flex-col space-y-1">
<div class="flex justify-between items-center">
<span class="text-sm text-gray-700 font-semibold">
<%= Session.file_name_for_download(@session) <> ".livemd" %>
</span>
<div class="flex justify-end space-x-2">
<span class="tooltip left" data-tooltip="Copy source">
<button
class="icon-button"
aria-label="copy source"
phx-click={JS.dispatch("lb:clipcopy", to: "#export-notebook-source")}
>
<.remix_icon icon="clipboard-line" class="text-lg" />
</button>
</span>
</div>
</div>
<div class="markdown">
<.code_preview source_id="export-notebook-source" language="markdown" source={@source} />
</div>
</div>
</div>
"""
end
end