pagraphcontrol/selectors/index.js
2018-11-08 04:36:48 +03:00

17 lines
328 B
JavaScript

const {
map,
prop,
indexBy,
} = require('ramda');
const { things } = require('../constants/pulse');
const storeKeyByType = map(prop('key'), indexBy(prop('type'), things));
const getPaiByTypeAndIndex = (type, index) => state => state.pulse.infos[storeKeyByType[type]][index];
module.exports = {
getPaiByTypeAndIndex,
};