* start moving ui to redux tlk * remove unused reducer * changes for gdpr and site types * ui: migrating duck/roles to mobx * ui: drop unreferenced types * ui: drop unreferenced types * ui: move player slice reducer to mobx family * ui: move assignments to issueReportingStore.ts * remove issues store * some fixes after issues store * remove errors reducer, drop old components * finish removing errors reducer * start moving integrations state to mobx * change(ui): funnel duck cleanup * change(ui): custom fields * change(ui): customMetrics cleanup * change(ui): customMetrics cleanup * change(ui): duck/filters minor cleanup * change(ui): duck/filters cleanup * change(ui): duck/customMetrics cleanup and upgrades * fix integrations service, fix babel config to >.25 + not ie * refactoring integrations reducers etc WIP * finish removing integrations state * some fixes for integrated check * start of projects refactoring * move api and "few" files to new project store * new batch for site -> projects * fix setid context * move all critical components, drop site duck * remove all duck/site refs, remove old components * fixup for SessionTags.tsx, remove duck/sources (?) * move session store * init sessionstore outside of context * fix userfilter * replace simple actions for session store * sessions sotre * Rtm temp (#2597) * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): search states * change(ui): search states * change(ui): search states * change(ui): fix savedSearch store * change(ui): fix savedSearch store * some fixes for session connector * change(ui): fix savedSearch store * change(ui): fix searchLive * change(ui): fix searchLive * fixes for session replay * change(ui): bookmark fetch * last components for sessions * add fetchautoplaylist * finish session reducer, remove deleted reducers * change(ui): fix the search fetch * change(ui): fix the search fetch * fix integrations call ctx * ensure ctx for sessionstore * fix(ui): checking for latest sessions path * start removing user reducer * removing user reducer pt2... * finish user store * remove rand log * fix crashes * tinkering workflow file for tracker test * making sure prefetched sessions work properly * fix conflict * fix router redirects during loading --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com>
176 lines
5.5 KiB
TypeScript
176 lines
5.5 KiB
TypeScript
import DraggableMarkers from 'Components/Session_/Player/Controls/components/ZoomDragLayer';
|
|
import React, { useEffect, useMemo, useContext, useState, useRef } from 'react';
|
|
import stl from './timeline.module.css';
|
|
import CustomDragLayer, { OnDragCallback } from './components/CustomDragLayer';
|
|
import { debounce } from 'App/utils';
|
|
import TooltipContainer from './components/TooltipContainer';
|
|
import { PlayerContext } from 'App/components/Session/playerContext';
|
|
import { observer } from 'mobx-react-lite';
|
|
import { useStore } from 'App/mstore';
|
|
import { DateTime, Duration } from 'luxon';
|
|
import { WebEventsList, MobEventsList } from './EventsList';
|
|
import NotesList from './NotesList';
|
|
import SkipIntervalsList from './SkipIntervalsList';
|
|
import TimelineTracker from 'Components/Session_/Player/Controls/TimelineTracker';
|
|
|
|
interface IProps {
|
|
isMobile?: boolean;
|
|
}
|
|
|
|
function Timeline(props: IProps) {
|
|
const { player, store } = useContext(PlayerContext);
|
|
const [wasPlaying, setWasPlaying] = useState(false);
|
|
const [maxWidth, setMaxWidth] = useState(0);
|
|
const { settingsStore, uiPlayerStore, 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 timelineZoomEnabled = uiPlayerStore.timelineZoom.enabled;
|
|
const { playing, skipToIssue, ready, endTime, devtoolsLoading, domLoading } = store.get();
|
|
|
|
const progressRef = useRef<HTMLDivElement>(null);
|
|
const timelineRef = useRef<HTMLDivElement>(null);
|
|
|
|
const scale = 100 / endTime;
|
|
|
|
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>) => {
|
|
seekProgress(e);
|
|
};
|
|
|
|
const getTime = (e: React.MouseEvent<HTMLDivElement>, customEndTime?: number) => {
|
|
// @ts-ignore react mismatch
|
|
const p = e.nativeEvent.offsetX / e.target.offsetWidth;
|
|
const targetTime = customEndTime || endTime;
|
|
|
|
return Math.max(Math.round(p * targetTime), 0);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="flex items-center absolute w-full"
|
|
style={{
|
|
top: '-4px',
|
|
zIndex: 100,
|
|
maxWidth: 'calc(100% - 1rem)',
|
|
left: '0.5rem',
|
|
}}
|
|
>
|
|
{timelineZoomEnabled ? <DraggableMarkers scale={scale} /> : null}
|
|
<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>
|
|
|
|
{props.isMobile ? <MobEventsList scale={scale} /> : <WebEventsList scale={scale} />}
|
|
<NotesList scale={scale} />
|
|
<SkipIntervalsList scale={scale} />
|
|
|
|
{/* TODO: refactor and make any sense out of this */}
|
|
|
|
{/* {issues.map((i: Issue) => (*/}
|
|
{/* <div*/}
|
|
{/* key={i.key}*/}
|
|
{/* className={stl.redEvent}*/}
|
|
{/* style={{ left: `${getTimelinePosition(i.time, scale)}%` }}*/}
|
|
{/* />*/}
|
|
{/*))}*/}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default observer(Timeline);
|