mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-15 05:10:47 +08:00
29 lines
496 B
JavaScript
Executable File
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
|
|
}
|
|
}
|