Projekt

Obecné

Profil

Stáhnout (1.04 KB) Statistiky
| Větev: | Tag: | Revize:
1 e9103a47 Vaclav Honzik
import { createSlice } from '@reduxjs/toolkit'
2
import persistReducer from 'redux-persist/es/persistReducer'
3
import storage from 'redux-persist/lib/storage'
4
5
export interface NavigationState {
6 558a15d4 Vaclav Honzik
    selectedMenuItem?: string, // which item is selected
7
    open: boolean, // whether the menu is open
8 e9103a47 Vaclav Honzik
}
9
10 558a15d4 Vaclav Honzik
// persist navigation bar in local storage
11 e9103a47 Vaclav Honzik
const persistConfig = {
12
    key: 'navigation',
13
    storage
14
}
15
16 81698b9a Vaclav Honzik
const initialState: NavigationState = {
17 e9103a47 Vaclav Honzik
    selectedMenuItem: '',
18
    open: false
19
}
20
21
export const navigationSlice = createSlice({
22
    name: 'navigation',
23
    initialState,
24
    reducers: {
25 81698b9a Vaclav Honzik
        setSelectedMenuItem: (state: NavigationState, action: any) => ({...state, selectedMenuItem: action.payload}),
26 558a15d4 Vaclav Honzik
27
        /**
28
         * Sets the navigation menu open
29
         */
30 81698b9a Vaclav Honzik
        setOpen: (state: NavigationState, action: any) => ({...state, open: action.payload}),
31 e9103a47 Vaclav Honzik
    }
32
})
33
34
const navigationReducer = persistReducer(persistConfig, navigationSlice.reducer)
35
36
export const { setSelectedMenuItem, setOpen } = navigationSlice.actions
37
38
export default navigationReducer