forked from coracle/caravel
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { createSignal, Show } from "solid-js"
|
|
import { useNavigate } from "@solidjs/router"
|
|
import BackLink from "@/components/BackLink"
|
|
import PageContainer from "@/components/PageContainer"
|
|
import PaymentDialog from "@/components/PaymentDialog"
|
|
import RelayForm, { type RelayFormValues } from "@/components/RelayForm"
|
|
import { createRelayForActiveTenant, getLatestOpenInvoice } from "@/lib/hooks"
|
|
import type { Invoice } from "@/lib/api"
|
|
|
|
export default function RelayNew() {
|
|
const navigate = useNavigate()
|
|
const [pendingInvoice, setPendingInvoice] = createSignal<Invoice | undefined>()
|
|
let createdRelayId = ""
|
|
|
|
async function handleSubmit(values: RelayFormValues) {
|
|
const relay = await createRelayForActiveTenant(values)
|
|
createdRelayId = relay.id
|
|
|
|
if (values.plan !== "free") {
|
|
const invoice = await getLatestOpenInvoice()
|
|
if (invoice) {
|
|
setPendingInvoice(invoice)
|
|
return
|
|
}
|
|
}
|
|
|
|
navigate(`/relays/${relay.id}`)
|
|
}
|
|
|
|
function handleDialogClose() {
|
|
setPendingInvoice(undefined)
|
|
navigate(`/relays/${createdRelayId}`)
|
|
}
|
|
|
|
return (
|
|
<PageContainer size="narrow">
|
|
<BackLink href="/relays" label="Relays" />
|
|
<h1 class="text-2xl font-bold text-gray-900 mb-6 py-2">New Relay</h1>
|
|
<RelayForm
|
|
syncSubdomainWithName
|
|
onSubmit={handleSubmit}
|
|
submitLabel="Create Relay"
|
|
submittingLabel="Creating..."
|
|
/>
|
|
<Show when={pendingInvoice()}>
|
|
{(inv) => (
|
|
<PaymentDialog
|
|
invoice={inv()}
|
|
open={true}
|
|
onClose={handleDialogClose}
|
|
/>
|
|
)}
|
|
</Show>
|
|
</PageContainer>
|
|
)
|
|
}
|