mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-12 10:49:29 +08:00
3694576244
* Require cookie for connecting to an attached node * Fix modals sizing
34 lines
1.1 KiB
Elixir
34 lines
1.1 KiB
Elixir
defmodule LivebookWeb.HomeLive.CloseSessionComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
alias Livebook.SessionSupervisor
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~L"""
|
|
<div class="p-6 pb-4 flex flex-col space-y-8">
|
|
<h3 class="text-2xl font-semibold text-gray-800">
|
|
Close session
|
|
</h3>
|
|
<p class="text-gray-700">
|
|
Are you sure you want to close this section -
|
|
<span class="font-semibold">“<%= @session_summary.notebook_name %>”</span>?
|
|
This won't delete any persisted files.
|
|
</p>
|
|
<div class="mt-8 flex justify-end space-x-2">
|
|
<button class="button button-red" phx-click="close" phx-target="<%= @myself %>">
|
|
<%= remix_icon("close-circle-line", class: "align-middle mr-1") %>
|
|
Close session
|
|
</button>
|
|
<%= live_patch "Cancel", to: @return_to, class: "button button-outlined-gray" %>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
@impl true
|
|
def handle_event("close", %{}, socket) do
|
|
SessionSupervisor.close_session(socket.assigns.session_summary.session_id)
|
|
{:noreply, push_patch(socket, to: socket.assigns.return_to)}
|
|
end
|
|
end
|