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

26 lines
788 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}`),
2023-06-02 07:28:10 -07:00
{ schema: groupSchema, enabled: !!slug },
2023-04-12 13:51:30 -07:00
);
const { groupRelationship: relationship } = useGroupRelationship(group?.id);
return {
...result,
entity: group ? { ...group, relationship: relationship || null } : undefined,
};
2023-04-12 13:51:30 -07:00
}
export { useGroupLookup };