2023-01-25 15:42:46 +00:00
|
|
|
import {
|
|
|
|
|
Form,
|
|
|
|
|
FormRow,
|
|
|
|
|
FormInput,
|
|
|
|
|
FormButtons,
|
|
|
|
|
TextField,
|
|
|
|
|
Button,
|
|
|
|
|
SubmitButton,
|
|
|
|
|
} from 'react-basics';
|
2024-01-30 08:10:25 +00:00
|
|
|
import { touch } from 'store/cache';
|
2024-01-29 09:32:05 +00:00
|
|
|
import { useApi, useMessages } from 'components/hooks';
|
2022-12-27 00:57:59 +00:00
|
|
|
|
2023-12-03 11:07:03 +00:00
|
|
|
export function TeamAddForm({ onSave, onClose }: { onSave: () => void; onClose: () => void }) {
|
2023-03-22 21:05:55 +00:00
|
|
|
const { formatMessage, labels } = useMessages();
|
2023-01-10 07:59:26 +00:00
|
|
|
const { post, useMutation } = useApi();
|
2023-12-03 11:07:03 +00:00
|
|
|
const { mutate, error, isPending } = useMutation({
|
|
|
|
|
mutationFn: (data: any) => post('/teams', data),
|
|
|
|
|
});
|
2022-12-27 00:57:59 +00:00
|
|
|
|
2024-01-30 08:10:25 +00:00
|
|
|
const handleSubmit = async (data: any) => {
|
2022-12-27 00:57:59 +00:00
|
|
|
mutate(data, {
|
|
|
|
|
onSuccess: async () => {
|
2024-01-30 08:10:25 +00:00
|
|
|
touch('teams');
|
2023-10-08 01:55:14 +00:00
|
|
|
onSave?.();
|
|
|
|
|
onClose?.();
|
2022-12-27 00:57:59 +00:00
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
2023-12-03 11:07:03 +00:00
|
|
|
<Form onSubmit={handleSubmit} error={error}>
|
2023-01-25 15:42:46 +00:00
|
|
|
<FormRow label={formatMessage(labels.name)}>
|
2023-01-28 05:53:13 +00:00
|
|
|
<FormInput name="name" rules={{ required: formatMessage(labels.required) }}>
|
2023-01-06 06:56:36 +00:00
|
|
|
<TextField autoComplete="off" />
|
|
|
|
|
</FormInput>
|
|
|
|
|
</FormRow>
|
2022-12-27 00:57:59 +00:00
|
|
|
<FormButtons flex>
|
2023-12-03 11:07:03 +00:00
|
|
|
<SubmitButton variant="primary" disabled={isPending}>
|
2023-01-25 15:42:46 +00:00
|
|
|
{formatMessage(labels.save)}
|
|
|
|
|
</SubmitButton>
|
2023-12-03 11:07:03 +00:00
|
|
|
<Button disabled={isPending} onClick={onClose}>
|
2023-01-25 15:42:46 +00:00
|
|
|
{formatMessage(labels.cancel)}
|
2022-12-27 00:57:59 +00:00
|
|
|
</Button>
|
|
|
|
|
</FormButtons>
|
|
|
|
|
</Form>
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-04-21 15:00:42 +00:00
|
|
|
|
|
|
|
|
export default TeamAddForm;
|