forked from tdjsnelling/sqtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotifications.js
More file actions
142 lines (130 loc) · 3.06 KB
/
Copy pathNotifications.js
File metadata and controls
142 lines (130 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import React, { createContext, useState, useEffect } from "react";
import styled, { keyframes } from "styled-components";
import { X } from "@styled-icons/boxicons-regular/X";
import Box from "./Box";
import Button from "./Button";
const delay = 5000;
const animation = 200;
const slideIn = keyframes`
from {
opacity: 0;
transform: translateX(300px);
}
to {
opacity: 1;
transform: translateX(0);
}
`;
const slideOut = keyframes`
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(300px);
}
`;
const StyledNotification = styled(Box)`
&.slideIn {
animation: ${slideIn} ${animation}ms forwards;
}
&.slideOut {
animation: ${slideOut} ${animation}ms forwards;
}
`;
const Notification = ({ type, text, dismiss }) => {
const [className, setClassName] = useState("slideIn");
useEffect(() => {
setTimeout(() => {
setClassName("slideOut");
}, delay + animation);
}, []);
return (
<StyledNotification
className={className}
display="flex"
alignItems="flex-start"
justifyContent="space-between"
bg="sidebar"
border="1px solid"
borderColor={type}
borderLeftWidth="5px"
borderRadius={1}
boxShadow="edge"
minWidth={["calc(100vw - 40px)", "400px"]}
maxWidth="400px"
px={4}
py={3}
>
<Box mt="1px">{text}</Box>
<Button
onClick={() => {
setClassName("slideOut");
setTimeout(dismiss, animation);
}}
variant="noBackground"
width="24px"
height="24px"
display="flex"
alignItems="center"
justifyContent="center"
p={0}
ml={3}
>
<X size={16} />
</Button>
</StyledNotification>
);
};
export const NotificationContext = createContext({
notifications: [],
addNotification: () => {},
});
export const NotificationsProvider = ({ children }) => {
const [notifications, setNotifications] = useState([]);
const addNotification = (type, text) => {
setNotifications((existing) => {
const n = [...existing];
n.push({ type, text });
return n;
});
setTimeout(() => {
setNotifications((existing) => {
const n = [...existing];
n.shift();
return n;
});
}, delay + animation * 2);
};
const removeNotification = (index) => {
setNotifications((existing) => {
const n = [...existing];
n.splice(index, 1);
return n;
});
};
return (
<NotificationContext.Provider value={{ notifications, addNotification }}>
<Box
position="fixed"
top="60px"
right="0px"
p="20px"
pb="40px"
overflowX="hidden"
zIndex={999}
_css={{ "> * + *": { mt: 3 } }}
>
{notifications.map((notification, i) => (
<Notification
key={`notification-${i}`}
dismiss={() => removeNotification(i)}
{...notification}
/>
))}
</Box>
{children}
</NotificationContext.Provider>
);
};