mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 17:25:01 +03:00
103 lines
2.7 KiB
React
103 lines
2.7 KiB
React
|
|
/*!
|
||
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { dequal } from 'dequal';
|
||
|
|
import React, { useCallback, useMemo } from 'react';
|
||
|
|
import { useDispatch, useSelector } from 'react-redux';
|
||
|
|
import { useTranslation } from 'react-i18next';
|
||
|
|
import TextareaAutosize from 'react-textarea-autosize';
|
||
|
|
import { Button, Form, Input, TextArea } from 'semantic-ui-react';
|
||
|
|
|
||
|
|
import selectors from '../../../../selectors';
|
||
|
|
import entryActions from '../../../../entry-actions';
|
||
|
|
import { useForm, useNestedRef } from '../../../../hooks';
|
||
|
|
import { isModifierKeyPressed } from '../../../../utils/event-helpers';
|
||
|
|
|
||
|
|
import styles from './EditInformation.module.scss';
|
||
|
|
|
||
|
|
const EditInformation = React.memo(() => {
|
||
|
|
const project = useSelector(selectors.selectCurrentProject);
|
||
|
|
|
||
|
|
const dispatch = useDispatch();
|
||
|
|
const [t] = useTranslation();
|
||
|
|
|
||
|
|
const defaultData = useMemo(
|
||
|
|
() => ({
|
||
|
|
name: project.name,
|
||
|
|
description: project.description,
|
||
|
|
}),
|
||
|
|
[project.name, project.description],
|
||
|
|
);
|
||
|
|
|
||
|
|
const [data, handleFieldChange] = useForm(() => ({
|
||
|
|
name: '',
|
||
|
|
...defaultData,
|
||
|
|
description: defaultData.description || '',
|
||
|
|
}));
|
||
|
|
|
||
|
|
const cleanData = useMemo(
|
||
|
|
() => ({
|
||
|
|
...data,
|
||
|
|
name: data.name.trim(),
|
||
|
|
description: data.description.trim() || null,
|
||
|
|
}),
|
||
|
|
[data],
|
||
|
|
);
|
||
|
|
|
||
|
|
const [nameFieldRef, handleNameFieldRef] = useNestedRef('inputRef');
|
||
|
|
|
||
|
|
const submit = useCallback(() => {
|
||
|
|
if (!cleanData.name) {
|
||
|
|
nameFieldRef.current.select();
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
dispatch(entryActions.updateCurrentProject(cleanData));
|
||
|
|
}, [dispatch, cleanData, nameFieldRef]);
|
||
|
|
|
||
|
|
const handleSubmit = useCallback(() => {
|
||
|
|
submit();
|
||
|
|
}, [submit]);
|
||
|
|
|
||
|
|
const handleDescriptionKeyDown = useCallback(
|
||
|
|
(event) => {
|
||
|
|
if (isModifierKeyPressed(event) && event.key === 'Enter') {
|
||
|
|
submit();
|
||
|
|
}
|
||
|
|
},
|
||
|
|
[submit],
|
||
|
|
);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Form onSubmit={handleSubmit}>
|
||
|
|
<div className={styles.text}>{t('common.title')}</div>
|
||
|
|
<Input
|
||
|
|
fluid
|
||
|
|
ref={handleNameFieldRef}
|
||
|
|
name="name"
|
||
|
|
value={data.name}
|
||
|
|
maxLength={128}
|
||
|
|
className={styles.field}
|
||
|
|
onChange={handleFieldChange}
|
||
|
|
/>
|
||
|
|
<div className={styles.text}>{t('common.description')}</div>
|
||
|
|
<TextArea
|
||
|
|
as={TextareaAutosize}
|
||
|
|
name="description"
|
||
|
|
value={data.description}
|
||
|
|
maxLength={1024}
|
||
|
|
minRows={2}
|
||
|
|
spellCheck={false}
|
||
|
|
className={styles.field}
|
||
|
|
onKeyDown={handleDescriptionKeyDown}
|
||
|
|
onChange={handleFieldChange}
|
||
|
|
/>
|
||
|
|
<Button positive disabled={dequal(cleanData, defaultData)} content={t('action.save')} />
|
||
|
|
</Form>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
export default EditInformation;
|