mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 12:57:32 +08:00
021d6ac42e
* Rename tooltip source attribute * Add aria-label to icon buttons/links * Actually focus cell content when navigating around * Add some descriptions * Fix dynamically computed tooltips
119 lines
5.1 KiB
Elixir
119 lines
5.1 KiB
Elixir
defmodule LivebookWeb.SessionLive.IndicatorsComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<div class="flex flex-col items-center space-y-2" data-element="notebook-indicators">
|
|
<%= if @file do %>
|
|
<%= if @dirty do %>
|
|
<%= if @autosave_interval_s do %>
|
|
<span class="tooltip left" data-tooltip="Autosave pending">
|
|
<%= 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",
|
|
aria_label: "autosave pending, click to open file settings" do %>
|
|
<.remix_icon icon="save-line" class="text-xl text-blue-500" />
|
|
<% end %>
|
|
</span>
|
|
<% else %>
|
|
<span class="tooltip left" data-tooltip="No autosave configured, make sure to save manually">
|
|
<%= live_patch to: Routes.session_path(@socket, :file_settings, @session_id),
|
|
class: "icon-button icon-outlined-button border-yellow-200 hover:bg-red-50 focus:bg-red-50",
|
|
aria_label: "no autosave configured, click to open file settings" do %>
|
|
<.remix_icon icon="save-line" class="text-xl text-yellow-300" />
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<span class="tooltip left" data-tooltip="Notebook saved">
|
|
<%= 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",
|
|
aria_label: "notebook saved, click to open file settings" do %>
|
|
<.remix_icon icon="save-line" class="text-xl text-green-400" />
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<span class="tooltip left" data-tooltip="Choose a file to save the notebook">
|
|
<%= live_patch to: Routes.session_path(@socket, :file_settings, @session_id),
|
|
class: "icon-button icon-outlined-button border-gray-200 hover:bg-gray-100 focus:bg-gray-100",
|
|
aria_label: "choose a file to save the notebook" do %>
|
|
<.remix_icon icon="save-line" class="text-xl text-gray-400" />
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
|
|
<%= if @runtime do %>
|
|
<.global_status
|
|
status={elem(@global_status, 0)}
|
|
cell_id={elem(@global_status, 1)} />
|
|
<% else %>
|
|
<span class="tooltip left" data-tooltip="Choose a runtime to run the notebook in">
|
|
<%= live_patch to: Routes.session_path(@socket, :runtime_settings, @session_id),
|
|
class: "icon-button icon-outlined-button border-gray-200 hover:bg-gray-100 focus:bg-gray-100",
|
|
aria_label: "choose a runtime to run the notebook in" do %>
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-gray-400" />
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
|
|
<%# Note: this indicator is shown/hidden using CSS based on the current mode %>
|
|
<span class="tooltip left" data-tooltip="Insert mode" data-element="insert-mode-indicator">
|
|
<span class="text-sm font-medium text-gray-400 cursor-default">
|
|
ins
|
|
</span>
|
|
</span>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
defp global_status(%{status: :evaluating} = assigns) do
|
|
~H"""
|
|
<span class="tooltip left" data-tooltip="Go to evaluating cell">
|
|
<button class="border-blue-400 icon-button icon-outlined-button hover:bg-blue-50 focus:bg-blue-50"
|
|
aria-label="go to evaluating cell"
|
|
data-element="focus-cell-button"
|
|
data-target={@cell_id}>
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-blue-500 animate-spin" />
|
|
</button>
|
|
</span>
|
|
"""
|
|
end
|
|
|
|
defp global_status(%{status: :evaluated} = assigns) do
|
|
~H"""
|
|
<span class="tooltip left" data-tooltip="Go to last evaluated cell">
|
|
<button class="border-green-300 icon-button icon-outlined-button hover:bg-green-50 focus:bg-green-50"
|
|
aria-label="go to last evaluated cell"
|
|
data-element="focus-cell-button"
|
|
data-target={@cell_id}>
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-green-400" />
|
|
</button>
|
|
</span>
|
|
"""
|
|
end
|
|
|
|
defp global_status(%{status: :stale} = assigns) do
|
|
~H"""
|
|
<span class="tooltip left" data-tooltip="Go to first stale cell">
|
|
<button class="border-yellow-200 icon-button icon-outlined-button hover:bg-yellow-50 focus:bg-yellow-50"
|
|
aria-label="go to first stale cell"
|
|
data-element="focus-cell-button"
|
|
data-target={@cell_id}>
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-yellow-300" />
|
|
</button>
|
|
</span>
|
|
"""
|
|
end
|
|
|
|
defp global_status(%{status: :fresh} = assigns) do
|
|
~H"""
|
|
<span class="tooltip left" data-tooltip="Ready to evaluate">
|
|
<div class="border-gray-200 icon-button icon-outlined-button hover:bg-gray-100 focus:bg-gray-100"
|
|
aria-label="ready to evaluate">
|
|
<.remix_icon icon="loader-3-line" class="text-xl text-gray-400" />
|
|
</div>
|
|
</span>
|
|
"""
|
|
end
|
|
end
|