pagraphcontrol/reducers/pulse.js
2018-11-19 02:03:57 +03:00

112 lines
2.4 KiB
JavaScript

const {
always,
merge,
omit,
fromPairs,
map,
pick,
equals,
takeLast,
} = require('ramda');
const { combineReducers } = require('redux');
const { handleActions } = require('redux-actions');
const { pulse } = require('../actions');
const { things } = require('../constants/pulse');
const initialState = {
state: 'closed',
objects: fromPairs(map(({ key }) => [ key, {} ], things)),
infos: fromPairs(map(({ key }) => [ key, {} ], things)),
log: { errors: [] },
};
const reducer = combineReducers({
state: handleActions({
[pulse.ready]: always('ready'),
[pulse.close]: always('closed'),
}, initialState.state),
objects: combineReducers(fromPairs(map(({ key, type }) => [ key, handleActions({
[pulse.new]: (state, { payload }) => {
if (payload.type !== type) {
return state;
}
if (payload.type === 'sinkInput' || payload.type === 'sourceOutput') {
return state;
}
return merge(state, {
[payload.index]: payload,
});
},
[pulse.remove]: (state, { payload }) => {
if (payload.type !== type) {
return state;
}
return omit([ payload.index ], state);
},
[pulse.info]: (state, { payload }) => {
if (payload.type !== type) {
return state;
}
if (payload.type === 'sinkInput' || payload.type === 'sourceOutput') {
const newPao = pick([
'type',
'index',
'moduleIndex',
'clientIndex',
'sinkIndex',
'sourceIndex',
], payload);
const oldPao = state[payload.index];
if (equals(newPao, oldPao)) {
return state;
}
return merge(state, {
[newPao.index]: newPao,
});
}
return state;
},
[pulse.close]: () => initialState.objects[key],
}, initialState.objects[key]) ], things))),
infos: combineReducers(fromPairs(map(({ key, type }) => [ key, handleActions({
[pulse.remove]: (state, { payload }) => {
if (payload.type !== type) {
return state;
}
return omit([ payload.index ], state);
},
[pulse.info]: (state, { payload }) => {
if (payload.type !== type) {
return state;
}
return merge(state, {
[payload.index]: payload,
});
},
[pulse.close]: () => initialState.objects[key],
}, initialState.infos[key]) ], things))),
log: combineReducers({
errors: handleActions({
[pulse.error]: (state, { payload }) => takeLast(3, state.concat(payload)),
}, initialState.log.errors),
}),
});
module.exports = {
initialState,
reducer,
};