mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 04:46:46 +08:00
45 lines
1.2 KiB
Elixir
45 lines
1.2 KiB
Elixir
|
defmodule LivebookWeb.Hub.EditLive do
|
||
|
use LivebookWeb, :live_view
|
||
|
|
||
|
alias LivebookWeb.{PageHelpers, LayoutHelpers}
|
||
|
alias Livebook.Hubs
|
||
|
alias Livebook.Hubs.Provider
|
||
|
|
||
|
on_mount LivebookWeb.SidebarHook
|
||
|
|
||
|
@impl true
|
||
|
def mount(%{"id" => id}, _session, socket) do
|
||
|
hub = Hubs.fetch_hub!(id)
|
||
|
type = Provider.type(hub)
|
||
|
|
||
|
if type == "local" do
|
||
|
{:ok,
|
||
|
socket |> redirect(to: "/") |> put_flash(:warning, "You can't edit the localhost Hub")}
|
||
|
else
|
||
|
{:ok, assign(socket, hub: hub, type: type, page_title: "Livebook - Hub")}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
@impl true
|
||
|
def render(assigns) do
|
||
|
~H"""
|
||
|
<LayoutHelpers.layout
|
||
|
socket={@socket}
|
||
|
current_page={Routes.hub_path(@socket, :edit, @hub.id)}
|
||
|
current_user={@current_user}
|
||
|
saved_hubs={@saved_hubs}
|
||
|
>
|
||
|
<div class="px-4 sm:px-8 md:px-16 pt-4 sm:py-7 max-w-screen-md mx-auto space-y-8">
|
||
|
<div>
|
||
|
<PageHelpers.title text="Edit Hub" socket={@socket} />
|
||
|
</div>
|
||
|
|
||
|
<%= if @type == "fly" do %>
|
||
|
<.live_component module={LivebookWeb.Hub.Edit.FlyComponent} hub={@hub} id="fly-form" />
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</LayoutHelpers.layout>
|
||
|
"""
|
||
|
end
|
||
|
end
|