rename vars and change which div is absolutely positioned (#10358)

This commit is contained in:
Josh Hawkins
2024-03-10 08:23:36 -05:00
committed by GitHub
parent efaa95b742
commit 70825bc938
4 changed files with 24 additions and 21 deletions

View File

@@ -47,7 +47,7 @@ export function MotionReviewTimeline({
onHandlebarDraggingChange,
}: MotionReviewTimelineProps) {
const [isDragging, setIsDragging] = useState(false);
const scrollTimeRef = useRef<HTMLDivElement>(null);
const handlebarRef = useRef<HTMLDivElement>(null);
const timelineRef = useRef<HTMLDivElement>(null);
const handlebarTimeRef = useRef<HTMLDivElement>(null);
const timelineDuration = useMemo(
@@ -69,7 +69,7 @@ export function MotionReviewTimeline({
useDraggableHandler({
contentRef,
timelineRef,
scrollTimeRef,
handlebarRef,
alignStartDateToTimeline,
alignEndDateToTimeline,
segmentDuration,
@@ -145,7 +145,7 @@ export function MotionReviewTimeline({
return (
<ReviewTimeline
timelineRef={timelineRef}
scrollTimeRef={scrollTimeRef}
handlebarRef={handlebarRef}
handlebarTimeRef={handlebarTimeRef}
handleMouseMove={handleMouseMove}
handleMouseUp={handleMouseUp}