import React, { useEffect, useMemo, useContext, useState, useRef } from 'react'; import { connect } from 'react-redux'; import { Icon } from 'UI' import TimeTracker from './TimeTracker'; import stl from './timeline.module.css'; import { setTimelinePointer, setTimelineHoverTime } from 'Duck/sessions'; import DraggableCircle from './components/DraggableCircle'; 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 Issue from "Types/session/issue"; function getTimelinePosition(value: number, scale: number) { const pos = value * scale; return pos > 100 ? 99 : pos; } interface IProps { issues: Issue[] setTimelineHoverTime: (t: number) => void startedAt: number tooltipVisible: boolean } function Timeline(props: IProps) { const { player, store } = useContext(PlayerContext) const [wasPlaying, setWasPlaying] = useState(false) const { notesStore, settingsStore } = useStore(); const { playing, time, skipIntervals, eventList: events, skip, skipToIssue, ready, endTime, live, liveTimeTravel, } = store.get() const { issues } = props; const notes = notesStore.sessionNotes const progressRef = useRef(null) const timelineRef = useRef(null) const scale = 100 / endTime; useEffect(() => { const firstIssue = issues[0]; if (firstIssue && skipToIssue) { player.jump(firstIssue.time); } }, []) const debouncedJump = useMemo(() => debounce(player.jump, 500), []) const debouncedTooltipChange = useMemo(() => debounce(props.setTimelineHoverTime, 50), []) const onDragEnd = () => { if (live && !liveTimeTravel) return; if (wasPlaying) { player.togglePlay(); } }; const onDrag: OnDragCallback = (offset) => { if ((live && !liveTimeTravel) || !progressRef.current) return; 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 getLiveTime = (e: React.MouseEvent) => { const duration = new Date().getTime() - props.startedAt; const p = e.nativeEvent.offsetX / e.target.offsetWidth; const time = Math.max(Math.round(p * duration), 0); return [time, duration]; }; const showTimeTooltip = (e: React.MouseEvent) => { if (e.target !== progressRef.current && e.target !== timelineRef.current) { return props.tooltipVisible && hideTimeTooltip(); } let timeLineTooltip; if (live) { const [time, duration] = getLiveTime(e); timeLineTooltip = { time: Duration.fromMillis(duration - time).toFormat(`-mm:ss`), offset: e.nativeEvent.offsetX, isVisible: true, }; } else { const time = getTime(e); const tz = settingsStore.sessionSettings.timezone.value const timeStr = DateTime.fromMillis(props.startedAt + time).setZone(tz).toFormat(`hh:mm:ss a`) timeLineTooltip = { time: Duration.fromMillis(time).toFormat(`mm:ss`), timeStr, offset: e.nativeEvent.offsetX, isVisible: true, }; } debouncedTooltipChange(timeLineTooltip); } const hideTimeTooltip = () => { const timeLineTooltip = { isVisible: false }; debouncedTooltipChange(timeLineTooltip); }; const seekProgress = (e: React.MouseEvent) => { const time = getTime(e); player.jump(time); hideTimeTooltip(); }; const loadAndSeek = async (e: React.MouseEvent) => { e.persist(); await player.toggleTimetravel(); setTimeout(() => { seekProgress(e); }); }; const jumpToTime = (e: React.MouseEvent) => { if (live && !liveTimeTravel) { loadAndSeek(e); } else { seekProgress(e); } }; const getTime = (e: React.MouseEvent, customEndTime?: number) => { const p = e.nativeEvent.offsetX / e.target.offsetWidth; const targetTime = customEndTime || endTime; const time = Math.max(Math.round(p * targetTime), 0); return time; }; return (
{/* custo color is live */} {!live && skip ? skipIntervals.map((interval) => (
)) : null}
{events.map((e) => (
))} {issues.map((i: Issue) => (
))} {notes.map((note) => note.timestamp > 0 ? (
) : null)}
) } export default connect( (state: any) => ({ issues: state.getIn(['sessions', 'current']).issues || [], startedAt: state.getIn(['sessions', 'current']).startedAt || 0, tooltipVisible: state.getIn(['sessions', 'timeLineTooltip', 'isVisible']), }), { setTimelinePointer, setTimelineHoverTime } )(observer(Timeline))