umami/components/pages/settings/websites/WebsiteResetForm.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-12-28 05:20:44 +01:00
import useApi from 'hooks/useApi';
2023-01-06 07:56:36 +01:00
import {
Button,
Form,
FormRow,
FormButtons,
FormInput,
SubmitButton,
TextField,
} from 'react-basics';
const CONFIRM_VALUE = 'RESET';
export default function WebsiteResetForm({ websiteId, onSave, onClose }) {
2023-01-10 08:59:26 +01:00
const { post, useMutation } = useApi();
const { mutate, error, isLoading } = useMutation(data =>
post(`/websites/${websiteId}/reset`, data),
);
const handleSubmit = async data => {
mutate(data, {
onSuccess: async () => {
onSave();
},
});
};
return (
2023-01-10 08:59:26 +01:00
<Form onSubmit={handleSubmit} error={error}>
<div>
To reset this website, type <b>{CONFIRM_VALUE}</b> in the box below to confirm.
</div>
2023-01-06 07:56:36 +01:00
<FormRow label="Confirmation">
<FormInput name="confirm" rules={{ validate: value => value === CONFIRM_VALUE }}>
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormButtons flex>
2023-01-10 08:59:26 +01:00
<SubmitButton variant="primary" disabled={isLoading}>
Save
</SubmitButton>
2023-01-10 08:59:26 +01:00
<Button disabled={isLoading} onClick={onClose}>
Cancel
</Button>
</FormButtons>
</Form>
);
}