mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
- fixed image path for RNTP notification - fixed overwhelming number of promises/requests generated when scrolling through artists (could still delay loading those further...) - fixed spinner not spinning while artistInfo is fetched for image url
89 lines
2.8 KiB
TypeScript
89 lines
2.8 KiB
TypeScript
import { CacheImageSize, CacheItemTypeKey } from '@app/models/cache'
|
|
import { ArtistInfo } from '@app/models/music'
|
|
import { selectCache } from '@app/state/cache'
|
|
import { selectMusic } from '@app/state/music'
|
|
import { selectSettings } from '@app/state/settings'
|
|
import { useStore, Store } from '@app/state/store'
|
|
import { useCallback, useEffect } from 'react'
|
|
|
|
const useFileRequest = (key: CacheItemTypeKey, id: string) => {
|
|
const file = useStore(
|
|
useCallback(
|
|
(store: Store) => {
|
|
const activeServerId = store.settings.activeServer
|
|
if (!activeServerId) {
|
|
return
|
|
}
|
|
|
|
return store.cacheFiles[activeServerId][key][id]
|
|
},
|
|
[key, id],
|
|
),
|
|
)
|
|
const request = useStore(
|
|
useCallback(
|
|
(store: Store) => {
|
|
const activeServerId = store.settings.activeServer
|
|
if (!activeServerId) {
|
|
return
|
|
}
|
|
|
|
return store.cacheRequests[activeServerId][key][id]
|
|
},
|
|
[key, id],
|
|
),
|
|
)
|
|
|
|
return { file, request }
|
|
}
|
|
|
|
export const useCoverArtFile = (coverArt = '-1', size: CacheImageSize = 'thumbnail') => {
|
|
const type: CacheItemTypeKey = size === 'original' ? 'coverArt' : 'coverArtThumb'
|
|
const { file, request } = useFileRequest(type, coverArt)
|
|
const client = useStore(selectSettings.client)
|
|
const cacheItem = useStore(selectCache.cacheItem)
|
|
|
|
useEffect(() => {
|
|
if (!file && client) {
|
|
cacheItem(type, coverArt, () =>
|
|
client.getCoverArtUri({
|
|
id: coverArt,
|
|
size: type === 'coverArtThumb' ? '256' : undefined,
|
|
}),
|
|
)
|
|
}
|
|
// intentionally leaving file out so it doesn't re-render if the request fails
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [cacheItem, client, coverArt, type])
|
|
|
|
return { file, request }
|
|
}
|
|
|
|
export const useArtistArtFile = (artistId: string, size: CacheImageSize = 'thumbnail') => {
|
|
const type: CacheItemTypeKey = size === 'original' ? 'artistArt' : 'artistArtThumb'
|
|
const fetchArtistInfo = useStore(selectMusic.fetchArtistInfo)
|
|
const { file, request } = useFileRequest(type, artistId)
|
|
const cacheItem = useStore(selectCache.cacheItem)
|
|
|
|
useEffect(() => {
|
|
if (!file) {
|
|
cacheItem(type, artistId, async () => {
|
|
let artistInfo: ArtistInfo | undefined
|
|
const cachedArtistInfo = useStore.getState().artistInfo[artistId]
|
|
|
|
if (cachedArtistInfo) {
|
|
artistInfo = cachedArtistInfo
|
|
} else {
|
|
artistInfo = await fetchArtistInfo(artistId)
|
|
}
|
|
|
|
return type === 'artistArtThumb' ? artistInfo?.smallImageUrl : artistInfo?.largeImageUrl
|
|
})
|
|
}
|
|
// intentionally leaving file out so it doesn't re-render if the request fails
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [artistId, cacheItem, fetchArtistInfo, type])
|
|
|
|
return { file, request }
|
|
}
|