portainer--portainer
30 行
778 B
TypeScript
30 行
778 B
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import axios, { parseAxiosError } from '@/react/portainer/services/axios/axios';
|
|
import { withError } from '@/react-tools/react-query';
|
|
|
|
import { buildUrl } from '../user.service';
|
|
import { User, UserId } from '../types';
|
|
|
|
import { userQueryKeys } from './queryKeys';
|
|
|
|
export function useUser(
|
|
id: UserId,
|
|
{ staleTime }: { staleTime?: number } = {}
|
|
) {
|
|
return useQuery(userQueryKeys.user(id), () => getUser(id), {
|
|
...withError('Unable to retrieve user details'),
|
|
staleTime,
|
|
});
|
|
}
|
|
|
|
export async function getUser(id: UserId) {
|
|
try {
|
|
const { data: user } = await axios.get<User>(buildUrl(id));
|
|
|
|
return user;
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error, 'Unable to retrieve user details');
|
|
}
|
|
}
|