import { createFormControl, createFormGroup } from "solid-forms"; import { Trans, useLingui } from "@lingui-solid/solid/macro"; import { ulid } from "ulid"; import { Dialog, DialogProps, Form2 } from "@revolt/ui"; import { useModals } from ".."; import { Modals } from "../types"; /** * Modal to create a new category */ export function CreateCategoryModal( props: DialogProps & Modals & { type: "create_category" }, ) { const { t } = useLingui(); const { showError } = useModals(); const group = createFormGroup({ name: createFormControl("", { required: true }), }); async function onSubmit() { try { props.server.edit({ categories: [ ...(props.server.categories ?? []), { id: ulid(), title: group.controls.name.value, channels: [], }, ], }); props.onClose(); } catch (error) { showError(error); } } const submit = Form2.useSubmitHandler(group, onSubmit); return ( Create a new category} actions={[ { text: Close }, { text: Create, onClick: () => { onSubmit(); return false; }, isDisabled: !Form2.canSubmit(group), }, ]} isDisabled={group.isPending} >
); }