Merge pull request #848 from alibaba/function_mode
fix: state compatible
This commit is contained in:
commit
07973d34ee
@ -21,16 +21,27 @@ const initialState = {
|
||||
};
|
||||
|
||||
const getState = () => dispatch =>
|
||||
request.get('v1/console/server/state').then(res => {
|
||||
dispatch({
|
||||
type: GET_STATE,
|
||||
data: {
|
||||
version: res.version,
|
||||
standaloneMode: res.standalone_mode,
|
||||
functionMode: res.function_mode,
|
||||
},
|
||||
request
|
||||
.get('v1/console/server/state')
|
||||
.then(res => {
|
||||
dispatch({
|
||||
type: GET_STATE,
|
||||
data: {
|
||||
version: res.version,
|
||||
standaloneMode: res.standalone_mode,
|
||||
functionMode: res.function_mode,
|
||||
},
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
dispatch({
|
||||
type: GET_STATE,
|
||||
data: {
|
||||
version: null,
|
||||
functionMode: null,
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
export default (state = initialState, action) => {
|
||||
switch (action.type) {
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user