mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 12:23:51 +00:00
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { useRef } from 'react';
|
|
import { useSortable } from '@dnd-kit/sortable';
|
|
import { CSS } from '@dnd-kit/utilities';
|
|
import { IoReorderTwo } from '@react-icons/all-files/io5/IoReorderTwo';
|
|
import { OntimeBlock } from 'ontime-types';
|
|
|
|
import { cx } from '../../../common/utils/styleUtils';
|
|
import EditableBlockTitle from '../common/EditableBlockTitle';
|
|
|
|
import BlockDelete from './BlockDelete';
|
|
|
|
import style from './BlockBlock.module.scss';
|
|
|
|
interface BlockBlockProps {
|
|
data: OntimeBlock;
|
|
hasCursor: boolean;
|
|
onDelete: () => void;
|
|
}
|
|
|
|
export default function BlockBlock(props: BlockBlockProps) {
|
|
const { data, hasCursor, onDelete } = props;
|
|
|
|
const handleRef = useRef<null | HTMLSpanElement>(null);
|
|
|
|
const {
|
|
attributes: dragAttributes,
|
|
listeners: dragListeners,
|
|
setNodeRef,
|
|
transform,
|
|
transition,
|
|
} = useSortable({
|
|
id: data.id,
|
|
animateLayoutChanges: () => false,
|
|
});
|
|
|
|
const dragStyle = {
|
|
transform: CSS.Translate.toString(transform),
|
|
transition,
|
|
};
|
|
|
|
const blockClasses = cx([style.block, hasCursor ? style.hasCursor : null]);
|
|
|
|
return (
|
|
<div className={blockClasses} ref={setNodeRef} style={dragStyle}>
|
|
<span className={style.drag} ref={handleRef} {...dragAttributes} {...dragListeners}>
|
|
<IoReorderTwo />
|
|
</span>
|
|
<EditableBlockTitle title={data.title} eventId={data.id} placeholder='Block title' />
|
|
<BlockDelete onDelete={onDelete} />
|
|
</div>
|
|
);
|
|
}
|