mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 04:46:46 +08:00
286 lines
7.6 KiB
Elixir
286 lines
7.6 KiB
Elixir
defmodule LivebookWeb.Output do
|
|
use Phoenix.Component
|
|
|
|
import LivebookWeb.Helpers
|
|
|
|
alias Phoenix.LiveView.JS
|
|
alias LivebookWeb.Output
|
|
|
|
@doc """
|
|
Renders a list of cell outputs.
|
|
"""
|
|
def outputs(assigns) do
|
|
~H"""
|
|
<%= for {idx, output} <- Enum.reverse(@outputs) do %>
|
|
<div
|
|
class="max-w-full"
|
|
id={"output-wrapper-#{@dom_id_map[idx] || idx}"}
|
|
data-el-output
|
|
data-border={border?(output)}
|
|
data-wrapper={wrapper?(output)}
|
|
>
|
|
<%= render_output(output, %{
|
|
id: "output-#{idx}",
|
|
socket: @socket,
|
|
session_id: @session_id,
|
|
input_values: @input_values,
|
|
client_id: @client_id
|
|
}) %>
|
|
</div>
|
|
<% end %>
|
|
"""
|
|
end
|
|
|
|
defp border?({:stdout, _text}), do: true
|
|
defp border?({:text, _text}), do: true
|
|
defp border?({:error, _message}), do: true
|
|
defp border?(_output), do: false
|
|
|
|
defp wrapper?({:frame, _outputs, _info}), do: true
|
|
defp wrapper?({:tabs, _tabs, _info}), do: true
|
|
defp wrapper?({:grid, _tabs, _info}), do: true
|
|
defp wrapper?(_output), do: false
|
|
|
|
defp render_output({:stdout, text}, %{id: id}) do
|
|
text = if(text == :__pruned__, do: nil, else: text)
|
|
live_component(Output.StdoutComponent, id: id, text: text)
|
|
end
|
|
|
|
defp render_output({:text, text}, %{id: id}) do
|
|
assigns = %{id: id, text: text}
|
|
|
|
~H"""
|
|
<Output.TextComponent.render id={@id} content={@text} />
|
|
"""
|
|
end
|
|
|
|
defp render_output({:markdown, markdown}, %{id: id, session_id: session_id}) do
|
|
live_component(Output.MarkdownComponent,
|
|
id: id,
|
|
session_id: session_id,
|
|
content: markdown
|
|
)
|
|
end
|
|
|
|
defp render_output({:image, content, mime_type}, %{id: id}) do
|
|
assigns = %{id: id, content: content, mime_type: mime_type}
|
|
|
|
~H"""
|
|
<Output.ImageComponent.render content={@content} mime_type={@mime_type} />
|
|
"""
|
|
end
|
|
|
|
defp render_output({:js, js_info}, %{id: id, session_id: session_id, client_id: client_id}) do
|
|
live_component(LivebookWeb.JSViewComponent,
|
|
id: id,
|
|
js_view: js_info.js_view,
|
|
session_id: session_id,
|
|
client_id: client_id,
|
|
timeout_message: "Output data no longer available, please reevaluate this cell"
|
|
)
|
|
end
|
|
|
|
defp render_output({:frame, outputs, _info}, %{
|
|
id: id,
|
|
session_id: session_id,
|
|
input_values: input_values,
|
|
client_id: client_id
|
|
}) do
|
|
live_component(Output.FrameComponent,
|
|
id: id,
|
|
outputs: outputs,
|
|
session_id: session_id,
|
|
input_values: input_values,
|
|
client_id: client_id
|
|
)
|
|
end
|
|
|
|
defp render_output({:tabs, outputs, info}, %{
|
|
id: id,
|
|
input_values: input_values,
|
|
session_id: session_id,
|
|
socket: socket
|
|
}) do
|
|
{labels, active_idx} =
|
|
if info == :__pruned__ do
|
|
{[], nil}
|
|
else
|
|
labels =
|
|
Enum.zip_with(info.labels, outputs, fn label, {output_idx, _} -> {output_idx, label} end)
|
|
|
|
active_idx = get_in(outputs, [Access.at(0), Access.elem(0)])
|
|
|
|
{labels, active_idx}
|
|
end
|
|
|
|
assigns = %{
|
|
id: id,
|
|
active_idx: active_idx,
|
|
labels: labels,
|
|
outputs: outputs,
|
|
socket: socket,
|
|
session_id: session_id,
|
|
input_values: input_values
|
|
}
|
|
|
|
# After pruning we don't render labels and we render only those
|
|
# outputs that are kept during pruning
|
|
|
|
~H"""
|
|
<div id={@id}>
|
|
<div class="tabs mb-2" id={"#{@id}-tabs"} phx-update="append">
|
|
<%= for {output_idx, label} <- @labels do %>
|
|
<button
|
|
id={"#{@id}-tabs-#{output_idx}"}
|
|
class={"tab #{if(output_idx == @active_idx, do: "active")}"}
|
|
phx-click={
|
|
JS.remove_class("active", to: "##{@id}-tabs .tab.active")
|
|
|> JS.add_class("active")
|
|
|> JS.add_class("hidden", to: "##{@id}-tab-contents > *:not(.hidden)")
|
|
|> JS.remove_class("hidden", to: "##{@id}-tab-content-#{output_idx}")
|
|
}
|
|
>
|
|
<%= label %>
|
|
</button>
|
|
<% end %>
|
|
</div>
|
|
<div id={"#{@id}-tab-contents"} phx-update="append">
|
|
<%= for {output_idx, output} <- @outputs do %>
|
|
<% # We use data-keep-attribute, because we know active_idx only on the first render %>
|
|
<div
|
|
id={"#{@id}-tab-content-#{output_idx}"}
|
|
data-tab-content={output_idx}
|
|
class={"#{if(output_idx != @active_idx, do: "hidden")}"}
|
|
data-keep-attribute="class"
|
|
>
|
|
<.outputs
|
|
outputs={[{output_idx, output}]}
|
|
dom_id_map={%{}}
|
|
socket={@socket}
|
|
session_id={@session_id}
|
|
input_values={@input_values}
|
|
/>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
defp render_output({:grid, outputs, info}, %{
|
|
id: id,
|
|
input_values: input_values,
|
|
session_id: session_id,
|
|
socket: socket
|
|
}) do
|
|
style =
|
|
if info == :__pruned__ do
|
|
nil
|
|
else
|
|
columns = info[:columns] || 1
|
|
"grid-template-columns: repeat(#{columns}, minmax(0, 1fr));"
|
|
end
|
|
|
|
assigns = %{
|
|
id: id,
|
|
style: style,
|
|
outputs: outputs,
|
|
socket: socket,
|
|
session_id: session_id,
|
|
input_values: input_values
|
|
}
|
|
|
|
~H"""
|
|
<div id={@id} class="overflow-auto tiny-scrollbar">
|
|
<div
|
|
id={"#{@id}-grid"}
|
|
class="grid grid-cols-2 gap-x-4 w-full"
|
|
style={@style}
|
|
data-keep-attribute="style"
|
|
phx-update="append"
|
|
>
|
|
<%= for {output_idx, output} <- @outputs do %>
|
|
<div id={"#{@id}-grid-item-#{output_idx}"}>
|
|
<.outputs
|
|
outputs={[{output_idx, output}]}
|
|
dom_id_map={%{}}
|
|
socket={@socket}
|
|
session_id={@session_id}
|
|
input_values={@input_values}
|
|
/>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
defp render_output({:input, attrs}, %{id: id, input_values: input_values, client_id: client_id}) do
|
|
live_component(Output.InputComponent,
|
|
id: id,
|
|
attrs: attrs,
|
|
input_values: input_values,
|
|
client_id: client_id
|
|
)
|
|
end
|
|
|
|
defp render_output({:control, attrs}, %{
|
|
id: id,
|
|
input_values: input_values,
|
|
client_id: client_id
|
|
}) do
|
|
live_component(Output.ControlComponent,
|
|
id: id,
|
|
attrs: attrs,
|
|
input_values: input_values,
|
|
client_id: client_id
|
|
)
|
|
end
|
|
|
|
defp render_output({:error, formatted}, %{}) do
|
|
assigns = %{message: formatted}
|
|
|
|
~H"""
|
|
<div
|
|
class="whitespace-pre-wrap font-editor text-gray-500"
|
|
role="complementary"
|
|
aria-label="error"
|
|
phx-no-format
|
|
><%= ansi_string_to_html(@message) %></div>
|
|
"""
|
|
end
|
|
|
|
# TODO: remove on Livebook v0.7
|
|
defp render_output(output, %{})
|
|
when elem(output, 0) in [
|
|
:vega_lite_static,
|
|
:vega_lite_dynamic,
|
|
:table_dynamic,
|
|
:frame_dynamic
|
|
] do
|
|
render_error_message("""
|
|
Legacy output format: #{inspect(output)}. Please update Kino to
|
|
the latest version.
|
|
""")
|
|
end
|
|
|
|
defp render_output(output, %{}) do
|
|
render_error_message("""
|
|
Unknown output format: #{inspect(output)}. If you're using Kino,
|
|
you may want to update Kino and Livebook to the latest version.
|
|
""")
|
|
end
|
|
|
|
defp render_error_message(message) do
|
|
assigns = %{message: message}
|
|
|
|
~H"""
|
|
<div
|
|
class="whitespace-pre-wrap font-editor text-red-600"
|
|
role="complementary"
|
|
aria-label="error message"
|
|
phx-no-format
|
|
><%= @message %></div>
|
|
"""
|
|
end
|
|
end
|