mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-11 01:18:12 +08:00
56 lines
1.7 KiB
Elixir
56 lines
1.7 KiB
Elixir
defmodule LivebookWeb.AppLive.SourceComponent do
|
|
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
|