mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-17 06:00:20 +02:00
24 lines
864 B
TypeScript
24 lines
864 B
TypeScript
import type { TopSongListQuery } from '/@/renderer/api/types';
|
|
import type { QueryHookArgs } from '/@/renderer/lib/react-query';
|
|
|
|
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import { api } from '/@/renderer/api';
|
|
import { queryKeys } from '/@/renderer/api/query-keys';
|
|
import { getServerById } from '/@/renderer/store';
|
|
|
|
export const useTopSongsList = (args: QueryHookArgs<TopSongListQuery>) => {
|
|
const { options, query, serverId } = args || {};
|
|
const server = getServerById(serverId);
|
|
|
|
return useQuery({
|
|
enabled: !!server?.id,
|
|
queryFn: ({ signal }) => {
|
|
if (!server) throw new Error('Server not found');
|
|
return api.controller.getTopSongs({ apiClientProps: { server, signal }, query });
|
|
},
|
|
queryKey: queryKeys.albumArtists.topSongs(server?.id || '', query),
|
|
...options,
|
|
});
|
|
};
|