28 lines
691 B
TypeScript
28 lines
691 B
TypeScript
import { Dispatch, SetStateAction, useContext, createContext } from "react";
|
|
|
|
/**
|
|
* =========================
|
|
* DialogContext
|
|
* =========================
|
|
*/
|
|
|
|
export interface IDialogContext {
|
|
opened: boolean;
|
|
}
|
|
|
|
export const initialDialogContext: IDialogContext = { opened: false };
|
|
export const DialogContext = createContext<
|
|
[IDialogContext, Dispatch<SetStateAction<IDialogContext>>]
|
|
>([
|
|
initialDialogContext,
|
|
() => {
|
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
|
console.warn(
|
|
"It seems like you're using DialogContext outside of a provider.",
|
|
);
|
|
}
|
|
},
|
|
]);
|
|
|
|
export const useDialogContext = () => useContext(DialogContext);
|