fix: add error message in set method of context on outside of provider

This commit is contained in:
p-sw 2024-05-24 19:15:21 +09:00
parent 934aa2244b
commit 541292d8cc

View File

@ -20,7 +20,16 @@ interface DialogContext {
const initialDialogContext: DialogContext = { opened: false };
const DialogContext = React.createContext<
[DialogContext, Dispatch<SetStateAction<DialogContext>>]
>([initialDialogContext, () => {}]);
>([
initialDialogContext,
() => {
if (process.env.NODE_ENV && process.env.NODE_ENV !== "development") {
console.warn(
"It seems like you're using DialogContext outside of a provider."
);
}
},
]);
const useDialogContext = () => React.useContext(DialogContext);