mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
44 lines
864 B
TypeScript
44 lines
864 B
TypeScript
import React, { FC } from 'react';
|
|
|
|
import { useSortable } from '@dnd-kit/sortable';
|
|
import { CSS } from '@dnd-kit/utilities';
|
|
import classNames from 'classnames';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
interface SortableImageGridItemProps {
|
|
id: number | string;
|
|
disabled?: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
const SortableItem: FC<SortableImageGridItemProps> = ({
|
|
children,
|
|
id,
|
|
disabled = false,
|
|
className,
|
|
}) => {
|
|
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({
|
|
id,
|
|
disabled,
|
|
});
|
|
|
|
const style = {
|
|
transform: CSS.Transform.toString(transform),
|
|
transition,
|
|
};
|
|
|
|
return (
|
|
<div
|
|
ref={setNodeRef}
|
|
style={style}
|
|
{...attributes}
|
|
{...listeners}
|
|
className={classNames(styles.item, className)}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { SortableItem };
|