1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/ducks/history/history.js

40 lines
816 B
JavaScript
Raw Normal View History

import { createSlice } from '@reduxjs/toolkit';
import { ASSET_ROUTE, DEFAULT_ROUTE } from '../../helpers/constants/routes';
// Constants
const initialState = {
mostRecentOverviewPage: DEFAULT_ROUTE,
};
const name = 'history';
// Slice (reducer plus auto-generated actions and action creators)
const slice = createSlice({
name,
initialState,
reducers: {
pageChanged: (state, action) => {
const path = action.payload;
if (path === DEFAULT_ROUTE || path.startsWith(ASSET_ROUTE)) {
state.mostRecentOverviewPage = path;
}
},
},
});
const { actions, reducer } = slice;
export default reducer;
// Selectors
2020-11-03 00:41:28 +01:00
export const getMostRecentOverviewPage = (state) =>
state[name].mostRecentOverviewPage;
// Actions / action-creators
export const { pageChanged } = actions;