23 lines
819 B
TypeScript
23 lines
819 B
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import { useInject } from '@/lib/di/hooks/useInject';
|
|
import { TEAM_SERVICE_TOKEN } from '@/lib/di/tokens';
|
|
import { enhanceQueryResult } from '@/lib/di/hooks/useReactQueryWithApiError';
|
|
|
|
export function useTeamMembers(teamId: string, currentUserId: string, teamOwnerId: string) {
|
|
const teamService = useInject(TEAM_SERVICE_TOKEN);
|
|
|
|
const queryResult = useQuery({
|
|
queryKey: ['teamMembers', teamId, currentUserId, teamOwnerId],
|
|
queryFn: async () => {
|
|
const result = await teamService.getTeamMembers(teamId, currentUserId, teamOwnerId);
|
|
if (result.isErr()) {
|
|
throw result.getError();
|
|
}
|
|
return result.unwrap();
|
|
},
|
|
enabled: !!teamId && !!currentUserId && !!teamOwnerId,
|
|
});
|
|
|
|
return enhanceQueryResult(queryResult);
|
|
}
|