86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
import { createFormControl, createFormGroup } from "solid-forms";
|
|
|
|
import { Trans, useLingui } from "@lingui-solid/solid/macro";
|
|
|
|
import { useNavigate } from "@revolt/routing";
|
|
import { Column, Dialog, DialogProps, Form2, Radio2 } from "@revolt/ui";
|
|
|
|
import { useModals } from "..";
|
|
import { Modals } from "../types";
|
|
|
|
/**
|
|
* Modal to create a new server channel
|
|
*/
|
|
export function CreateChannelModal(
|
|
props: DialogProps & Modals & { type: "create_channel" },
|
|
) {
|
|
const { t } = useLingui();
|
|
const navigate = useNavigate();
|
|
const { showError } = useModals();
|
|
|
|
const group = createFormGroup({
|
|
name: createFormControl("", { required: true }),
|
|
type: createFormControl("Text"),
|
|
});
|
|
|
|
async function onSubmit() {
|
|
try {
|
|
const channel = await props.server.createChannel({
|
|
type: group.controls.type.value as "Text" | "Voice",
|
|
name: group.controls.name.value,
|
|
});
|
|
|
|
if (props.cb) {
|
|
props.cb(channel);
|
|
} else {
|
|
navigate(`/server/${props.server.id}/channel/${channel.id}`);
|
|
}
|
|
|
|
props.onClose();
|
|
} catch (error) {
|
|
showError(error);
|
|
}
|
|
}
|
|
|
|
const submit = Form2.useSubmitHandler(group, onSubmit);
|
|
|
|
return (
|
|
<Dialog
|
|
show={props.show}
|
|
onClose={props.onClose}
|
|
title={<Trans>Create channel</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`Channel Name`}
|
|
/>
|
|
|
|
<Form2.Radio control={group.controls.type}>
|
|
<Radio2.Option value="Text">
|
|
<Trans>Text Channel</Trans>
|
|
</Radio2.Option>
|
|
<Radio2.Option value="Voice">
|
|
<Trans>Voice Channel</Trans>
|
|
</Radio2.Option>
|
|
</Form2.Radio>
|
|
</Column>
|
|
</form>
|
|
</Dialog>
|
|
);
|
|
}
|