2024-02-23 01:03:34 +01:00
|
|
|
import DynamicVideoPlayer, {
|
|
|
|
DynamicVideoController,
|
|
|
|
} from "@/components/player/DynamicVideoPlayer";
|
|
|
|
import EventReviewTimeline from "@/components/timeline/EventReviewTimeline";
|
2024-03-05 20:55:44 +01:00
|
|
|
import MotionReviewTimeline from "@/components/timeline/MotionReviewTimeline";
|
2024-02-23 01:03:34 +01:00
|
|
|
import { Button } from "@/components/ui/button";
|
2024-02-28 23:23:56 +01:00
|
|
|
import { Preview } from "@/types/preview";
|
2024-03-05 20:55:44 +01:00
|
|
|
import { MotionData, ReviewSegment, ReviewSeverity } from "@/types/review";
|
2024-03-04 05:21:30 +01:00
|
|
|
import { getChunkedTimeDay } from "@/utils/timelineUtil";
|
2024-03-05 13:03:10 +01:00
|
|
|
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
2024-02-23 01:03:34 +01:00
|
|
|
import { IoMdArrowRoundBack } from "react-icons/io";
|
|
|
|
import { useNavigate } from "react-router-dom";
|
2024-03-05 20:55:44 +01:00
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
const SEGMENT_DURATION = 30;
|
2024-02-23 01:03:34 +01:00
|
|
|
|
2024-03-05 13:03:10 +01:00
|
|
|
type DesktopRecordingViewProps = {
|
|
|
|
startCamera: string;
|
|
|
|
startTime: number;
|
|
|
|
severity: ReviewSeverity;
|
|
|
|
reviewItems: ReviewSegment[];
|
|
|
|
allCameras: string[];
|
|
|
|
allPreviews?: Preview[];
|
|
|
|
};
|
|
|
|
export function DesktopRecordingView({
|
|
|
|
startCamera,
|
|
|
|
startTime,
|
|
|
|
severity,
|
|
|
|
reviewItems,
|
|
|
|
allCameras,
|
|
|
|
allPreviews,
|
|
|
|
}: DesktopRecordingViewProps) {
|
|
|
|
const navigate = useNavigate();
|
|
|
|
const contentRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
|
|
|
|
// controller state
|
|
|
|
|
|
|
|
const [playerReady, setPlayerReady] = useState(false);
|
|
|
|
const [mainCamera, setMainCamera] = useState(startCamera);
|
|
|
|
const videoPlayersRef = useRef<{ [camera: string]: DynamicVideoController }>(
|
|
|
|
{},
|
|
|
|
);
|
|
|
|
|
|
|
|
// timeline time
|
|
|
|
|
|
|
|
const timeRange = useMemo(() => getChunkedTimeDay(startTime), [startTime]);
|
|
|
|
const [selectedRangeIdx, setSelectedRangeIdx] = useState(
|
|
|
|
timeRange.ranges.findIndex((chunk) => {
|
|
|
|
return chunk.start <= startTime && chunk.end >= startTime;
|
|
|
|
}),
|
|
|
|
);
|
2024-03-08 01:31:43 +01:00
|
|
|
const currentTimeRange = useMemo(
|
|
|
|
() => timeRange.ranges[selectedRangeIdx],
|
|
|
|
[selectedRangeIdx, timeRange],
|
|
|
|
);
|
2024-03-05 13:03:10 +01:00
|
|
|
|
|
|
|
// move to next clip
|
|
|
|
useEffect(() => {
|
|
|
|
if (
|
|
|
|
!videoPlayersRef.current &&
|
|
|
|
Object.values(videoPlayersRef.current).length > 0
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-03-08 01:31:43 +01:00
|
|
|
const mainController = videoPlayersRef.current[mainCamera];
|
2024-03-05 13:03:10 +01:00
|
|
|
|
2024-03-08 01:31:43 +01:00
|
|
|
if (mainController) {
|
|
|
|
mainController.onClipChangedEvent((dir) => {
|
|
|
|
if (dir == "forward") {
|
|
|
|
if (selectedRangeIdx < timeRange.ranges.length - 1) {
|
|
|
|
setSelectedRangeIdx(selectedRangeIdx + 1);
|
|
|
|
}
|
2024-03-05 13:03:10 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2024-03-08 01:31:43 +01:00
|
|
|
}, [selectedRangeIdx, timeRange, videoPlayersRef, playerReady, mainCamera]);
|
2024-03-05 13:03:10 +01:00
|
|
|
|
|
|
|
// scrubbing and timeline state
|
|
|
|
|
|
|
|
const [scrubbing, setScrubbing] = useState(false);
|
|
|
|
const [currentTime, setCurrentTime] = useState<number>(startTime);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (scrubbing) {
|
2024-03-08 01:31:43 +01:00
|
|
|
if (
|
|
|
|
currentTime > currentTimeRange.end + 60 ||
|
|
|
|
currentTime < currentTimeRange.start - 60
|
|
|
|
) {
|
|
|
|
const index = timeRange.ranges.findIndex(
|
|
|
|
(seg) => seg.start <= currentTime && seg.end >= currentTime,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
setSelectedRangeIdx(index);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-03-05 13:03:10 +01:00
|
|
|
Object.values(videoPlayersRef.current).forEach((controller) => {
|
|
|
|
controller.scrubToTimestamp(currentTime);
|
|
|
|
});
|
|
|
|
}
|
2024-03-08 01:31:43 +01:00
|
|
|
}, [currentTime, scrubbing, timeRange, currentTimeRange]);
|
2024-03-05 13:03:10 +01:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!scrubbing) {
|
|
|
|
videoPlayersRef.current[mainCamera]?.seekToTimestamp(currentTime, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// we only want to seek when user stops scrubbing
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, [scrubbing]);
|
|
|
|
|
|
|
|
const onSelectCamera = useCallback(
|
|
|
|
(newCam: string) => {
|
2024-03-08 01:31:43 +01:00
|
|
|
const lastController = videoPlayersRef.current[mainCamera];
|
|
|
|
const newController = videoPlayersRef.current[newCam];
|
|
|
|
lastController.onPlayerTimeUpdate(undefined);
|
|
|
|
lastController.onClipChangedEvent(undefined);
|
|
|
|
lastController.scrubToTimestamp(currentTime);
|
|
|
|
newController.onCanPlay(() => {
|
|
|
|
newController.seekToTimestamp(currentTime, true);
|
|
|
|
newController.onCanPlay(null);
|
|
|
|
});
|
|
|
|
newController.onPlayerTimeUpdate((timestamp: number) => {
|
|
|
|
setCurrentTime(timestamp);
|
|
|
|
|
|
|
|
allCameras.forEach((cam) => {
|
|
|
|
if (cam != newCam) {
|
|
|
|
videoPlayersRef.current[cam]?.scrubToTimestamp(
|
|
|
|
Math.floor(timestamp),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2024-03-05 13:03:10 +01:00
|
|
|
setMainCamera(newCam);
|
|
|
|
},
|
|
|
|
[allCameras, currentTime, mainCamera],
|
|
|
|
);
|
|
|
|
|
2024-03-05 20:55:44 +01:00
|
|
|
// motion timeline data
|
|
|
|
|
|
|
|
const { data: motionData } = useSWR<MotionData[]>(
|
|
|
|
severity == "significant_motion"
|
|
|
|
? [
|
|
|
|
"review/activity",
|
|
|
|
{
|
|
|
|
before: timeRange.end,
|
|
|
|
after: timeRange.start,
|
|
|
|
scale: SEGMENT_DURATION / 2,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: null,
|
|
|
|
);
|
|
|
|
|
2024-03-05 13:03:10 +01:00
|
|
|
return (
|
|
|
|
<div ref={contentRef} className="relative size-full">
|
|
|
|
<Button
|
|
|
|
className="absolute top-0 left-0 rounded-lg"
|
|
|
|
onClick={() => navigate(-1)}
|
|
|
|
>
|
|
|
|
<IoMdArrowRoundBack className="size-5 mr-[10px]" />
|
|
|
|
Back
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<div className="absolute h-32 left-2 right-28 bottom-4 flex justify-center gap-1">
|
|
|
|
{allCameras.map((cam) => {
|
|
|
|
if (cam == mainCamera) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
key={cam}
|
|
|
|
className="fixed left-96 right-96 top-[40%] -translate-y-[50%]"
|
|
|
|
>
|
|
|
|
<DynamicVideoPlayer
|
|
|
|
camera={cam}
|
2024-03-08 01:31:43 +01:00
|
|
|
timeRange={currentTimeRange}
|
2024-03-05 13:03:10 +01:00
|
|
|
cameraPreviews={allPreviews ?? []}
|
2024-03-08 01:31:43 +01:00
|
|
|
preloadRecordings
|
2024-03-05 13:03:10 +01:00
|
|
|
onControllerReady={(controller) => {
|
|
|
|
videoPlayersRef.current[cam] = controller;
|
|
|
|
setPlayerReady(true);
|
|
|
|
controller.onPlayerTimeUpdate((timestamp: number) => {
|
|
|
|
setCurrentTime(timestamp);
|
|
|
|
|
|
|
|
allCameras.forEach((otherCam) => {
|
|
|
|
if (cam != otherCam) {
|
|
|
|
videoPlayersRef.current[otherCam]?.scrubToTimestamp(
|
|
|
|
Math.floor(timestamp),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-03-08 01:31:43 +01:00
|
|
|
controller.onCanPlay(() => {
|
|
|
|
controller.seekToTimestamp(startTime, true);
|
|
|
|
controller.onCanPlay(null);
|
|
|
|
});
|
2024-03-05 13:03:10 +01:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div key={cam} className="aspect-video flex items-center">
|
|
|
|
<DynamicVideoPlayer
|
|
|
|
className="size-full"
|
|
|
|
camera={cam}
|
2024-03-08 01:31:43 +01:00
|
|
|
timeRange={currentTimeRange}
|
2024-03-05 13:03:10 +01:00
|
|
|
cameraPreviews={allPreviews ?? []}
|
|
|
|
previewOnly
|
2024-03-08 01:31:43 +01:00
|
|
|
preloadRecordings
|
2024-03-05 13:03:10 +01:00
|
|
|
onControllerReady={(controller) => {
|
|
|
|
videoPlayersRef.current[cam] = controller;
|
|
|
|
setPlayerReady(true);
|
|
|
|
controller.scrubToTimestamp(startTime);
|
|
|
|
}}
|
|
|
|
onClick={() => onSelectCamera(cam)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="absolute overflow-hidden w-56 inset-y-0 right-0">
|
2024-03-05 20:55:44 +01:00
|
|
|
{severity != "significant_motion" ? (
|
|
|
|
<EventReviewTimeline
|
|
|
|
segmentDuration={30}
|
|
|
|
timestampSpread={15}
|
|
|
|
timelineStart={timeRange.end}
|
|
|
|
timelineEnd={timeRange.start}
|
|
|
|
showHandlebar
|
|
|
|
handlebarTime={currentTime}
|
|
|
|
setHandlebarTime={setCurrentTime}
|
|
|
|
events={reviewItems}
|
|
|
|
severityType={severity}
|
|
|
|
contentRef={contentRef}
|
|
|
|
onHandlebarDraggingChange={(scrubbing) => setScrubbing(scrubbing)}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<MotionReviewTimeline
|
|
|
|
segmentDuration={30}
|
|
|
|
timestampSpread={15}
|
|
|
|
timelineStart={timeRange.end}
|
|
|
|
timelineEnd={timeRange.start}
|
|
|
|
showHandlebar
|
|
|
|
handlebarTime={currentTime}
|
|
|
|
setHandlebarTime={setCurrentTime}
|
|
|
|
events={reviewItems}
|
|
|
|
motion_events={motionData ?? []}
|
|
|
|
severityType={severity}
|
|
|
|
contentRef={contentRef}
|
|
|
|
onHandlebarDraggingChange={(scrubbing) => setScrubbing(scrubbing)}
|
|
|
|
/>
|
|
|
|
)}
|
2024-03-05 13:03:10 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
type MobileRecordingViewProps = {
|
2024-03-05 20:55:44 +01:00
|
|
|
startCamera: string;
|
|
|
|
startTime: number;
|
|
|
|
severity: ReviewSeverity;
|
2024-02-23 01:03:34 +01:00
|
|
|
reviewItems: ReviewSegment[];
|
|
|
|
relevantPreviews?: Preview[];
|
|
|
|
};
|
2024-03-05 13:03:10 +01:00
|
|
|
export function MobileRecordingView({
|
2024-03-05 20:55:44 +01:00
|
|
|
startCamera,
|
|
|
|
startTime,
|
|
|
|
severity,
|
2024-02-23 01:03:34 +01:00
|
|
|
reviewItems,
|
|
|
|
relevantPreviews,
|
2024-03-05 13:03:10 +01:00
|
|
|
}: MobileRecordingViewProps) {
|
2024-02-23 01:03:34 +01:00
|
|
|
const navigate = useNavigate();
|
|
|
|
const contentRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
|
2024-02-26 17:04:56 +01:00
|
|
|
// controller state
|
|
|
|
|
|
|
|
const [playerReady, setPlayerReady] = useState(false);
|
|
|
|
const controllerRef = useRef<DynamicVideoController | undefined>(undefined);
|
|
|
|
|
2024-02-23 01:03:34 +01:00
|
|
|
// timeline time
|
|
|
|
|
2024-03-05 20:55:44 +01:00
|
|
|
const timeRange = useMemo(() => getChunkedTimeDay(startTime), [startTime]);
|
2024-02-23 01:03:34 +01:00
|
|
|
const [selectedRangeIdx, setSelectedRangeIdx] = useState(
|
|
|
|
timeRange.ranges.findIndex((chunk) => {
|
2024-03-05 20:55:44 +01:00
|
|
|
return chunk.start <= startTime && chunk.end >= startTime;
|
2024-02-28 23:23:56 +01:00
|
|
|
}),
|
2024-02-23 01:03:34 +01:00
|
|
|
);
|
2024-03-08 01:31:43 +01:00
|
|
|
const currentTimeRange = useMemo(
|
|
|
|
() => timeRange.ranges[selectedRangeIdx],
|
|
|
|
[selectedRangeIdx, timeRange],
|
|
|
|
);
|
2024-02-23 01:03:34 +01:00
|
|
|
|
|
|
|
// move to next clip
|
|
|
|
useEffect(() => {
|
|
|
|
if (!controllerRef.current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-02-26 17:04:56 +01:00
|
|
|
controllerRef.current.onClipChangedEvent((dir) => {
|
2024-03-08 01:31:43 +01:00
|
|
|
if (dir == "forward") {
|
|
|
|
if (selectedRangeIdx < timeRange.ranges.length - 1) {
|
|
|
|
setSelectedRangeIdx(selectedRangeIdx + 1);
|
|
|
|
}
|
2024-02-26 17:04:56 +01:00
|
|
|
}
|
|
|
|
});
|
2024-02-28 23:23:56 +01:00
|
|
|
}, [playerReady, selectedRangeIdx, timeRange]);
|
2024-02-23 01:03:34 +01:00
|
|
|
|
|
|
|
// scrubbing and timeline state
|
|
|
|
|
|
|
|
const [scrubbing, setScrubbing] = useState(false);
|
|
|
|
const [currentTime, setCurrentTime] = useState<number>(
|
2024-03-05 20:55:44 +01:00
|
|
|
startTime || Date.now() / 1000,
|
2024-02-23 01:03:34 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (scrubbing) {
|
2024-03-08 01:31:43 +01:00
|
|
|
if (
|
|
|
|
currentTime > currentTimeRange.end + 60 ||
|
|
|
|
currentTime < currentTimeRange.start - 60
|
|
|
|
) {
|
|
|
|
const index = timeRange.ranges.findIndex(
|
|
|
|
(seg) => seg.start <= currentTime && seg.end >= currentTime,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
setSelectedRangeIdx(index);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-02-23 01:03:34 +01:00
|
|
|
controllerRef.current?.scrubToTimestamp(currentTime);
|
|
|
|
}
|
2024-03-08 01:31:43 +01:00
|
|
|
}, [currentTime, scrubbing, currentTimeRange, timeRange]);
|
2024-02-23 01:03:34 +01:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!scrubbing) {
|
|
|
|
controllerRef.current?.seekToTimestamp(currentTime, true);
|
|
|
|
}
|
2024-02-28 23:23:56 +01:00
|
|
|
|
|
|
|
// we only want to seek when user stops scrubbing
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
2024-02-26 17:04:56 +01:00
|
|
|
}, [scrubbing]);
|
2024-02-23 01:03:34 +01:00
|
|
|
|
2024-03-05 20:55:44 +01:00
|
|
|
// motion timeline data
|
|
|
|
|
|
|
|
const { data: motionData } = useSWR<MotionData[]>(
|
|
|
|
severity == "significant_motion"
|
|
|
|
? [
|
|
|
|
"review/activity",
|
|
|
|
{
|
|
|
|
before: timeRange.end,
|
|
|
|
after: timeRange.start,
|
|
|
|
scale: SEGMENT_DURATION / 2,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: null,
|
|
|
|
);
|
|
|
|
|
2024-02-23 01:03:34 +01:00
|
|
|
return (
|
2024-03-04 14:35:10 +01:00
|
|
|
<div ref={contentRef} className="flex flex-col relative w-full h-full">
|
2024-03-05 13:03:10 +01:00
|
|
|
<Button className="rounded-lg" onClick={() => navigate(-1)}>
|
2024-02-28 04:40:57 +01:00
|
|
|
<IoMdArrowRoundBack className="size-5 mr-[10px]" />
|
2024-02-23 01:03:34 +01:00
|
|
|
Back
|
|
|
|
</Button>
|
|
|
|
|
2024-03-05 13:03:10 +01:00
|
|
|
<div>
|
2024-02-23 01:03:34 +01:00
|
|
|
<DynamicVideoPlayer
|
2024-03-05 20:55:44 +01:00
|
|
|
camera={startCamera}
|
2024-03-08 01:31:43 +01:00
|
|
|
timeRange={currentTimeRange}
|
2024-02-23 01:03:34 +01:00
|
|
|
cameraPreviews={relevantPreviews || []}
|
2024-03-08 01:31:43 +01:00
|
|
|
preloadRecordings
|
2024-02-23 01:03:34 +01:00
|
|
|
onControllerReady={(controller) => {
|
|
|
|
controllerRef.current = controller;
|
2024-02-26 17:04:56 +01:00
|
|
|
setPlayerReady(true);
|
2024-02-23 01:03:34 +01:00
|
|
|
controllerRef.current.onPlayerTimeUpdate((timestamp: number) => {
|
|
|
|
setCurrentTime(timestamp);
|
|
|
|
});
|
|
|
|
|
2024-03-05 20:55:44 +01:00
|
|
|
controllerRef.current?.seekToTimestamp(startTime, true);
|
2024-02-23 01:03:34 +01:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2024-03-05 13:03:10 +01:00
|
|
|
<div className="flex-grow overflow-hidden">
|
2024-03-05 20:55:44 +01:00
|
|
|
{severity != "significant_motion" ? (
|
|
|
|
<EventReviewTimeline
|
|
|
|
segmentDuration={30}
|
|
|
|
timestampSpread={15}
|
|
|
|
timelineStart={timeRange.end}
|
|
|
|
timelineEnd={timeRange.start}
|
|
|
|
showHandlebar
|
|
|
|
handlebarTime={currentTime}
|
|
|
|
setHandlebarTime={setCurrentTime}
|
|
|
|
events={reviewItems}
|
|
|
|
severityType={severity}
|
|
|
|
contentRef={contentRef}
|
|
|
|
onHandlebarDraggingChange={(scrubbing) => setScrubbing(scrubbing)}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<MotionReviewTimeline
|
|
|
|
segmentDuration={30}
|
|
|
|
timestampSpread={15}
|
|
|
|
timelineStart={timeRange.end}
|
|
|
|
timelineEnd={timeRange.start}
|
|
|
|
showHandlebar
|
|
|
|
handlebarTime={currentTime}
|
|
|
|
setHandlebarTime={setCurrentTime}
|
|
|
|
events={reviewItems}
|
|
|
|
motion_events={motionData ?? []}
|
|
|
|
severityType={severity}
|
|
|
|
contentRef={contentRef}
|
|
|
|
onHandlebarDraggingChange={(scrubbing) => setScrubbing(scrubbing)}
|
|
|
|
/>
|
|
|
|
)}
|
2024-02-23 01:03:34 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|