65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import { createFormControl, createFormGroup } from "solid-forms";
|
|
|
|
import { Trans, useLingui } from "@lingui-solid/solid/macro";
|
|
|
|
import { Column, Dialog, DialogProps, Form2 } from "@revolt/ui";
|
|
|
|
import { useModals } from "..";
|
|
import { Modals } from "../types";
|
|
|
|
/**
|
|
* Modal to create a new server role
|
|
*/
|
|
export function CreateRoleModal(
|
|
props: DialogProps & Modals & { type: "create_role" },
|
|
) {
|
|
const { t } = useLingui();
|
|
const { showError } = useModals();
|
|
|
|
const group = createFormGroup({
|
|
name: createFormControl("", { required: true }),
|
|
});
|
|
|
|
async function onSubmit() {
|
|
try {
|
|
const role = await props.server.createRole(group.controls.name.value);
|
|
props.callback(role.id);
|
|
props.onClose();
|
|
} catch (error) {
|
|
showError(error);
|
|
}
|
|
}
|
|
|
|
const submit = Form2.useSubmitHandler(group, onSubmit);
|
|
|
|
return (
|
|
<Dialog
|
|
show={props.show}
|
|
onClose={props.onClose}
|
|
title={<Trans>Create Role</Trans>}
|
|
actions={[
|
|
{ text: <Trans>Close</Trans> },
|
|
{
|
|
text: <Trans>Create</Trans>,
|
|
onClick: () => {
|
|
onSubmit();
|
|
return false;
|
|
},
|
|
isDisabled: !Form2.canSubmit(group),
|
|
},
|
|
]}
|
|
isDisabled={group.isPending}
|
|
>
|
|
<form onSubmit={submit}>
|
|
<Column>
|
|
<Form2.TextField
|
|
name="name"
|
|
control={group.controls.name}
|
|
label={t`Role Name`}
|
|
/>
|
|
</Column>
|
|
</form>
|
|
</Dialog>
|
|
);
|
|
}
|