mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 17:23:21 +03:00
86 lines
2.1 KiB
React
86 lines
2.1 KiB
React
|
|
import React, { 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 { useDeepCompareCallback, useForm } from '../../hooks';
|
||
|
|
|
||
|
|
import styles from './AddProjectModal.module.css';
|
||
|
|
|
||
|
|
const AddProjectModal = React.memo(({
|
||
|
|
defaultData, isSubmitting, onCreate, onClose,
|
||
|
|
}) => {
|
||
|
|
const [t] = useTranslation();
|
||
|
|
|
||
|
|
const [data, handleFieldChange] = useForm(() => ({
|
||
|
|
name: '',
|
||
|
|
...defaultData,
|
||
|
|
}));
|
||
|
|
|
||
|
|
const nameField = useRef(null);
|
||
|
|
|
||
|
|
const handleSubmit = useDeepCompareCallback(() => {
|
||
|
|
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>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
AddProjectModal.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 AddProjectModal;
|