Projekt

Obecné

Profil

Stáhnout (1.04 KB) Statistiky
| Větev: | Tag: | Revize:
1 4f42fa52 Václav Honzík
import { AlertColor } from '@mui/material'
2 a7ae217f Vaclav Honzik
import { Action, createSlice } from '@reduxjs/toolkit'
3 4f42fa52 Václav Honzík
4
export interface NotificationState {
5
    message?: string
6
    severity: AlertColor
7
    autohideSecs?: number
8
}
9
10 a7ae217f Vaclav Honzik
const initialState: NotificationState = {
11 4f42fa52 Václav Honzík
    message: undefined,
12
    severity: 'info',
13
    autohideSecs: undefined
14
}
15
16
const notificationSlice = createSlice({
17
    name: 'notification',
18
    initialState,
19
    reducers: {
20 a7ae217f Vaclav Honzik
        showNotification: (state: NotificationState, action: { payload: NotificationState }) => ({
21 4f42fa52 Václav Honzík
            ...state,
22
            message: action.payload.message,
23
            severity: action.payload.severity,
24
            autohideSecs: action.payload.autohideSecs,
25
        }),
26
        // consumes the message so it is not displayed after the page gets refreshed
27 a7ae217f Vaclav Honzik
        consumeNotification: () => ({
28 4f42fa52 Václav Honzík
            ...initialState,
29
        }),
30
    },
31
})
32
33
const notificationReducer = notificationSlice.reducer
34
export const { showNotification, consumeNotification } =
35
    notificationSlice.actions
36
export default notificationReducer