mirror of
https://github.com/plankanban/planka.git
synced 2025-07-27 09:09:46 +02:00
109 lines
2.6 KiB
React
109 lines
2.6 KiB
React
|
import dequal from 'dequal';
|
||
|
import React, { useCallback, useEffect, useRef } from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { useTranslation } from 'react-i18next';
|
||
|
import { Button, Form } from 'semantic-ui-react';
|
||
|
import { withPopup } from '../../lib/popup';
|
||
|
import { Input, Popup } from '../../lib/custom-ui';
|
||
|
|
||
|
import { useDeepCompareCallback, useForm, useSteps } from '../../hooks';
|
||
|
import DeleteStep from '../DeleteStep';
|
||
|
|
||
|
import styles from './EditPopup.module.css';
|
||
|
|
||
|
const StepTypes = {
|
||
|
DELETE: 'DELETE',
|
||
|
};
|
||
|
|
||
|
const EditStep = React.memo(({
|
||
|
defaultData, onUpdate, onDelete, onClose,
|
||
|
}) => {
|
||
|
const [t] = useTranslation();
|
||
|
|
||
|
const [data, handleFieldChange] = useForm(() => ({
|
||
|
name: '',
|
||
|
...defaultData,
|
||
|
}));
|
||
|
|
||
|
const [step, openStep, handleBack] = useSteps();
|
||
|
|
||
|
const nameField = useRef(null);
|
||
|
|
||
|
const handleSubmit = useDeepCompareCallback(() => {
|
||
|
const cleanData = {
|
||
|
...data,
|
||
|
name: data.name.trim(),
|
||
|
};
|
||
|
|
||
|
if (!cleanData.name) {
|
||
|
nameField.current.select();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!dequal(cleanData, defaultData)) {
|
||
|
onUpdate(cleanData);
|
||
|
}
|
||
|
|
||
|
onClose();
|
||
|
}, [defaultData, onUpdate, onClose, data]);
|
||
|
|
||
|
const handleDeleteClick = useCallback(() => {
|
||
|
openStep(StepTypes.DELETE);
|
||
|
}, [openStep]);
|
||
|
|
||
|
useEffect(() => {
|
||
|
nameField.current.select();
|
||
|
}, []);
|
||
|
|
||
|
if (step && step.type === StepTypes.DELETE) {
|
||
|
return (
|
||
|
<DeleteStep
|
||
|
title={t('common.deleteBoard', {
|
||
|
context: 'title',
|
||
|
})}
|
||
|
content={t('common.areYouSureYouWantToDeleteThisBoard')}
|
||
|
buttonContent={t('action.deleteBoard')}
|
||
|
onConfirm={onDelete}
|
||
|
onBack={handleBack}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Popup.Header>
|
||
|
{t('common.editBoard', {
|
||
|
context: 'title',
|
||
|
})}
|
||
|
</Popup.Header>
|
||
|
<Popup.Content>
|
||
|
<Form onSubmit={handleSubmit}>
|
||
|
<Input
|
||
|
fluid
|
||
|
ref={nameField}
|
||
|
name="name"
|
||
|
value={data.name}
|
||
|
className={styles.field}
|
||
|
onChange={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,
|
||
|
onClose: PropTypes.func.isRequired,
|
||
|
};
|
||
|
|
||
|
export default withPopup(EditStep);
|