2022-08-26 17:22:46 +02:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2020-09-06 02:27:01 +02:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2022-08-26 17:22:46 +02:00
|
|
|
import { Formik, Form, Field, useFormikContext } from 'formik';
|
2020-08-08 05:36:57 +02:00
|
|
|
import Button from 'components/common/Button';
|
2020-08-07 11:27:12 +02:00
|
|
|
import FormLayout, {
|
|
|
|
FormButtons,
|
|
|
|
FormError,
|
|
|
|
FormMessage,
|
|
|
|
FormRow,
|
|
|
|
} from 'components/layout/FormLayout';
|
2020-08-29 06:34:20 +02:00
|
|
|
import Checkbox from 'components/common/Checkbox';
|
|
|
|
import { DOMAIN_REGEX } from 'lib/constants';
|
2022-02-23 08:52:31 +01:00
|
|
|
import useApi from 'hooks/useApi';
|
2022-08-26 17:22:46 +02:00
|
|
|
import useFetch from 'hooks/useFetch';
|
|
|
|
import useUser from 'hooks/useUser';
|
|
|
|
import styles from './WebsiteEditForm.module.css';
|
2020-08-07 11:27:12 +02:00
|
|
|
|
2020-08-09 08:48:43 +02:00
|
|
|
const initialValues = {
|
|
|
|
name: '',
|
|
|
|
domain: '',
|
2022-08-26 17:22:46 +02:00
|
|
|
owner: '',
|
2020-08-15 10:17:15 +02:00
|
|
|
public: false,
|
2020-08-09 08:48:43 +02:00
|
|
|
};
|
|
|
|
|
2020-08-07 11:27:12 +02:00
|
|
|
const validate = ({ name, domain }) => {
|
|
|
|
const errors = {};
|
|
|
|
|
|
|
|
if (!name) {
|
2020-09-06 02:27:01 +02:00
|
|
|
errors.name = <FormattedMessage id="label.required" defaultMessage="Required" />;
|
2020-08-07 11:27:12 +02:00
|
|
|
}
|
|
|
|
if (!domain) {
|
2020-09-06 02:27:01 +02:00
|
|
|
errors.domain = <FormattedMessage id="label.required" defaultMessage="Required" />;
|
2020-08-29 06:34:20 +02:00
|
|
|
} else if (!DOMAIN_REGEX.test(domain)) {
|
2020-09-06 02:27:01 +02:00
|
|
|
errors.domain = <FormattedMessage id="label.invalid-domain" defaultMessage="Invalid domain" />;
|
2020-08-07 11:27:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return errors;
|
|
|
|
};
|
|
|
|
|
2022-08-26 17:22:46 +02:00
|
|
|
const OwnerDropDown = ({ user, accounts }) => {
|
|
|
|
const { setFieldValue, values } = useFormikContext();
|
|
|
|
|
|
|
|
useEffect(() => {
|
2022-10-10 22:42:18 +02:00
|
|
|
if (values.userId != null && values.owner === '') {
|
|
|
|
setFieldValue('owner', values.userId.toString());
|
|
|
|
} else if (user?.id && values.owner === '') {
|
|
|
|
setFieldValue('owner', user.id.toString());
|
2022-08-26 17:22:46 +02:00
|
|
|
}
|
|
|
|
}, [accounts, setFieldValue, user, values]);
|
|
|
|
|
2022-10-10 22:42:18 +02:00
|
|
|
if (user?.isAdmin) {
|
2022-08-26 17:22:46 +02:00
|
|
|
return (
|
|
|
|
<FormRow>
|
|
|
|
<label htmlFor="owner">
|
|
|
|
<FormattedMessage id="label.owner" defaultMessage="Owner" />
|
|
|
|
</label>
|
|
|
|
<div>
|
|
|
|
<Field as="select" name="owner" className={styles.dropdown}>
|
|
|
|
{accounts?.map(acc => (
|
2022-10-10 22:42:18 +02:00
|
|
|
<option key={acc.id} value={acc.id}>
|
2022-08-26 17:22:46 +02:00
|
|
|
{acc.username}
|
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</Field>
|
|
|
|
<FormError name="owner" />
|
|
|
|
</div>
|
|
|
|
</FormRow>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-08-08 05:36:57 +02:00
|
|
|
export default function WebsiteEditForm({ values, onSave, onClose }) {
|
2022-02-23 08:52:31 +01:00
|
|
|
const { post } = useApi();
|
2022-08-26 17:22:46 +02:00
|
|
|
const { data: accounts } = useFetch(`/accounts`);
|
|
|
|
const { user } = useUser();
|
2020-08-07 11:27:12 +02:00
|
|
|
const [message, setMessage] = useState();
|
|
|
|
|
|
|
|
const handleSubmit = async values => {
|
2022-10-26 20:36:58 +02:00
|
|
|
const { websiteUuid: websiteId } = values;
|
2022-10-10 22:42:18 +02:00
|
|
|
|
|
|
|
const { ok, data } = await post(websiteId ? `/websites/${websiteId}` : '/websites', values);
|
2020-08-07 11:27:12 +02:00
|
|
|
|
2020-10-01 00:14:44 +02:00
|
|
|
if (ok) {
|
2020-08-07 11:27:12 +02:00
|
|
|
onSave();
|
|
|
|
} else {
|
2020-10-01 00:14:44 +02:00
|
|
|
setMessage(
|
|
|
|
data || <FormattedMessage id="message.failure" defaultMessage="Something went wrong." />,
|
|
|
|
);
|
2020-08-07 11:27:12 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FormLayout>
|
2020-08-09 08:48:43 +02:00
|
|
|
<Formik
|
2022-10-12 22:11:44 +02:00
|
|
|
initialValues={{ ...initialValues, ...values, enableShareUrl: !!values?.shareId }}
|
2020-08-09 08:48:43 +02:00
|
|
|
validate={validate}
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
>
|
2020-08-07 11:27:12 +02:00
|
|
|
{() => (
|
|
|
|
<Form>
|
|
|
|
<FormRow>
|
2020-09-06 02:27:01 +02:00
|
|
|
<label htmlFor="name">
|
|
|
|
<FormattedMessage id="label.name" defaultMessage="Name" />
|
|
|
|
</label>
|
2020-10-22 20:00:58 +02:00
|
|
|
<div>
|
|
|
|
<Field name="name" type="text" />
|
|
|
|
<FormError name="name" />
|
|
|
|
</div>
|
2020-08-07 11:27:12 +02:00
|
|
|
</FormRow>
|
|
|
|
<FormRow>
|
2020-09-06 02:27:01 +02:00
|
|
|
<label htmlFor="domain">
|
|
|
|
<FormattedMessage id="label.domain" defaultMessage="Domain" />
|
|
|
|
</label>
|
2020-10-22 20:00:58 +02:00
|
|
|
<div>
|
2022-08-26 17:22:46 +02:00
|
|
|
<Field
|
|
|
|
name="domain"
|
|
|
|
type="text"
|
|
|
|
placeholder="example.com"
|
2022-10-10 22:42:18 +02:00
|
|
|
spellCheck="false"
|
|
|
|
autoCapitalize="off"
|
|
|
|
autoCorrect="off"
|
2022-08-26 17:22:46 +02:00
|
|
|
/>
|
2020-10-22 20:00:58 +02:00
|
|
|
<FormError name="domain" />
|
|
|
|
</div>
|
2020-08-07 11:27:12 +02:00
|
|
|
</FormRow>
|
2022-08-26 17:22:46 +02:00
|
|
|
<OwnerDropDown accounts={accounts} user={user} />
|
2020-08-15 10:17:15 +02:00
|
|
|
<FormRow>
|
2021-04-25 05:56:22 +02:00
|
|
|
<label />
|
2022-10-12 22:11:44 +02:00
|
|
|
<Field name="enableShareUrl">
|
2020-09-06 02:27:01 +02:00
|
|
|
{({ field }) => (
|
|
|
|
<Checkbox
|
|
|
|
{...field}
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id="label.enable-share-url"
|
|
|
|
defaultMessage="Enable share URL"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)}
|
2020-08-15 10:17:15 +02:00
|
|
|
</Field>
|
|
|
|
</FormRow>
|
2020-08-07 11:27:12 +02:00
|
|
|
<FormButtons>
|
2020-08-08 02:19:42 +02:00
|
|
|
<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-08 02:19:42 +02:00
|
|
|
</Button>
|
2020-08-07 11:27:12 +02:00
|
|
|
</FormButtons>
|
|
|
|
<FormMessage>{message}</FormMessage>
|
|
|
|
</Form>
|
|
|
|
)}
|
|
|
|
</Formik>
|
|
|
|
</FormLayout>
|
|
|
|
);
|
|
|
|
}
|