mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-19 14:14:17 +00:00
d81f5fcfe1
* chore: add new icons package and remove the old one * chore: update and consolidate imports * chore: missed import
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { useEffect, useRef } from 'react';
|
|
import { IoCheckmarkDone, IoClose, IoReorderTwo } from 'react-icons/io5';
|
|
import { Button } from '@chakra-ui/react';
|
|
import { useSortable } from '@dnd-kit/sortable';
|
|
import { CSS } from '@dnd-kit/utilities';
|
|
import { OntimeDelay } from 'ontime-types';
|
|
|
|
import DelayInput from '../../../common/components/input/delay-input/DelayInput';
|
|
import { useEventAction } from '../../../common/hooks/useEventAction';
|
|
import { cx } from '../../../common/utils/styleUtils';
|
|
|
|
import style from './DelayBlock.module.scss';
|
|
|
|
interface DelayBlockProps {
|
|
data: OntimeDelay;
|
|
hasCursor: boolean;
|
|
}
|
|
|
|
export default function DelayBlock(props: DelayBlockProps) {
|
|
const { data, hasCursor } = props;
|
|
const { applyDelay, deleteEvent } = useEventAction();
|
|
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,
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (hasCursor) {
|
|
handleRef?.current?.focus();
|
|
}
|
|
}, [hasCursor]);
|
|
|
|
const applyDelayHandler = () => {
|
|
applyDelay(data.id);
|
|
};
|
|
|
|
const cancelDelayHandler = () => {
|
|
deleteEvent([data.id]);
|
|
};
|
|
|
|
const blockClasses = cx([style.delay, hasCursor ? style.hasCursor : null]);
|
|
|
|
return (
|
|
<div className={blockClasses} ref={setNodeRef} style={dragStyle}>
|
|
<span className={style.drag} ref={handleRef} {...dragAttributes} {...dragListeners}>
|
|
<IoReorderTwo />
|
|
</span>
|
|
<DelayInput eventId={data.id} duration={data.duration} />
|
|
<div className={style.actionButtons}>
|
|
<Button onClick={applyDelayHandler} size='sm' leftIcon={<IoCheckmarkDone />} variant='ontime-ghosted-white'>
|
|
Make permanent
|
|
</Button>
|
|
<Button onClick={cancelDelayHandler} size='sm' leftIcon={<IoClose />} variant='ontime-ghosted-white'>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|