Files
Aiq-Lite-UI/src/features/dashboard/components/videoFeed/VideoFeed.tsx

89 lines
2.7 KiB
TypeScript
Raw Normal View History

import { Stage, Layer, Image, Rect } from "react-konva";
import type { SightingType } from "../../../../utils/types";
import { useCreateVideoSnapshot } from "../../hooks/useCreateVideoSnapshot";
import { useEffect, useState } from "react";
type VideoFeedProps = {
mostRecentSighting: SightingType;
isLoading: boolean;
};
const VideoFeed = ({ mostRecentSighting, isLoading }: VideoFeedProps) => {
const [size, setSize] = useState<{ width: number; height: number }>({ width: 1280, height: 960 });
const [mode, setMode] = useState<number>(0);
const { image, plateRect, plateTrack } = useCreateVideoSnapshot(mostRecentSighting);
const handleModeChange = (newMode: number) => {
if (newMode > 2) setMode(0);
else setMode(newMode);
};
useEffect(() => {
const updateSize = () => {
const width = window.innerWidth * 0.48;
const height = (width * 2) / 3;
setSize({ width, height });
};
updateSize();
window.addEventListener("resize", updateSize);
return () => window.removeEventListener("resize", updateSize);
}, []);
if (isLoading) return <>Loading...</>;
return (
<div className="w-[70%] mt-[2%]">
<Stage width={size.width} height={size.height} onClick={() => handleModeChange(mode + 1)}>
<Layer>
<Image
image={image}
height={size.height}
width={size.width}
onMouseEnter={(e) => {
const container = e.target.getStage()?.container();
if (container) container.style.cursor = "pointer";
}}
onMouseLeave={(e) => {
const container = e.target.getStage()?.container();
if (container) container.style.cursor = "default";
}}
cornerRadius={10}
/>
</Layer>
{plateRect && mode === 1 && (
<Layer>
<Rect
x={plateRect?.[0] * size.width}
y={plateRect?.[1] * size.height}
width={plateRect?.[2] * size.width}
height={plateRect?.[3] * size.height}
stroke="blue"
strokeWidth={4}
cornerRadius={5}
/>
</Layer>
)}
{plateTrack && mode === 2 && (
<Layer>
{plateTrack.map((rect, index) => (
<Rect
key={index}
x={rect[0] * size.width}
y={rect[1] * size.height}
width={rect[2] * size.width}
height={rect[3] * size.height}
stroke="red"
strokeWidth={2}
cornerRadius={5}
/>
))}
</Layer>
)}
</Stage>
</div>
);
};
export default VideoFeed;