
* Replace withStyleswith useStyles (#1100) * Replace withStyleswith useStyles * Update messages * Use rem as a spacing unit (#1101) * Use rems as spacing units * Fix visual bugs * Update stories * Use macaw-ui as theme provider (#1108) * Use macaw ui as a theme provider * Add react-dom to aliases * Fix jest module resolution * Update useTheme hook usage * Fix test wrapper * Use macaw from git repo * Fix CI * Update stories * Fix aliasing * Extract savebar to macaw ui (#1146) * wip * Use savebar from macaw * Use confirm button from macaw * Improve file structure * Use sidebar context from macaw * Update macaw * Update macaw version * Remove savebar from storybook * Update stories * Use alerts and notifications from macaw (#1166) * Use alerts from macaw * Add notifications from macaw * Update stories * Pin macaw version * Encapsulate limit reached in one component * Remove unused imports * Use backlinks from macaw (#1183) * Use backlink from macaw * Update macaw version * Use macaw sidebar (#1148) * Use sidebar from macaw * Use shipped logo * Use lowercase * Update stories * Use user chip from macaw (#1191) * Use user chip from macaw * Use dedicated components for menu items * Simplify code * Bump version and fix types (#1210) * Rename onBack to onClick * Rename UserChip to UserChipMenu * Rename IMenuItem to SidebarMenuItem * Update macaw version * Fix tables after changes in macaw (#1220) * Update macaw version * Update changelog * Update stories * Fix after rebase * Update to macaw 0.2.0 * Lint files * Update macaw to 0.2.2
134 lines
4 KiB
TypeScript
134 lines
4 KiB
TypeScript
import { DEFAULT_NOTIFICATION_SHOW_TIME } from "@saleor/config";
|
|
import { Notification } from "@saleor/macaw-ui";
|
|
import React, { useCallback, useEffect, useRef, useState } from "react";
|
|
import { TransitionGroup } from "react-transition-group";
|
|
|
|
import { INotification, ITimer, MessageContext } from ".";
|
|
import Container from "./Container";
|
|
import { useStyles } from "./styles";
|
|
import Transition from "./Transition";
|
|
|
|
const MessageManagerProvider = ({ children }) => {
|
|
const classes = useStyles();
|
|
const timersArr = useRef<ITimer[]>([]);
|
|
const [notifications, setNotifications] = useState<INotification[]>([]);
|
|
|
|
useEffect(() => {
|
|
const timersArrRef = timersArr.current;
|
|
|
|
return () => {
|
|
timersArrRef.forEach(timer => clearTimeout(timer.timeoutId));
|
|
};
|
|
}, []);
|
|
|
|
const timerCallback = (notification: INotification) => {
|
|
remove(notification.id);
|
|
timersArr.current = timersArr.current.filter(
|
|
timer => timer.id !== notification.id
|
|
);
|
|
};
|
|
|
|
const remove = useCallback(notificationId => {
|
|
setNotifications(currentNotifications =>
|
|
currentNotifications.filter(n => n.id !== notificationId)
|
|
);
|
|
}, []);
|
|
|
|
const show = useCallback(
|
|
(message = {}, timeout = DEFAULT_NOTIFICATION_SHOW_TIME) => {
|
|
const id = Date.now();
|
|
const notification = {
|
|
close: () => remove(id),
|
|
id,
|
|
message,
|
|
timeout
|
|
};
|
|
if (timeout !== null) {
|
|
const timeoutId = window.setTimeout(() => {
|
|
timerCallback(notification);
|
|
}, timeout);
|
|
|
|
timersArr.current.push({
|
|
id: notification.id,
|
|
notification,
|
|
remaining: timeout,
|
|
start: new Date().getTime(),
|
|
timeoutId
|
|
});
|
|
}
|
|
|
|
setNotifications(state => [notification, ...state]);
|
|
|
|
return notification;
|
|
},
|
|
[]
|
|
);
|
|
|
|
const getCurrentTimer = (notification: INotification) => {
|
|
const currentTimerIndex = timersArr.current.findIndex(
|
|
timer => timer.id === notification.id
|
|
);
|
|
return timersArr.current[currentTimerIndex];
|
|
};
|
|
|
|
const pauseTimer = (notification: INotification) => {
|
|
const currentTimer = getCurrentTimer(notification);
|
|
if (currentTimer) {
|
|
currentTimer.remaining =
|
|
currentTimer.remaining - (new Date().getTime() - currentTimer.start);
|
|
window.clearTimeout(currentTimer.timeoutId);
|
|
}
|
|
};
|
|
const resumeTimer = (notification: INotification) => {
|
|
const currentTimer = getCurrentTimer(notification);
|
|
if (currentTimer) {
|
|
currentTimer.start = new Date().getTime();
|
|
currentTimer.timeoutId = window.setTimeout(
|
|
() => timerCallback(notification),
|
|
currentTimer.remaining
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<MessageContext.Provider value={{ remove, show }}>
|
|
{children}
|
|
</MessageContext.Provider>
|
|
<TransitionGroup
|
|
appear
|
|
options={{ position: "top right" }}
|
|
component={Container}
|
|
>
|
|
{!!notifications.length &&
|
|
notifications.map(notification => (
|
|
<Transition key={notification.id}>
|
|
<Notification
|
|
{...(!!notification.timeout
|
|
? {
|
|
onMouseEnter: () => pauseTimer(notification),
|
|
onMouseLeave: () => resumeTimer(notification)
|
|
}
|
|
: {})}
|
|
onClose={notification.close}
|
|
title={notification.message.title}
|
|
type={notification.message.status || "info"}
|
|
content={notification.message.text}
|
|
{...(!!notification.message.actionBtn
|
|
? {
|
|
action: {
|
|
label: notification.message.actionBtn.label,
|
|
onClick: notification.message.actionBtn.action
|
|
}
|
|
}
|
|
: {})}
|
|
className={classes.notification}
|
|
/>
|
|
</Transition>
|
|
))}
|
|
</TransitionGroup>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MessageManagerProvider;
|