hyper/lib/selectors.ts
2023-06-26 16:02:13 +05:30

9 lines
358 B
TypeScript

import {createSelector} from 'reselect';
import type {HyperState} from './hyper';
const getTermGroups = ({termGroups}: Pick<HyperState, 'termGroups'>) => termGroups.termGroups;
export const getRootGroups = createSelector(getTermGroups, (termGroups) =>
Object.keys(termGroups)
.map((uid) => termGroups[uid])
.filter(({parentUid}) => !parentUid)
);