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