mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-10 00:47:45 +08:00
f8f91deaba
Co-authored-by: José Valim <jose.valim@gmail.com> Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
82 lines
2.2 KiB
Elixir
82 lines
2.2 KiB
Elixir
defmodule LivebookWeb.AppHelpers do
|
|
use LivebookWeb, :html
|
|
|
|
@doc """
|
|
Renders page placeholder on unauthenticated dead render.
|
|
"""
|
|
def auth_placeholder(assigns) do
|
|
~H"""
|
|
<div class="flex justify-center items-center h-screen w-screen">
|
|
<img src={~p"/images/logo.png"} height="128" width="128" alt="livebook" class="animate-pulse" />
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
@doc """
|
|
Renders app status with indicator.
|
|
"""
|
|
attr :status, :map, required: true
|
|
attr :show_label, :boolean, default: true
|
|
|
|
def app_status(%{status: %{lifecycle: :shutting_down}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Shutting down"} variant={:inactive} />
|
|
"""
|
|
end
|
|
|
|
def app_status(%{status: %{lifecycle: :deactivated}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Deactivated"} variant={:inactive} />
|
|
"""
|
|
end
|
|
|
|
def app_status(%{status: %{execution: :executing}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Executing"} variant={:progressing} />
|
|
"""
|
|
end
|
|
|
|
def app_status(%{status: %{execution: :executed}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Executed"} variant={:success} />
|
|
"""
|
|
end
|
|
|
|
def app_status(%{status: %{execution: :error}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Error"} variant={:error} />
|
|
"""
|
|
end
|
|
|
|
def app_status(%{status: %{execution: :interrupted}} = assigns) do
|
|
~H"""
|
|
<.app_status_indicator text={@show_label && "Interrupted"} variant={:waiting} />
|
|
"""
|
|
end
|
|
|
|
defp app_status_indicator(assigns) do
|
|
~H"""
|
|
<span class="flex items-center space-x-2">
|
|
<.status_indicator variant={@variant} />
|
|
<span :if={@text}><%= @text %></span>
|
|
</span>
|
|
"""
|
|
end
|
|
|
|
@doc """
|
|
Shows a confirmation modal and closes the app on confirm.
|
|
"""
|
|
def confirm_app_termination(socket, app_pid) do
|
|
on_confirm = fn socket ->
|
|
Livebook.App.close(app_pid)
|
|
socket
|
|
end
|
|
|
|
confirm(socket, on_confirm,
|
|
title: "Terminate app",
|
|
description: "All app sessions will be immediately terminated.",
|
|
confirm_text: "Terminate",
|
|
confirm_icon: "delete-bin-6-line"
|
|
)
|
|
end
|
|
end
|