File size: 961 Bytes
41a71fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { classNames } from '@/shared/lib/classNames/classNames';
import { Button, ButtonSize, ButtonTheme } from '@/shared/ui/Button';
import { usePostStore } from '../../model/store/usePostStore';
import cls from './EditPost.module.scss';

interface EditPostProps {
    className?: string;
    postId: number;
}

export const EditPost = (props: EditPostProps) => {
    const { className, postId } = props;
    const toggleModal = usePostStore((state) => state.toggleModal);
    const changingEditablePost = usePostStore((state) => state.changingEditablePost);

    const openEditPostForm = (id: number) => {
        changingEditablePost(id);
        toggleModal();
    };

    return (
        <Button
            className={classNames(cls.EditPost, {}, [className])}
            theme={ButtonTheme.PRIMARY}
            size={ButtonSize.S}
            onClick={() => openEditPostForm(postId)}
        >
            Изменить
        </Button>
    );
};