mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
|
import { Level } from "../components/ColoredSnackbarContent";
|
||
|
import { useCallback, createContext, useContext } from "react";
|
||
|
import { Notification } from "../models/Notifications";
|
||
|
|
||
|
const defaultOptions = {
|
||
|
timeout: 5,
|
||
|
}
|
||
|
|
||
|
interface NotificationContextProps {
|
||
|
notification: Notification | null;
|
||
|
setNotification: (n: Notification | null) => void;
|
||
|
}
|
||
|
|
||
|
const NotificationsContext = createContext<NotificationContextProps>(
|
||
|
{ notification: null, setNotification: () => { } });
|
||
|
|
||
|
export default NotificationsContext;
|
||
|
|
||
|
|
||
|
export function useNotifications() {
|
||
|
let useNotificationsProps = useContext(NotificationsContext);
|
||
|
|
||
|
const notificationBuilder = (level: Level) => {
|
||
|
return (message: string, timeout?: number) => {
|
||
|
useNotificationsProps.setNotification({
|
||
|
level, message,
|
||
|
timeout: timeout ? timeout : defaultOptions.timeout
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const resetNotification = () => useNotificationsProps.setNotification(null);
|
||
|
const createInfoNotification = useCallback(notificationBuilder("info"), []);
|
||
|
const createSuccessNotification = useCallback(notificationBuilder("success"), []);
|
||
|
const createWarnNotification = useCallback(notificationBuilder("warning"), []);
|
||
|
const createErrorNotification = useCallback(notificationBuilder("error"), []);
|
||
|
const isActive = useNotificationsProps.notification !== null;
|
||
|
|
||
|
|
||
|
return {
|
||
|
notification: useNotificationsProps.notification,
|
||
|
resetNotification,
|
||
|
createInfoNotification,
|
||
|
createSuccessNotification,
|
||
|
createWarnNotification,
|
||
|
createErrorNotification,
|
||
|
isActive
|
||
|
}
|
||
|
}
|