mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import {
|
|
Button,
|
|
Form,
|
|
FormButtons,
|
|
FormField,
|
|
FormSubmitButton,
|
|
ListItem,
|
|
PasswordField,
|
|
Select,
|
|
TextField,
|
|
} from '@umami/react-zen';
|
|
import { useMessages, useUpdateQuery } from '@/components/hooks';
|
|
import { ROLES } from '@/lib/constants';
|
|
|
|
export function UserAddForm({ onSave, onClose }) {
|
|
const { mutateAsync, error, isPending } = useUpdateQuery(`/users`);
|
|
const { formatMessage, labels, getErrorMessage } = useMessages();
|
|
|
|
const handleSubmit = async (data: any) => {
|
|
await mutateAsync(data, {
|
|
onSuccess: async () => {
|
|
onSave(data);
|
|
onClose();
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Form onSubmit={handleSubmit} error={getErrorMessage(error)}>
|
|
<FormField
|
|
label={formatMessage(labels.username)}
|
|
name="username"
|
|
rules={{ required: formatMessage(labels.required) }}
|
|
>
|
|
<TextField autoComplete="new-username" data-test="input-username" />
|
|
</FormField>
|
|
<FormField
|
|
label={formatMessage(labels.password)}
|
|
name="password"
|
|
rules={{ required: formatMessage(labels.required) }}
|
|
>
|
|
<PasswordField autoComplete="new-password" data-test="input-password" />
|
|
</FormField>
|
|
<FormField
|
|
label={formatMessage(labels.role)}
|
|
name="role"
|
|
rules={{ required: formatMessage(labels.required) }}
|
|
>
|
|
<Select>
|
|
<ListItem id={ROLES.viewOnly} data-test="dropdown-item-viewOnly">
|
|
{formatMessage(labels.viewOnly)}
|
|
</ListItem>
|
|
<ListItem id={ROLES.user} data-test="dropdown-item-user">
|
|
{formatMessage(labels.user)}
|
|
</ListItem>
|
|
<ListItem id={ROLES.admin} data-test="dropdown-item-admin">
|
|
{formatMessage(labels.admin)}
|
|
</ListItem>
|
|
</Select>
|
|
</FormField>
|
|
<FormButtons>
|
|
<Button isDisabled={isPending} onPress={onClose}>
|
|
{formatMessage(labels.cancel)}
|
|
</Button>
|
|
<FormSubmitButton variant="primary" data-test="button-submit" isDisabled={false}>
|
|
{formatMessage(labels.save)}
|
|
</FormSubmitButton>
|
|
</FormButtons>
|
|
</Form>
|
|
);
|
|
}
|