misc_pterodactyl-panel/resources/scripts/components/admin/users/UserForm.tsx
2022-12-15 19:06:14 -07:00

148 lines
6.2 KiB
TypeScript

import type { Action } from 'easy-peasy';
import { action, createContextStore } from 'easy-peasy';
import type { FormikHelpers } from 'formik';
import { Form, Formik } from 'formik';
import tw from 'twin.macro';
import { bool, object, string } from 'yup';
import type { UpdateUserValues } from '@/api/admin/users';
import AdminBox from '@/components/admin/AdminBox';
import RoleSelect from '@/components/admin/users/RoleSelect';
import CopyOnClick from '@/components/elements/CopyOnClick';
import FormikSwitch from '@/components/elements/FormikSwitch';
import Input from '@/components/elements/Input';
import Label from '@/components/elements/Label';
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
import Button from '@/components/elements/Button';
import Field, { FieldRow } from '@/components/elements/Field';
import type { User, UserRole } from '@definitions/admin';
interface ctx {
user: User | undefined;
setUser: Action<ctx, User | undefined>;
}
export const Context = createContextStore<ctx>({
user: undefined,
setUser: action((state, payload) => {
state.user = payload;
}),
});
export interface Params {
title: string;
initialValues?: UpdateUserValues;
children?: React.ReactNode;
onSubmit: (values: UpdateUserValues, helpers: FormikHelpers<UpdateUserValues>) => void;
uuid?: string;
role: UserRole | null;
}
export default function UserForm({ title, initialValues, children, onSubmit, uuid, role }: Params) {
const submit = (values: UpdateUserValues, helpers: FormikHelpers<UpdateUserValues>) => {
onSubmit(values, helpers);
};
if (!initialValues) {
initialValues = {
externalId: '',
username: '',
email: '',
password: '',
adminRoleId: null,
rootAdmin: false,
};
}
return (
<Formik
onSubmit={submit}
initialValues={initialValues}
validationSchema={object().shape({
username: string().min(1).max(32),
email: string(),
rootAdmin: bool().required(),
})}
>
{({ isSubmitting, isValid }) => (
<>
<AdminBox title={title} css={tw`relative`}>
<SpinnerOverlay visible={isSubmitting} />
<Form css={tw`mb-0`}>
<FieldRow>
{uuid && (
<div>
<Label>UUID</Label>
<CopyOnClick text={uuid}>
<Input type={'text'} value={uuid} readOnly />
</CopyOnClick>
</div>
)}
<Field
id={'externalId'}
name={'externalId'}
label={'External ID'}
type={'text'}
description={
'Used by external integrations, this field should not be modified unless you know what you are doing.'
}
/>
<Field
id={'username'}
name={'username'}
label={'Username'}
type={'text'}
description={"The user's username, what else would go here?"}
/>
<Field
id={'email'}
name={'email'}
label={'Email Address'}
type={'email'}
description={"The user's email address, what else would go here?"}
/>
<Field
id={'password'}
name={'password'}
label={'Password'}
type={'password'}
placeholder={'••••••••'}
autoComplete={'new-password'}
/* TODO: Change description depending on if user is being created or updated. */
description={
'Leave empty to email the user a link where they will be required to set a password.'
}
/>
<RoleSelect selected={role} />
</FieldRow>
{/* TODO: Remove toggle once role permissions are implemented. */}
<div css={tw`w-full flex flex-row mb-6`}>
<div css={tw`w-full bg-neutral-800 border border-neutral-900 shadow-inner p-4 rounded`}>
<FormikSwitch
name={'rootAdmin'}
label={'Root Admin'}
description={'Should this user be a root administrator?'}
/>
</div>
</div>
<div css={tw`w-full flex flex-row items-center mt-6`}>
{children}
<div css={tw`flex ml-auto`}>
<Button type={'submit'} disabled={isSubmitting || !isValid}>
Save Changes
</Button>
</div>
</div>
</Form>
</AdminBox>
</>
)}
</Formik>
);
}