mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
92 lines
2.3 KiB
JavaScript
Executable file
92 lines
2.3 KiB
JavaScript
Executable file
import dequal from 'dequal';
|
|
import React, { useCallback } 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 { 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(() => ({
|
|
color: LabelColors.KEYS[0],
|
|
...defaultData,
|
|
name: defaultData.name || '',
|
|
}));
|
|
|
|
const [step, openStep, handleBack] = useSteps();
|
|
|
|
const handleSubmit = useCallback(() => {
|
|
const cleanData = {
|
|
...data,
|
|
name: data.name.trim() || null,
|
|
};
|
|
|
|
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 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;
|