Newer
Older
import { createSlice } from 'redux-starter-kit'
import { pages } from '../components/pages'
const navigationSlice = createSlice({
slice: 'navigation',
initialState: {
},
reducers: {
navigate: (state, action) => {
return {
currentPage: action.payload,
if (currentPage === 'CycleDay' && !!previousPage) {
return {
currentPage: previousPage,
const page = pages.find((p) => p.component === currentPage)
currentPage: page.parent,
previousPage: currentPage,
},
},
})
// Extract the action creators object and the reducer
const { actions, reducer, selectors } = navigationSlice
// Extract and export each action creator by name
export const { getNavigation } = selectors
export default reducer