mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
75 lines
2.4 KiB
TypeScript
75 lines
2.4 KiB
TypeScript
import {
|
|
Form,
|
|
FormField,
|
|
FormButtons,
|
|
FormSubmitButton,
|
|
TextField,
|
|
Button,
|
|
useToast,
|
|
} from '@umami/react-zen';
|
|
import { getRandomChars } from '@/lib/crypto';
|
|
import { useContext } from 'react';
|
|
import { useApi, useMessages, useModified } from '@/components/hooks';
|
|
import { TeamContext } from '@/app/(main)/teams/[teamId]/TeamProvider';
|
|
|
|
const generateId = () => `team_${getRandomChars(16)}`;
|
|
|
|
export function TeamEditForm({ teamId, allowEdit }: { teamId: string; allowEdit?: boolean }) {
|
|
const team = useContext(TeamContext);
|
|
const { formatMessage, labels, messages } = useMessages();
|
|
const { post, useMutation } = useApi();
|
|
const { mutate, error } = useMutation({
|
|
mutationFn: (data: any) => post(`/teams/${teamId}`, data),
|
|
});
|
|
const { toast } = useToast();
|
|
const { touch } = useModified();
|
|
const cloudMode = !!process.env.cloudMode;
|
|
|
|
const handleSubmit = async (data: any) => {
|
|
mutate(data, {
|
|
onSuccess: async () => {
|
|
touch('teams');
|
|
toast(formatMessage(messages.saved));
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Form onSubmit={handleSubmit} error={error} defaultValues={{ ...team }}>
|
|
{({ setValue }) => {
|
|
return (
|
|
<>
|
|
<FormField name="id" label={formatMessage(labels.teamId)}>
|
|
<TextField isReadOnly allowCopy />
|
|
</FormField>
|
|
<FormField
|
|
name="name"
|
|
label={formatMessage(labels.name)}
|
|
rules={{ required: formatMessage(labels.required) }}
|
|
>
|
|
{allowEdit && <TextField />}
|
|
{!allowEdit && team?.name}
|
|
</FormField>
|
|
{!cloudMode && allowEdit && (
|
|
<FormField name="accessCode" label={formatMessage(labels.accessCode)}>
|
|
<TextField isReadOnly allowCopy />
|
|
</FormField>
|
|
)}
|
|
{allowEdit && (
|
|
<FormButtons justifyContent="space-between">
|
|
{allowEdit && (
|
|
<Button
|
|
onPress={() => setValue('accessCode', generateId(), { shouldDirty: true })}
|
|
>
|
|
{formatMessage(labels.regenerate)}
|
|
</Button>
|
|
)}
|
|
<FormSubmitButton variant="primary">{formatMessage(labels.save)}</FormSubmitButton>
|
|
</FormButtons>
|
|
)}
|
|
</>
|
|
);
|
|
}}
|
|
</Form>
|
|
);
|
|
}
|