2018-07-30 11:18:20 +02:00
|
|
|
// @flow
|
|
|
|
|
import type { Action } from "../types/Action";
|
2018-07-30 15:29:23 +02:00
|
|
|
import * as types from "./types";
|
2018-07-30 11:18:20 +02:00
|
|
|
|
2018-07-30 15:29:23 +02:00
|
|
|
const PENDING_SUFFIX = "_" + types.PENDING_SUFFIX;
|
|
|
|
|
const RESET_ACTIONTYPES = [
|
|
|
|
|
types.SUCCESS_SUFFIX,
|
|
|
|
|
types.FAILURE_SUFFIX,
|
|
|
|
|
types.RESET_SUFFIX
|
|
|
|
|
];
|
2018-07-30 11:18:20 +02:00
|
|
|
|
|
|
|
|
function removeFromState(state: Object, identifier: string) {
|
|
|
|
|
let newState = {};
|
|
|
|
|
for (let childType in state) {
|
|
|
|
|
if (childType !== identifier) {
|
|
|
|
|
newState[childType] = state[childType];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function extractIdentifierFromPending(action: Action) {
|
|
|
|
|
const type = action.type;
|
|
|
|
|
let identifier = type.substring(0, type.length - PENDING_SUFFIX.length);
|
|
|
|
|
if (action.itemId) {
|
|
|
|
|
identifier += "/" + action.itemId;
|
|
|
|
|
}
|
|
|
|
|
return identifier;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function reducer(state: Object = {}, action: Action): Object {
|
|
|
|
|
const type = action.type;
|
|
|
|
|
if (type.endsWith(PENDING_SUFFIX)) {
|
|
|
|
|
const identifier = extractIdentifierFromPending(action);
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
[identifier]: true
|
|
|
|
|
};
|
|
|
|
|
} else {
|
2018-07-30 15:29:23 +02:00
|
|
|
const index = type.lastIndexOf("_");
|
|
|
|
|
if (index > 0) {
|
|
|
|
|
const actionType = type.substring(index + 1);
|
|
|
|
|
if (RESET_ACTIONTYPES.indexOf(actionType) >= 0 || action.resetPending) {
|
|
|
|
|
let identifier = type.substring(0, index);
|
|
|
|
|
if (action.itemId) {
|
|
|
|
|
identifier += "/" + action.itemId;
|
|
|
|
|
}
|
|
|
|
|
return removeFromState(state, identifier);
|
2018-07-30 13:38:15 +02:00
|
|
|
}
|
2018-07-30 11:18:20 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isPending(
|
|
|
|
|
state: Object,
|
|
|
|
|
actionType: string,
|
|
|
|
|
itemId?: string | number
|
|
|
|
|
) {
|
|
|
|
|
let type = actionType;
|
|
|
|
|
if (itemId) {
|
|
|
|
|
type += "/" + itemId;
|
|
|
|
|
}
|
|
|
|
|
if (state.pending && state.pending[type]) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|