mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
import {
|
|
SubmitButton,
|
|
Form,
|
|
FormInput,
|
|
FormRow,
|
|
FormButtons,
|
|
TextField,
|
|
Button,
|
|
Flexbox,
|
|
} from 'react-basics';
|
|
import { getRandomChars } from 'next-basics';
|
|
import { useRef, useState } from 'react';
|
|
import useApi from 'hooks/useApi';
|
|
import useMessages from 'hooks/useMessages';
|
|
|
|
const generateId = () => getRandomChars(16);
|
|
|
|
export default function TeamEditForm({ teamId, data, onSave, readOnly }) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const { post, useMutation } = useApi();
|
|
const { mutate, error } = useMutation(data => post(`/teams/${teamId}`, data));
|
|
const ref = useRef(null);
|
|
const [accessCode, setAccessCode] = useState(data.accessCode);
|
|
|
|
const handleSubmit = async data => {
|
|
mutate(data, {
|
|
onSuccess: async () => {
|
|
ref.current.reset(data);
|
|
onSave(data);
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleRegenerate = () => {
|
|
const code = generateId();
|
|
ref.current.setValue('accessCode', code, {
|
|
shouldValidate: true,
|
|
shouldDirty: true,
|
|
});
|
|
setAccessCode(code);
|
|
};
|
|
|
|
return (
|
|
<Form ref={ref} onSubmit={handleSubmit} error={error} values={data} style={{ width: 600 }}>
|
|
<FormRow label={formatMessage(labels.teamId)}>
|
|
<TextField value={teamId} readOnly allowCopy />
|
|
</FormRow>
|
|
<FormRow label={formatMessage(labels.name)}>
|
|
{!readOnly && (
|
|
<FormInput name="name" rules={{ required: formatMessage(labels.required) }}>
|
|
<TextField />
|
|
</FormInput>
|
|
)}
|
|
{readOnly && data.name}
|
|
</FormRow>
|
|
<FormRow label={formatMessage(labels.accessCode)}>
|
|
<Flexbox gap={10}>
|
|
<TextField value={accessCode} readOnly allowCopy />
|
|
{!readOnly && (
|
|
<Button onClick={handleRegenerate}>{formatMessage(labels.regenerate)}</Button>
|
|
)}
|
|
</Flexbox>
|
|
</FormRow>
|
|
{!readOnly && (
|
|
<FormButtons>
|
|
<SubmitButton variant="primary">{formatMessage(labels.save)}</SubmitButton>
|
|
</FormButtons>
|
|
)}
|
|
</Form>
|
|
);
|
|
}
|