insomnia/app/ui/redux/modules/entities.js

69 lines
1.4 KiB
JavaScript
Raw Normal View History

import * as db from '../../../backend/database';
2016-11-10 01:15:27 +00:00
import * as models from '../../../backend/models';
const ENTITY_BLACKLIST = {
2016-11-10 01:15:27 +00:00
[models.response.type]: 1,
[models.stats.type]: 1
};
const ENTITY_CHANGES = 'entities.changes';
// ~~~~~~~~ //
// REDUCERS //
// ~~~~~~~~ //
function getReducerName (type) {
const trailer = type.match(/s$/) ? '' : 's';
return `${type.slice(0, 1).toLowerCase()}${type.slice(1)}${trailer}`;
}
const initialState = {
doNotPersist: true
};
2016-11-10 01:15:27 +00:00
for (const type of models.types()) {
initialState[getReducerName(type)] = {};
}
export default function reducer (state = initialState, action) {
switch (action.type) {
case ENTITY_CHANGES:
const newState = {...state};
const {changes} = action;
for (const [event, doc] of changes) {
const referenceName = getReducerName(doc.type);
if (ENTITY_BLACKLIST[doc.type]) {
continue;
}
switch (event) {
case db.CHANGE_INSERT:
case db.CHANGE_UPDATE:
newState[referenceName][doc._id] = doc;
break;
case db.CHANGE_REMOVE:
delete newState[referenceName][doc._id];
break;
default:
break;
}
}
return newState;
default:
return state;
}
}
// ~~~~~~~ //
// ACTIONS //
// ~~~~~~~ //
export function addChanges (changes) {
return {type: ENTITY_CHANGES, changes};
}