30 Commits

Author SHA1 Message Date
ae0a6f9249 - added debouncing of sounds
- added new sound files
- moved soung hits to sighting list
2025-10-27 14:00:28 +00:00
e46460f41d Merged in enhancement/sessionstats (pull request #31)
Enhancement/sessionstats
2025-10-27 11:23:29 +00:00
6c441a0a4b Merged in enhancement-refactor (pull request #30)
Enhancement refactor
2025-10-27 11:11:15 +00:00
2d5b264041 - refactored state for sessionlist, and session active and pause states 2025-10-27 11:04:53 +00:00
251a2f5e7b - refactored NPED Login & logout 2025-10-27 09:35:59 +00:00
18534ceb2c - added functionality to save sighting sessions to black board 2025-10-27 08:28:44 +00:00
9975e6a6ca Merged develop into enhancement/sessionstats 2025-10-24 11:12:51 +00:00
c83122cd52 - added session sighting component
- add new session paused state and stop adding to session when true
2025-10-24 12:10:10 +01:00
abc8007fc6 Merged in enhancement/sightingHits (pull request #29)
Enhancement/sightingHits
2025-10-24 09:56:25 +00:00
7903633809 - removed console.log 2025-10-24 10:55:05 +01:00
359f3781f2 - refactored to allow for stacking of special hits (NPED + Hotlist) 2025-10-24 10:49:04 +01:00
a958901bed - will pick up later 2025-10-22 12:20:15 +01:00
b58181e551 - started improvements on session page to include pause and save buttons 2025-10-22 08:54:42 +01:00
df6bf75184 Merged in bugfix/uploadsounds (pull request #28)
Bugfix/uploadsounds
2025-10-21 14:20:33 +00:00
c5cea81532 Merged develop into bugfix/uploadsounds 2025-10-21 14:19:14 +00:00
78905b09e0 - added framework for playing uploaded music files. need to permanently store and retreive files 2025-10-21 12:52:14 +01:00
1ffad51503 fixed feature to upload sound files 2025-10-20 16:17:37 +01:00
d16f55413c Merged main into develop 2025-10-20 10:54:41 +00:00
3598f8d069 Merged in develop (pull request #27)
Develop
2025-10-20 10:53:48 +00:00
0a3a543d6f Merged in bugfix/hostlistsound (pull request #26)
bugfix/hotlistsound
2025-10-20 10:35:44 +00:00
0867b3b743 - added sounds for all hotlist sounds 2025-10-20 11:32:45 +01:00
a152c15ec7 - removed console.log 2025-10-20 10:59:38 +01:00
617ea60f26 Merged in bugfix/AlanFeedback (pull request #25)
Bugfix/AlanFeedback
2025-10-20 09:54:13 +00:00
1b0790a841 Merged develop into bugfix/AlanFeedback 2025-10-20 09:53:46 +00:00
a54e6a79c1 - updated button to match 2025-10-20 10:50:16 +01:00
b2dd35b311 - added volume functionality for NPED notifications 2025-10-20 09:11:05 +01:00
82b84dc46e - added volume setting for sighting hits 2025-10-17 16:12:02 +01:00
34c996c990 Merged main into develop 2025-10-17 10:39:28 +00:00
bb82fad583 Merged in develop (pull request #23)
Develop
2025-10-17 10:30:02 +00:00
3eb539fd9d - start addressing Alans feedback 2025-10-17 10:17:01 +01:00
44 changed files with 807 additions and 558 deletions

View File

@@ -22,6 +22,7 @@
"country-flag-icons": "^1.5.19", "country-flag-icons": "^1.5.19",
"formik": "^2.4.6", "formik": "^2.4.6",
"howler": "^2.2.4", "howler": "^2.2.4",
"rc-slider": "^11.1.9",
"react": "^19.1.1", "react": "^19.1.1",
"react-dom": "^19.1.1", "react-dom": "^19.1.1",
"react-modal": "^3.16.3", "react-modal": "^3.16.3",
@@ -31,7 +32,8 @@
"react-tabs": "^6.1.0", "react-tabs": "^6.1.0",
"react-use": "^17.6.0", "react-use": "^17.6.0",
"sonner": "^2.0.7", "sonner": "^2.0.7",
"tailwindcss": "^4.1.11" "tailwindcss": "^4.1.11",
"use-debounce": "^10.0.6"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.32.0", "@eslint/js": "^9.32.0",

View File

@@ -5,7 +5,7 @@ import FrontCamera from "./pages/FrontCamera";
import RearCamera from "./pages/RearCamera"; import RearCamera from "./pages/RearCamera";
import SystemSettings from "./pages/SystemSettings"; import SystemSettings from "./pages/SystemSettings";
import Session from "./pages/Session"; import Session from "./pages/Session";
import { NPEDUserProvider } from "./context/providers/NPEDUserContextProvider"; import { IntegrationsProvider } from "./context/providers/IntegrationsContextProvider";
import { AlertHitProvider } from "./context/providers/AlertHitProvider"; import { AlertHitProvider } from "./context/providers/AlertHitProvider";
import { SoundProvider } from "react-sounds"; import { SoundProvider } from "react-sounds";
import SoundContextProvider from "./context/providers/SoundContextProvider"; import SoundContextProvider from "./context/providers/SoundContextProvider";
@@ -14,7 +14,7 @@ function App() {
return ( return (
<SoundContextProvider> <SoundContextProvider>
<SoundProvider initialEnabled={true}> <SoundProvider initialEnabled={true}>
<NPEDUserProvider> <IntegrationsProvider>
<AlertHitProvider> <AlertHitProvider>
<Routes> <Routes>
<Route path="/" element={<Container />}> <Route path="/" element={<Container />}>
@@ -27,7 +27,7 @@ function App() {
</Route> </Route>
</Routes> </Routes>
</AlertHitProvider> </AlertHitProvider>
</NPEDUserProvider> </IntegrationsProvider>
</SoundProvider> </SoundProvider>
</SoundContextProvider> </SoundContextProvider>
); );

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,5 +1,5 @@
// import { EU } from "country-flag-icons/react/3x2"; import { GB } from "country-flag-icons/react/3x2";
import { formatNumberPlateEU } from "../../utils/utils"; import { formatNumberPlate } from "../../utils/utils";
type NumberPlateProps = { type NumberPlateProps = {
vrm?: string | undefined; vrm?: string | undefined;
@@ -40,16 +40,19 @@ const NumberPlate = ({ motion, vrm, size }: NumberPlateProps) => {
return ( return (
<div <div
className={`relative ${options.plateWidth} ${options.borderWidth} border-black rounded-xl text-nowrap className={`relative ${options.plateWidth} ${
options.borderWidth
} border-black rounded-xl text-nowrap
text-black px-6 py-2 text-black px-6 py-2
${motion ? "bg-white" : "bg-white"}`} ${motion ? "bg-yellow-400" : "bg-white"}`}
> >
<div> <div>
{/* <div className="absolute inset-y-0 left-0 bg-[#003399] w-8 flex flex-col"> <div className="absolute inset-y-0 left-0 bg-blue-600 w-8 flex flex-col">
<EU /> <GB />
<small className="text-white font-semibold text-center">FIN</small> </div>
</div> */} <p className={`pl-4 font-extrabold ${options.textSize} text-right`}>
<p className={`pl-4 font-extrabold ${options.textSize} text-center`}>{vrm && formatNumberPlateEU(vrm)}</p> {vrm && formatNumberPlate(vrm)}
</p>
</div> </div>
</div> </div>
); );

View File

@@ -1,30 +1,36 @@
import Card from "../UI/Card"; import Card from "../UI/Card";
import CardHeader from "../UI/CardHeader"; import CardHeader from "../UI/CardHeader";
import { useNPEDContext } from "../../context/NPEDUserContext"; import { useIntegrationsContext } from "../../context/IntegrationsContext";
import type { ReducedSightingType } from "../../types/types"; import type { ReducedSightingType } from "../../types/types";
import { toast } from "sonner"; import { toast } from "sonner";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faFloppyDisk, faPause, faPlay, faStop } from "@fortawesome/free-solid-svg-icons";
import VehicleSessionItem from "../UI/VehicleSessionItem";
import { useCameraBlackboard } from "../../hooks/useCameraBlackboard";
const SessionCard = () => { const SessionCard = () => {
const { sessionStarted, setSessionStarted, sessionList } = useNPEDContext(); const { state, dispatch } = useIntegrationsContext();
const { mutation } = useCameraBlackboard();
const handleStartClick = () => { const sessionStarted = state.sessionStarted;
setSessionStarted(!sessionStarted); const sessionPaused = state.sessionPaused;
toast(`${sessionStarted ? "Vehicle tracking session Ended" : "Vehicle tracking session Started"}`); const sessionList = state.sessionList;
};
const sightings = [...new Map(sessionList.map((vehicle) => [vehicle.vrm, vehicle]))]; const sightings = [...new Map(sessionList?.map((vehicle) => [vehicle.vrm, vehicle]))];
const dedupedSightings = sightings.map((sighting) => sighting[1]); const dedupedSightings = sightings.map((sighting) => sighting[1]);
const vehicles = dedupedSightings.reduce<Record<string, ReducedSightingType[]>>( const vehicles = dedupedSightings.reduce<Record<string, ReducedSightingType[]>>(
(acc, item) => { (acc, item) => {
const hotlisthit = Object.values(item.metadata?.hotlistMatches ?? {}).includes(true);
if (item.metadata?.npedJSON["NPED CATEGORY"] === "A") acc.npedCatA.push(item); if (item.metadata?.npedJSON["NPED CATEGORY"] === "A") acc.npedCatA.push(item);
if (item.metadata?.npedJSON["NPED CATEGORY"] === "B") acc.npedCatB.push(item); if (item.metadata?.npedJSON["NPED CATEGORY"] === "B") acc.npedCatB.push(item);
if (item.metadata?.npedJSON["NPED CATEGORY"] === "C") acc.npedCatC.push(item); if (item.metadata?.npedJSON["NPED CATEGORY"] === "C") acc.npedCatC.push(item);
if (item.metadata?.npedJSON["NPED CATEGORY"] === "D") acc.npedCatD.push(item); if (item.metadata?.npedJSON["NPED CATEGORY"] === "D") acc.npedCatD.push(item);
if (item.metadata?.npedJSON["TAX STATUS"] === false) acc.notTaxed.push(item); if (item.metadata?.npedJSON["TAX STATUS"] === false) acc.notTaxed.push(item);
if (item.metadata?.npedJSON["MOT STATUS"] === false) acc.notMOT.push(item); if (item.metadata?.npedJSON["MOT STATUS"] === false) acc.notMOT.push(item);
if (hotlisthit) acc.hotlistHit.push(item);
acc.vehicles.push(item);
return acc; return acc;
}, },
{ {
@@ -34,9 +40,32 @@ const SessionCard = () => {
npedCatD: [], npedCatD: [],
notTaxed: [], notTaxed: [],
notMOT: [], notMOT: [],
hotlistHit: [],
vehicles: [],
} }
); );
const handleStartClick = () => {
dispatch({ type: "SESSIONSTART", payload: !sessionStarted });
dispatch({ type: "SESSIONPAUSE", payload: false });
toast(`${sessionStarted ? "Vehicle tracking session ended" : "Vehicle tracking session started"}`);
};
const handlepauseClick = () => {
dispatch({ type: "SESSIONPAUSE", payload: !sessionPaused });
toast(`${sessionStarted ? "Vehicle tracking session paused" : "Vehicle tracking session resumed"}`);
};
const handleSaveCick = async () => {
const result = await mutation.mutateAsync({
operation: "INSERT",
path: "sessionStats",
value: dedupedSightings,
});
if (result.reason === "OK") toast.success("Session saved");
};
return ( return (
<Card className="p-4 col-span-3"> <Card className="p-4 col-span-3">
<CardHeader title="Session" /> <CardHeader title="Session" />
@@ -47,34 +76,72 @@ const SessionCard = () => {
} transition w-full`} } transition w-full`}
onClick={handleStartClick} onClick={handleStartClick}
> >
{sessionStarted ? "End Session" : "Start Session"} <div className="flex flex-row gap-3 items-center justify-self-center">
<FontAwesomeIcon icon={sessionStarted ? faStop : faPlay} />
<p>{sessionStarted ? "End Session" : "Start Session"}</p>
</div>
</button> </button>
<div className="flex flex-col lg:flex-row gap-5">
{sessionStarted && (
<button
className={`bg-blue-600 text-white px-4 py-2 rounded transition w-full lg:w-[50%]`}
onClick={handleSaveCick}
>
<div className="flex flex-row gap-3 items-center justify-self-center">
<FontAwesomeIcon icon={faFloppyDisk} />
<p>Save session</p>
</div>
</button>
)}
{sessionStarted && (
<button
className={`bg-gray-300 text-gray-800 px-4 py-2 rounded transition w-full lg:w-[50%]`}
onClick={handlepauseClick}
>
<div className="flex flex-row gap-3 items-center justify-self-center">
<FontAwesomeIcon icon={sessionPaused ? faPlay : faPause} />
<p>{sessionPaused ? "Resume session" : "Pause session"}</p>
</div>
</button>
)}
</div>
<ul className="text-white space-y-2"> <ul className="text-white space-y-2">
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> <VehicleSessionItem
<p>Number of Vehicles:</p> sessionNumber={vehicles.vehicles.length}
<span className="font-bold text-green-600 text-xl">{dedupedSightings.length}</span> textColour="text-green-400"
</li> vehicleTag={"Number of Vehicles sightings:"}
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> />
<p>Vehicles without Tax:</p> <VehicleSessionItem
<span className="font-bold text-amber-600 text-xl">{vehicles.notTaxed.length}</span> sessionNumber={vehicles.notTaxed.length}
</li> textColour="text-amber-400"
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> vehicleTag={"Vehicles without Tax:"}
<p>Vehicles without MOT:</p>{" "} />
<span className="font-bold text-red-500 text-xl">{vehicles.notMOT.length}</span> <VehicleSessionItem
</li> sessionNumber={vehicles.notMOT.length}
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> textColour="text-red-500"
<p>Vehicles with NPED Cat A:</p> vehicleTag={"Vehicles without MOT:"}
<span className="font-bold text-gray-300 text-xl">{vehicles.npedCatA.length}</span> />
</li> <VehicleSessionItem
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> sessionNumber={vehicles.hotlistHit.length}
<p>Vehicles with NPED Cat B:</p>{" "} textColour="text-blue-400"
<span className="font-bold text-gray-300text-xl">{vehicles.npedCatB.length}</span> vehicleTag={"Vehicles on Hotlists:"}
</li> />
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between"> <VehicleSessionItem
Vehicles with NPED Cat C:{" "} sessionNumber={vehicles.npedCatA.length}
<span className="font-bold text-gray-300 text-xl">{vehicles.npedCatC.length}</span> textColour="text-gray-300"
</li> vehicleTag={"Vehicles with NPED Cat A:"}
/>
<VehicleSessionItem
sessionNumber={vehicles.npedCatB.length}
textColour="text-gray-300"
vehicleTag={"Vehicles with NPED Cat B:"}
/>
<VehicleSessionItem
sessionNumber={vehicles.npedCatC.length}
textColour="text-gray-300"
vehicleTag={"Vehicles with NPED Cat C:"}
/>
</ul> </ul>
</div> </div>
</Card> </Card>

View File

@@ -29,11 +29,7 @@ const BearerTypeFields = () => {
}; };
return ( return (
<Formik <Formik initialValues={initialValues} onSubmit={handleSubmit} enableReinitialize>
initialValues={initialValues}
onSubmit={handleSubmit}
enableReinitialize
>
{({ isSubmitting }) => ( {({ isSubmitting }) => (
<Form> <Form>
<div className="flex flex-col space-y-4 px-2"> <div className="flex flex-col space-y-4 px-2">
@@ -60,11 +56,9 @@ const BearerTypeFields = () => {
</FormGroup> </FormGroup>
<button <button
type="submit" type="submit"
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full md:w-[50%]" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5"
> >
{isSubmitting || dispatcherMutation.isPending {isSubmitting || dispatcherMutation.isPending ? "Saving..." : "Save Changes"}
? "Saving..."
: "Save Changes"}
</button> </button>
</div> </div>
</Form> </Form>

View File

@@ -4,10 +4,7 @@ import { useEffect, useState } from "react";
import { faEyeSlash, faEye } from "@fortawesome/free-solid-svg-icons"; import { faEyeSlash, faEye } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useCameraOutput } from "../../../hooks/useCameraOutput"; import { useCameraOutput } from "../../../hooks/useCameraOutput";
import type { import type { InitialValuesForm, InitialValuesFormErrors } from "../../../types/types";
InitialValuesForm,
InitialValuesFormErrors,
} from "../../../types/types";
import { toast } from "sonner"; import { toast } from "sonner";
const ChannelFields = () => { const ChannelFields = () => {
@@ -17,10 +14,8 @@ const ChannelFields = () => {
const backOfficeURL = backOfficeQuery?.data?.propBackofficeURL?.value; const backOfficeURL = backOfficeQuery?.data?.propBackofficeURL?.value;
const username = backOfficeQuery?.data?.propUsername?.value; const username = backOfficeQuery?.data?.propUsername?.value;
const password = backOfficeQuery?.data?.propPassword?.value; const password = backOfficeQuery?.data?.propPassword?.value;
const connectTimeoutSeconds = const connectTimeoutSeconds = backOfficeQuery?.data?.propConnectTimeoutSeconds?.value;
backOfficeQuery?.data?.propConnectTimeoutSeconds?.value; const readTimeoutSeconds = backOfficeQuery?.data?.propReadTimeoutSeconds?.value;
const readTimeoutSeconds =
backOfficeQuery?.data?.propReadTimeoutSeconds?.value;
const initialValues: InitialValuesForm = { const initialValues: InitialValuesForm = {
backOfficeURL: backOfficeURL ?? "", backOfficeURL: backOfficeURL ?? "",
@@ -44,9 +39,7 @@ const ChannelFields = () => {
return null; return null;
}; };
const validateValues = ( const validateValues = (values: InitialValuesForm): InitialValuesFormErrors => {
values: InitialValuesForm
): InitialValuesFormErrors => {
const errors: InitialValuesFormErrors = {}; const errors: InitialValuesFormErrors = {};
const url = values.backOfficeURL?.trim(); const url = values.backOfficeURL?.trim();
@@ -78,12 +71,7 @@ const ChannelFields = () => {
}; };
return ( return (
<Formik <Formik initialValues={initialValues} onSubmit={handleSubmit} enableReinitialize validate={validateValues}>
initialValues={initialValues}
onSubmit={handleSubmit}
enableReinitialize
validate={validateValues}
>
{({ errors, touched, isSubmitting }) => ( {({ errors, touched, isSubmitting }) => (
<Form> <Form>
<div className="flex flex-col space-y-2 px-2"> <div className="flex flex-col space-y-2 px-2">
@@ -98,9 +86,7 @@ const ChannelFields = () => {
id="backoffice" id="backoffice"
placeholder="https://www.backoffice.com" placeholder="https://www.backoffice.com"
className={`p-1.5 border ${ className={`p-1.5 border ${
errors.backOfficeURL && touched.backOfficeURL errors.backOfficeURL && touched.backOfficeURL ? "border-red-500" : "border-gray-400 "
? "border-red-500"
: "border-gray-400 "
} rounded-lg w-full md:w-60`} } rounded-lg w-full md:w-60`}
/> />
</FormGroup> </FormGroup>
@@ -112,9 +98,7 @@ const ChannelFields = () => {
id="username" id="username"
placeholder="Back office username" placeholder="Back office username"
className={`p-1.5 border ${ className={`p-1.5 border ${
errors.username && touched.username errors.username && touched.username ? "border-red-500" : "border-gray-400 "
? "border-red-500"
: "border-gray-400 "
} rounded-lg w-full md:w-60`} } rounded-lg w-full md:w-60`}
/> />
</FormGroup> </FormGroup>
@@ -127,9 +111,7 @@ const ChannelFields = () => {
id="password" id="password"
placeholder="Back office password" placeholder="Back office password"
className={`p-1.5 border ${ className={`p-1.5 border ${
errors.password && touched.password errors.password && touched.password ? "border-red-500" : "border-gray-400 "
? "border-red-500"
: "border-gray-400 "
} rounded-lg w-full md:w-60`} } rounded-lg w-full md:w-60`}
/> />
<FontAwesomeIcon <FontAwesomeIcon
@@ -142,17 +124,13 @@ const ChannelFields = () => {
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label htmlFor="connectTimeoutSeconds"> <label htmlFor="connectTimeoutSeconds">Connect Timeout Seconds</label>
Connect Timeout Seconds
</label>
<Field <Field
name={"connectTimeoutSeconds"} name={"connectTimeoutSeconds"}
type="number" type="number"
id="connectTimeoutSeconds" id="connectTimeoutSeconds"
className={`p-1.5 border ${ className={`p-1.5 border ${
errors.connectTimeoutSeconds && touched.connectTimeoutSeconds errors.connectTimeoutSeconds && touched.connectTimeoutSeconds ? "border-red-500" : "border-gray-400 "
? "border-red-500"
: "border-gray-400 "
} rounded-lg w-full md:w-60`} } rounded-lg w-full md:w-60`}
/> />
</FormGroup> </FormGroup>
@@ -164,20 +142,16 @@ const ChannelFields = () => {
id="readTimeoutSeconds" id="readTimeoutSeconds"
placeholder="https://example.com" placeholder="https://example.com"
className={`p-1.5 border ${ className={`p-1.5 border ${
errors.readTimeoutSeconds && touched.readTimeoutSeconds errors.readTimeoutSeconds && touched.readTimeoutSeconds ? "border-red-500" : "border-gray-400 "
? "border-red-500"
: "border-gray-400 "
} rounded-lg w-full md:w-60`} } rounded-lg w-full md:w-60`}
/> />
</FormGroup> </FormGroup>
</div> </div>
<button <button
type="submit" type="submit"
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full md:w-[50%]" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5"
> >
{isSubmitting || backOfficeMutation.isPending {isSubmitting || backOfficeMutation.isPending ? "Saving..." : "Save Changes"}
? "Saving..."
: "Save Changes"}
</button> </button>
<ValidationToastOnce /> <ValidationToastOnce />
</Form> </Form>

View File

@@ -6,16 +6,18 @@ import { toast } from "sonner";
import { faEyeSlash, faEye } from "@fortawesome/free-solid-svg-icons"; import { faEyeSlash, faEye } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useState } from "react"; import { useState } from "react";
import { useIntegrationsContext } from "../../../context/IntegrationsContext";
const NPEDFields = () => { const NPEDFields = () => {
const { state } = useIntegrationsContext();
const [showPwd, setShowPwd] = useState(false); const [showPwd, setShowPwd] = useState(false);
const { signIn, user, signOut } = useNPEDAuth(); const { signIn, signOut } = useNPEDAuth();
const initialValues = user const initialValues = state.npedUser
? { ? {
username: user?.propUsername?.value, username: state.npedUser?.propUsername?.value,
password: user?.propPassword?.value, password: state.npedUser?.propPassword?.value,
clientId: user?.propClientID?.value, clientId: state.npedUser?.propClientID?.value,
frontId: "NPED", frontId: "NPED",
rearId: "NPED", rearId: "NPED",
} }
@@ -48,20 +50,13 @@ const NPEDFields = () => {
}; };
return ( return (
<Formik <Formik initialValues={initialValues} onSubmit={handleSubmit} validate={validateValues} enableReinitialize>
initialValues={initialValues}
onSubmit={handleSubmit}
validate={validateValues}
enableReinitialize
>
{({ errors, touched, isSubmitting }) => ( {({ errors, touched, isSubmitting }) => (
<Form className="flex flex-col space-y-5 px-2"> <Form className="flex flex-col space-y-5 px-2">
<FormGroup> <FormGroup>
<label htmlFor="username">Username</label> <label htmlFor="username">Username</label>
{touched.username && errors.username && ( {touched.username && errors.username && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.username}</small>
{errors.username}
</small>
)} )}
<Field <Field
name="username" name="username"
@@ -82,9 +77,7 @@ const NPEDFields = () => {
className="p-2 border border-gray-400 rounded-lg w-full" className="p-2 border border-gray-400 rounded-lg w-full"
/> />
{touched.password && errors.password && ( {touched.password && errors.password && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.password}</small>
{errors.password}
</small>
)} )}
<FontAwesomeIcon <FontAwesomeIcon
type="button" type="button"
@@ -97,9 +90,7 @@ const NPEDFields = () => {
<FormGroup> <FormGroup>
<label htmlFor="clientId">Client ID</label> <label htmlFor="clientId">Client ID</label>
{touched.clientId && errors.clientId && ( {touched.clientId && errors.clientId && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.clientId}</small>
{errors.clientId}
</small>
)} )}
<Field <Field
name="clientId" name="clientId"
@@ -109,7 +100,7 @@ const NPEDFields = () => {
className="p-1.5 border border-gray-400 rounded-lg" className="p-1.5 border border-gray-400 rounded-lg"
/> />
</FormGroup> </FormGroup>
{!user?.propClientID?.value ? ( {!state.npedUser?.propClientID?.value ? (
<button <button
type="submit" type="submit"
className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5 hover:cursor-pointer" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5 hover:cursor-pointer"

View File

@@ -31,7 +31,7 @@ const NPEDHotlist = () => {
type="file" type="file"
name="file" name="file"
id="file" id="file"
className="file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5" className="mt-4 w-full flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5"
onChange={(e) => { onChange={(e) => {
if (e.target.files) { if (e.target.files) {
if (e.target.files[0].type !== "text/csv") { if (e.target.files[0].type !== "text/csv") {

View File

@@ -4,7 +4,7 @@ import SoundSettingsFields from "./SoundSettingsFields";
const SoundSettingsCard = () => { const SoundSettingsCard = () => {
return ( return (
<Card className="p-4"> <Card className="p-4 col-span-5 w-full">
<CardHeader title={"Sound Settings"} /> <CardHeader title={"Sound Settings"} />
<SoundSettingsFields /> <SoundSettingsFields />
</Card> </Card>

View File

@@ -1,9 +1,10 @@
import { Field, FieldArray, Form, Formik } from "formik"; import { Field, Form, Formik } from "formik";
import FormGroup from "../components/FormGroup"; import FormGroup from "../components/FormGroup";
import type { FormValues, Hotlist } from "../../../types/types"; import type { FormValues, Hotlist } from "../../../types/types";
import { useSoundContext } from "../../../context/SoundContext"; import { useSoundContext } from "../../../context/SoundContext";
import { useCameraBlackboard } from "../../../hooks/useCameraBlackboard"; import { useCameraBlackboard } from "../../../hooks/useCameraBlackboard";
import { toast } from "sonner"; import { toast } from "sonner";
import SliderComponent from "../../UI/Slider";
const SoundSettingsFields = () => { const SoundSettingsFields = () => {
const { state, dispatch } = useSoundContext(); const { state, dispatch } = useSoundContext();
@@ -12,22 +13,32 @@ const SoundSettingsFields = () => {
const hotlists: Hotlist[] = state.hotlists; const hotlists: Hotlist[] = state.hotlists;
const soundOptions = state?.soundOptions?.map((soundOption) => ({ const soundOptions = state?.soundOptions?.map((soundOption) => ({
value: soundOption?.name, value: soundOption?.soundFileName,
label: soundOption?.name, label: soundOption?.name,
})); }));
const initialValues: FormValues = { const initialValues: FormValues = {
sightingSound: state.sightingSound ?? "switch", sightingSound: state.sightingSound ?? "switch",
NPEDsound: state.NPEDsound ?? "popup", NPEDsound: state.NPEDsound ?? "popup",
hotlistSound: state.hotlistSound ?? "notification",
hotlists, hotlists,
}; };
const handleSubmit = async (values: FormValues) => { const handleSubmit = async (values: FormValues) => {
dispatch({ type: "UPDATE", payload: values }); const updatedValues = {
...values,
sightingVolume: state.sightingVolume,
NPEDsoundVolume: state.NPEDsoundVolume,
hotlistSoundVolume: state.hotlistSoundVolume,
soundOptions: [...(state.soundOptions ?? [])],
};
dispatch({ type: "UPDATE", payload: updatedValues });
const result = await mutation.mutateAsync({ const result = await mutation.mutateAsync({
operation: "INSERT", operation: "INSERT",
path: "soundSettings", path: "soundSettings",
value: values, value: updatedValues,
}); });
if (result.reason !== "OK") { if (result.reason !== "OK") {
toast.error("Cannot update sound settings"); toast.error("Cannot update sound settings");
@@ -37,55 +48,72 @@ const SoundSettingsFields = () => {
}; };
return ( return (
<Formik initialValues={initialValues} onSubmit={handleSubmit}> <Formik initialValues={initialValues} onSubmit={handleSubmit}>
{({ values }) => ( {() => (
<Form className="flex flex-col space-y-3"> <Form className="flex flex-col space-y-3">
<FormGroup> <FormGroup>
<label htmlFor="sightingSound">Sighting Sound</label> <div className="flex flex-col md:flex-row space-y-2 w-full justify-between gap-3">
<Field <label htmlFor="sightingSound">Sighting Sound</label>
as="select" <Field
name="sightingSound" as="select"
className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60" name="sightingSound"
> className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60"
{soundOptions?.map(({ value, label }) => { >
return ( {soundOptions?.map(({ value, label }) => {
return (
<option key={label} value={value}>
{label}
</option>
);
})}
</Field>
<SliderComponent soundCategory="SIGHTINGVOLUME" />
</div>
</FormGroup>
<FormGroup>
<div className="flex flex-col md:flex-row space-y-2 w-full justify-between gap-3">
<label htmlFor="NPEDsound">NPED notification Sound</label>
<Field
as="select"
name="NPEDsound"
className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60"
>
{soundOptions?.map(({ value, label }) => (
<option key={value} value={value}> <option key={value} value={value}>
{label} {label}
</option> </option>
); ))}
})} </Field>
</Field> <SliderComponent soundCategory="NPEDVOLUME" />
</FormGroup> </div>
<FormGroup>
<label htmlFor="NPEDsound">NPED notification Sound</label>
<Field
as="select"
name="NPEDsound"
className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60"
>
{soundOptions?.map(({ value, label }) => (
<option key={value} value={value}>
{label}
</option>
))}
</Field>
</FormGroup> </FormGroup>
<div> <div>
<h3 className="text-lg font-semibold mb-2">Hotlist Sounds</h3> <h3 className="text-lg font-semibold mb-2">Hotlist Sounds</h3>
<FormGroup> <FormGroup>
<div className="flex flex-col md:flex-row space-y-2 w-full justify-between gap-3">
<label htmlFor="hotlistSound">All hotlist Sounds</label>
<Field
as="select"
name="hotlistSound"
className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60"
>
{soundOptions?.map(({ value, label }) => (
<option key={value} value={value}>
{label}
</option>
))}
</Field>
<SliderComponent soundCategory="HOTLISTVOLUME" />
</div>
</FormGroup>
{/* <FormGroup>
<FieldArray <FieldArray
name="hotlists" name="hotlists"
render={() => ( render={() => (
<div className="w-full m-2"> <div className="w-full m-2">
{values?.hotlists?.length > 0 ? ( {values?.hotlists?.length > 0 ? (
values?.hotlists?.map((hotlist, index) => ( values?.hotlists?.map((hotlist, index) => (
<div <div key={hotlist.name} className="flex items-center m-2 w-full justify-between">
key={hotlist.name} <label htmlFor={`hotlists.${index}.sound`} className="w-32 shrink-0">
className="flex items-center m-2 w-full justify-between"
>
<label
htmlFor={`hotlists.${index}.sound`}
className="w-32 shrink-0"
>
{hotlist.name} {hotlist.name}
</label> </label>
<Field <Field
@@ -108,7 +136,7 @@ const SoundSettingsFields = () => {
</div> </div>
)} )}
/> />
</FormGroup> </FormGroup> */}
</div> </div>
<button <button
type="submit" type="submit"

View File

@@ -3,44 +3,69 @@ import FormGroup from "../components/FormGroup";
import type { SoundUploadValue } from "../../../types/types"; import type { SoundUploadValue } from "../../../types/types";
import { useSoundContext } from "../../../context/SoundContext"; import { useSoundContext } from "../../../context/SoundContext";
import { toast } from "sonner"; import { toast } from "sonner";
import { useCameraBlackboard } from "../../../hooks/useCameraBlackboard";
const SoundUpload = () => { const SoundUpload = () => {
const { dispatch } = useSoundContext(); const { state, dispatch } = useSoundContext();
const { mutation } = useCameraBlackboard();
const initialValues: SoundUploadValue = { const initialValues: SoundUploadValue = {
name: "", name: "",
soundFile: null, soundFile: null,
soundFileName: "",
soundUrl: "",
}; };
const handleSubmit = (values: SoundUploadValue) => { const handleSubmit = async (values: SoundUploadValue) => {
if (!values.soundFile) { if (!values.soundFile) {
toast.warning("Please select an audio file"); toast.warning("Please select an audio file");
} else { return;
dispatch({ type: "ADD", payload: values });
toast.success("Sound file upload successfully");
} }
const alreadyExists = state?.soundOptions?.some((soundOption) => soundOption.name === values.name);
if (state.soundOptions?.includes(values) || alreadyExists) {
toast.warning("Sound already in list");
return;
}
const updatedValues = {
...state,
soundOptions: [...(state.soundOptions ?? []), values],
};
const result = await mutation.mutateAsync({
operation: "INSERT",
path: "soundSettings",
value: updatedValues,
});
if (result.reason !== "OK") {
toast.error("Cannot update sound settings");
} else {
toast.success(`${values.name} file added`);
}
dispatch({ type: "ADD", payload: values });
}; };
return ( return (
<Formik <Formik initialValues={initialValues} onSubmit={handleSubmit} enableReinitialize>
initialValues={initialValues} {({ setFieldValue, errors, setFieldError, values }) => (
onSubmit={handleSubmit}
enableReinitialize
>
{({ setFieldValue, errors, setFieldError }) => (
<Form> <Form>
<label htmlFor="soundFile" className="">
Sound File
</label>
<FormGroup> <FormGroup>
<label htmlFor="soundFile">Sound File</label>
<input <input
type="file" type="file"
name="soundFile" name="soundFile"
id="sightingSoundinput" id="sightingSoundinput"
accept="audio/mpeg" accept="audio/mpeg"
className="mt-4 w-full flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5"
onChange={(e) => { onChange={(e) => {
if ( if (e.target?.files && e.target?.files[0]?.type === "audio/mpeg") {
e.target?.files && const url = URL.createObjectURL(e.target.files[0]);
e.target?.files[0]?.type === "audio/mpeg" setFieldValue("soundUrl", url);
) {
setFieldValue("name", e.target.files[0].name); setFieldValue("name", e.target.files[0].name);
setFieldValue("soundFileName", e.target.files[0].name);
setFieldValue("soundFile", e.target.files[0]); setFieldValue("soundFile", e.target.files[0]);
} else { } else {
setFieldError("soundFile", "Not an mp3 file"); setFieldError("soundFile", "Not an mp3 file");
@@ -49,12 +74,24 @@ const SoundUpload = () => {
}} }}
/> />
</FormGroup> </FormGroup>
{errors.soundFile && (
<p className="text-red-500 text-sm mt-1">Not an mp3 file</p> <div className="mt-4 flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center">
)} {!values.soundFile && (
<div className="mb-3 rounded-xl bg-slate-800 px-3 py-1 text-xs uppercase tracking-wider text-slate-400">
No uploaded sound files
</div>
)}
<p className="max-w-md text-slate-300">
Uploaded Sound files will appear in the <span className="font-bold">drop downs</span> once they are
uploaded. They can be used for any <span className="text-blue-400">Sighting,</span>{" "}
<span className="text-emerald-400">Hotlist</span> or <span className="text-amber-600">NPED</span> hits.
</p>
</div>
{errors.soundFile && <p className="text-red-500 text-sm mt-1">Not an mp3 file</p>}
<button <button
type="submit" type="submit"
className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5 mt-[5%]"
disabled={errors.soundFile ? true : false} disabled={errors.soundFile ? true : false}
> >
Upload Upload

View File

@@ -4,7 +4,7 @@ import SoundUpload from "./SoundUpload";
const SoundUploadCard = () => { const SoundUploadCard = () => {
return ( return (
<Card className="p-4"> <Card className="p-4 col-span-3 w-full">
<CardHeader title={"Sound upload"} /> <CardHeader title={"Sound upload"} />
<SoundUpload /> <SoundUpload />
</Card> </Card>

View File

@@ -7,8 +7,7 @@ import type { SystemValues, SystemValuesErrors } from "../../../types/types";
import { useSystemConfig } from "../../../hooks/useSystemConfig"; import { useSystemConfig } from "../../../hooks/useSystemConfig";
const SystemConfigFields = () => { const SystemConfigFields = () => {
const { saveSystemSettings, systemSettingsData, saveSystemSettingsLoading } = const { saveSystemSettings, systemSettingsData, saveSystemSettingsLoading } = useSystemConfig();
useSystemConfig();
const { softRebootMutation, hardRebootMutation } = useReboots(); const { softRebootMutation, hardRebootMutation } = useReboots();
const initialvalues: SystemValues = { const initialvalues: SystemValues = {
@@ -26,8 +25,7 @@ const SystemConfigFields = () => {
const interval = Number(values.sntpInterval); const interval = Number(values.sntpInterval);
if (!values.deviceName) errors.deviceName = "Required"; if (!values.deviceName) errors.deviceName = "Required";
if (!values.timeZone) errors.timeZone = "Required"; if (!values.timeZone) errors.timeZone = "Required";
if (isNaN(interval) || interval <= 0) if (isNaN(interval) || interval <= 0) errors.sntpInterval = "Cannot be less than 0";
errors.sntpInterval = "Cannot be less than 0";
if (!values.sntpServer) errors.sntpServer = "Required"; if (!values.sntpServer) errors.sntpServer = "Required";
return errors; return errors;
}; };
@@ -52,16 +50,11 @@ const SystemConfigFields = () => {
{({ values, errors, touched, isSubmitting }) => ( {({ values, errors, touched, isSubmitting }) => (
<Form className="flex flex-col space-y-5 px-2"> <Form className="flex flex-col space-y-5 px-2">
<FormGroup> <FormGroup>
<label <label htmlFor="deviceName" className="font-medium whitespace-nowrap md:w-1/2 text-left">
htmlFor="deviceName"
className="font-medium whitespace-nowrap md:w-1/2 text-left"
>
Device Name Device Name
</label> </label>
{touched.deviceName && errors.deviceName && ( {touched.deviceName && errors.deviceName && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.deviceName}</small>
{errors.deviceName}
</small>
)} )}
<Field <Field
id="deviceName" id="deviceName"
@@ -73,16 +66,11 @@ const SystemConfigFields = () => {
/> />
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="timeZone" className="font-medium whitespace-nowrap md:w-1/2 text-left">
htmlFor="timeZone"
className="font-medium whitespace-nowrap md:w-1/2 text-left"
>
Local Time Zone Local Time Zone
</label> </label>
{touched.timeZone && errors.timeZone && ( {touched.timeZone && errors.timeZone && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.timeZone}</small>
{errors.timeZone}
</small>
)} )}
<Field <Field
id="timeZone" id="timeZone"
@@ -99,16 +87,11 @@ const SystemConfigFields = () => {
</Field> </Field>
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="sntpServer" className="font-medium whitespace-nowrap md:w-1/2 text-left">
htmlFor="sntpServer"
className="font-medium whitespace-nowrap md:w-1/2 text-left"
>
SNTP Server SNTP Server
</label> </label>
{touched.sntpServer && errors.sntpServer && ( {touched.sntpServer && errors.sntpServer && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.sntpServer}</small>
{errors.sntpServer}
</small>
)} )}
<Field <Field
id="sntpServer" id="sntpServer"
@@ -120,16 +103,11 @@ const SystemConfigFields = () => {
/> />
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="sntpInterval" className="font-medium whitespace-nowrap md:w-1/2 text-left">
htmlFor="sntpInterval"
className="font-medium whitespace-nowrap md:w-1/2 text-left"
>
SNTP Interval minutes SNTP Interval minutes
</label> </label>
{touched.sntpInterval && errors.sntpInterval && ( {touched.sntpInterval && errors.sntpInterval && (
<small className="absolute right-0 -top-5 text-red-500"> <small className="absolute right-0 -top-5 text-red-500">{errors.sntpInterval}</small>
{errors.sntpInterval}
</small>
)} )}
<Field <Field
id="sntpInterval" id="sntpInterval"
@@ -142,15 +120,12 @@ const SystemConfigFields = () => {
</FormGroup> </FormGroup>
<button <button
type="submit" type="submit"
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full md:w-[50%]" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5"
disabled={isSubmitting} disabled={isSubmitting}
> >
{saveSystemSettingsLoading ? "Saving..." : "Save System Settings"} {saveSystemSettingsLoading ? "Saving..." : "Save System Settings"}
</button> </button>
<SystemFileUpload <SystemFileUpload name={"softwareUpdate"} selectedFile={values.softwareUpdate} />
name={"softwareUpdate"}
selectedFile={values.softwareUpdate}
/>
<div className="border-b border-gray-600"> <div className="border-b border-gray-600">
<p>Reboot</p> <p>Reboot</p>
</div> </div>
@@ -160,18 +135,14 @@ const SystemConfigFields = () => {
className="bg-red-600 text-white px-4 py-2 rounded hover:bg-red-700 transition w-full md:w-[50%]" className="bg-red-600 text-white px-4 py-2 rounded hover:bg-red-700 transition w-full md:w-[50%]"
onClick={handleSoftReboot} onClick={handleSoftReboot}
> >
{softRebootMutation.isPending || isSubmitting {softRebootMutation.isPending || isSubmitting ? "Rebooting..." : "Software Reboot"}
? "Rebooting..."
: "Software Reboot"}
</button> </button>
<button <button
type="button" type="button"
className="bg-red-600 text-white px-4 py-2 rounded hover:bg-red-700 transition w-full md:w-[50%]" className="bg-red-600 text-white px-4 py-2 rounded hover:bg-red-700 transition w-full md:w-[50%]"
onClick={handleHardReboot} onClick={handleHardReboot}
> >
{hardRebootMutation.isPending || isSubmitting {hardRebootMutation.isPending || isSubmitting ? "Rebooting" : "Hardware Reboot"}
? "Rebooting"
: "Hardware Reboot"}
</button> </button>
</Form> </Form>
)} )}

View File

@@ -36,7 +36,7 @@ const SystemFileUpload = ({ name, selectedFile }: SystemFileUploadProps) => {
type="file" type="file"
name="softwareUpdate" name="softwareUpdate"
id="softwareUpdate" id="softwareUpdate"
className="file:px-10 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5 w-full max-w-xs" className="mt-4 w-full flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5"
onChange={(event) => { onChange={(event) => {
const file = event.currentTarget.files?.[0]; const file = event.currentTarget.files?.[0];
if (!file) { if (!file) {
@@ -44,8 +44,7 @@ const SystemFileUpload = ({ name, selectedFile }: SystemFileUploadProps) => {
return; return;
} }
if (file?.size > 8 * 1024 * 1024) if (file?.size > 8 * 1024 * 1024) toast.error("File is too large (max 8MB).");
toast.error("File is too large (max 8MB).");
setFieldValue(name, file); setFieldValue(name, file);
}} }}
/> />
@@ -53,7 +52,7 @@ const SystemFileUpload = ({ name, selectedFile }: SystemFileUploadProps) => {
</FormGroup> </FormGroup>
<button <button
type="button" type="button"
className="w-full md:w-[50%] text-white bg-[#26B170] hover:bg-green-700 font-small rounded-lg text-sm px-2 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"
disabled={!selectedFile} disabled={!selectedFile}
onClick={handleFileUploadClick} onClick={handleFileUploadClick}
> >

View File

@@ -56,23 +56,13 @@ const ModemSettings = () => {
return ( return (
<> <>
<ModemToggle <ModemToggle showSettings={showSettings} onShowSettings={setShowSettings} />
showSettings={showSettings}
onShowSettings={setShowSettings}
/>
{!showSettings && ( {!showSettings && (
<Formik <Formik initialValues={inititalValues} onSubmit={handleSubmit} enableReinitialize>
initialValues={inititalValues}
onSubmit={handleSubmit}
enableReinitialize
>
{({ isSubmitting }) => ( {({ isSubmitting }) => (
<Form className="flex flex-col space-y-5 px-2"> <Form className="flex flex-col space-y-5 px-2">
<FormGroup> <FormGroup>
<label <label htmlFor="apn" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="apn"
className="font-medium whitespace-nowrap md:w-2/3"
>
APN APN
</label> </label>
<Field <Field
@@ -84,10 +74,7 @@ const ModemSettings = () => {
/> />
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="username" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="username"
className="font-medium whitespace-nowrap md:w-2/3"
>
Username Username
</label> </label>
<Field <Field
@@ -99,10 +86,7 @@ const ModemSettings = () => {
/> />
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="password" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="password"
className="font-medium whitespace-nowrap md:w-2/3"
>
Password Password
</label> </label>
<div className="flex gap-2 items-center relative mb-4"> <div className="flex gap-2 items-center relative mb-4">
@@ -122,10 +106,7 @@ const ModemSettings = () => {
</div> </div>
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="password" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="password"
className="font-medium whitespace-nowrap md:w-2/3"
>
Password Password
</label> </label>
<Field <Field
@@ -140,11 +121,9 @@ const ModemSettings = () => {
</FormGroup> </FormGroup>
<button <button
type="submit" type="submit"
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full md:w-[50%]" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5"
> >
{isSubmitting || modemMutation.isPending {isSubmitting || modemMutation.isPending ? "Saving..." : "Save Modem settings"}
? "Saving..."
: "Save Modem settings"}
</button> </button>
</Form> </Form>
)} )}

View File

@@ -37,18 +37,11 @@ const WiFiSettingsForm = () => {
await wifiMutation.mutateAsync(wifiConfig); await wifiMutation.mutateAsync(wifiConfig);
}; };
return ( return (
<Formik <Formik initialValues={initialValues} onSubmit={handleSubmit} enableReinitialize>
initialValues={initialValues}
onSubmit={handleSubmit}
enableReinitialize
>
{({ isSubmitting }) => ( {({ isSubmitting }) => (
<Form className="flex flex-col space-y-5 px-2"> <Form className="flex flex-col space-y-5 px-2">
<FormGroup> <FormGroup>
<label <label htmlFor="ssid" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="ssid"
className="font-medium whitespace-nowrap md:w-2/3"
>
SSID SSID
</label> </label>
<Field <Field
@@ -60,10 +53,7 @@ const WiFiSettingsForm = () => {
/> />
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="password" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="password"
className="font-medium whitespace-nowrap md:w-2/3"
>
Password Password
</label> </label>
<div className="flex gap-2 items-center relative mb-4"> <div className="flex gap-2 items-center relative mb-4">
@@ -83,10 +73,7 @@ const WiFiSettingsForm = () => {
</div> </div>
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<label <label htmlFor="encryption" className="font-medium whitespace-nowrap md:w-2/3">
htmlFor="encryption"
className="font-medium whitespace-nowrap md:w-2/3"
>
WPA/Encryption Type WPA/Encryption Type
</label> </label>
<Field <Field
@@ -103,11 +90,9 @@ const WiFiSettingsForm = () => {
</FormGroup> </FormGroup>
<button <button
type="submit" type="submit"
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full md:w-[50%]" className="w-1/4 text-white bg-green-700 hover:bg-green-800 font-small rounded-lg text-sm px-2 py-2.5"
> >
{isSubmitting || wifiMutation.isPending {isSubmitting || wifiMutation.isPending ? "Saving..." : " Save WiFi settings"}
? "Saving..."
: " Save WiFi settings"}
</button> </button>
</Form> </Form>
)} )}

View File

@@ -5,11 +5,7 @@ type FormGroupProps = {
}; };
const FormGroup = ({ children }: FormGroupProps) => { const FormGroup = ({ children }: FormGroupProps) => {
return ( return <div className="flex flex-col md:flex-row md:items-center justify-between relative space-y-2">{children}</div>;
<div className="flex flex-col md:flex-row md:items-center justify-between relative">
{children}
</div>
);
}; };
export default FormGroup; export default FormGroup;

View File

@@ -23,8 +23,7 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
const { dispatch } = useAlertHitContext(); const { dispatch } = useAlertHitContext();
const { query, mutation } = useCameraBlackboard(); const { query, mutation } = useCameraBlackboard();
const hotlistName = getHotlistName(sighting?.metadata?.hotlistMatches); const hotlistNames = getHotlistName(sighting?.metadata?.hotlistMatches);
const handleAcknowledgeButton = () => { const handleAcknowledgeButton = () => {
try { try {
if (!sighting) { if (!sighting) {
@@ -109,7 +108,7 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
onClick={handleAcknowledgeButton} onClick={handleAcknowledgeButton}
> >
<FontAwesomeIcon icon={faCheck} /> <FontAwesomeIcon icon={faCheck} />
Accept Acknowledge
</button> </button>
)} )}
</div> </div>
@@ -117,16 +116,6 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
<div className="flex flex-col md:flex-row gap-3 items-center"> <div className="flex flex-col md:flex-row gap-3 items-center">
<NumberPlate vrm={sighting?.vrm} motion={motionAway} /> <NumberPlate vrm={sighting?.vrm} motion={motionAway} />
<img src={sighting?.plateUrlColour} alt="plate patch" className="h-16 object-contain rounded-md" /> <img src={sighting?.plateUrlColour} alt="plate patch" className="h-16 object-contain rounded-md" />
{hotlistName && (
<div>
<p className="text-gray-300">Hotlist</p>
<div className="items-center px-2.5 py-0.5 rounded-sm me-2 bg-amber-500">
<p className="font-medium text-2xl break-all text-amber-800">
{hotlistName ? hotlistName[0] : "-"}
</p>
</div>
</div>
)}
</div> </div>
{isHotListHit && <img src={HotListImg} alt="hotlistHit" className="h-20 object-contain rounded-md" />} {isHotListHit && <img src={HotListImg} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
@@ -134,6 +123,20 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
{isNPEDHitB && <img src={NPED_CAT_B} alt="hotlistHit" className="h-20 object-contain rounded-md" />} {isNPEDHitB && <img src={NPED_CAT_B} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
{isNPEDHitC && <img src={NPED_CAT_C} alt="hotlistHit" className="h-20 object-contain rounded-md" />} {isNPEDHitC && <img src={NPED_CAT_C} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
</div> </div>
{hotlistNames && (
<div className="flex flex-col border-b border-gray-600 mb-4">
<p className="text-gray-300">Hotlists</p>
<div className="grid grid-cols-1 md:grid-cols-2 gap-x-[90%] lg:gap-x-[15%] w-[50%]">
{hotlistNames.map((hotlistName, index) => (
<div className="items-center px-2.5 py-0.5 rounded-sm me-2 bg-amber-500 w-55 m-2" key={index}>
<p className="font-medium text-2xl break-all text-amber-800">
{hotlistName ? hotlistName?.replace(/\.csv$/i, "") : "-"}
</p>
</div>
))}
</div>
</div>
)}
<div className="flex flex-col lg:flex-row items-center gap-3"> <div className="flex flex-col lg:flex-row items-center gap-3">
<img <img
src={sighting?.overviewUrl} src={sighting?.overviewUrl}
@@ -157,18 +160,26 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
<dd className="font-medium text-2xl">{sighting?.seenCount ?? "-"}</dd> <dd className="font-medium text-2xl">{sighting?.seenCount ?? "-"}</dd>
</div> </div>
<div> {sighting?.make && (
<dt className="text-gray-300">Make</dt> <div>
<dd className="font-medium text-2xl">{sighting?.make ?? "-"}</dd> <dt className="text-gray-300">Make</dt>
</div> <dd className="font-medium text-2xl">{sighting?.make ?? "-"}</dd>
<div> </div>
<dt className="text-gray-300">Model</dt> )}
<dd className="font-medium text-2xl">{sighting?.model ?? "-"}</dd> {sighting?.model ||
</div> (!sighting?.model.trim() && (
<div className="sm:col-span-2"> <div>
<dt className="text-gray-300">Colour</dt> <dt className="text-gray-300">Model</dt>
<dd className="font-medium text-2xl">{sighting?.color ?? "-"}</dd> <dd className="font-medium text-2xl">{sighting?.model ?? "-"}</dd>
</div> </div>
))}
{sighting?.color && (
<div className="sm:col-span-2">
<dt className="text-gray-300">Colour</dt>
<dd className="font-medium text-2xl">{sighting?.color ?? "-"}</dd>
</div>
)}
<div> <div>
<dt className="text-gray-300">Time</dt> <dt className="text-gray-300">Time</dt>
<dd className="font-medium text-xl">{sighting?.timeStamp ?? "-"}</dd> <dd className="font-medium text-xl">{sighting?.timeStamp ?? "-"}</dd>
@@ -192,7 +203,7 @@ const SightingModal = ({ isSightingModalOpen, handleClose, sighting, onDelete }:
onClick={handleAcknowledgeButton} onClick={handleAcknowledgeButton}
> >
<FontAwesomeIcon icon={faCheck} /> <FontAwesomeIcon icon={faCheck} />
Accept Acknowledge
</button> </button>
)} )}
{onDelete ? ( {onDelete ? (

View File

@@ -1,5 +1,5 @@
import { useCallback, useEffect, useMemo, useRef, useState } from "react"; import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import type { ReducedSightingType, SightingType } from "../../types/types"; import type { HitKind, QueuedHit, ReducedSightingType, SightingType } from "../../types/types";
import { BLANK_IMG, getSoundFileURL } from "../../utils/utils"; import { BLANK_IMG, getSoundFileURL } from "../../utils/utils";
import NumberPlate from "../PlateStack/NumberPlate"; import NumberPlate from "../PlateStack/NumberPlate";
import Card from "../UI/Card"; import Card from "../UI/Card";
@@ -15,7 +15,7 @@ import NPED_CAT_C from "/NPED_Cat_C.svg";
import popup from "../../assets/sounds/ui/popup_open.mp3"; import popup from "../../assets/sounds/ui/popup_open.mp3";
import notification from "../../assets/sounds/ui/notification.mp3"; import notification from "../../assets/sounds/ui/notification.mp3";
import { useSound } from "react-sounds"; import { useSound } from "react-sounds";
import { useNPEDContext } from "../../context/NPEDUserContext"; import { useIntegrationsContext } from "../../context/IntegrationsContext";
import { useSoundContext } from "../../context/SoundContext"; import { useSoundContext } from "../../context/SoundContext";
import Loading from "../UI/Loading"; import Loading from "../UI/Loading";
import { checkIsHotListHit, getNPEDCategory } from "../../utils/utils"; import { checkIsHotListHit, getNPEDCategory } from "../../utils/utils";
@@ -38,23 +38,29 @@ type SightingHistoryProps = {
className?: string; className?: string;
}; };
export default function SightingHistoryWidget({ export default function SightingHistoryWidget({ className, title }: SightingHistoryProps) {
className, const [modalQueue, setModalQueue] = useState<QueuedHit[]>([]);
title,
}: SightingHistoryProps) {
useNow(1000); useNow(1000);
const { state } = useSoundContext(); const { state } = useSoundContext();
const soundSrcNped = useMemo(() => { const soundSrcNped = useMemo(() => {
if (state?.NPEDsound?.includes(".mp3") || state.NPEDsound?.includes(".wav")) {
const file = state.soundOptions?.find((item) => item.name === state.NPEDsound);
return file?.soundUrl ?? popup;
}
return getSoundFileURL(state.NPEDsound) ?? popup; return getSoundFileURL(state.NPEDsound) ?? popup;
}, [state.NPEDsound]); }, [state.NPEDsound, state.soundOptions]);
const soundSrcHotlist = useMemo(() => { const soundSrcHotlist = useMemo(() => {
return getSoundFileURL(state?.hotlists?.[0]?.sound) ?? notification; if (state?.hotlistSound?.includes(".mp3") || state.hotlistSound?.includes(".wav")) {
}, [state.hotlists]); const file = state.soundOptions?.find((item) => item.name === state.hotlistSound);
return file?.soundUrl ?? notification;
}
return getSoundFileURL(state?.hotlistSound) ?? notification;
}, [state.hotlistSound, state.soundOptions]);
const { play: npedSound } = useSound(soundSrcNped); const { play: npedSound } = useSound(soundSrcNped, { volume: state.NPEDsoundVolume });
const { play: hotlistsound } = useSound(soundSrcHotlist); const { play: hotlistsound } = useSound(soundSrcHotlist, { volume: state.hotlistSoundVolume });
const { const {
sightings, sightings,
setSelectedSighting, setSelectedSighting,
@@ -66,13 +72,23 @@ export default function SightingHistoryWidget({
} = useSightingFeedContext(); } = useSightingFeedContext();
const { dispatch } = useAlertHitContext(); const { dispatch } = useAlertHitContext();
const { sessionStarted, setSessionList, sessionList } = useNPEDContext(); const { state: integrationState, dispatch: integrationDispatch } = useIntegrationsContext();
const sessionStarted = integrationState.sessionStarted;
const sessionPaused = integrationState.sessionPaused;
const processedRefs = useRef<Set<number | string>>(new Set()); const processedRefs = useRef<Set<number | string>>(new Set());
const hasAutoOpenedRef = useRef(false); const hasAutoOpenedRef = useRef(false);
const npedRef = useRef(false); const npedRef = useRef(false);
const enqueue = useCallback((sighting: SightingType, kind: HitKind) => {
const id = sighting.vrm ?? sighting.ref;
if (processedRefs.current.has(id)) return;
processedRefs.current.add(id);
setModalQueue((q) => [...q, { id, sighting, kind }]);
}, []);
const reduceObject = (obj: SightingType): ReducedSightingType => { const reduceObject = (obj: SightingType): ReducedSightingType => {
return { return {
vrm: obj.vrm, vrm: obj.vrm,
@@ -83,11 +99,12 @@ export default function SightingHistoryWidget({
useEffect(() => { useEffect(() => {
if (sessionStarted) { if (sessionStarted) {
if (!mostRecent) return; if (!mostRecent) return;
if (sessionPaused) return;
const reducedMostRecent = reduceObject(mostRecent); const reducedMostRecent = reduceObject(mostRecent);
setSessionList([...sessionList, reducedMostRecent]); integrationDispatch({ type: "ADD", payload: reducedMostRecent });
} }
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps
}, [mostRecent, sessionStarted, setSessionList]); }, [mostRecent, sessionStarted]);
const onRowClick = useCallback( const onRowClick = useCallback(
(sighting: SightingType) => { (sighting: SightingType) => {
@@ -98,10 +115,7 @@ export default function SightingHistoryWidget({
[setSelectedSighting, setSightingModalOpen] [setSelectedSighting, setSightingModalOpen]
); );
const rows = useMemo( const rows = useMemo(() => sightings?.filter(Boolean) as SightingType[], [sightings]);
() => sightings?.filter(Boolean) as SightingType[],
[sightings]
);
useEffect(() => { useEffect(() => {
if (!rows?.length) return; if (!rows?.length) return;
@@ -110,32 +124,15 @@ export default function SightingHistoryWidget({
const id = sighting.vrm; const id = sighting.vrm;
if (processedRefs.current.has(id)) continue; if (processedRefs.current.has(id)) continue;
const isHot = checkIsHotListHit(sighting); const isHotlistHit = checkIsHotListHit(sighting);
const cat = sighting?.metadata?.npedJSON?.["NPED CATEGORY"]; const npedcategory = sighting?.metadata?.npedJSON?.["NPED CATEGORY"];
const isNPED = npedcategory === "A" || npedcategory === "B" || npedcategory === "C";
if (cat === "A" || cat === "B" || cat === "C") { if (isNPED || isHotlistHit) {
npedSound(); enqueue(sighting, isNPED ? "NPED" : "HOTLIST"); // enqueue ONLY
setSelectedSighting(sighting);
setSightingModalOpen(true);
processedRefs.current.add(id);
break; // stop after one new open per render cycle
}
if (isHot) {
hotlistsound();
setSelectedSighting(sighting);
setSightingModalOpen(true);
processedRefs.current.add(id);
break;
} }
} }
}, [ }, [rows, enqueue]);
rows,
hotlistsound,
npedSound,
setSightingModalOpen,
setSelectedSighting,
]);
useEffect(() => { useEffect(() => {
rows?.forEach((obj) => { rows?.forEach((obj) => {
@@ -168,31 +165,37 @@ export default function SightingHistoryWidget({
}); });
if (firstNPED) { if (firstNPED) {
setSelectedSighting(firstNPED); enqueue(firstNPED, "NPED");
npedSound();
setSightingModalOpen(true);
npedRef.current = true; npedRef.current = true;
} }
if (firstHot) { if (firstHot) {
setSelectedSighting(firstHot); enqueue(firstHot, "HOTLIST");
hotlistsound();
setSightingModalOpen(true);
hasAutoOpenedRef.current = true; hasAutoOpenedRef.current = true;
} }
}, [hotlistsound, npedSound, setSelectedSighting]); }, [enqueue, hotlistsound, npedSound, rows, setSelectedSighting, setSightingModalOpen]);
useEffect(() => {
if (!isSightingModalOpen && modalQueue.length > 0) {
const next = modalQueue[0];
// if (next.kind === "NPED") npedSound();
// else hotlistsound();
setSelectedSighting(next.sighting);
setSightingModalOpen(true);
}
}, [isSightingModalOpen, npedSound, hotlistsound, setSelectedSighting, setSightingModalOpen, modalQueue]);
const handleClose = () => { const handleClose = () => {
setSightingModalOpen(false); setSightingModalOpen(false);
setModalQueue((q) => q.slice(1));
}; };
return ( return (
<> <>
<Card <Card className={clsx("overflow-y-auto min-h-[40vh] md:min-h-[60vh] max-h-[80vh] lg:w-[40%] p-4", className)}>
className={clsx(
"overflow-y-auto min-h-[40vh] md:min-h-[60vh] max-h-[80vh] lg:w-[40%] p-4",
className
)}
>
<CardHeader title={title} /> <CardHeader title={title} />
<div className="flex flex-col gap-3 "> <div className="flex flex-col gap-3 ">
{isLoading && ( {isLoading && (
@@ -215,45 +218,16 @@ export default function SightingHistoryWidget({
className={`border border-gray-700 rounded-md mb-2 p-2 cursor-pointer `} className={`border border-gray-700 rounded-md mb-2 p-2 cursor-pointer `}
onClick={() => onRowClick(obj)} onClick={() => onRowClick(obj)}
> >
<div <div className={`flex items-center gap-3 mt-2 justify-between `}>
className={`flex items-center gap-3 mt-2 justify-between `}
>
<div className={`border p-1 `}> <div className={`border p-1 `}>
<img <img src={obj?.plateUrlColour || BLANK_IMG} height={48} width={200} alt="colour patch" />
src={obj?.plateUrlColour || BLANK_IMG}
height={48}
width={200}
alt="colour patch"
/>
</div> </div>
{isHotListHit && ( {isHotListHit && (
<img <img src={HotListImg} alt="hotlistHit" className="h-20 object-contain rounded-md" />
src={HotListImg}
alt="hotlistHit"
className="h-20 object-contain rounded-md"
/>
)}
{isNPEDHitA && (
<img
src={NPED_CAT_A}
alt="hotlistHit"
className="h-20 object-contain rounded-md"
/>
)}
{isNPEDHitB && (
<img
src={NPED_CAT_B}
alt="hotlistHit"
className="h-20 object-contain rounded-md"
/>
)}
{isNPEDHitC && (
<img
src={NPED_CAT_C}
alt="hotlistHit"
className="h-20 object-contain rounded-md"
/>
)} )}
{isNPEDHitA && <img src={NPED_CAT_A} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
{isNPEDHitB && <img src={NPED_CAT_B} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
{isNPEDHitC && <img src={NPED_CAT_C} alt="hotlistHit" className="h-20 object-contain rounded-md" />}
<NumberPlate motion={motionAway} vrm={obj?.vrm} /> <NumberPlate motion={motionAway} vrm={obj?.vrm} />
</div> </div>
</div> </div>
@@ -262,11 +236,7 @@ export default function SightingHistoryWidget({
</div> </div>
</div> </div>
</Card> </Card>
<SightingModal <SightingModal isSightingModalOpen={isSightingModalOpen} handleClose={handleClose} sighting={selectedSighting} />
isSightingModalOpen={isSightingModalOpen}
handleClose={handleClose}
sighting={selectedSighting}
/>
</> </>
); );
} }

View File

@@ -1,21 +1,18 @@
import { Link } from "react-router"; import { Link } from "react-router";
import Logo from "/MAV.svg"; import Logo from "/MAV.svg";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { import { faGear, faHome, faListCheck, faMaximize, faMinimize, faRotate } from "@fortawesome/free-solid-svg-icons";
faGear,
faHome,
faListCheck,
faMaximize,
faMinimize,
faRotate,
} from "@fortawesome/free-solid-svg-icons";
import { useState } from "react"; import { useState } from "react";
import SoundBtn from "./SoundBtn"; import SoundBtn from "./SoundBtn";
import { useNPEDContext } from "../../context/NPEDUserContext"; import { useIntegrationsContext } from "../../context/IntegrationsContext";
export default function Header() { export default function Header() {
const [isFullscreen, setIsFullscreen] = useState(false); const [isFullscreen, setIsFullscreen] = useState(false);
const { sessionStarted } = useNPEDContext(); const { state } = useIntegrationsContext();
const sessionStarted = state.sessionStarted;
const sessionPaused = state.sessionPaused;
const toggleFullscreen = () => { const toggleFullscreen = () => {
if (!document.fullscreenElement) { if (!document.fullscreenElement) {
@@ -39,9 +36,13 @@ export default function Header() {
</Link> </Link>
</div> </div>
<div className="flex flex-col lg:flex-row items-center space-x-24 justify-items-center"> <div className="flex flex-col lg:flex-row items-center space-x-24 justify-items-center">
{sessionStarted && ( <div className="flex flex-row lg:flex-row space-x-2">
<div className="text-green-400 font-bold">Session Active</div> {sessionStarted && sessionPaused ? (
)} <p className="text-gray-400 font-bold">Session Paused</p>
) : (
sessionStarted && <p className="text-green-400 font-bold">Session Active</p>
)}
</div>
<div className="flex flex-row space-x-8"> <div className="flex flex-row space-x-8">
<Link to={"/"}> <Link to={"/"}>
@@ -59,11 +60,7 @@ export default function Header() {
</div> </div>
<SoundBtn /> <SoundBtn />
<Link to={"/session-settings"}> <Link to={"/session-settings"}>
<FontAwesomeIcon <FontAwesomeIcon className="text-white" icon={faListCheck} size="2x" />
className="text-white"
icon={faListCheck}
size="2x"
/>
</Link> </Link>
<Link to={"/system-settings"}> <Link to={"/system-settings"}>

View File

@@ -7,16 +7,12 @@ type ModalComponentProps = {
close: () => void; close: () => void;
}; };
const ModalComponent = ({ const ModalComponent = ({ isModalOpen, children, close }: ModalComponentProps) => {
isModalOpen,
children,
close,
}: ModalComponentProps) => {
return ( return (
<Modal <Modal
isOpen={isModalOpen} isOpen={isModalOpen}
onRequestClose={close} onRequestClose={close}
className="bg-[#1e2a38] p-6 rounded-lg shadow-lg max-w-[90%] mx-auto mt-[1%] md:w-[80%] md:h-[95%] z-[100] overflow-y-auto max-h-screen" className="bg-[#1e2a38] p-6 rounded-lg shadow-lg max-w-[80%] mx-auto mt-[1%] md:w-[70%] md:h-[95%] z-[100] overflow-y-auto max-h-screen"
overlayClassName="fixed inset-0 bg-[#1e2a38]/70 flex justify-center items-start z-100" overlayClassName="fixed inset-0 bg-[#1e2a38]/70 flex justify-center items-start z-100"
> >
{children} {children}

View File

@@ -11,7 +11,6 @@ const NavigationArrow = ({ side, settingsPage }: NavigationArrowProps) => {
const navigate = useNavigate(); const navigate = useNavigate();
const navigationDest = (side: string | undefined) => { const navigationDest = (side: string | undefined) => {
console.log(side);
if (settingsPage) { if (settingsPage) {
navigate("/"); navigate("/");
return; return;

View File

@@ -0,0 +1,60 @@
import "rc-slider/assets/index.css";
import Slider from "rc-slider";
import { useSoundContext } from "../../context/SoundContext";
const SliderComponent = ({ soundCategory }: { soundCategory: "SIGHTINGVOLUME" | "NPEDVOLUME" | "HOTLISTVOLUME" }) => {
const { dispatch, state } = useSoundContext();
const getVolumeOption = (soundCategory: string) => {
if (soundCategory === "SIGHTINGVOLUME") {
return state.sightingVolume;
}
if (soundCategory === "NPEDVOLUME") {
return state.NPEDsoundVolume;
}
if (soundCategory === "HOTLISTVOLUME") {
return state.hotlistSoundVolume;
}
};
const volume = getVolumeOption(soundCategory);
const handleChange = (value: number | number[]) => {
const number = typeof value === "number" ? value : value[0];
dispatch({ type: soundCategory, payload: number });
};
return (
<div className="flex flex-row w-full lg:w-[40%] space-x-5">
<Slider
min={0}
max={1}
onChange={handleChange}
value={volume}
step={0.1}
styles={{
handle: {
width: "1.2rem",
height: "1.2rem",
marginTop: -7,
backgroundColor: "#3b82f6",
border: "2px solid white",
borderRadius: "50%",
boxShadow: "0 0 5px rgba(0, 0, 0, 0.2)",
},
track: {
backgroundColor: "#3b82f6",
height: 6,
},
rail: {
backgroundColor: "#e5e7eb",
height: 6,
},
}}
/>
<span>{volume ? volume * 10 : 1}</span>
</div>
);
};
export default SliderComponent;

View File

@@ -0,0 +1,18 @@
import clsx from "clsx";
type VehicleSessionItemProps = {
sessionNumber: number;
textColour: string;
vehicleTag: string;
};
const VehicleSessionItem = ({ sessionNumber, textColour, vehicleTag }: VehicleSessionItemProps) => {
return (
<li className="rounded-xl border border-slate-800 bg-slate-800/60 p-3 shadow-sm flex flex-row justify-between items-center">
<p>{vehicleTag}</p>
<span className={`font-bold text-xl bg-slate-700 px-2 rounded-md ${clsx(textColour)}`}>{sessionNumber}</span>
</li>
);
};
export default VehicleSessionItem;

View File

@@ -0,0 +1,14 @@
import { createContext, useContext, type ActionDispatch } from "react";
import type { NPEDACTION, NPEDSTATE } from "../types/types";
type IntegrationsValue = {
state: NPEDSTATE;
dispatch: ActionDispatch<[action: NPEDACTION]>;
};
export const IntegrationsContext = createContext<IntegrationsValue | undefined>(undefined);
export const useIntegrationsContext = () => {
const ctx = useContext(IntegrationsContext);
if (!ctx) throw new Error("useNPEDContext must be used within <IntegrationsProvider>");
return ctx;
};

View File

@@ -1,21 +0,0 @@
import { createContext, useContext, type SetStateAction } from "react";
import type { NPEDUser, ReducedSightingType } from "../types/types";
type UserContextValue = {
user: NPEDUser | null;
setUser: React.Dispatch<SetStateAction<NPEDUser | null>>;
sessionStarted: boolean;
setSessionStarted: React.Dispatch<SetStateAction<boolean>>;
sessionList: ReducedSightingType[];
setSessionList: React.Dispatch<SetStateAction<ReducedSightingType[]>>;
};
export const NPEDUserContext = createContext<UserContextValue | undefined>(
undefined
);
export const useNPEDContext = () => {
const ctx = useContext(NPEDUserContext);
if (!ctx)
throw new Error("useNPEDContext must be used within <NPEDUserProvider>");
return ctx;
};

View File

@@ -7,13 +7,10 @@ type SoundContextType = {
audioArmed: boolean; audioArmed: boolean;
}; };
export const SoundContext = createContext<SoundContextType | undefined>( export const SoundContext = createContext<SoundContextType | undefined>(undefined);
undefined
);
export const useSoundContext = () => { export const useSoundContext = () => {
const ctx = useContext(SoundContext); const ctx = useContext(SoundContext);
if (!ctx) if (!ctx) throw new Error("useSoundContext must be used within <SoundContext>");
throw new Error("useSoundContext must be used within <SoundContext>");
return ctx; return ctx;
}; };

View File

@@ -0,0 +1,36 @@
import { useEffect, useReducer, type ReactNode } from "react";
import { IntegrationsContext } from "../IntegrationsContext";
import { useCameraBlackboard } from "../../hooks/useCameraBlackboard";
import { initialState, reducer } from "../reducers/IntegrationsContextReducer";
type IntegrationsProviderType = {
children: ReactNode;
};
export const IntegrationsProvider = ({ children }: IntegrationsProviderType) => {
const [state, dispatch] = useReducer(reducer, initialState);
const { mutation } = useCameraBlackboard();
useEffect(() => {
const fetchData = async () => {
const result = await mutation.mutateAsync({
operation: "VIEW",
path: "sessionStats",
});
if (!result.result || typeof result.result === "string") return;
dispatch({ type: "UPDATE", payload: result?.result });
};
fetchData();
}, []);
return (
<IntegrationsContext.Provider
value={{
state,
dispatch,
}}
>
{children}
</IntegrationsContext.Provider>
);
};

View File

@@ -1,28 +0,0 @@
import { useState, type ReactNode } from "react";
import type { NPEDUser, ReducedSightingType } from "../../types/types";
import { NPEDUserContext } from "../NPEDUserContext";
type NPEDUserProviderType = {
children: ReactNode;
};
export const NPEDUserProvider = ({ children }: NPEDUserProviderType) => {
const [user, setUser] = useState<NPEDUser | null>(null);
const [sessionStarted, setSessionStarted] = useState(false);
const [sessionList, setSessionList] = useState<ReducedSightingType[]>([]);
return (
<NPEDUserContext.Provider
value={{
user,
setUser,
setSessionStarted,
sessionStarted,
sessionList,
setSessionList,
}}
>
{children}
</NPEDUserContext.Provider>
);
};

View File

@@ -1,11 +1,4 @@
import { import { useEffect, useMemo, useReducer, useRef, useState, type ReactNode } from "react";
useEffect,
useMemo,
useReducer,
useRef,
useState,
type ReactNode,
} from "react";
import { SoundContext } from "../SoundContext"; import { SoundContext } from "../SoundContext";
import { initialState, reducer } from "../reducers/SoundContextReducer"; import { initialState, reducer } from "../reducers/SoundContextReducer";
import { useCameraBlackboard } from "../../hooks/useCameraBlackboard"; import { useCameraBlackboard } from "../../hooks/useCameraBlackboard";
@@ -28,7 +21,11 @@ const SoundContextProvider = ({ children }: SoundContextProviderProps) => {
path: "soundSettings", path: "soundSettings",
}); });
dispatch({ type: "UPDATE", payload: result.result }); if (!result.result || typeof result.result !== "object") {
dispatch({ type: "UPDATE", payload: state });
} else {
dispatch({ type: "UPDATE", payload: result.result });
}
}; };
fetchSound(); fetchSound();
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -63,13 +60,8 @@ const SoundContextProvider = ({ children }: SoundContextProviderProps) => {
}; };
}, []); }, []);
const value = useMemo( const value = useMemo(() => ({ state, dispatch, audioArmed }), [state, audioArmed]);
() => ({ state, dispatch, audioArmed }), return <SoundContext.Provider value={value}>{children}</SoundContext.Provider>;
[state, audioArmed]
);
return (
<SoundContext.Provider value={value}>{children}</SoundContext.Provider>
);
}; };
export default SoundContextProvider; export default SoundContextProvider;

View File

@@ -0,0 +1,46 @@
import type { NPEDACTION, NPEDSTATE } from "../../types/types";
export const initialState = {
sessionStarted: false,
sessionList: [],
sessionPaused: false,
savedSightings: [],
npedUser: null,
};
export function reducer(state: NPEDSTATE, action: NPEDACTION) {
switch (action.type) {
case "SESSIONSTART":
return {
...state,
sessionStarted: action.payload,
};
case "LOGIN":
return {
...state,
npedUser: action.payload,
};
case "LOGOUT":
return {
...state,
npedUser: action.payload,
};
case "SESSIONPAUSE":
return {
...state,
sessionPaused: action.payload,
};
case "ADD":
return {
...state,
sessionList: [...state.sessionList, action.payload],
};
case "UPDATE":
return {
...state,
sessionList: action.payload,
};
default:
return { ...state };
}
}

View File

@@ -3,12 +3,20 @@ import type { SoundAction, SoundState } from "../../types/types";
export const initialState: SoundState = { export const initialState: SoundState = {
sightingSound: "switch", sightingSound: "switch",
NPEDsound: "popup", NPEDsound: "popup",
hotlistSound: "warning",
hotlists: [{ name: "hotlistName", sound: "notification" }], hotlists: [{ name: "hotlistName", sound: "notification" }],
soundOptions: [ soundOptions: [
{ name: "switch (Default)", soundFile: null }, { name: "Switch (Default)", soundFileName: "switch" },
{ name: "popup", soundFile: null }, { name: "Popup", soundFileName: "popup" },
{ name: "notification", soundFile: null }, { name: "Notification", soundFileName: "notification" },
{ name: "Beep", soundFileName: "beep" },
{ name: "Ding", soundFileName: "ding" },
{ name: "Shutter", soundFileName: "shutter" },
{ name: "Warning (voice)", soundFileName: "warning" },
], ],
sightingVolume: 1,
NPEDsoundVolume: 1,
hotlistSoundVolume: 1,
}; };
export function reducer(state: SoundState, action: SoundAction): SoundState { export function reducer(state: SoundState, action: SoundAction): SoundState {
@@ -18,10 +26,15 @@ export function reducer(state: SoundState, action: SoundAction): SoundState {
...state, ...state,
sightingSound: action.payload.sightingSound, sightingSound: action.payload.sightingSound,
NPEDsound: action.payload.NPEDsound, NPEDsound: action.payload.NPEDsound,
hotlistSound: action.payload.hotlistSound,
hotlists: action.payload.hotlists?.map((hotlist) => ({ hotlists: action.payload.hotlists?.map((hotlist) => ({
name: hotlist.name, name: hotlist.name,
sound: hotlist.sound, sound: hotlist.sound,
})), })),
NPEDsoundVolume: action.payload.NPEDsoundVolume,
sightingVolume: action.payload.sightingVolume,
hotlistSoundVolume: action.payload.hotlistSoundVolume,
soundOptions: action.payload.soundOptions,
}; };
} }
@@ -31,6 +44,24 @@ export function reducer(state: SoundState, action: SoundAction): SoundState {
soundOptions: [...(state.soundOptions ?? []), action.payload], soundOptions: [...(state.soundOptions ?? []), action.payload],
}; };
} }
// todo: refactor to use single state coupled with sound name. e.g : {name: <soundname>, volume: <volume>}
case "SIGHTINGVOLUME":
return {
...state,
sightingVolume: action.payload,
};
case "NPEDVOLUME":
return {
...state,
NPEDsoundVolume: action.payload,
};
case "HOTLISTVOLUME":
return {
...state,
hotlistSoundVolume: action.payload,
};
default: default:
return state; return state;

View File

@@ -1,6 +1,6 @@
import { useMutation, useQuery } from "@tanstack/react-query"; import { useMutation, useQuery } from "@tanstack/react-query";
import type { NPEDFieldType } from "../types/types"; import type { NPEDFieldType } from "../types/types";
import { useNPEDContext } from "../context/NPEDUserContext"; import { useIntegrationsContext } from "../context/IntegrationsContext";
import { useEffect } from "react"; import { useEffect } from "react";
import { CAM_BASE } from "../utils/config"; import { CAM_BASE } from "../utils/config";
import { toast } from "sonner"; import { toast } from "sonner";
@@ -42,8 +42,7 @@ async function signIn(loginDetails: NPEDFieldType) {
}), }),
]); ]);
if (!frontRes.ok || !rearRes.ok) if (!frontRes.ok || !rearRes.ok) throw new Error("Cannot reach NPED endpoint");
throw new Error("Cannot reach NPED endpoint");
return { return {
frontResponse: frontRes.json(), frontResponse: frontRes.json(),
@@ -73,7 +72,7 @@ async function signOut() {
} }
export const useNPEDAuth = () => { export const useNPEDAuth = () => {
const { setUser, user } = useNPEDContext(); const { dispatch } = useIntegrationsContext();
const signInMutation = useMutation({ const signInMutation = useMutation({
mutationKey: ["NPEDSignin"], mutationKey: ["NPEDSignin"],
@@ -84,7 +83,8 @@ export const useNPEDAuth = () => {
onSuccess: async (data) => { onSuccess: async (data) => {
toast.dismiss(); toast.dismiss();
toast.success("Signed in successfully!"); toast.success("Signed in successfully!");
setUser(await data.frontResponse);
dispatch({ type: "LOGIN", payload: await data.frontResponse });
}, },
onError: (error) => { onError: (error) => {
toast.dismiss(); toast.dismiss();
@@ -101,7 +101,7 @@ export const useNPEDAuth = () => {
mutationFn: signOut, mutationFn: signOut,
onSuccess: () => { onSuccess: () => {
toast.success("Signed out successfully"); toast.success("Signed out successfully");
setUser(null); dispatch({ type: "LOGOUT", payload: null });
}, },
onError: (error) => { onError: (error) => {
toast.error(`Sign-out failed: ${error.message}`); toast.error(`Sign-out failed: ${error.message}`);
@@ -115,11 +115,11 @@ export const useNPEDAuth = () => {
useEffect(() => { useEffect(() => {
if (fetchdataQuery.isSuccess && fetchdataQuery.data) { if (fetchdataQuery.isSuccess && fetchdataQuery.data) {
setUser(fetchdataQuery.data); dispatch({ type: "LOGIN", payload: fetchdataQuery.data });
} else { } else {
setUser(null); dispatch({ type: "LOGOUT", payload: null });
} }
}, [fetchdataQuery.data, fetchdataQuery.isSuccess, setUser]); }, [dispatch, fetchdataQuery.data, fetchdataQuery.isSuccess]);
useEffect(() => { useEffect(() => {
if (fetchdataQuery.isError) toast.error(fetchdataQuery.error.message); if (fetchdataQuery.isError) toast.error(fetchdataQuery.error.message);
@@ -134,8 +134,6 @@ export const useNPEDAuth = () => {
data: signInMutation.data, data: signInMutation.data,
fetchdataQueryError: fetchdataQuery.error, fetchdataQueryError: fetchdataQuery.error,
fetchdataQueryLoading: fetchdataQuery.isLoading, fetchdataQueryLoading: fetchdataQuery.isLoading,
user,
setUser,
signOut: signOutMutation.mutate, signOut: signOutMutation.mutate,
}; };
}; };

View File

@@ -1,10 +1,13 @@
import { useEffect, useMemo, useRef, useState } from "react"; import { useEffect, useMemo, useRef, useState } from "react";
import { useDebouncedCallback } from "use-debounce";
import { Query, useQuery } from "@tanstack/react-query"; import { Query, useQuery } from "@tanstack/react-query";
import type { SightingType } from "../types/types"; import type { SightingType } from "../types/types";
import { useSoundOnChange } from "react-sounds"; import { useSound } from "react-sounds";
import { useSoundContext } from "../context/SoundContext"; import { useSoundContext } from "../context/SoundContext";
import { getSoundFileURL } from "../utils/utils"; import { checkIsHotListHit, getNPEDCategory, getSoundFileURL } from "../utils/utils";
import switchSound from "../assets/sounds/ui/switch.mp3"; import switchSound from "../assets/sounds/ui/switch.mp3";
import notification from "../assets/sounds/ui/notification.mp3";
import popup from "../assets/sounds/ui/popup_open.mp3";
async function fetchSighting(url: string | undefined, ref: number): Promise<SightingType> { async function fetchSighting(url: string | undefined, ref: number): Promise<SightingType> {
const res = await fetch(`${url}${ref}`, { const res = await fetch(`${url}${ref}`, {
@@ -21,30 +24,38 @@ export function useSightingFeed(url: string | undefined) {
const [sessionStarted, setSessionStarted] = useState(false); const [sessionStarted, setSessionStarted] = useState(false);
const [selectedSighting, setSelectedSighting] = useState<SightingType | null>(null); const [selectedSighting, setSelectedSighting] = useState<SightingType | null>(null);
const mostRecent = sightings[0] ?? null; const soundSrcHotlist = useMemo(() => {
const latestRef = mostRecent?.ref ?? null; if (state?.hotlistSound?.includes(".mp3") || state.hotlistSound?.includes(".wav")) {
const file = state.soundOptions?.find((item) => item.name === state.hotlistSound);
const first = useRef(true); return file?.soundUrl ?? notification;
const lastSoundAt = useRef(0);
const COOLDOWN_MS = 1500;
const currentRef = useRef<number>(-1);
const lastValidTimestamp = useRef<number>(Date.now());
const trigger = useMemo(() => {
if (latestRef == null || !audioArmed) return null;
if (first.current) {
first.current = false;
return Symbol("skip");
} }
const now = Date.now(); return getSoundFileURL(state?.hotlistSound) ?? notification;
if (now - lastSoundAt.current < COOLDOWN_MS) return Symbol("skip"); }, [state.hotlistSound, state.soundOptions]);
lastSoundAt.current = now;
return latestRef; const soundSrcNped = useMemo(() => {
}, [audioArmed, latestRef]); if (state?.NPEDsound?.includes(".mp3") || state.NPEDsound?.includes(".wav")) {
const file = state.soundOptions?.find((item) => item.name === state.NPEDsound);
return file?.soundUrl ?? popup;
}
return getSoundFileURL(state.NPEDsound) ?? popup;
}, [state.NPEDsound, state.soundOptions]);
const soundSrc = useMemo(() => { const soundSrc = useMemo(() => {
if (state?.sightingSound?.includes(".mp3") || state.sightingSound?.includes(".wav")) {
const file = state.soundOptions?.find((item) => item.name === state.sightingSound);
return file?.soundUrl ?? switchSound;
}
return getSoundFileURL(state?.sightingSound) ?? switchSound; return getSoundFileURL(state?.sightingSound) ?? switchSound;
}, [state.sightingSound]); }, [state.sightingSound, state.soundOptions]);
const { play: hotlistsound } = useSound(soundSrcHotlist, { volume: state.hotlistSoundVolume });
const { play: npedSound } = useSound(soundSrcNped, { volume: state.NPEDsoundVolume });
const { play: sightingSound } = useSound(soundSrc, { volume: state.sightingVolume });
const mostRecent = sightings[0] ?? null;
const currentRef = useRef<number>(-1);
const lastValidTimestamp = useRef<number>(Date.now());
function refetchInterval(query: Query<SightingType, Error, SightingType, (string | undefined)[]>) { function refetchInterval(query: Query<SightingType, Error, SightingType, (string | undefined)[]>) {
if (!query) return; if (!query) return;
@@ -74,15 +85,36 @@ export function useSightingFeed(url: string | undefined) {
staleTime: 0, staleTime: 0,
}); });
//use latestref instead of trigger to revert back const playHotlistsound = useDebouncedCallback(() => {
useSoundOnChange(soundSrc, trigger, { hotlistsound();
volume: 1, }, 500);
initial: false,
}); const playNPEDHitSound = useDebouncedCallback(() => {
npedSound();
}, 500);
const playSightingHitSound = useDebouncedCallback(() => {
sightingSound();
}, 500);
useEffect(() => { useEffect(() => {
const data = query.data; const data = query.data;
if (!data || data.ref === -1) return; if (!data || data.ref === -1) return;
const isHotListHit = checkIsHotListHit(data);
const cat = getNPEDCategory(data);
const isNPEDHitA = cat === "A";
const isNPEDHitB = cat === "B";
const isNPEDHitC = cat === "C";
if ((isNPEDHitA && audioArmed) || (isNPEDHitB && audioArmed) || (isNPEDHitC && audioArmed)) {
playNPEDHitSound();
} else if (isHotListHit && audioArmed) {
playHotlistsound();
} else if (audioArmed) {
playSightingHitSound();
}
const now = Date.now(); const now = Date.now();

View File

@@ -47,7 +47,7 @@ const SystemSettings = () => {
</div> </div>
</TabPanel> </TabPanel>
<TabPanel> <TabPanel>
<div className="mx-auto grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-2 gap-4 px-2 sm:px-4 lg:px-0 w-full"> <div className="mx-auto grid grid-rows-2 sm:grid-cols-1 lg:grid-cols-8 gap-4 px-2 sm:px-4 lg:px-0 w-full">
<SoundSettingsCard /> <SoundSettingsCard />
<SoundUploadCard /> <SoundUploadCard />
</div> </div>

View File

@@ -43,9 +43,7 @@ export type CameraSettingValues = {
id: number | string; id: number | string;
}; };
export type CameraSettingErrorValues = Partial< export type CameraSettingErrorValues = Partial<Record<keyof CameraSettingValues, string>>;
Record<keyof CameraSettingValues, string>
>;
export type BearerTypeFieldType = { export type BearerTypeFieldType = {
format: string; format: string;
@@ -287,18 +285,26 @@ export type FormValues = {
sightingSound: SoundValue; sightingSound: SoundValue;
NPEDsound: SoundValue; NPEDsound: SoundValue;
hotlists: Hotlist[]; hotlists: Hotlist[];
hotlistSound: SoundValue;
soundOptions?: SoundUploadValue[];
}; };
export type SoundUploadValue = { export type SoundUploadValue = {
name: string; name: string;
soundFile: File | null; soundFileName?: string;
soundFile?: File | null;
soundUrl?: string;
}; };
export type SoundState = { export type SoundState = {
sightingSound: SoundValue; sightingSound: SoundValue;
NPEDsound: SoundValue; NPEDsound: SoundValue;
hotlists: Hotlist[]; hotlists: Hotlist[];
hotlistSound: SoundValue;
soundOptions?: SoundUploadValue[]; soundOptions?: SoundUploadValue[];
sightingVolume: number;
NPEDsoundVolume: number;
hotlistSoundVolume: number;
}; };
type UpdateAction = { type UpdateAction = {
@@ -307,6 +313,11 @@ type UpdateAction = {
sightingSound: SoundValue; sightingSound: SoundValue;
NPEDsound: SoundValue; NPEDsound: SoundValue;
hotlists: Hotlist[]; hotlists: Hotlist[];
sightingVolume: number;
NPEDsoundVolume: number;
hotlistSoundVolume: number;
hotlistSound: SoundValue;
soundOptions?: SoundUploadValue[];
}; };
}; };
@@ -315,7 +326,12 @@ type AddAction = {
payload: SoundUploadValue; payload: SoundUploadValue;
}; };
export type SoundAction = UpdateAction | AddAction; type VolumeAction = {
type: "SIGHTINGVOLUME" | "NPEDVOLUME" | "HOTLISTVOLUME";
payload: number;
};
export type SoundAction = UpdateAction | AddAction | VolumeAction;
export type WifiSettingValues = { export type WifiSettingValues = {
ssid: string; ssid: string;
password: string; password: string;
@@ -355,3 +371,26 @@ export type ModemSettingsType = {
password: string; password: string;
authenticationType: string; authenticationType: string;
}; };
export type HitKind = "NPED" | "HOTLIST";
export type QueuedHit = {
id: number | string;
sighting: SightingType;
kind: HitKind;
};
export type DedupedSightings = ReducedSightingType[];
export type NPEDSTATE = {
sessionStarted: boolean;
sessionList: ReducedSightingType[];
sessionPaused: boolean;
savedSightings: DedupedSightings;
npedUser: NPEDUser;
};
export type NPEDACTION = {
type: string;
payload: any;
};

View File

@@ -1,18 +1,31 @@
import switchSound from "../assets/sounds/ui/switch.mp3"; import switchSound from "../assets/sounds/ui/switch.mp3";
import popup from "../assets/sounds/ui/popup_open.mp3"; import popup from "../assets/sounds/ui/popup_open.mp3";
import notification from "../assets/sounds/ui/notification.mp3"; import notification from "../assets/sounds/ui/notification.mp3";
import beep from "../assets/sounds/ui/Beep.wav";
import warning from "../assets/sounds/ui/Warning.wav";
import ding from "../assets/sounds/ui/Ding.wav";
import shutter from "../assets/sounds/ui/shutter.mp3";
import attention from "../assets/sounds/ui/Attention.wav";
import type { HotlistMatches, SightingType } from "../types/types"; import type { HotlistMatches, SightingType } from "../types/types";
import { hasFlag } from "country-flag-icons";
export function getSoundFileURL(name: string) { export function getSoundFileURL(name: string) {
const sounds: Record<string, string> = { const sounds: Record<string, string> = {
switch: switchSound, switch: switchSound,
popup: popup, popup: popup,
notification: notification, notification: notification,
beep: beep,
warning: warning,
ding: ding,
shutter: shutter,
attention: attention,
}; };
return sounds[name] ?? null; return sounds[name] ?? null;
} }
export const showSoundURL = (url: URL | string | undefined) => {
console.log(url);
};
const randomChars = () => { const randomChars = () => {
const uppercaseAsciiStart = 65; const uppercaseAsciiStart = 65;
const letterIndex = Math.floor(Math.random() * 26); const letterIndex = Math.floor(Math.random() * 26);
@@ -79,12 +92,6 @@ export const formatNumberPlate = (plate: string) => {
const formattedPlate = splittedPlate?.join(""); const formattedPlate = splittedPlate?.join("");
return formattedPlate; return formattedPlate;
}; };
export const formatNumberPlateEU = (plate: string) => {
const splittedPlate = plate?.split("");
splittedPlate?.splice(3, 0, " ");
const formattedPlate = splittedPlate?.join("");
return formattedPlate;
};
export const BLANK_IMG = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="; export const BLANK_IMG = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
@@ -141,16 +148,13 @@ export const checkIsHotListHit = (sigthing: SightingType | null) => {
}; };
export function getHotlistName(obj: HotlistMatches | undefined) { export function getHotlistName(obj: HotlistMatches | undefined) {
if (!obj || Object.values(obj).includes(false)) return; if (!obj) return;
const keys = Object.keys(obj); const hotlistNames = Object.entries(obj)
return keys; .filter(([, value]) => value === true)
.map(([key]) => key);
return hotlistNames;
} }
export const getNPEDCategory = (r?: SightingType | null) => export const getNPEDCategory = (r?: SightingType | null) =>
r?.metadata?.npedJSON?.["NPED CATEGORY"] as "A" | "B" | "C" | undefined; r?.metadata?.npedJSON?.["NPED CATEGORY"] as "A" | "B" | "C" | "D" | undefined;
export const numberPlateFlag = (countryCode: string) => {
const result = hasFlag(countryCode) === true;
console.log(result);
};

View File

@@ -138,7 +138,7 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.27.1" "@babel/helper-plugin-utils" "^7.27.1"
"@babel/runtime@^7.1.2": "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.18.3":
version "7.28.4" version "7.28.4"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.4.tgz#a70226016fabe25c5783b2f22d3e1c9bc5ca3326" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.4.tgz#a70226016fabe25c5783b2f22d3e1c9bc5ca3326"
integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ== integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==
@@ -1044,6 +1044,11 @@ chownr@^3.0.0:
resolved "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz" resolved "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz"
integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==
classnames@^2.2.5:
version "2.5.1"
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b"
integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==
clsx@^2.0.0, clsx@^2.1.1: clsx@^2.0.0, clsx@^2.1.1:
version "2.1.1" version "2.1.1"
resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz"
@@ -1875,6 +1880,23 @@ queue-microtask@^1.2.2:
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
rc-slider@^11.1.9:
version "11.1.9"
resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-11.1.9.tgz#d872130fbf4ec51f28543d62e90451091d6f5208"
integrity sha512-h8IknhzSh3FEM9u8ivkskh+Ef4Yo4JRIY2nj7MrH6GQmrwV6mcpJf5/4KgH5JaVI1H3E52yCdpOlVyGZIeph5A==
dependencies:
"@babel/runtime" "^7.10.1"
classnames "^2.2.5"
rc-util "^5.36.0"
rc-util@^5.36.0:
version "5.44.4"
resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-5.44.4.tgz#89ee9037683cca01cd60f1a6bbda761457dd6ba5"
integrity sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==
dependencies:
"@babel/runtime" "^7.18.3"
react-is "^18.2.0"
react-dom@^19.1.1: react-dom@^19.1.1:
version "19.1.1" version "19.1.1"
resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.1.1.tgz" resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.1.1.tgz"
@@ -1892,6 +1914,11 @@ react-is@^16.13.1, react-is@^16.7.0:
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
react-is@^18.2.0:
version "18.3.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
react-lifecycles-compat@^3.0.0: react-lifecycles-compat@^3.0.0:
version "3.0.4" version "3.0.4"
resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz"
@@ -2240,6 +2267,11 @@ uri-js@^4.2.2:
dependencies: dependencies:
punycode "^2.1.0" punycode "^2.1.0"
use-debounce@^10.0.6:
version "10.0.6"
resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-10.0.6.tgz#e05060a5e561432ec740c653698f3eb162bd28ec"
integrity sha512-C5OtPyhAZgVoteO9heXMTdW7v/IbFI+8bSVKYCJrSmiWWCLsbUxiBSp4t9v0hNBTGY97bT72ydDIDyGSFWfwXg==
vite@^7.1.0: vite@^7.1.0:
version "7.1.2" version "7.1.2"
resolved "https://registry.npmjs.org/vite/-/vite-7.1.2.tgz" resolved "https://registry.npmjs.org/vite/-/vite-7.1.2.tgz"