You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.0 KiB
JavaScript
82 lines
2.0 KiB
JavaScript
import React, { useCallback, useEffect, useRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Button, Form, Header, Modal } from 'semantic-ui-react';
|
|
import { Input } from '../../lib/custom-ui';
|
|
|
|
import { useForm } from '../../hooks';
|
|
|
|
import styles from './ProjectAddModal.module.scss';
|
|
|
|
const ProjectAddModal = React.memo(({ defaultData, isSubmitting, onCreate, onClose }) => {
|
|
const [t] = useTranslation();
|
|
|
|
const [data, handleFieldChange] = useForm(() => ({
|
|
name: '',
|
|
...defaultData,
|
|
}));
|
|
|
|
const nameField = useRef(null);
|
|
|
|
const handleSubmit = useCallback(() => {
|
|
const cleanData = {
|
|
...data,
|
|
name: data.name.trim(),
|
|
};
|
|
|
|
if (!cleanData.name) {
|
|
nameField.current.select();
|
|
return;
|
|
}
|
|
|
|
onCreate(cleanData);
|
|
}, [onCreate, data]);
|
|
|
|
useEffect(() => {
|
|
nameField.current.select();
|
|
}, []);
|
|
|
|
return (
|
|
<Modal open basic closeIcon size="tiny" onClose={onClose}>
|
|
<Modal.Content>
|
|
<Header inverted size="huge">
|
|
{t('common.createProject', {
|
|
context: 'title',
|
|
})}
|
|
</Header>
|
|
<p>{t('common.enterProjectTitle')}</p>
|
|
<Form onSubmit={handleSubmit}>
|
|
<Input
|
|
fluid
|
|
inverted
|
|
ref={nameField}
|
|
name="name"
|
|
value={data.name}
|
|
readOnly={isSubmitting}
|
|
className={styles.field}
|
|
onChange={handleFieldChange}
|
|
/>
|
|
<Button
|
|
inverted
|
|
color="green"
|
|
icon="checkmark"
|
|
content={t('action.createProject')}
|
|
floated="right"
|
|
loading={isSubmitting}
|
|
disabled={isSubmitting}
|
|
/>
|
|
</Form>
|
|
</Modal.Content>
|
|
</Modal>
|
|
);
|
|
});
|
|
|
|
ProjectAddModal.propTypes = {
|
|
defaultData: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
|
|
isSubmitting: PropTypes.bool.isRequired,
|
|
onCreate: PropTypes.func.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default ProjectAddModal;
|