livebook/lib/livebook_web/live/session_live/delete_section_component.ex

50 lines
1.5 KiB
Elixir
Raw Normal View History

defmodule LivebookWeb.SessionLive.DeleteSectionComponent do
use LivebookWeb, :live_component
@impl true
def render(assigns) do
~H"""
<div class="p-6 pb-4 flex flex-col space-y-8">
<h3 class="text-2xl font-semibold text-gray-800">
Delete section
</h3>
<p class="text-gray-700">
Are you sure you want to delete this section -
<span class="font-semibold"><%= @section.name %></span>?
</p>
<form phx-submit="delete" phx-target={@myself}>
<h3 class="mb-1 text-lg font-semibold text-gray-800">
Options
</h3>
<%# If there is no previous section, all cells need to be deleted %>
<.switch_checkbox
name="delete_cells"
label="Delete all cells in this section"
checked={@is_first}
disabled={@is_first} />
<div class="mt-8 flex justify-end space-x-2">
<button type="submit" class="button button-red">
<.remix_icon icon="delete-bin-6-line" class="align-middle mr-1" />
Delete
</button>
<%= live_patch "Cancel", to: @return_to, class: "button button-outlined-gray" %>
</div>
</form>
</div>
"""
end
@impl true
def handle_event("delete", params, socket) do
delete_cells? = Map.has_key?(params, "delete_cells")
Livebook.Session.delete_section(
socket.assigns.session_id,
socket.assigns.section.id,
delete_cells?
)
{:noreply, push_patch(socket, to: socket.assigns.return_to)}
end
end