2021-11-09 03:45:30 +08:00
|
|
|
defmodule LivebookWeb.Output do
|
|
|
|
use Phoenix.Component
|
|
|
|
|
2022-01-26 04:55:24 +08:00
|
|
|
import LivebookWeb.Helpers
|
|
|
|
|
2022-01-17 20:24:59 +08:00
|
|
|
alias LivebookWeb.Output
|
|
|
|
|
2021-11-09 03:45:30 +08:00
|
|
|
@doc """
|
2021-11-26 01:43:42 +08:00
|
|
|
Renders a list of cell outputs.
|
2021-11-09 03:45:30 +08:00
|
|
|
"""
|
2021-11-26 01:43:42 +08:00
|
|
|
def outputs(assigns) do
|
|
|
|
~H"""
|
2022-01-17 03:37:00 +08:00
|
|
|
<%= for {idx, output} <- Enum.reverse(@outputs) do %>
|
2022-08-02 21:51:02 +08:00
|
|
|
<div
|
|
|
|
class="max-w-full"
|
|
|
|
id={"output-wrapper-#{@dom_id_map[idx] || idx}"}
|
2022-04-04 18:19:11 +08:00
|
|
|
data-el-output
|
2022-01-17 03:37:00 +08:00
|
|
|
data-border={border?(output)}
|
2022-08-02 21:51:02 +08:00
|
|
|
data-wrapper={wrapper?(output)}
|
|
|
|
>
|
2022-01-17 03:37:00 +08:00
|
|
|
<%= render_output(output, %{
|
2022-08-02 21:51:02 +08:00
|
|
|
id: "output-#{idx}",
|
|
|
|
socket: @socket,
|
|
|
|
session_id: @session_id,
|
|
|
|
input_values: @input_values
|
|
|
|
}) %>
|
2022-01-17 03:37:00 +08:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2021-11-26 01:43:42 +08:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2022-01-17 03:37:00 +08:00
|
|
|
defp border?({:stdout, _text}), do: true
|
|
|
|
defp border?({:text, _text}), do: true
|
2022-04-05 21:15:13 +08:00
|
|
|
defp border?({:error, _message}), do: true
|
2022-01-17 03:37:00 +08:00
|
|
|
defp border?(_output), do: false
|
2021-11-26 01:43:42 +08:00
|
|
|
|
2022-01-17 03:37:00 +08:00
|
|
|
defp wrapper?({:frame, _outputs, _info}), do: true
|
|
|
|
defp wrapper?(_output), do: false
|
2021-11-26 01:43:42 +08:00
|
|
|
|
2022-01-17 03:37:00 +08:00
|
|
|
defp render_output({:stdout, text}, %{id: id}) do
|
|
|
|
text = if(text == :__pruned__, do: nil, else: text)
|
2022-03-19 19:22:36 +08:00
|
|
|
live_component(Output.StdoutComponent, id: id, text: text)
|
2021-11-09 03:45:30 +08:00
|
|
|
end
|
|
|
|
|
2021-11-26 01:43:42 +08:00
|
|
|
defp render_output({:text, text}, %{id: id}) do
|
2022-01-17 03:37:00 +08:00
|
|
|
assigns = %{id: id, text: text}
|
|
|
|
|
|
|
|
~H"""
|
2022-03-19 19:22:36 +08:00
|
|
|
<Output.TextComponent.render id={@id} content={@text} />
|
2022-01-17 03:37:00 +08:00
|
|
|
"""
|
2021-11-09 03:45:30 +08:00
|
|
|
end
|
|
|
|
|
2022-05-17 09:03:18 +08:00
|
|
|
defp render_output({:markdown, markdown}, %{id: id, session_id: session_id}) do
|
|
|
|
live_component(Output.MarkdownComponent,
|
|
|
|
id: id,
|
|
|
|
session_id: session_id,
|
|
|
|
content: markdown
|
|
|
|
)
|
2021-11-09 03:45:30 +08:00
|
|
|
end
|
|
|
|
|
2021-11-26 01:43:42 +08:00
|
|
|
defp render_output({:image, content, mime_type}, %{id: id}) do
|
2022-01-17 03:37:00 +08:00
|
|
|
assigns = %{id: id, content: content, mime_type: mime_type}
|
|
|
|
|
|
|
|
~H"""
|
2022-01-17 20:24:59 +08:00
|
|
|
<Output.ImageComponent.render content={@content} mime_type={@mime_type} />
|
2022-01-17 03:37:00 +08:00
|
|
|
"""
|
2021-11-09 03:45:30 +08:00
|
|
|
end
|
|
|
|
|
2022-02-28 20:53:33 +08:00
|
|
|
defp render_output({:js, js_info}, %{id: id, session_id: session_id}) do
|
|
|
|
live_component(LivebookWeb.JSViewComponent,
|
|
|
|
id: id,
|
|
|
|
js_view: js_info.js_view,
|
2022-03-23 01:25:42 +08:00
|
|
|
session_id: session_id,
|
|
|
|
timeout_message: "Output data no longer available, please reevaluate this cell"
|
2022-02-28 20:53:33 +08:00
|
|
|
)
|
2021-11-26 01:43:42 +08:00
|
|
|
end
|
|
|
|
|
2022-01-17 03:37:00 +08:00
|
|
|
defp render_output({:frame, outputs, _info}, %{
|
|
|
|
id: id,
|
|
|
|
input_values: input_values,
|
|
|
|
session_id: session_id
|
|
|
|
}) do
|
2022-01-17 20:24:59 +08:00
|
|
|
live_component(Output.FrameComponent,
|
2022-01-17 03:37:00 +08:00
|
|
|
id: id,
|
|
|
|
outputs: outputs,
|
|
|
|
session_id: session_id,
|
|
|
|
input_values: input_values
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-11-26 01:43:42 +08:00
|
|
|
defp render_output({:input, attrs}, %{id: id, input_values: input_values}) do
|
2022-01-17 20:24:59 +08:00
|
|
|
live_component(Output.InputComponent, id: id, attrs: attrs, input_values: input_values)
|
2021-11-09 03:45:30 +08:00
|
|
|
end
|
|
|
|
|
2021-12-12 07:09:35 +08:00
|
|
|
defp render_output({:control, attrs}, %{id: id, input_values: input_values}) do
|
2022-01-17 20:24:59 +08:00
|
|
|
live_component(Output.ControlComponent, id: id, attrs: attrs, input_values: input_values)
|
2021-12-02 23:45:00 +08:00
|
|
|
end
|
|
|
|
|
2022-04-04 18:49:17 +08:00
|
|
|
defp render_output({:error, formatted}, %{}) do
|
|
|
|
assigns = %{message: formatted}
|
2021-11-09 03:45:30 +08:00
|
|
|
|
|
|
|
~H"""
|
2022-08-03 00:22:49 +08:00
|
|
|
<div
|
|
|
|
class="whitespace-pre-wrap font-editor text-gray-500"
|
|
|
|
role="complementary"
|
|
|
|
aria-label="error"
|
|
|
|
phx-no-format
|
|
|
|
><%= ansi_string_to_html(@message) %></div>
|
2021-11-09 03:45:30 +08:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2022-01-17 20:24:59 +08:00
|
|
|
# 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
|
2022-01-26 04:55:24 +08:00
|
|
|
render_error_message("""
|
2022-01-17 20:24:59 +08:00
|
|
|
Legacy output format: #{inspect(output)}. Please update Kino to
|
|
|
|
the latest version.
|
|
|
|
""")
|
|
|
|
end
|
|
|
|
|
2021-11-26 01:43:42 +08:00
|
|
|
defp render_output(output, %{}) do
|
2022-01-26 04:55:24 +08:00
|
|
|
render_error_message("""
|
2021-11-09 03:45:30 +08:00
|
|
|
Unknown output format: #{inspect(output)}. If you're using Kino,
|
|
|
|
you may want to update Kino and Livebook to the latest version.
|
|
|
|
""")
|
|
|
|
end
|
|
|
|
|
2022-01-26 04:55:24 +08:00
|
|
|
defp render_error_message(message) do
|
2021-11-09 03:45:30 +08:00
|
|
|
assigns = %{message: message}
|
|
|
|
|
|
|
|
~H"""
|
2022-08-02 21:51:02 +08:00
|
|
|
<div
|
|
|
|
class="whitespace-pre-wrap font-editor text-red-600"
|
|
|
|
role="complementary"
|
|
|
|
aria-label="error message"
|
2022-08-03 00:22:49 +08:00
|
|
|
phx-no-format
|
|
|
|
><%= @message %></div>
|
2021-11-09 03:45:30 +08:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
end
|