mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
|
import { useRef } from 'react';
|
||
|
import { useIntl } from 'react-intl';
|
||
|
import {
|
||
|
Form,
|
||
|
FormRow,
|
||
|
FormInput,
|
||
|
FormButtons,
|
||
|
TextField,
|
||
|
Button,
|
||
|
SubmitButton,
|
||
|
} from 'react-basics';
|
||
|
import useApi from 'hooks/useApi';
|
||
|
import { labels, getMessage } from 'components/messages';
|
||
|
|
||
|
export default function TeamJoinForm({ onSave, onClose }) {
|
||
|
const { formatMessage } = useIntl();
|
||
|
const { post, useMutation } = useApi();
|
||
|
const { mutate, error } = useMutation(data => post('/teams/join', data));
|
||
|
const ref = useRef(null);
|
||
|
|
||
|
const handleSubmit = async data => {
|
||
|
mutate(data, {
|
||
|
onSuccess: async () => {
|
||
|
onSave();
|
||
|
onClose();
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Form ref={ref} onSubmit={handleSubmit} error={error && getMessage(error, formatMessage)}>
|
||
|
<FormRow label={formatMessage(labels.accessCode)}>
|
||
|
<FormInput name="accessCode" rules={{ required: formatMessage(labels.required) }}>
|
||
|
<TextField autoComplete="off" />
|
||
|
</FormInput>
|
||
|
</FormRow>
|
||
|
<FormButtons flex>
|
||
|
<SubmitButton variant="primary">{formatMessage(labels.join)}</SubmitButton>
|
||
|
<Button onClick={onClose}>{formatMessage(labels.cancel)}</Button>
|
||
|
</FormButtons>
|
||
|
</Form>
|
||
|
);
|
||
|
}
|