pleroma/app/soapbox/api/hooks/groups/useGroupLookup.ts

26 lines
760 B
TypeScript
Raw Normal View History

2023-04-12 13:51:30 -07:00
import { Entities } from 'soapbox/entity-store/entities';
import { useEntityLookup } from 'soapbox/entity-store/hooks';
import { useApi } from 'soapbox/hooks/useApi';
import { groupSchema } from 'soapbox/schemas';
import { useGroupRelationship } from './useGroupRelationship';
2023-04-12 13:51:30 -07:00
function useGroupLookup(slug: string) {
const api = useApi();
const { entity: group, ...result } = useEntityLookup(
2023-04-12 13:51:30 -07:00
Entities.GROUPS,
(group) => group.slug === slug,
() => api.get(`/api/v1/groups/lookup?name=${slug}`),
{ schema: groupSchema },
);
const { entity: relationship } = useGroupRelationship(group?.id);
return {
...result,
entity: group ? { ...group, relationship: relationship || null } : undefined,
};
2023-04-12 13:51:30 -07:00
}
export { useGroupLookup };