Compare commits
6 Commits
feature/si
...
feature/se
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a99a15342 | |||
| 8dac436831 | |||
| 73c67ad992 | |||
| 9394793669 | |||
| 3b7487da09 | |||
| a299960dfb |
@@ -22,6 +22,7 @@
|
|||||||
"react": "^19.2.0",
|
"react": "^19.2.0",
|
||||||
"react-dom": "^19.2.0",
|
"react-dom": "^19.2.0",
|
||||||
"react-konva": "^19.2.1",
|
"react-konva": "^19.2.1",
|
||||||
|
"react-modal": "^3.16.3",
|
||||||
"tailwindcss": "^4.1.18"
|
"tailwindcss": "^4.1.18"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -30,6 +31,7 @@
|
|||||||
"@types/node": "^24.10.1",
|
"@types/node": "^24.10.1",
|
||||||
"@types/react": "^19.2.5",
|
"@types/react": "^19.2.5",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
|
"@types/react-modal": "^3.16.3",
|
||||||
"@vitejs/plugin-react": "^5.1.1",
|
"@vitejs/plugin-react": "^5.1.1",
|
||||||
"eslint": "^9.39.1",
|
"eslint": "^9.39.1",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import type { CameraSettings, CameraSettingsAction } from "../../utils/types";
|
|||||||
|
|
||||||
export const initialState: CameraSettings = {
|
export const initialState: CameraSettings = {
|
||||||
mode: 0,
|
mode: 0,
|
||||||
|
imageSize: { width: 1280, height: 960 },
|
||||||
};
|
};
|
||||||
|
|
||||||
export const cameraSettingsReducer = (state: CameraSettings, action: CameraSettingsAction) => {
|
export const cameraSettingsReducer = (state: CameraSettings, action: CameraSettingsAction) => {
|
||||||
@@ -11,6 +12,11 @@ export const cameraSettingsReducer = (state: CameraSettings, action: CameraSetti
|
|||||||
...state,
|
...state,
|
||||||
mode: action.payload,
|
mode: action.payload,
|
||||||
};
|
};
|
||||||
|
case "SET_IMAGE_SIZE":
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
imageSize: action.payload,
|
||||||
|
};
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|||||||
38
src/components/ui/ModalComponent.tsx
Normal file
38
src/components/ui/ModalComponent.tsx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import Modal from "react-modal";
|
||||||
|
|
||||||
|
type ModalComponentProps = {
|
||||||
|
isModalOpen: boolean;
|
||||||
|
children: React.ReactNode;
|
||||||
|
close: () => void;
|
||||||
|
};
|
||||||
|
const ModalComponent = ({ isModalOpen, children, close }: ModalComponentProps) => {
|
||||||
|
return (
|
||||||
|
<Modal
|
||||||
|
isOpen={isModalOpen}
|
||||||
|
onRequestClose={close}
|
||||||
|
className="bg-[#1e2a38] p-6 rounded-lg shadow-lg w-[95%] mt-[2%] md:w-[60%] z-100 overflow-y-auto border border-gray-600 max-h-[90%]"
|
||||||
|
overlayClassName="fixed inset-0 bg-[#1e2a38]/70 flex justify-center items-start z-100"
|
||||||
|
closeTimeoutMS={200}
|
||||||
|
style={{
|
||||||
|
overlay: {
|
||||||
|
transition: "opacity 200ms ease-in-out",
|
||||||
|
},
|
||||||
|
content: {
|
||||||
|
transition: "all 200ms ease-in-out",
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="flex justify-end">
|
||||||
|
<button
|
||||||
|
onClick={close}
|
||||||
|
className="bg-gray-700 hover:bg-gray-600 text-white font-bold py-2 px-4 rounded-lg mb-4 hover:cursor-pointer"
|
||||||
|
>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{children}
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ModalComponent;
|
||||||
@@ -2,15 +2,19 @@ import PlateRead from "./components/plateRead/PlateRead";
|
|||||||
import SightingStack from "./components/sightingStack/SightingStack";
|
import SightingStack from "./components/sightingStack/SightingStack";
|
||||||
import VideoFeed from "./components/videoFeed/VideoFeed";
|
import VideoFeed from "./components/videoFeed/VideoFeed";
|
||||||
import { useSightingList } from "./hooks/useSightingList";
|
import { useSightingList } from "./hooks/useSightingList";
|
||||||
|
import { useCameraSettingsContext } from "../../app/context/CameraSettingsContext";
|
||||||
|
|
||||||
const Dashboard = () => {
|
const Dashboard = () => {
|
||||||
const { sightingList, isLoading } = useSightingList();
|
const { sightingList, isLoading } = useSightingList();
|
||||||
|
const { state: cameraSettings } = useCameraSettingsContext();
|
||||||
|
const size = cameraSettings.imageSize;
|
||||||
|
|
||||||
const mostRecent = sightingList[0];
|
const mostRecent = sightingList[0];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid gird-cols-1 md:grid-cols-2 gap-2 md:gap-5">
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-2 md:gap-5">
|
||||||
<div>
|
<div>
|
||||||
<VideoFeed mostRecentSighting={mostRecent} isLoading={isLoading} />
|
<VideoFeed mostRecentSighting={mostRecent} isLoading={isLoading} size={size} />
|
||||||
<PlateRead sighting={mostRecent} />
|
<PlateRead sighting={mostRecent} />
|
||||||
</div>
|
</div>
|
||||||
<SightingStack sightings={sightingList} />
|
<SightingStack sightings={sightingList} />
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ type PlateReadProps = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const PlateRead = ({ sighting }: PlateReadProps) => {
|
const PlateRead = ({ sighting }: PlateReadProps) => {
|
||||||
console.log(sighting);
|
|
||||||
const vrm = sighting?.vrm;
|
const vrm = sighting?.vrm;
|
||||||
const region = sighting?.laneID;
|
const region = sighting?.laneID;
|
||||||
const timestamp = sighting?.timeStamp;
|
const timestamp = sighting?.timeStamp;
|
||||||
|
|||||||
@@ -4,25 +4,34 @@ import NumberPlate from "../platePatch/NumberPlate";
|
|||||||
|
|
||||||
type SightingItemProps = {
|
type SightingItemProps = {
|
||||||
sighting: SightingType;
|
sighting: SightingType;
|
||||||
|
onOpenModal: () => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const SightingItem = ({ sighting }: SightingItemProps) => {
|
const SightingItem = ({ sighting, onOpenModal }: SightingItemProps) => {
|
||||||
const motion = sighting.motion.toLowerCase() === "away" ? true : false;
|
const motion = sighting.motion.toLowerCase() === "away" ? true : false;
|
||||||
|
|
||||||
const timeStamp = timeAgo(sighting.timeStampMillis);
|
const timeStamp = timeAgo(sighting.timeStampMillis);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-row items-center border p-2 mb-2 rounded-lg border-gray-500 justify-between hover:bg-[#233241] hover:cursor-pointer">
|
<>
|
||||||
<div>
|
<div
|
||||||
|
className="flex flex-row items-center border p-2 mb-2 rounded-lg border-gray-500 justify-between hover:bg-[#233241] hover:cursor-pointer"
|
||||||
|
onClick={onOpenModal}
|
||||||
|
>
|
||||||
<div>
|
<div>
|
||||||
<span className="font-light border bg-blue-400 text-blue-800 px-2 rounded">{timeStamp}</span>
|
<div>
|
||||||
</div>
|
<span className="font-light border bg-blue-400 text-blue-800 px-2 rounded">{timeStamp}</span>
|
||||||
<div className="text-xl">
|
</div>
|
||||||
<span className="font-semibold text-gray-200">{sighting.vrm}</span>
|
<div className="text-xl">
|
||||||
|
<span className="font-semibold text-gray-200">{sighting.vrm}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{window.innerWidth > 768 ? (
|
||||||
|
<NumberPlate vrm={sighting.vrm} motion={motion} size="md" />
|
||||||
|
) : (
|
||||||
|
<NumberPlate vrm={sighting.vrm} motion={motion} size="sm" />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<NumberPlate vrm={sighting.vrm} motion={motion} size="md" />
|
</>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,21 +1,38 @@
|
|||||||
|
import { useState } from "react";
|
||||||
import CardHeader from "../../../../components/CardHeader";
|
import CardHeader from "../../../../components/CardHeader";
|
||||||
import Card from "../../../../components/ui/Card";
|
import Card from "../../../../components/ui/Card";
|
||||||
import type { SightingType } from "../../../../utils/types";
|
import type { SightingType } from "../../../../utils/types";
|
||||||
import SightingItem from "./SightingItem";
|
import SightingItem from "./SightingItem";
|
||||||
|
import SightingItemModal from "./sightingItemModal/SightingItemModal";
|
||||||
|
|
||||||
type SightingStackProps = {
|
type SightingStackProps = {
|
||||||
sightings: SightingType[];
|
sightings: SightingType[];
|
||||||
};
|
};
|
||||||
const SightingStack = ({ sightings }: SightingStackProps) => {
|
const SightingStack = ({ sightings }: SightingStackProps) => {
|
||||||
|
const [isSightingModalOpen, setIsSightingModalOpen] = useState(false);
|
||||||
|
const [currentSighting, setCurrentSighting] = useState<SightingType | null>(null);
|
||||||
|
const handleOpenModal = (sighting: SightingType | null) => {
|
||||||
|
if (!sighting) return;
|
||||||
|
setCurrentSighting(sighting);
|
||||||
|
setIsSightingModalOpen(true);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="p-4 w-full h-full ">
|
<>
|
||||||
<CardHeader title="Live Sightings" />
|
<Card className="p-4 w-full h-full">
|
||||||
<div className="md:h-[65%]">
|
<CardHeader title="Live Sightings" />
|
||||||
{sightings.map((sighting) => (
|
<div className="md:h-[65%]">
|
||||||
<SightingItem key={sighting.ref} sighting={sighting} />
|
{sightings.map((sighting) => (
|
||||||
))}
|
<SightingItem key={sighting.ref} sighting={sighting} onOpenModal={() => handleOpenModal(sighting)} />
|
||||||
</div>
|
))}
|
||||||
</Card>
|
</div>
|
||||||
|
</Card>
|
||||||
|
<SightingItemModal
|
||||||
|
isOpen={isSightingModalOpen}
|
||||||
|
close={() => setIsSightingModalOpen(false)}
|
||||||
|
sighting={currentSighting}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import ModalComponent from "../../../../../components/ui/ModalComponent";
|
||||||
|
import type { SightingType } from "../../../../../utils/types";
|
||||||
|
import SightingModalContent from "./SightingModalContent";
|
||||||
|
|
||||||
|
type SightingItemModalProps = {
|
||||||
|
isOpen: boolean;
|
||||||
|
close: () => void;
|
||||||
|
sighting: SightingType | null;
|
||||||
|
};
|
||||||
|
const SightingItemModal = ({ isOpen, close, sighting }: SightingItemModalProps) => {
|
||||||
|
return (
|
||||||
|
<ModalComponent isModalOpen={isOpen} close={close}>
|
||||||
|
<SightingModalContent sighting={sighting} />
|
||||||
|
</ModalComponent>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SightingItemModal;
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
import { useCameraSettingsContext } from "../../../../../app/context/CameraSettingsContext";
|
||||||
|
import type { SightingType } from "../../../../../utils/types";
|
||||||
|
import { timeAgo } from "../../../../../utils/utils";
|
||||||
|
import NumberPlate from "../../platePatch/NumberPlate";
|
||||||
|
import VideoFeed from "../../videoFeed/VideoFeed";
|
||||||
|
|
||||||
|
type SightingModalContentProps = {
|
||||||
|
sighting: SightingType | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const SightingModalContent = ({ sighting }: SightingModalContentProps) => {
|
||||||
|
const { state: cameraSettings } = useCameraSettingsContext();
|
||||||
|
const size = cameraSettings.imageSize;
|
||||||
|
const modalImageSize = { width: size.width / 1.5, height: size.height / 1.5 };
|
||||||
|
const timeStamp = timeAgo(sighting?.timeStampMillis ?? null);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{sighting ? (
|
||||||
|
<>
|
||||||
|
<div className="flex flex-row items-center justify-between mb-6 border-b border-gray-600">
|
||||||
|
<h2 className="text-2xl font-bold">Sighting Details</h2>
|
||||||
|
<NumberPlate vrm={sighting.vrm} motion={sighting.motion.toLowerCase() === "away"} size="md" />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
||||||
|
<div className="lg:col-span-2">
|
||||||
|
<VideoFeed mostRecentSighting={sighting} isLoading={false} size={modalImageSize} isModal={true} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-4 border p-4 rounded-lg border-gray-600">
|
||||||
|
<div>
|
||||||
|
<p className="text-md text-gray-300">VRM</p>
|
||||||
|
<p className="text-lg font-semibold">{sighting.vrm}</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-md text-gray-300">Seen</p>
|
||||||
|
<p className="text-md">{timeStamp}</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-md text-gray-300">Timestamp</p>
|
||||||
|
<p className="text-md">{new Date(sighting.timeStampMillis).toLocaleString()}</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-md text-gray-300">Motion</p>
|
||||||
|
<p className="text-lg font-semibold">{sighting.motion}</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-md text-gray-300">Radar Speed</p>
|
||||||
|
<p className="text-lg font-semibold">{sighting.radarSpeed} mph</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<p className="text-gray-300">No sighting data available.</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SightingModalContent;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Stage, Layer, Image, Rect } from "react-konva";
|
import { Stage, Layer, Image, Rect, Text } from "react-konva";
|
||||||
import type { SightingType } from "../../../../utils/types";
|
import type { SightingType } from "../../../../utils/types";
|
||||||
import { useCreateVideoSnapshot } from "../../hooks/useCreateVideoSnapshot";
|
import { useCreateVideoSnapshot } from "../../hooks/useCreateVideoSnapshot";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
@@ -7,26 +7,36 @@ import { useCameraSettingsContext } from "../../../../app/context/CameraSettings
|
|||||||
type VideoFeedProps = {
|
type VideoFeedProps = {
|
||||||
mostRecentSighting: SightingType;
|
mostRecentSighting: SightingType;
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
|
size: { width: number; height: number };
|
||||||
|
modeSetting?: number;
|
||||||
|
isModal?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
const VideoFeed = ({ mostRecentSighting, isLoading }: VideoFeedProps) => {
|
const VideoFeed = ({ mostRecentSighting, isLoading, size, modeSetting, isModal = false }: VideoFeedProps) => {
|
||||||
|
console.log(size);
|
||||||
const { state: cameraSettings, dispatch } = useCameraSettingsContext();
|
const { state: cameraSettings, dispatch } = useCameraSettingsContext();
|
||||||
|
const contextMode = cameraSettings.mode;
|
||||||
const mode = cameraSettings.mode;
|
const [localMode, setLocalMode] = useState(0);
|
||||||
const [size, setSize] = useState<{ width: number; height: number }>({ width: 1280, height: 960 });
|
const mode = isModal ? localMode : contextMode;
|
||||||
|
|
||||||
const { image, plateRect, plateTrack } = useCreateVideoSnapshot(mostRecentSighting);
|
const { image, plateRect, plateTrack } = useCreateVideoSnapshot(mostRecentSighting);
|
||||||
|
|
||||||
const handleModeChange = (newMode: number) => {
|
const handleModeChange = (newMode: number) => {
|
||||||
if (newMode > 2) dispatch({ type: "SET_MODE", payload: 0 });
|
if (modeSetting) return;
|
||||||
else dispatch({ type: "SET_MODE", payload: newMode });
|
|
||||||
|
const nextMode = newMode > 2 ? 0 : newMode;
|
||||||
|
|
||||||
|
if (isModal) {
|
||||||
|
setLocalMode(nextMode);
|
||||||
|
} else {
|
||||||
|
dispatch({ type: "SET_MODE", payload: nextMode });
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const updateSize = () => {
|
const updateSize = () => {
|
||||||
const width = window.innerWidth * 0.48;
|
const width = window.innerWidth * 0.48;
|
||||||
const height = (width * 2) / 3;
|
const height = (width * 2) / 3;
|
||||||
setSize({ width, height });
|
dispatch({ type: "SET_IMAGE_SIZE", payload: { width, height } });
|
||||||
};
|
};
|
||||||
updateSize();
|
updateSize();
|
||||||
window.addEventListener("resize", updateSize);
|
window.addEventListener("resize", updateSize);
|
||||||
@@ -39,20 +49,22 @@ const VideoFeed = ({ mostRecentSighting, isLoading }: VideoFeedProps) => {
|
|||||||
<div className="w-[70%] mt-[2%]">
|
<div className="w-[70%] mt-[2%]">
|
||||||
<Stage width={size.width} height={size.height} onClick={() => handleModeChange(mode + 1)}>
|
<Stage width={size.width} height={size.height} onClick={() => handleModeChange(mode + 1)}>
|
||||||
<Layer>
|
<Layer>
|
||||||
<Image
|
{image && (
|
||||||
image={image}
|
<Image
|
||||||
height={size.height}
|
image={image}
|
||||||
width={size.width}
|
height={size.height}
|
||||||
onMouseEnter={(e) => {
|
width={size.width}
|
||||||
const container = e.target.getStage()?.container();
|
onMouseEnter={(e) => {
|
||||||
if (container) container.style.cursor = "pointer";
|
const container = e.target.getStage()?.container();
|
||||||
}}
|
if (container) container.style.cursor = "pointer";
|
||||||
onMouseLeave={(e) => {
|
}}
|
||||||
const container = e.target.getStage()?.container();
|
onMouseLeave={(e) => {
|
||||||
if (container) container.style.cursor = "default";
|
const container = e.target.getStage()?.container();
|
||||||
}}
|
if (container) container.style.cursor = "default";
|
||||||
cornerRadius={10}
|
}}
|
||||||
/>
|
cornerRadius={10}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</Layer>
|
</Layer>
|
||||||
{plateRect && mode === 1 && (
|
{plateRect && mode === 1 && (
|
||||||
<Layer>
|
<Layer>
|
||||||
@@ -84,6 +96,23 @@ const VideoFeed = ({ mostRecentSighting, isLoading }: VideoFeedProps) => {
|
|||||||
))}
|
))}
|
||||||
</Layer>
|
</Layer>
|
||||||
)}
|
)}
|
||||||
|
<Layer>
|
||||||
|
<Rect
|
||||||
|
x={5}
|
||||||
|
y={0.955 * size.height}
|
||||||
|
width={size.width * 0.35}
|
||||||
|
height={30}
|
||||||
|
fill="rgba(255, 255, 255, 0.45)"
|
||||||
|
cornerRadius={5}
|
||||||
|
/>
|
||||||
|
<Text
|
||||||
|
text={`Overlay Mode: ${mode === 0 ? "None" : mode === 1 ? "Plate Highlight" : "Plate Track"}`}
|
||||||
|
x={10}
|
||||||
|
y={0.96 * size.height}
|
||||||
|
fontSize={16}
|
||||||
|
fill="#000000"
|
||||||
|
/>
|
||||||
|
</Layer>
|
||||||
</Stage>
|
</Stage>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,8 +1,18 @@
|
|||||||
import { useRef } from "react";
|
import { useRef } from "react";
|
||||||
import type { SightingType } from "../../../utils/types";
|
import type { SightingType } from "../../../utils/types";
|
||||||
|
|
||||||
export const useCreateVideoSnapshot = (mostRecentSighting: SightingType) => {
|
export const useCreateVideoSnapshot = (mostRecentSighting: SightingType | null) => {
|
||||||
const latestBitMapRef = useRef<ImageBitmap | null>(null);
|
const latestBitMapRef = useRef<ImageBitmap | null>(null);
|
||||||
|
if (!mostRecentSighting) {
|
||||||
|
return {
|
||||||
|
snapshotUrl: null,
|
||||||
|
latestBitMapRef: null,
|
||||||
|
image: null,
|
||||||
|
plateRect: null,
|
||||||
|
plateTrack: null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const snapshotUrl = mostRecentSighting?.overviewUrl;
|
const snapshotUrl = mostRecentSighting?.overviewUrl;
|
||||||
|
|
||||||
const image = new Image();
|
const image = new Image();
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export const useVideoFeed = () => {
|
|||||||
const videoFeedQuery = useQuery({
|
const videoFeedQuery = useQuery({
|
||||||
queryKey: ["videoFeed"],
|
queryKey: ["videoFeed"],
|
||||||
queryFn: () => fetchVideoFeed(currentRefId.current),
|
queryFn: () => fetchVideoFeed(currentRefId.current),
|
||||||
refetchInterval: 1000,
|
refetchInterval: 400,
|
||||||
refetchOnWindowFocus: false,
|
refetchOnWindowFocus: false,
|
||||||
retry: false,
|
retry: false,
|
||||||
staleTime: 0,
|
staleTime: 0,
|
||||||
|
|||||||
11
src/features/setup/Setup.tsx
Normal file
11
src/features/setup/Setup.tsx
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import VideoFeedSetup from "./components/videofeed/VideoFeedSetup";
|
||||||
|
|
||||||
|
const Setup = () => {
|
||||||
|
return (
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-2 md:gap-5">
|
||||||
|
<VideoFeedSetup />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Setup;
|
||||||
41
src/features/setup/components/videofeed/VideoFeedSetup.tsx
Normal file
41
src/features/setup/components/videofeed/VideoFeedSetup.tsx
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { Stage, Layer, Image } from "react-konva";
|
||||||
|
import { useCreateVideoPreviewSnapshot } from "../../hooks/useCreatePreviewImage";
|
||||||
|
import { useEffect, type RefObject } from "react";
|
||||||
|
import { useCameraSettingsContext } from "../../../../app/context/CameraSettingsContext";
|
||||||
|
|
||||||
|
const VideoFeedSetup = () => {
|
||||||
|
const { latestBitmapRef, isLoading } = useCreateVideoPreviewSnapshot();
|
||||||
|
const { state, dispatch } = useCameraSettingsContext();
|
||||||
|
const size = state.imageSize;
|
||||||
|
|
||||||
|
const draw = (bmp: RefObject<ImageBitmap | null>): ImageBitmap | null => {
|
||||||
|
if (!bmp || !bmp.current) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const image = bmp.current;
|
||||||
|
return image;
|
||||||
|
};
|
||||||
|
const image = draw(latestBitmapRef);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const updateSize = () => {
|
||||||
|
const width = window.innerWidth * 0.48;
|
||||||
|
const height = (width * 2) / 3;
|
||||||
|
dispatch({ type: "SET_IMAGE_SIZE", payload: { width, height } });
|
||||||
|
};
|
||||||
|
updateSize();
|
||||||
|
window.addEventListener("resize", updateSize);
|
||||||
|
return () => window.removeEventListener("resize", updateSize);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
if (isLoading) return <>Loading...</>;
|
||||||
|
return (
|
||||||
|
<div className="mt-[1%]">
|
||||||
|
<Stage width={size.width} height={size.height}>
|
||||||
|
<Layer>{image && <Image image={image} height={size.height} width={size.width} cornerRadius={10} />}</Layer>
|
||||||
|
</Stage>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default VideoFeedSetup;
|
||||||
25
src/features/setup/hooks/useCreatePreviewImage.ts
Normal file
25
src/features/setup/hooks/useCreatePreviewImage.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { useEffect, useRef } from "react";
|
||||||
|
import { useVideoPreview } from "./useVideoPreview";
|
||||||
|
|
||||||
|
export const useCreateVideoPreviewSnapshot = () => {
|
||||||
|
const { videoPreviewQuery } = useVideoPreview();
|
||||||
|
const latestBitmapRef = useRef<ImageBitmap | null>(null);
|
||||||
|
const isLoading = videoPreviewQuery?.isPending;
|
||||||
|
const imageBlob = videoPreviewQuery?.data;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
async function createImageBitmapFromBlob() {
|
||||||
|
if (!imageBlob) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const bitmap = await createImageBitmap(imageBlob);
|
||||||
|
latestBitmapRef.current = bitmap;
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
createImageBitmapFromBlob();
|
||||||
|
}, [imageBlob]);
|
||||||
|
|
||||||
|
return { latestBitmapRef, isLoading, imageURL: imageBlob ? URL.createObjectURL(imageBlob) : null };
|
||||||
|
};
|
||||||
19
src/features/setup/hooks/useVideoPreview.ts
Normal file
19
src/features/setup/hooks/useVideoPreview.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import { useQuery } from "@tanstack/react-query";
|
||||||
|
import { cambase } from "../../../app/config";
|
||||||
|
|
||||||
|
const fetchVideoPreview = async () => {
|
||||||
|
const response = await fetch(`${cambase}/Colour-preview`);
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error("Failed to fetch video preview");
|
||||||
|
}
|
||||||
|
return response.blob();
|
||||||
|
};
|
||||||
|
|
||||||
|
export const useVideoPreview = () => {
|
||||||
|
const videoPreviewQuery = useQuery({
|
||||||
|
queryKey: ["videoPreview"],
|
||||||
|
queryFn: fetchVideoPreview,
|
||||||
|
refetchInterval: 100,
|
||||||
|
});
|
||||||
|
return { videoPreviewQuery };
|
||||||
|
};
|
||||||
@@ -4,12 +4,13 @@ import "./index.css";
|
|||||||
import { RouterProvider, createRouter } from "@tanstack/react-router";
|
import { RouterProvider, createRouter } from "@tanstack/react-router";
|
||||||
import { routeTree } from "./routeTree.gen.ts";
|
import { routeTree } from "./routeTree.gen.ts";
|
||||||
import AppProviders from "./app/providers/AppProviders.tsx";
|
import AppProviders from "./app/providers/AppProviders.tsx";
|
||||||
|
import Modal from "react-modal";
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
routeTree,
|
routeTree,
|
||||||
basepath: "/aiq-lite",
|
basepath: "/aiq-lite",
|
||||||
});
|
});
|
||||||
|
Modal.setAppElement("#root");
|
||||||
declare module "@tanstack/react-router" {
|
declare module "@tanstack/react-router" {
|
||||||
interface Register {
|
interface Register {
|
||||||
router: typeof router;
|
router: typeof router;
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import { createFileRoute } from "@tanstack/react-router";
|
import { createFileRoute } from "@tanstack/react-router";
|
||||||
|
import Setup from "../features/setup/Setup";
|
||||||
|
|
||||||
export const Route = createFileRoute("/setup")({
|
export const Route = createFileRoute("/setup")({
|
||||||
component: RouteComponent,
|
component: RouteComponent,
|
||||||
});
|
});
|
||||||
|
|
||||||
function RouteComponent() {
|
function RouteComponent() {
|
||||||
return <div className="">Hello "/setup"!</div>;
|
return <Setup />;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,8 +54,14 @@ export type NpedJSON = {
|
|||||||
|
|
||||||
export type CameraSettings = {
|
export type CameraSettings = {
|
||||||
mode: number;
|
mode: number;
|
||||||
|
imageSize: { width: number; height: number };
|
||||||
};
|
};
|
||||||
export type CameraSettingsAction = {
|
export type CameraSettingsAction =
|
||||||
type: "SET_MODE";
|
| {
|
||||||
payload: number;
|
type: "SET_MODE";
|
||||||
};
|
payload: number;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: "SET_IMAGE_SIZE";
|
||||||
|
payload: { width: number; height: number };
|
||||||
|
};
|
||||||
|
|||||||
@@ -5,7 +5,8 @@ export const formatNumberPlate = (plate: string) => {
|
|||||||
return formattedPlate;
|
return formattedPlate;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const timeAgo = (timestampmili: number) => {
|
export const timeAgo = (timestampmili: number | null) => {
|
||||||
|
if (timestampmili === null) return "unknown";
|
||||||
const diffMs = Date.now() - new Date(timestampmili).getTime();
|
const diffMs = Date.now() - new Date(timestampmili).getTime();
|
||||||
const diffMins = Math.floor(diffMs / 60000);
|
const diffMins = Math.floor(diffMs / 60000);
|
||||||
if (diffMins < 60) {
|
if (diffMins < 60) {
|
||||||
|
|||||||
Reference in New Issue
Block a user