forked from Github/frigate
* Break out live page * Improving layouts and add chip component * Improve default camera player sizing * Improve live updating * Cleanup and fit figma * Use fixed height * Masonry layout * Fix stuff * Don't force heights * Adjust scaling * Cleanup * remove sidebar (#9731) * remove sidebar * keep sidebar on mobile for now and add icons * Fix revalidation * Cleanup * Cleanup width * Add chips for activity on cameras * Remove dashboard from header * Use Inter font (#9735) * Show still image when no activity is occurring * remove unused search params * add playing check for webrtc * Don't use grid at all for single column * Fix height on mobile * a few style updates to better match figma (#9745) * Remove active objects when they become stationary * Move to sidebar only and make settings separate component * Fix layout * Animate visibility of chips * Sidebar is full screen * Fix tall aspect ratio cameras * Fix complicated aspect logic * remove * Adjust thumbnail aspect and add text * margin on single column layout * Smaller event thumb text * Simplify basic image view * Only show the red dot when camera is recording * Improve typing for camera toggles * animate chips with react-transition-group (#9763) * don't flash when going to still image * revalidate * tooltips and active tracking outline (#9766) * tooltips * fix tooltip provider and add active tracking outline * remove unused icon * remove figma comment * Get live mode working for jsmpeg * add small gradient below timeago on event thumbnails (#9767) * Create live mode hook and make sure jsmpeg can be used * Enforce env var * Use print * Remove unstable * Add tooltips to thumbnails * Put back vite * Format * Update web/src/components/player/JSMpegPlayer.tsx --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Co-authored-by: Blake Blackshear <blake@frigate.video>
101 lines
2.6 KiB
TypeScript
101 lines
2.6 KiB
TypeScript
import { baseUrl } from "@/api/baseUrl";
|
|
import { useResizeObserver } from "@/hooks/resize-observer";
|
|
// @ts-ignore we know this doesn't have types
|
|
import JSMpeg from "@cycjimmy/jsmpeg-player";
|
|
import { useEffect, useMemo, useRef } from "react";
|
|
|
|
type JSMpegPlayerProps = {
|
|
className?: string;
|
|
camera: string;
|
|
width: number;
|
|
height: number;
|
|
};
|
|
|
|
export default function JSMpegPlayer({
|
|
camera,
|
|
width,
|
|
height,
|
|
className,
|
|
}: JSMpegPlayerProps) {
|
|
const url = `${baseUrl.replace(/^http/, "ws")}live/jsmpeg/${camera}`;
|
|
const playerRef = useRef<HTMLDivElement | null>(null);
|
|
const containerRef = useRef<HTMLDivElement | null>(null);
|
|
const [{ width: containerWidth, height: containerHeight }] =
|
|
useResizeObserver(containerRef);
|
|
|
|
// Add scrollbar width (when visible) to the available observer width to eliminate screen juddering.
|
|
// https://github.com/blakeblackshear/frigate/issues/1657
|
|
let scrollBarWidth = 0;
|
|
if (window.innerWidth && document.body.offsetWidth) {
|
|
scrollBarWidth = window.innerWidth - document.body.offsetWidth;
|
|
}
|
|
const availableWidth = scrollBarWidth
|
|
? containerWidth + scrollBarWidth
|
|
: containerWidth;
|
|
const aspectRatio = width / height;
|
|
|
|
const scaledHeight = useMemo(() => {
|
|
const scaledHeight = Math.floor(availableWidth / aspectRatio);
|
|
const finalHeight = Math.min(scaledHeight, height);
|
|
|
|
if (containerHeight < finalHeight) {
|
|
return containerHeight;
|
|
}
|
|
|
|
if (finalHeight > 0) {
|
|
return finalHeight;
|
|
}
|
|
|
|
return 100;
|
|
}, [availableWidth, aspectRatio, height]);
|
|
const scaledWidth = useMemo(
|
|
() => Math.ceil(scaledHeight * aspectRatio - scrollBarWidth),
|
|
[scaledHeight, aspectRatio, scrollBarWidth]
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!playerRef.current) {
|
|
return;
|
|
}
|
|
|
|
const video = new JSMpeg.VideoElement(
|
|
playerRef.current,
|
|
url,
|
|
{},
|
|
{ protocols: [], audio: false, videoBufferSize: 1024 * 1024 * 4 }
|
|
);
|
|
|
|
const fullscreen = () => {
|
|
if (video.els.canvas.webkitRequestFullScreen) {
|
|
video.els.canvas.webkitRequestFullScreen();
|
|
} else {
|
|
video.els.canvas.mozRequestFullScreen();
|
|
}
|
|
};
|
|
|
|
video.els.canvas.addEventListener("click", fullscreen);
|
|
|
|
return () => {
|
|
if (playerRef.current) {
|
|
try {
|
|
video.destroy();
|
|
} catch (e) {}
|
|
playerRef.current = null;
|
|
}
|
|
};
|
|
}, [url]);
|
|
|
|
return (
|
|
<div className={className} ref={containerRef}>
|
|
<div
|
|
ref={playerRef}
|
|
className={`jsmpeg`}
|
|
style={{
|
|
height: `${scaledHeight}px`,
|
|
width: `${scaledWidth}px`,
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|