mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-12 10:49:29 +08:00
44dc3d9041
* Allow inserting section anywhere in the notebook * Improve section deletion * Polishing * Remove section insertion shortcuts
35 lines
1.4 KiB
Elixir
35 lines
1.4 KiB
Elixir
defmodule LivebookWeb.SessionLive.InsertButtonsComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
def render(assigns) do
|
|
~L"""
|
|
<div class="relative top-0.5 m-0 flex justify-center" data-element="insert-buttons">
|
|
<div class="w-full absolute z-10 <%= if(@persistent, do: "opacity-100", else: "opacity-0") %> hover:opacity-100 focus-within:opacity-100 flex space-x-2 justify-center items-center">
|
|
<button class="button button-small"
|
|
phx-click="insert_cell"
|
|
phx-value-type="markdown"
|
|
phx-value-section_id="<%= @section_id %>"
|
|
phx-value-index="<%= @insert_cell_index %>"
|
|
>+ Markdown</button>
|
|
<button class="button button-small"
|
|
phx-click="insert_cell"
|
|
phx-value-type="elixir"
|
|
phx-value-section_id="<%= @section_id %>"
|
|
phx-value-index="<%= @insert_cell_index %>"
|
|
>+ Elixir</button>
|
|
<button class="button button-small"
|
|
phx-click="insert_cell"
|
|
phx-value-type="input"
|
|
phx-value-section_id="<%= @section_id %>"
|
|
phx-value-index="<%= @insert_cell_index %>"
|
|
>+ Input</button>
|
|
<button class="button button-small"
|
|
phx-click="insert_section_into"
|
|
phx-value-section_id="<%= @section_id %>"
|
|
phx-value-index="<%= @insert_cell_index %>"
|
|
>+ Section</button>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
end
|