1
0
mirror of https://github.com/Infisical/infisical.git synced 2025-03-29 22:02:57 +00:00

feat: create prop for Notification; small readability changes

This commit is contained in:
asharonbaltazar
2022-12-07 11:52:18 -05:00
parent 3db1ff2411
commit add3075439

@ -7,6 +7,7 @@ type NotificationType = "success" | "error";
export type Notification = {
text: string;
type: NotificationType;
timeoutMs?: number;
};
type NotificationContextState = {
@ -36,14 +37,20 @@ const NotificationProvider = ({ children }: NotificationProviderProps) => {
return setNotifications([]);
};
const createNotification = ({ text, type = "success" }: Notification) => {
const createNotification = ({
text,
type = "success",
timeoutMs = 2000,
}: Notification) => {
const doesNotifExist = notifications.some((notif) => notif.text === text);
if (doesNotifExist) {
return;
}
return setNotifications((state) => [...state, { text, type }]);
const newNotification: Notification = { text, type, timeoutMs };
return setNotifications((state) => [...state, newNotification]);
};
return (