mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import { queryOptions, useQuery } from '@tanstack/react-query';
|
|
import type { Api } from '@jellyfin/sdk';
|
|
import type { PackageApiGetPackageInfoRequest } from '@jellyfin/sdk/lib/generated-client/api/package-api';
|
|
import { getPackageApi } from '@jellyfin/sdk/lib/utils/api/package-api';
|
|
import type { AxiosRequestConfig } from 'axios';
|
|
|
|
import { useApi } from 'hooks/useApi';
|
|
|
|
import { QueryKey } from './queryKey';
|
|
|
|
const fetchPackageInfo = async (
|
|
api?: Api,
|
|
params?: PackageApiGetPackageInfoRequest,
|
|
options?: AxiosRequestConfig
|
|
) => {
|
|
if (!api) {
|
|
console.warn('[fetchPackageInfo] No API instance available');
|
|
return;
|
|
}
|
|
|
|
if (!params) {
|
|
console.warn('[fetchPackageInfo] Missing request params');
|
|
return;
|
|
}
|
|
|
|
const response = await getPackageApi(api)
|
|
.getPackageInfo(params, options);
|
|
return response.data;
|
|
};
|
|
|
|
const getPackageInfoQuery = (
|
|
api?: Api,
|
|
params?: PackageApiGetPackageInfoRequest
|
|
) => queryOptions({
|
|
// Don't retry since requests for plugins not available in repos fail
|
|
retry: false,
|
|
queryKey: [ QueryKey.PackageInfo, params?.name, params?.assemblyGuid ],
|
|
queryFn: ({ signal }) => fetchPackageInfo(api, params, { signal }),
|
|
enabled: !!api && !!params?.name
|
|
});
|
|
|
|
export const usePackageInfo = (
|
|
params?: PackageApiGetPackageInfoRequest
|
|
) => {
|
|
const { api } = useApi();
|
|
return useQuery(getPackageInfoQuery(api, params));
|
|
};
|