umami/components/forms/UserEditForm.js

90 lines
2.5 KiB
JavaScript
Raw Normal View History

2020-08-09 08:48:43 +02:00
import React, { useState } from 'react';
2020-09-06 02:27:01 +02:00
import { FormattedMessage } from 'react-intl';
2020-08-09 08:48:43 +02:00
import { Formik, Form, Field } from 'formik';
import Button from 'components/common/Button';
import FormLayout, {
FormButtons,
FormError,
FormMessage,
FormRow,
} from 'components/layout/FormLayout';
2022-02-23 08:52:31 +01:00
import useApi from 'hooks/useApi';
2020-08-09 08:48:43 +02:00
const initialValues = {
username: '',
password: '',
};
2022-10-12 22:11:44 +02:00
const validate = ({ id, username, password }) => {
2020-08-09 08:48:43 +02:00
const errors = {};
if (!username) {
2020-09-06 02:27:01 +02:00
errors.username = <FormattedMessage id="label.required" defaultMessage="Required" />;
2020-08-09 08:48:43 +02:00
}
2022-10-12 22:11:44 +02:00
if (!id && !password) {
2020-09-06 02:27:01 +02:00
errors.password = <FormattedMessage id="label.required" defaultMessage="Required" />;
2020-08-09 08:48:43 +02:00
}
return errors;
};
2022-11-01 07:42:37 +01:00
export default function UserEditForm({ values, onSave, onClose }) {
2022-02-23 08:52:31 +01:00
const { post } = useApi();
2020-08-09 08:48:43 +02:00
const [message, setMessage] = useState();
const handleSubmit = async values => {
2022-10-12 22:11:44 +02:00
const { id } = values;
2022-11-01 07:42:37 +01:00
const { ok, data } = await post(id ? `/users/${id}` : '/users', values);
2020-08-09 08:48:43 +02:00
2020-10-01 00:14:44 +02:00
if (ok) {
2020-08-09 08:48:43 +02:00
onSave();
} else {
2020-09-06 02:27:01 +02:00
setMessage(
2020-10-01 00:14:44 +02:00
data || <FormattedMessage id="message.failure" defaultMessage="Something went wrong." />,
2020-09-06 02:27:01 +02:00
);
2020-08-09 08:48:43 +02:00
}
};
return (
<FormLayout>
<Formik
initialValues={{ ...initialValues, ...values }}
validate={validate}
onSubmit={handleSubmit}
>
{() => (
<Form>
<FormRow>
2020-09-06 02:27:01 +02:00
<label htmlFor="username">
<FormattedMessage id="label.username" defaultMessage="Username" />
</label>
<div>
<Field name="username" type="text" />
<FormError name="username" />
</div>
2020-08-09 08:48:43 +02:00
</FormRow>
<FormRow>
2020-09-06 02:27:01 +02:00
<label htmlFor="password">
<FormattedMessage id="label.password" defaultMessage="Password" />
</label>
<div>
<Field name="password" type="password" />
<FormError name="password" />
</div>
2020-08-09 08:48:43 +02:00
</FormRow>
<FormButtons>
<Button type="submit" variant="action">
2020-10-13 07:53:59 +02:00
<FormattedMessage id="label.save" defaultMessage="Save" />
2020-09-06 02:27:01 +02:00
</Button>
<Button onClick={onClose}>
2020-10-13 07:53:59 +02:00
<FormattedMessage id="label.cancel" defaultMessage="Cancel" />
2020-08-09 08:48:43 +02:00
</Button>
</FormButtons>
<FormMessage>{message}</FormMessage>
</Form>
)}
</Formik>
</FormLayout>
);
}