mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import {createSelector} from 'reselect';
|
|
import {HyperState} from './hyper';
|
|
|
|
const getTermGroups = ({termGroups}: Pick<HyperState, 'termGroups'>) => termGroups.termGroups;
|
|
const getRootGroups = createSelector(
|
|
getTermGroups,
|
|
termGroups =>
|
|
Object.keys(termGroups)
|
|
.map(uid => termGroups[uid])
|
|
.filter(({parentUid}) => !parentUid)
|
|
);
|
|
|
|
export default getRootGroups;
|