36 lines
920 B
TypeScript
36 lines
920 B
TypeScript
import { Entities } from 'pl-fe/entity-store/entities';
|
|
import { useEntities } from 'pl-fe/entity-store/hooks/use-entities';
|
|
import { useClient } from 'pl-fe/hooks/use-client';
|
|
import { useFeatures } from 'pl-fe/hooks/use-features';
|
|
|
|
import { useGroupRelationships } from './use-group-relationships';
|
|
|
|
import type { Group } from 'pl-api';
|
|
|
|
const useGroups = () => {
|
|
const client = useClient();
|
|
const features = useFeatures();
|
|
|
|
const { entities, ...result } = useEntities<Group, Group>(
|
|
[Entities.GROUPS, 'search', ''],
|
|
() => client.experimental.groups.getGroups(),
|
|
{ enabled: features.groups },
|
|
);
|
|
const { relationships } = useGroupRelationships(
|
|
['search', ''],
|
|
entities.map(entity => entity.id),
|
|
);
|
|
|
|
const groups = entities.map((group) => ({
|
|
...group,
|
|
relationship: relationships[group.id] || null,
|
|
}));
|
|
|
|
return {
|
|
...result,
|
|
groups,
|
|
};
|
|
};
|
|
|
|
export { useGroups };
|