import type { SightingType } from "../../types/types"; import NumberPlate from "../PlateStack/NumberPlate"; import SightingModal from "../SightingModal/SightingModal"; import InfoBar from "../SightingsWidget/InfoBar"; import { useState } from "react"; import HotListImg from "/Hotlist_Hit.svg"; import { useAlertHitContext } from "../../context/AlertHitContext"; import { useCameraBlackboard } from "../../hooks/useCameraBlackboard"; import NPED_CAT_A from "/NPED_Cat_A.svg"; import NPED_CAT_B from "/NPED_Cat_B.svg"; import NPED_CAT_C from "/NPED_Cat_C.svg"; import { checkIsHotListHit } from "../../utils/utils"; type AlertItemProps = { item: SightingType; }; const AlertItem = ({ item }: AlertItemProps) => { const [isModalOpen, setIsModalOpen] = useState(false); const { dispatch } = useAlertHitContext(); const { mutation } = useCameraBlackboard(); // const {d} = useCameraBlackboard(); const motionAway = (item?.motion ?? "").toUpperCase() === "AWAY"; const isHotListHit = checkIsHotListHit(item); const isNPEDHitA = item?.metadata?.npedJSON?.["NPED CATEGORY"] === "A"; const isNPEDHitB = item?.metadata?.npedJSON?.["NPED CATEGORY"] === "B"; const isNPEDHitC = item?.metadata?.npedJSON?.["NPED CATEGORY"] === "C"; const handleClick = () => { setIsModalOpen(true); }; const closeModal = () => { setIsModalOpen(false); }; const handleDelete = async (deletedItem: SightingType | null) => { const res = await mutation.mutateAsync({ operation: "VIEW", path: "alertHistory", }); const oldArray = res?.result; const updatedArray = oldArray?.filter( (item: SightingType) => item?.ref !== deletedItem?.ref ); mutation.mutate({ operation: "INSERT", path: "alertHistory", value: updatedArray, }); dispatch({ type: "REMOVE", payload: item }); }; return (
{isHotListHit && ( hotlistHit )} {isNPEDHitA && ( NPEDHITicon )} {isNPEDHitB && ( NPEDHITicon )} {isNPEDHitC && ( NPEDHITicon )}
MAKE: {item.make} MODEL: {item.model} COLOUR: {item.color}
); }; export default AlertItem;