openreplay/frontend/app/components/Session/Player/ClipPlayer/Timeline.tsx
Delirium 2cd96b0df0
Highlight UI (#2951)
* ui: start highlight ui

* ui: tag items

* ui: connecting highlights to notes api...

* Highlight feature refinements (#2948)

* ui: move clips player to foss, connect notes api to hl

* ui: tune note/hl editing, prevent zoom slider body from jumping around

* ui: safe check for tag

* ui: fix thumbnail gen

* ui: fix thumbnail gen

* ui: make player modal wider, add shadow

* ui: custom warn barge for clips

* ui: swap icon for note event wrapper

* ui: rm other, fix cancel

* ui: moving around creation modal

* ui: bg tint

* ui: rm disabled for text btn

* ui: fix ownership sorting

* ui: close player on bg click

* ui: fix query, fix min distance for default range

* ui: move hl list header out of list comp

* ui: spot list header segmented size

* Various improvements in highlights (#2955)

* ui: update hl in hlPanel comp

* ui: rm debug

* ui: fix icons file

---------

Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
2025-01-24 09:59:54 +01:00

163 lines
5.7 KiB
TypeScript

import React, {useEffect, useMemo, useContext, useState, useRef} from 'react';
import stl from '../../../Session_/Player/Controls/timeline.module.css';
import {debounce} from 'App/utils';
import {PlayerContext} from 'App/components/Session/playerContext';
import {observer} from 'mobx-react-lite';
import {useStore} from 'App/mstore';
import {DateTime, Duration} from 'luxon';
import CustomDragLayer, {OnDragCallback} from "Components/Session_/Player/Controls/components/CustomDragLayer";
import TooltipContainer from "Components/Session_/Player/Controls/components/TooltipContainer";
import TimelineTracker from "Components/Session/Player/ClipPlayer/TimelineTracker";
function Timeline({ range }: any) {
const {player, store} = useContext(PlayerContext);
const [wasPlaying, setWasPlaying] = useState(false);
const [maxWidth, setMaxWidth] = useState(0);
const {settingsStore, sessionStore} = useStore();
const startedAt = sessionStore.current.startedAt ?? 0;
const tooltipVisible = sessionStore.timeLineTooltip.isVisible;
const setTimelineHoverTime = sessionStore.setTimelineTooltip;
const timezone = sessionStore.current.timezone;
const issues = sessionStore.current.issues ?? [];
const { playing, skipToIssue, ready, endTime, devtoolsLoading, domLoading } = store.get();
const progressRef = useRef<HTMLDivElement>(null);
const timelineRef = useRef<HTMLDivElement>(null);
// const scale = 100 / endTime;
const trimmedEndTime = range[1] - range[0];
const scale = 100 / trimmedEndTime;
useEffect(() => {
const firstIssue = issues[0];
if (firstIssue && skipToIssue) {
player.jump(firstIssue.time);
}
if (progressRef.current) {
setMaxWidth(progressRef.current.clientWidth);
}
}, []);
const debouncedJump = useMemo(() => debounce(player.jump, 500), []);
const debouncedTooltipChange = useMemo(() => debounce(setTimelineHoverTime, 50), []);
const onDragEnd = () => {
if (wasPlaying) {
player.togglePlay();
}
};
const onDrag: OnDragCallback = (offset) => {
// @ts-ignore react mismatch
const p = offset.x / progressRef.current.offsetWidth;
const time = Math.max(Math.round(p * endTime), 0);
debouncedJump(time);
hideTimeTooltip();
if (playing) {
setWasPlaying(true);
player.pause();
}
};
const showTimeTooltip = (e: React.MouseEvent<HTMLDivElement>) => {
if (
e.target !== progressRef.current &&
e.target !== timelineRef.current &&
// @ts-ignore black magic
!progressRef.current.contains(e.target)
) {
return tooltipVisible && hideTimeTooltip();
}
const time = getTime(e);
if (!time) return;
const tz = settingsStore.sessionSettings.timezone.value;
const timeStr = DateTime.fromMillis(startedAt + time)
.setZone(tz)
.toFormat(`hh:mm:ss a`);
const userTimeStr = timezone
? DateTime.fromMillis(startedAt + time)
.setZone(timezone)
.toFormat(`hh:mm:ss a`)
: undefined;
const timeLineTooltip = {
time: Duration.fromMillis(time).toFormat(`mm:ss`),
localTime: timeStr,
userTime: userTimeStr,
offset: e.nativeEvent.pageX,
isVisible: true,
};
debouncedTooltipChange(timeLineTooltip);
};
const hideTimeTooltip = () => {
const timeLineTooltip = {isVisible: false};
debouncedTooltipChange(timeLineTooltip);
};
const seekProgress = (e: React.MouseEvent<HTMLDivElement>) => {
const time = getTime(e);
player.jump(time);
hideTimeTooltip();
};
const jumpToTime = (e: React.MouseEvent<HTMLDivElement>) => {
if ((e.target as HTMLDivElement).id === 'click-ignore') {
return;
}
seekProgress(e);
};
const getTime = (e: React.MouseEvent<HTMLDivElement>) => {
// @ts-ignore react mismatch
const p = e.nativeEvent.offsetX / e.target.offsetWidth;
const time = Math.round(p * trimmedEndTime) + range[0]; // Map to the defined range
return Math.max(range[0], Math.min(time, range[1])); // Clamp to range boundaries
};
// const getTime = (e: React.MouseEvent<HTMLDivElement>, customEndTime?: number) => {
// // @ts-ignore react mismatch
// const p = e.nativeEvent.offsetX / e.target.offsetWidth;
// const targetTime = customEndTime || endTime; // + rangeStart
// return Math.max(Math.round(p * targetTime), 0);
// };
return (
<div
className="flex items-center w-full"
style={{
// top: '-4px',
// zIndex: 100,
// maxWidth: 'calc(100% - 5rem)',
// left: '3.5rem',
}}
>
<div
className={stl.progress}
onClick={ready ? jumpToTime : undefined}
ref={progressRef}
role="button"
onMouseMoveCapture={showTimeTooltip}
onMouseEnter={showTimeTooltip}
onMouseLeave={hideTimeTooltip}
>
<TooltipContainer/>
<TimelineTracker scale={scale} onDragEnd={onDragEnd}/>
<CustomDragLayer
onDrag={onDrag}
minX={0}
maxX={maxWidth}
/>
<div className={stl.timeline} ref={timelineRef}>
{devtoolsLoading || domLoading || !ready ? <div className={stl.stripes}/> : null}
</div>
</div>
</div>
);
}
export default observer(Timeline);