17 lines
328 B
JavaScript
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,
|
|
};
|