mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-30 10:47:51 +08:00
92 lines
2.5 KiB
Elixir
92 lines
2.5 KiB
Elixir
defmodule LivebookWeb.Hub.Edit.EnterpriseComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
alias Livebook.Hubs.Enterprise
|
|
alias LivebookWeb.LayoutHelpers
|
|
|
|
@impl true
|
|
def update(assigns, socket) do
|
|
changeset = Enterprise.change_hub(assigns.hub)
|
|
|
|
{:ok,
|
|
socket
|
|
|> assign(assigns)
|
|
|> assign(changeset: changeset)}
|
|
end
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<div id={"#{@id}-component"} class="space-y-8">
|
|
<div class="flex relative">
|
|
<LayoutHelpers.title text={"#{@hub.hub_emoji} #{@hub.hub_name}"} />
|
|
|
|
<button
|
|
phx-click={
|
|
with_confirm(
|
|
JS.push("delete_hub", value: %{id: @hub.id}),
|
|
title: "Delete hub",
|
|
description: "Are you sure you want to delete this hub?",
|
|
confirm_text: "Delete",
|
|
confirm_icon: "close-circle-line"
|
|
)
|
|
}
|
|
class="absolute right-0 button-base button-red"
|
|
>
|
|
Delete hub
|
|
</button>
|
|
</div>
|
|
|
|
<div class="flex flex-col space-y-10">
|
|
<div class="flex flex-col space-y-2">
|
|
<h2 class="text-xl text-gray-800 font-medium pb-2 border-b border-gray-200">
|
|
General
|
|
</h2>
|
|
|
|
<.form
|
|
:let={f}
|
|
id={@id}
|
|
class="flex flex-col mt-4 space-y-4"
|
|
for={@changeset}
|
|
phx-submit="save"
|
|
phx-change="validate"
|
|
phx-target={@myself}
|
|
>
|
|
<div class="grid grid-cols-1 md:grid-cols-1 gap-3">
|
|
<.emoji_field field={f[:hub_emoji]} label="Emoji" />
|
|
</div>
|
|
<div>
|
|
<button
|
|
class="button-base button-blue"
|
|
type="submit"
|
|
phx-disable-with="Updating..."
|
|
disabled={not @changeset.valid?}
|
|
>
|
|
Update Hub
|
|
</button>
|
|
</div>
|
|
</.form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
@impl true
|
|
def handle_event("save", %{"enterprise" => params}, socket) do
|
|
case Enterprise.update_hub(socket.assigns.hub, params) do
|
|
{:ok, hub} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(:success, "Hub updated successfully")
|
|
|> push_navigate(to: ~p"/hub/#{hub.id}")}
|
|
|
|
{:error, changeset} ->
|
|
{:noreply, assign(socket, changeset: changeset)}
|
|
end
|
|
end
|
|
|
|
def handle_event("validate", %{"enterprise" => attrs}, socket) do
|
|
{:noreply, assign(socket, changeset: Enterprise.validate_hub(socket.assigns.hub, attrs))}
|
|
end
|
|
end
|