Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 5x 3x | import { updateProject } from '@/entities/project/model';
import { ProjectModalBase } from '@/entities/project/ui/_shared';
import { UI_LABELS } from '@/shared/constants';
interface Props {
projectId: string;
initialName: string;
onClose: () => void;
}
export const UpdateProjectModal = ({ projectId, initialName, onClose }: Props) => (
<ProjectModalBase
data-testid="update-modal"
title={UI_LABELS.MODAL_UPDATE}
buttonLabel={UI_LABELS.MODAL_UPDATE_BUTTON}
onClose={onClose}
initialValue={initialName}
buildArgs={(name) => ({ id: projectId, changes: { name } })}
onSubmitAction={async (dispatch, args) => {
await dispatch(updateProject(args)).unwrap();
}}
/>
);
|