yapi/client/reducer/modules/menu.js
System Administrator 362172ef52 fix: bug修复
2017-09-14 18:19:13 +08:00

29 lines
496 B
JavaScript
Executable File

// Actions
const CHANGE_MENU_ITEM = 'yapi/menu/CHANGE_MENU_ITEM';
// Reducer
const initialState = {
curKey: '/'+window.location.hash.split("/")[1]
}
export default (state = initialState, action) => {
switch (action.type) {
case CHANGE_MENU_ITEM: {
return {
...state,
curKey: action.data
};
}
default:
return state;
}
}
// Action Creators
export function changeMenuItem(curKey) {
return {
type: CHANGE_MENU_ITEM,
data: curKey
}
}