1 |
4f42fa52
|
Václav Honzík
|
import { Alert, AlertColor, Snackbar } from '@mui/material'
|
2 |
|
|
import { Fragment, useEffect, useState } from 'react'
|
3 |
|
|
import { useDispatch, useSelector } from 'react-redux'
|
4 |
|
|
import { RootState } from '../redux/store'
|
5 |
|
|
import { consumeNotification } from './notificationSlice'
|
6 |
|
|
|
7 |
|
|
// Represents notification component that will be displayed on the screen
|
8 |
|
|
const Notification = () => {
|
9 |
|
|
const dispatch = useDispatch()
|
10 |
|
|
const notification = useSelector((state: RootState) => state.notification)
|
11 |
|
|
|
12 |
|
|
const [displayMessage, setDisplayMessage] = useState('')
|
13 |
|
|
const [open, setOpen] = useState(false)
|
14 |
|
|
const [severity, setSeverity] = useState<AlertColor>('info')
|
15 |
484adbb5
|
Vaclav Honzik
|
|
16 |
558a15d4
|
Vaclav Honzik
|
// Timeout controls when the notification will be hidden
|
17 |
|
|
// This must be killed should the new notification appear before the current one is close
|
18 |
484adbb5
|
Vaclav Honzik
|
const [closeTimeout, setCloseTimeout] = useState<NodeJS.Timeout | null>(
|
19 |
4f42fa52
|
Václav Honzík
|
null
|
20 |
|
|
)
|
21 |
|
|
|
22 |
|
|
const closeNotification = () => {
|
23 |
|
|
setOpen(false)
|
24 |
484adbb5
|
Vaclav Honzik
|
if (closeTimeout) {
|
25 |
558a15d4
|
Vaclav Honzik
|
clearTimeout(closeTimeout) // clear timeout if it exists
|
26 |
|
|
setCloseTimeout(null) // and set it to null in our local state
|
27 |
484adbb5
|
Vaclav Honzik
|
}
|
28 |
4f42fa52
|
Václav Honzík
|
}
|
29 |
|
|
|
30 |
|
|
// Set the message to be displayed if something is set
|
31 |
|
|
useEffect(() => {
|
32 |
|
|
if (notification.message) {
|
33 |
|
|
setDisplayMessage(notification.message)
|
34 |
|
|
setSeverity(notification.severity as AlertColor)
|
35 |
|
|
// Consume the message from store
|
36 |
|
|
dispatch(consumeNotification())
|
37 |
|
|
|
38 |
|
|
// Show the message in the notification
|
39 |
|
|
setOpen(true)
|
40 |
484adbb5
|
Vaclav Honzik
|
|
41 |
|
|
if (closeTimeout) {
|
42 |
|
|
clearTimeout(closeTimeout)
|
43 |
|
|
setCloseTimeout(null)
|
44 |
|
|
}
|
45 |
|
|
|
46 |
|
|
// Set the autohide duration
|
47 |
|
|
if (notification.autohideSecs !== undefined) {
|
48 |
|
|
const timeout = setTimeout(() => {
|
49 |
|
|
setOpen(false)
|
50 |
|
|
setCloseTimeout(null)
|
51 |
|
|
}, notification.autohideSecs * 1000)
|
52 |
|
|
setCloseTimeout(timeout)
|
53 |
|
|
}
|
54 |
4f42fa52
|
Václav Honzík
|
}
|
55 |
484adbb5
|
Vaclav Honzik
|
}, [notification, dispatch, closeTimeout])
|
56 |
4f42fa52
|
Václav Honzík
|
|
57 |
|
|
return (
|
58 |
|
|
<Fragment>
|
59 |
|
|
<Snackbar
|
60 |
|
|
open={open}
|
61 |
484adbb5
|
Vaclav Honzik
|
autoHideDuration={null}
|
62 |
4f42fa52
|
Václav Honzík
|
anchorOrigin={{ vertical: 'bottom', horizontal: 'center' }}
|
63 |
|
|
>
|
64 |
|
|
<Alert severity={severity} onClose={closeNotification}>
|
65 |
|
|
{displayMessage}
|
66 |
|
|
</Alert>
|
67 |
|
|
</Snackbar>
|
68 |
|
|
</Fragment>
|
69 |
|
|
)
|
70 |
|
|
}
|
71 |
|
|
|
72 |
|
|
export default Notification
|