2017-01-16 13:27:58 +01:00
|
|
|
import { showLoading, hideLoading } from 'react-redux-loading-bar';
|
2023-05-09 16:56:26 +02:00
|
|
|
import { Middleware } from 'redux';
|
|
|
|
import { RootState } from '..';
|
2017-01-16 13:27:58 +01:00
|
|
|
|
2023-05-09 16:56:26 +02:00
|
|
|
interface Config {
|
|
|
|
promiseTypeSuffixes?: string[]
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultTypeSuffixes: Config['promiseTypeSuffixes'] = ['PENDING', 'FULFILLED', 'REJECTED'];
|
2017-01-16 13:27:58 +01:00
|
|
|
|
2023-05-09 16:56:26 +02:00
|
|
|
export const loadingBarMiddleware = (config: Config = {}): Middleware<Record<string, never>, RootState> => {
|
2017-01-16 13:27:58 +01:00
|
|
|
const promiseTypeSuffixes = config.promiseTypeSuffixes || defaultTypeSuffixes;
|
|
|
|
|
|
|
|
return ({ dispatch }) => next => (action) => {
|
|
|
|
if (action.type && !action.skipLoading) {
|
|
|
|
const [PENDING, FULFILLED, REJECTED] = promiseTypeSuffixes;
|
|
|
|
|
|
|
|
const isPending = new RegExp(`${PENDING}$`, 'g');
|
|
|
|
const isFulfilled = new RegExp(`${FULFILLED}$`, 'g');
|
|
|
|
const isRejected = new RegExp(`${REJECTED}$`, 'g');
|
|
|
|
|
|
|
|
if (action.type.match(isPending)) {
|
|
|
|
dispatch(showLoading());
|
|
|
|
} else if (action.type.match(isFulfilled) || action.type.match(isRejected)) {
|
|
|
|
dispatch(hideLoading());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
};
|
2023-05-09 16:56:26 +02:00
|
|
|
};
|