2021-04-01 18:56:19 +08:00
|
|
|
defmodule LivebookWeb.SessionLive.IndicatorsComponent do
|
|
|
|
use LivebookWeb, :live_component
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def render(assigns) do
|
2021-07-07 20:32:49 +08:00
|
|
|
~H"""
|
2021-04-01 18:56:19 +08:00
|
|
|
<div class="flex flex-col space-y-2 items-center" data-element="notebook-indicators">
|
2021-07-07 20:32:49 +08:00
|
|
|
<%= if @path do %>
|
|
|
|
<%= if @dirty do %>
|
2021-04-01 18:56:19 +08:00
|
|
|
<span class="tooltip left" aria-label="Autosave pending">
|
2021-04-22 05:02:09 +08:00
|
|
|
<%= live_patch to: Routes.session_path(@socket, :file_settings, @session_id),
|
|
|
|
class: "icon-button icon-outlined-button border-blue-400 hover:bg-blue-50 focus:bg-blue-50" do %>
|
2021-07-07 20:32:49 +08:00
|
|
|
<.remix_icon icon="save-line" class="text-xl text-blue-500" />
|
2021-04-22 05:02:09 +08:00
|
|
|
<% end %>
|
2021-04-01 18:56:19 +08:00
|
|
|
</span>
|
|
|
|
<% else %>
|
|
|
|
<span class="tooltip left" aria-label="Notebook saved">
|
2021-04-22 05:02:09 +08:00
|
|
|
<%= live_patch to: Routes.session_path(@socket, :file_settings, @session_id),
|
|
|
|
class: "icon-button icon-outlined-button border-green-300 hover:bg-green-50 focus:bg-green-50" do %>
|
2021-07-07 20:32:49 +08:00
|
|
|
<.remix_icon icon="save-line" class="text-xl text-green-400" />
|
2021-04-22 05:02:09 +08:00
|
|
|
<% end %>
|
2021-04-01 18:56:19 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<span class="tooltip left" aria-label="Choose a file to save the notebook">
|
2021-04-22 05:02:09 +08:00
|
|
|
<%= live_patch to: Routes.session_path(@socket, :file_settings, @session_id),
|
2021-04-01 18:56:19 +08:00
|
|
|
class: "icon-button icon-outlined-button border-gray-200 hover:bg-gray-100 focus:bg-gray-100" do %>
|
2021-07-07 20:32:49 +08:00
|
|
|
<.remix_icon icon="save-line" class="text-xl text-gray-400" />
|
2021-04-01 18:56:19 +08:00
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
|
2021-07-07 20:32:49 +08:00
|
|
|
<%= if @runtime do %>
|
|
|
|
<.global_evaluation_status
|
|
|
|
status={elem(@global_evaluation_status, 0)}
|
|
|
|
cell_id={elem(@global_evaluation_status, 1)} />
|
2021-04-01 18:56:19 +08:00
|
|
|
<% else %>
|
|
|
|
<span class="tooltip left" aria-label="Choose a runtime to run the notebook in">
|
2021-04-22 05:02:09 +08:00
|
|
|
<%= live_patch to: Routes.session_path(@socket, :runtime_settings, @session_id),
|
2021-04-01 18:56:19 +08:00
|
|
|
class: "icon-button icon-outlined-button border-gray-200 hover:bg-gray-100 focus:bg-gray-100" do %>
|
2021-07-07 20:32:49 +08:00
|
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-gray-400" />
|
2021-04-01 18:56:19 +08:00
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%# Note: this indicator is shown/hidden using CSS based on the current mode %>
|
|
|
|
<span class="tooltip left" aria-label="Insert mode" data-element="insert-mode-indicator">
|
|
|
|
<span class="text-sm text-gray-400 font-medium cursor-default">
|
|
|
|
ins
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2021-07-07 20:32:49 +08:00
|
|
|
defp global_evaluation_status(%{status: :evaluating} = assigns) do
|
|
|
|
~H"""
|
2021-04-01 18:56:19 +08:00
|
|
|
<span class="tooltip left" aria-label="Go to evaluating cell">
|
|
|
|
<button class="icon-button icon-outlined-button border-blue-400 hover:bg-blue-50 focus:bg-blue-50"
|
|
|
|
data-element="focus-cell-button"
|
2021-07-07 20:32:49 +08:00
|
|
|
data-target={@cell_id}>
|
|
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-blue-500 animate-spin" />
|
2021-04-01 18:56:19 +08:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2021-07-07 20:32:49 +08:00
|
|
|
defp global_evaluation_status(%{status: :evaluated} = assigns) do
|
|
|
|
~H"""
|
2021-04-01 18:56:19 +08:00
|
|
|
<span class="tooltip left" aria-label="Go to last evaluated cell">
|
|
|
|
<button class="icon-button icon-outlined-button border-green-300 hover:bg-green-50 focus:bg-green-50"
|
|
|
|
data-element="focus-cell-button"
|
2021-07-07 20:32:49 +08:00
|
|
|
data-target={@cell_id}>
|
|
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-green-400" />
|
2021-04-01 18:56:19 +08:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2021-07-07 20:32:49 +08:00
|
|
|
defp global_evaluation_status(%{status: :stale} = assigns) do
|
|
|
|
~H"""
|
2021-04-01 18:56:19 +08:00
|
|
|
<span class="tooltip left" aria-label="Go to first stale cell">
|
|
|
|
<button class="icon-button icon-outlined-button border-yellow-200 hover:bg-yellow-50 focus:bg-yellow-50"
|
|
|
|
data-element="focus-cell-button"
|
2021-07-07 20:32:49 +08:00
|
|
|
data-target={@cell_id}>
|
|
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-yellow-300" />
|
2021-04-01 18:56:19 +08:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2021-07-07 20:32:49 +08:00
|
|
|
defp global_evaluation_status(%{status: :fresh} = assigns) do
|
|
|
|
~H"""
|
2021-04-01 18:56:19 +08:00
|
|
|
<span class="tooltip left" aria-label="Ready to evaluate">
|
|
|
|
<button class="icon-button icon-outlined-button border-gray-200 hover:bg-gray-100 focus:bg-gray-100 cursor-default">
|
2021-07-07 20:32:49 +08:00
|
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-gray-400" />
|
2021-04-01 18:56:19 +08:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
end
|