import { useQuery, useQueryClient } from '@tanstack/vue-query'; import { api } from '@/packages/api/src'; import { getCurrentOrganizationId } from '@/utils/useUser'; import type { ProjectMember } from '@/packages/api/src'; import { computed, type Ref } from 'vue'; import { fetchAllPages } from '@/utils/fetchAllPages'; export async function fetchAllProjectMembers( organizationId: string, projectId: string ): Promise { return fetchAllPages((page) => api.getProjectMembers({ params: { organization: organizationId, project: projectId }, queries: { page }, }) ); } export function useProjectMembersQuery(projectId: Ref | string) { const queryClient = useQueryClient(); const projectIdValue = computed(() => { return typeof projectId === 'string' ? projectId : projectId.value; }); const query = useQuery({ queryKey: computed(() => [ 'projectMembers', getCurrentOrganizationId(), projectIdValue.value, ]), queryFn: async () => { const organizationId = getCurrentOrganizationId(); const pid = projectIdValue.value; if (!organizationId || !pid) throw new Error('No organization or project'); const data = await fetchAllProjectMembers(organizationId, pid); return { data }; }, enabled: () => !!getCurrentOrganizationId() && !!projectIdValue.value, staleTime: 1000 * 30, // 30 seconds }); const projectMembers = computed(() => query.data.value?.data ?? []); const invalidateProjectMembers = () => { queryClient.invalidateQueries({ queryKey: ['projectMembers', getCurrentOrganizationId(), projectIdValue.value], }); }; return { ...query, projectMembers, invalidateProjectMembers, }; }