mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
100 lines
2.4 KiB
React
100 lines
2.4 KiB
React
|
import dequal from 'dequal';
|
||
|
import React, { useCallback, useRef } from 'react';
|
||
|
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, useSteps } from '../../hooks';
|
||
|
import LabelColors from '../../constants/LabelColors';
|
||
|
import Editor from './Editor';
|
||
|
import DeleteStep from '../DeleteStep';
|
||
|
|
||
|
import styles from './EditStep.module.css';
|
||
|
|
||
|
const StepTypes = {
|
||
|
DELETE: 'DELETE',
|
||
|
};
|
||
|
|
||
|
const EditStep = React.memo(({
|
||
|
defaultData, onUpdate, onDelete, onBack,
|
||
|
}) => {
|
||
|
const [t] = useTranslation();
|
||
|
|
||
|
const [data, handleFieldChange] = useForm(() => ({
|
||
|
name: '',
|
||
|
color: LabelColors.KEYS[0],
|
||
|
...defaultData,
|
||
|
}));
|
||
|
|
||
|
const [step, openStep, handleBack] = useSteps();
|
||
|
|
||
|
const editor = useRef(null);
|
||
|
|
||
|
const handleSubmit = useDeepCompareCallback(() => {
|
||
|
const cleanData = {
|
||
|
...data,
|
||
|
name: data.name.trim(),
|
||
|
};
|
||
|
|
||
|
if (!cleanData.name) {
|
||
|
editor.current.selectNameField();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!dequal(cleanData, defaultData)) {
|
||
|
onUpdate(cleanData);
|
||
|
}
|
||
|
|
||
|
onBack();
|
||
|
}, [defaultData, data, onUpdate, onBack]);
|
||
|
|
||
|
const handleDeleteClick = useCallback(() => {
|
||
|
openStep(StepTypes.DELETE);
|
||
|
}, [openStep]);
|
||
|
|
||
|
if (step && step.type === StepTypes.DELETE) {
|
||
|
return (
|
||
|
<DeleteStep
|
||
|
title={t('common.deleteLabel', {
|
||
|
context: 'title',
|
||
|
})}
|
||
|
content={t('common.areYouSureYouWantToDeleteThisLabel')}
|
||
|
buttonContent={t('action.deleteLabel')}
|
||
|
onConfirm={onDelete}
|
||
|
onBack={handleBack}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Popup.Header onBack={onBack}>
|
||
|
{t('common.editLabel', {
|
||
|
context: 'title',
|
||
|
})}
|
||
|
</Popup.Header>
|
||
|
<Popup.Content>
|
||
|
<Form onSubmit={handleSubmit}>
|
||
|
<Editor ref={editor} data={data} onFieldChange={handleFieldChange} />
|
||
|
<Button positive content={t('action.save')} />
|
||
|
</Form>
|
||
|
<Button
|
||
|
content={t('action.delete')}
|
||
|
className={styles.deleteButton}
|
||
|
onClick={handleDeleteClick}
|
||
|
/>
|
||
|
</Popup.Content>
|
||
|
</>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
EditStep.propTypes = {
|
||
|
defaultData: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
|
||
|
onUpdate: PropTypes.func.isRequired,
|
||
|
onDelete: PropTypes.func.isRequired,
|
||
|
onBack: PropTypes.func.isRequired,
|
||
|
};
|
||
|
|
||
|
export default EditStep;
|