Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 1x 1x 1x 5x 5x 5x 1x 5x 1x 5x 5x 5x 3x 5x 5x 5x | import React, { useCallback, useMemo, useState } from 'react';
import { createScopedContext } from '@repo/hooks/createScopedContext';
import {
MaintenanceActions,
MaintenanceContextValue,
MaintenanceForm,
MaintenanceState,
} from './types';
const INITIAL_FORM: MaintenanceForm = {};
const {
Context: MaintenanceContext,
useStateSelector: useMaintenanceStateSelector,
useActionsSelector: useMaintenanceActionsSelector,
} = createScopedContext<MaintenanceState, MaintenanceActions>(
'Maintenance context hooks must be used within MaintenanceContextProvider',
);
export { useMaintenanceActionsSelector, useMaintenanceStateSelector };
export const MaintenanceContextProvider = ({
children,
}: {
children: React.ReactNode;
}) => {
const [form, setForm] = useState<MaintenanceForm>(INITIAL_FORM);
const [isSubmitting, setIsSubmitting] = useState(false);
const changeScope = useCallback((scope: string) => {
setForm(prev => ({ ...prev, scope }));
}, []);
const changeNote = useCallback((note: string) => {
setForm(prev => ({ ...prev, note }));
}, []);
const state = useMemo<MaintenanceState>(
() => ({ form, isSubmitting }),
[form, isSubmitting],
);
const actions = useMemo<MaintenanceActions>(
() => ({
changeScope,
changeNote,
setSubmitting: setIsSubmitting,
}),
[changeScope, changeNote],
);
const value = useMemo<MaintenanceContextValue>(
() => ({ state, actions }),
[state, actions],
);
return (
<MaintenanceContext.Provider value={value}>
{children}
</MaintenanceContext.Provider>
);
};
|