mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 19:21:39 +00:00
29 lines
1 KiB
TypeScript
29 lines
1 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import isElectron from 'is-electron';
|
|
import { queryKeys } from '/@/renderer/api/query-keys';
|
|
import {
|
|
InternetProviderLyricSearchResponse,
|
|
LyricSearchQuery,
|
|
LyricSource,
|
|
} from '/@/renderer/api/types';
|
|
import { QueryHookArgs } from '/@/renderer/lib/react-query';
|
|
|
|
const lyricsIpc = isElectron() ? window.electron.lyrics : null;
|
|
|
|
export const useLyricSearch = (args: Omit<QueryHookArgs<LyricSearchQuery>, 'serverId'>) => {
|
|
const { options, query } = args;
|
|
|
|
return useQuery<Record<LyricSource, InternetProviderLyricSearchResponse[]>>({
|
|
cacheTime: 1000 * 60 * 1,
|
|
enabled: !!query.artist || !!query.name,
|
|
queryFn: () => {
|
|
if (lyricsIpc) {
|
|
return lyricsIpc.searchRemoteLyrics(query);
|
|
}
|
|
return {} as Record<LyricSource, InternetProviderLyricSearchResponse[]>;
|
|
},
|
|
queryKey: queryKeys.songs.lyricsSearch(query),
|
|
staleTime: 1000 * 60 * 1,
|
|
...options,
|
|
});
|
|
};
|