updux/src/buildSelectors/index.ts

27 lines
704 B
TypeScript
Raw Normal View History

2020-01-03 17:00:24 +00:00
import fp from 'lodash/fp';
import Updux from '..';
import { Dictionary, Selector } from '../types';
2020-01-03 22:27:11 +00:00
function subSelectors([slice, subdux]: [string, Updux]): [string, Selector][] {
2020-01-03 17:00:24 +00:00
const selectors = subdux.selectors;
if (!selectors) return [];
return Object.entries(
2020-01-03 22:27:11 +00:00
fp.mapValues(selector => (state: any) =>
(selector as any)(state[slice])
)(selectors)
2020-01-03 17:00:24 +00:00
);
}
export default function buildSelectors(
localSelectors: Dictionary<Selector> = {},
subduxes: Dictionary<Updux> = {}
) {
return Object.fromEntries(
[
Object.entries(subduxes).flatMap(subSelectors),
Object.entries(localSelectors),
].flat()
);
}