Files
edr-platform/apps/edr-freight-web/backoffice/src/shared/context/UnitContext.tsx
natib21 e6e44e773b fix ui
2026-07-10 11:25:59 +00:00

28 lines
941 B
TypeScript

import React, { createContext, useContext, ReactNode } from 'react';
import { useUnit } from '@/user-management/hooks/useUnit';
// Define the context type to match the return type of useUnit hook
type UnitContextType = ReturnType<typeof useUnit> | undefined;
// Create context with undefined as default
const UnitContext = createContext<UnitContextType>(undefined);
// Provider component
export const UnitProvider: React.FC<{ children: ReactNode }> = ({ children }) => {
const unitQuery = useUnit(); // or whatever hook/query you're using to get units
return (
<UnitContext.Provider value={unitQuery}>
{children}
</UnitContext.Provider>
);
};
// Custom hook to use the context
export const useUnitContext = () => {
const context = useContext(UnitContext);
if (context === undefined) {
throw new Error('useUnitContext must be used within a UnitProvider');
}
return context;
};