1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/client/src/components/LabelsStep/AddStep.jsx

54 lines
1.3 KiB
React
Raw Normal View History

2019-10-09 18:48:19 +05:00
import React from 'react';
2019-08-31 04:07:25 +05:00
import PropTypes from 'prop-types';
import { useTranslation } from 'react-i18next';
import { Button, Form } from 'semantic-ui-react';
import { Popup } from '../../lib/custom-ui';
import { useDeepCompareCallback, useForm } from '../../hooks';
import LabelColors from '../../constants/LabelColors';
import Editor from './Editor';
import styles from './AddStep.module.css';
const AddStep = React.memo(({ onCreate, onBack }) => {
const [t] = useTranslation();
const [data, handleFieldChange] = useForm(() => ({
name: '',
color: LabelColors.KEYS[0],
}));
const handleSubmit = useDeepCompareCallback(() => {
const cleanData = {
...data,
2019-10-09 18:48:19 +05:00
name: data.name.trim() || null,
2019-08-31 04:07:25 +05:00
};
onCreate(cleanData);
onBack();
}, [data, onCreate, onBack]);
return (
<>
<Popup.Header onBack={onBack}>
{t('common.createLabel', {
context: 'title',
})}
</Popup.Header>
<Popup.Content>
<Form onSubmit={handleSubmit}>
2019-10-09 18:48:19 +05:00
<Editor data={data} onFieldChange={handleFieldChange} />
2019-08-31 04:07:25 +05:00
<Button positive content={t('action.createLabel')} className={styles.submitButton} />
</Form>
</Popup.Content>
</>
);
});
AddStep.propTypes = {
onCreate: PropTypes.func.isRequired,
onBack: PropTypes.func.isRequired,
};
export default AddStep;