Files
Mav-Mobile-UI/src/context/providers/NPEDUserContextProvider.tsx

51 lines
1.6 KiB
TypeScript
Raw Normal View History

import { useEffect, useReducer, useState, type ReactNode } from "react";
import type { DedupedSightings, NPEDUser, ReducedSightingType } from "../../types/types";
2025-08-29 10:07:59 +01:00
import { NPEDUserContext } from "../NPEDUserContext";
import { useCameraBlackboard } from "../../hooks/useCameraBlackboard";
import { initialState, reducer } from "../reducers/NPEDContextReducer";
2025-08-29 10:07:59 +01:00
type NPEDUserProviderType = {
children: ReactNode;
};
export const NPEDUserProvider = ({ children }: NPEDUserProviderType) => {
const [state, dispatch] = useReducer(reducer, initialState);
const { mutation } = useCameraBlackboard();
2025-08-29 10:07:59 +01:00
const [user, setUser] = useState<NPEDUser | null>(null);
const [sessionStarted, setSessionStarted] = useState(false);
const [sessionList, setSessionList] = useState<ReducedSightingType[]>([]);
const [sessionPaused, setSessionPaused] = useState(false);
const [savedSightings, setSavedSightings] = useState<DedupedSightings | []>([]);
2025-08-29 10:07:59 +01:00
useEffect(() => {
const fetchData = async () => {
const result = await mutation.mutateAsync({
operation: "VIEW",
path: "sessionStats",
});
if (!result.result) return;
setSavedSightings(result?.result);
};
fetchData();
}, []);
console.log(savedSightings);
2025-08-29 10:07:59 +01:00
return (
<NPEDUserContext.Provider
value={{
user,
setUser,
setSessionStarted,
sessionStarted,
sessionList,
setSessionList,
sessionPaused,
setSessionPaused,
savedSightings,
setSavedSightings,
}}
>
2025-08-29 10:07:59 +01:00
{children}
</NPEDUserContext.Provider>
);
};