Redux changes and refactoring

This commit is contained in:
Scott E. Graves
2019-06-07 16:32:18 -05:00
parent 5c931bb66d
commit 7f3e90773e
9 changed files with 158 additions and 69 deletions

View File

@@ -0,0 +1,45 @@
import {showWindow, shutdownApplication} from './common_actions';
let ErrorActions = [];
export const CLEAR_ERROR = 'error/clearError';
export const clearError = () => {
return {
type: CLEAR_ERROR,
payload: null,
};
};
export const dismissError = () => {
return (dispatch, getState) => {
dispatch(clearError());
const errorAction = ErrorActions[0];
ErrorActions = ErrorActions.splice(1);
if (errorAction) {
errorAction();
}
if (getState().error.ErrorCritical) {
dispatch(shutdownApplication());
}
};
};
export const notifyError = (msg, critical, callback) => {
return dispatch => {
ErrorActions = [callback, ...ErrorActions];
msg = msg.toString();
dispatch(setErrorInfo(msg, critical));
dispatch(showWindow());
};
};
export const SET_ERROR_INFO = 'error/setErrorInfo';
export const setErrorInfo = (msg, critical) => {
return {
type: SET_ERROR_INFO,
payload: {
msg,
critical
}
}
};