fix: bugs

fix: bugs
This commit is contained in:
qier222 2022-04-09 00:28:37 +08:00
parent 1444bbefa2
commit 70d1de0e0f
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
62 changed files with 368 additions and 284 deletions

View file

@ -1,10 +1,15 @@
import { TrackApiNames, fetchAudioSource, fetchTracks } from '@/api/track'
import {
TrackApiNames,
fetchAudioSource,
fetchTracks,
} from '@/renderer/api/track'
import type {
FetchAudioSourceParams,
FetchTracksParams,
FetchTracksResponse,
} from '@/api/track'
import reactQueryClient from '@/utils/reactQueryClient'
} from '@/renderer/api/track'
import reactQueryClient from '@/renderer/utils/reactQueryClient'
import { IpcChannels } from '@/main/IpcChannelsName'
export default function useTracks(params: FetchTracksParams) {
return useQuery(
@ -17,7 +22,7 @@ export default function useTracks(params: FetchTracksParams) {
refetchInterval: false,
staleTime: Infinity,
initialData: (): FetchTracksResponse | undefined =>
window.ipcRenderer?.sendSync('getApiCacheSync', {
window.ipcRenderer?.sendSync(IpcChannels.GetApiCacheSync, {
api: 'song/detail',
query: {
ids: params.ids.join(','),