refactored into single method/store

This commit is contained in:
austinried 2021-08-14 16:22:40 +09:00
parent 9cacc4de36
commit a95372fa55
7 changed files with 172 additions and 182 deletions

View File

@ -1,5 +1,5 @@
import { useArtistCoverArtFile, useCoverArtFile } from '@app/hooks/music' import { useArtistArtFile, useCoverArtFile } from '@app/hooks/music'
import { CachedFile } from '@app/models/music' import { CacheFile, CacheRequest } from '@app/models/music'
import colors from '@app/styles/colors' import colors from '@app/styles/colors'
import React, { useState } from 'react' import React, { useState } from 'react'
import { ActivityIndicator, StyleSheet, View, ViewStyle } from 'react-native' import { ActivityIndicator, StyleSheet, View, ViewStyle } from 'react-native'
@ -22,39 +22,46 @@ type CoverArtProps = BaseProps & {
coverArt?: string coverArt?: string
} }
const Image = React.memo<{ file?: CachedFile } & BaseProps>(({ file, style, imageStyle, resizeMode }) => { const Image = React.memo<{ cache?: { file?: CacheFile; request?: CacheRequest } } & BaseProps>(
const [error, setError] = useState(false) ({ cache, style, imageStyle, resizeMode }) => {
const [error, setError] = useState(false)
let source let source
if (!error && file) { if (!error && cache?.file && !cache?.request?.promise) {
source = { uri: `file://${file.path}` } source = { uri: `file://${cache.file.path}` }
} else { } else {
source = require('@res/fallback.png') source = require('@res/fallback.png')
} }
return ( return (
<> <>
<FastImage <FastImage
source={source} source={source}
resizeMode={resizeMode || FastImage.resizeMode.contain} resizeMode={resizeMode || FastImage.resizeMode.contain}
style={[{ height: style?.height, width: style?.width }, imageStyle]} style={[{ height: style?.height, width: style?.width }, imageStyle]}
onError={() => setError(true)} onError={() => setError(true)}
/> />
<ActivityIndicator animating={!file} size="large" color={colors.accent} style={styles.indicator} /> <ActivityIndicator
</> animating={!!cache?.request?.promise}
) size="large"
}) color={colors.accent}
style={styles.indicator}
/>
</>
)
},
)
const ArtistImage = React.memo<ArtistCoverArtProps>(props => { const ArtistImage = React.memo<ArtistCoverArtProps>(props => {
const file = useArtistCoverArtFile(props.artistId) const cache = useArtistArtFile(props.artistId)
return <Image file={file} {...props} /> return <Image cache={cache} {...props} />
}) })
const CoverArtImage = React.memo<CoverArtProps>(props => { const CoverArtImage = React.memo<CoverArtProps>(props => {
const file = useCoverArtFile(props.coverArt) const cache = useCoverArtFile(props.coverArt)
return <Image file={file} {...props} /> return <Image cache={cache} {...props} />
}) })
const CoverArt = React.memo<CoverArtProps | ArtistCoverArtProps>(props => { const CoverArt = React.memo<CoverArtProps | ArtistCoverArtProps>(props => {

View File

@ -1,5 +1,7 @@
import { CacheFileTypeKey } from '@app/models/music'
import { selectCache } from '@app/state/cache' import { selectCache } from '@app/state/cache'
import { selectMusic } from '@app/state/music' import { selectMusic } from '@app/state/music'
import { selectSettings } from '@app/state/settings'
import { Store, useStore } from '@app/state/store' import { Store, useStore } from '@app/state/store'
import { useCallback, useEffect } from 'react' import { useCallback, useEffect } from 'react'
@ -62,45 +64,70 @@ export const useStarred = (id: string, type: string) => {
) )
} }
export const useCoverArtFile = (coverArt: string = '-1') => { const useFileRequest = (key: CacheFileTypeKey, id: string) => {
const existing = useStore( const file = useStore(
useCallback( useCallback(
(state: Store) => { (store: Store) => {
const activeServerId = state.settings.activeServer const activeServerId = store.settings.activeServer
if (!activeServerId) { if (!activeServerId) {
return return
} }
return state.cache[activeServerId].files.coverArt[coverArt]
return store.cacheFiles[activeServerId][key][id]
}, },
[coverArt], [key, id],
), ),
) )
const progress = useStore(useCallback((state: Store) => state.cachedCoverArt[coverArt], [coverArt])) const request = useStore(
const cacheCoverArt = useStore(selectCache.cacheCoverArt) useCallback(
(store: Store) => {
const activeServerId = store.settings.activeServer
if (!activeServerId) {
return
}
useEffect(() => { return store.cacheRequests[activeServerId][key][id]
if (!existing) { },
cacheCoverArt(coverArt) [key, id],
} ),
}) )
if (existing && progress && progress.promise !== undefined) { return { file, request }
return
}
return existing
} }
export const useArtistCoverArtFile = (artistId: string) => { export const useCoverArtFile = (coverArt: string = '-1') => {
const { file, request } = useFileRequest('coverArt', coverArt)
const client = useStore(selectSettings.client)
const cacheItem = useStore(selectCache.cacheItem)
useEffect(() => {
if (!file && client) {
cacheItem('coverArt', coverArt, () => client.getCoverArtUri({ id: coverArt }))
}
}, [cacheItem, client, coverArt, file])
// if (file && request && request.promise !== undefined) {
// return
// }
return { file, request }
}
export const useArtistArtFile = (artistId: string) => {
const artistInfo = useArtistInfo(artistId) const artistInfo = useArtistInfo(artistId)
const file = useStore(useCallback((state: Store) => state.cachedArtistArt[artistId], [artistId])) const { file, request } = useFileRequest('artistArt', artistId)
const cacheArtistArt = useStore(selectCache.cacheArtistArt) const cacheItem = useStore(selectCache.cacheItem)
useEffect(() => { useEffect(() => {
if (!file && artistInfo) { if (!file && artistInfo && artistInfo.largeImageUrl) {
cacheArtistArt(artistId, artistInfo.largeImageUrl) console.log(artistInfo.largeImageUrl)
cacheItem('artistArt', artistId, artistInfo.largeImageUrl)
} }
}) }, [artistId, artistInfo, artistInfo?.largeImageUrl, cacheItem, file])
return file // if (file && request && request.promise !== undefined) {
// return
// }
return { file, request }
} }

View File

@ -80,12 +80,25 @@ export type ListableItem = Song | AlbumListItem | Artist | PlaylistListItem
export type HomeLists = { [key: string]: AlbumListItem[] } export type HomeLists = { [key: string]: AlbumListItem[] }
export type CachedFile = { export enum CacheFileType {
coverArt,
artistArt,
song,
}
export type CacheFileTypeKey = keyof typeof CacheFileType
export type CacheFile = {
path: string path: string
date: number date: number
permanent: boolean permanent: boolean
} }
export type CacheRequest = {
progress: number
promise?: Promise<void>
}
export type DownloadedAlbum = Album & { export type DownloadedAlbum = Album & {
songs: string[] songs: string[]
} }

View File

@ -80,7 +80,7 @@ const SongListDetails = React.memo<{
} }
return ( return (
<ImageGradientScrollView imagePath={coverArtFile?.path} style={styles.container}> <ImageGradientScrollView imagePath={coverArtFile?.file?.path} style={styles.container}>
<View style={styles.content}> <View style={styles.content}>
<CoverArt type="cover" coverArt={songList.coverArt} style={styles.cover} /> <CoverArt type="cover" coverArt={songList.coverArt} style={styles.cover} />
<Text style={styles.title}>{songList.name}</Text> <Text style={styles.title}>{songList.name}</Text>

View File

@ -1,54 +1,38 @@
import { import { CacheFile, CacheFileTypeKey, CacheRequest, Song } from '@app/models/music'
CachedFile,
DownloadedAlbum,
DownloadedArtist,
DownloadedPlaylist,
DownloadedSong,
Song,
} from '@app/models/music'
import PromiseQueue from '@app/util/PromiseQueue' import PromiseQueue from '@app/util/PromiseQueue'
import { SetState, GetState } from 'zustand'
import { Store } from './store'
import produce from 'immer' import produce from 'immer'
import RNFS from 'react-native-fs' import RNFS from 'react-native-fs'
import { GetState, SetState } from 'zustand'
import { Store } from './store'
const imageDownloadQueue = new PromiseQueue(10) const imageDownloadQueue = new PromiseQueue(10)
type DownloadProgress = { export type CacheDownload = CacheFile & CacheRequest
progress: number
promise?: Promise<void>
}
export type CacheDownload = CachedFile & DownloadProgress export type CacheDirsByServer = Record<string, Record<CacheFileTypeKey, string>>
export type CacheFilesByServer = Record<string, Record<CacheFileTypeKey, Record<string, CacheFile>>>
export type CacheRequestsByServer = Record<string, Record<CacheFileTypeKey, Record<string, CacheRequest>>>
// export type CacheItemsDb = Record<
// string,
// {
// songs: { [songId: string]: DownloadedSong }
// albums: { [albumId: string]: DownloadedAlbum }
// artists: { [songId: string]: DownloadedArtist }
// playlists: { [playlistId: string]: DownloadedPlaylist }
// }
// >
export type CacheSlice = { export type CacheSlice = {
coverArtDir?: string cacheItem: (key: CacheFileTypeKey, itemId: string, url: string | (() => string | Promise<string>)) => Promise<void>
artistArtDir?: string
songsDir?: string
cache: { // cache: CacheItemsDb
[serverId: string]: { cacheDirs: CacheDirsByServer
files: { cacheFiles: CacheFilesByServer
coverArt: { [coverArt: string]: CachedFile } cacheRequests: CacheRequestsByServer
artistArt: { [artistId: string]: CachedFile }
songs: { [songId: string]: CachedFile }
}
songs: { [songId: string]: DownloadedSong }
albums: { [albumId: string]: DownloadedAlbum }
artists: { [songId: string]: DownloadedArtist }
playlists: { [playlistId: string]: DownloadedPlaylist }
}
}
cachedCoverArt: { [coverArt: string]: DownloadProgress }
cacheCoverArt: (coverArt: string) => Promise<void>
getCoverArtPath: (coverArt: string) => Promise<string | undefined> getCoverArtPath: (coverArt: string) => Promise<string | undefined>
cachedArtistArt: { [artistId: string]: CacheDownload }
cacheArtistArt: (artistId: string, url?: string) => Promise<void>
cachedSongs: { [id: string]: CacheDownload }
albumCoverArt: { [id: string]: string | undefined } albumCoverArt: { [id: string]: string | undefined }
albumCoverArtRequests: { [id: string]: Promise<void> } albumCoverArtRequests: { [id: string]: Promise<void> }
fetchAlbumCoverArt: (id: string) => Promise<void> fetchAlbumCoverArt: (id: string) => Promise<void>
@ -57,19 +41,20 @@ export type CacheSlice = {
} }
export const selectCache = { export const selectCache = {
cacheCoverArt: (store: CacheSlice) => store.cacheCoverArt,
getCoverArtPath: (store: CacheSlice) => store.getCoverArtPath, getCoverArtPath: (store: CacheSlice) => store.getCoverArtPath,
cacheArtistArt: (store: CacheSlice) => store.cacheArtistArt, cacheItem: (store: CacheSlice) => store.cacheItem,
fetchAlbumCoverArt: (store: CacheSlice) => store.fetchAlbumCoverArt, fetchAlbumCoverArt: (store: CacheSlice) => store.fetchAlbumCoverArt,
} }
export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): CacheSlice => ({ export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): CacheSlice => ({
cache: {}, // cache: {},
cachedCoverArt: {}, cacheDirs: {},
cacheFiles: {},
cacheRequests: {},
cacheCoverArt: async coverArt => { cacheItem: async (key, itemId, url) => {
const client = get().client const client = get().client
if (!client) { if (!client) {
return return
@ -80,7 +65,7 @@ export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): Ca
return return
} }
const inProgress = get().cachedCoverArt[coverArt] const inProgress = get().cacheRequests[activeServerId][key][itemId]
if (inProgress) { if (inProgress) {
if (inProgress.promise !== undefined) { if (inProgress.promise !== undefined) {
return await inProgress.promise return await inProgress.promise
@ -89,37 +74,39 @@ export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): Ca
} }
} }
const existing = get().cache[activeServerId].files.coverArt[coverArt] const existing = get().cacheFiles[activeServerId][key][itemId]
if (existing) { if (existing) {
return return
} }
const path = `${get().coverArtDir}/${coverArt}` const path = `${get().cacheDirs[activeServerId][key]}/${itemId}`
const urlResult = typeof url === 'string' ? url : url()
const fromUrl = typeof urlResult === 'string' ? urlResult : await urlResult
const promise = imageDownloadQueue const promise = imageDownloadQueue
.enqueue( .enqueue(
() => () =>
RNFS.downloadFile({ RNFS.downloadFile({
fromUrl: client.getCoverArtUri({ id: coverArt }), fromUrl,
toFile: path, toFile: path,
}).promise, }).promise,
) )
.then(() => { .then(() => {
set( set(
produce<CacheSlice>(state => { produce<CacheSlice>(state => {
state.cachedCoverArt[coverArt].progress = 1 state.cacheRequests[activeServerId][key][itemId].progress = 1
delete state.cachedCoverArt[coverArt].promise delete state.cacheRequests[activeServerId][key][itemId].promise
}), }),
) )
}) })
set( set(
produce<Store>(state => { produce<Store>(state => {
state.cache[activeServerId].files.coverArt[coverArt] = { state.cacheFiles[activeServerId][key][itemId] = {
path, path,
date: Date.now(), date: Date.now(),
permanent: false, permanent: false,
} }
state.cachedCoverArt[coverArt] = { state.cacheRequests[activeServerId][key][itemId] = {
progress: 0, progress: 0,
promise, promise,
} }
@ -129,13 +116,18 @@ export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): Ca
}, },
getCoverArtPath: async coverArt => { getCoverArtPath: async coverArt => {
const client = get().client
if (!client) {
return
}
const activeServerId = get().settings.activeServer const activeServerId = get().settings.activeServer
if (!activeServerId) { if (!activeServerId) {
return return
} }
const existing = get().cache[activeServerId].files.coverArt[coverArt] const existing = get().cacheFiles[activeServerId].coverArt[coverArt]
const inProgress = get().cachedCoverArt[coverArt] const inProgress = get().cacheRequests[activeServerId].coverArt[coverArt]
if (existing && inProgress) { if (existing && inProgress) {
if (inProgress.promise) { if (inProgress.promise) {
await inProgress.promise await inProgress.promise
@ -143,64 +135,10 @@ export const createCacheSlice = (set: SetState<Store>, get: GetState<Store>): Ca
return existing.path return existing.path
} }
await get().cacheCoverArt(coverArt) await get().cacheItem('coverArt', coverArt, () => client.getCoverArtUri({ id: coverArt }))
return get().cache[activeServerId].files.coverArt[coverArt].path return get().cacheFiles[activeServerId].coverArt[coverArt].path
}, },
cachedArtistArt: {},
cacheArtistArt: async (artistId, url) => {
if (!url) {
return
}
const client = get().client
if (!client) {
return
}
const path = `${get().artistArtDir}/${artistId}`
const existing = get().cachedArtistArt[artistId]
if (existing) {
if (existing.promise !== undefined) {
return await existing.promise
} else {
return
}
}
const promise = imageDownloadQueue
.enqueue(
() =>
RNFS.downloadFile({
fromUrl: url,
toFile: path,
}).promise,
)
.then(() => {
set(
produce<CacheSlice>(state => {
state.cachedArtistArt[artistId].progress = 1
delete state.cachedArtistArt[artistId].promise
}),
)
})
set(
produce<CacheSlice>(state => {
state.cachedArtistArt[artistId] = {
path,
date: Date.now(),
progress: 0,
permanent: false,
promise,
}
}),
)
},
cachedSongs: {},
albumCoverArt: {}, albumCoverArt: {},
albumCoverArtRequests: {}, albumCoverArtRequests: {},

View File

@ -1,3 +1,4 @@
import { CacheFileType } from '@app/models/music'
import { AppSettings, Server } from '@app/models/settings' import { AppSettings, Server } from '@app/models/settings'
import { Store } from '@app/state/store' import { Store } from '@app/state/store'
import { SubsonicApiClient } from '@app/subsonic/api' import { SubsonicApiClient } from '@app/subsonic/api'
@ -42,9 +43,6 @@ export const createSettingsSlice = (set: SetState<Store>, get: GetState<Store>):
if (!newActiveServer) { if (!newActiveServer) {
set({ set({
client: undefined, client: undefined,
coverArtDir: undefined,
artistArtDir: undefined,
songsDir: undefined,
}) })
return return
} }
@ -52,29 +50,35 @@ export const createSettingsSlice = (set: SetState<Store>, get: GetState<Store>):
return return
} }
const coverArtDir = `${RNFS.DocumentDirectoryPath}/cover-art/${id}` for (const type in CacheFileType) {
const artistArtDir = `${RNFS.DocumentDirectoryPath}/artist-art/${id}` await mkdir(`${RNFS.DocumentDirectoryPath}/servers/${id}/${type}`)
const songsDir = `${RNFS.DocumentDirectoryPath}/songs/${id}` }
await mkdir(coverArtDir)
await mkdir(artistArtDir)
await mkdir(songsDir)
set( set(
produce<Store>(state => { produce<Store>(state => {
state.settings.activeServer = newActiveServer.id state.settings.activeServer = newActiveServer.id
state.client = new SubsonicApiClient(newActiveServer) state.client = new SubsonicApiClient(newActiveServer)
state.coverArtDir = coverArtDir
state.artistArtDir = artistArtDir if (!state.cacheDirs[newActiveServer.id]) {
state.songsDir = songsDir state.cacheDirs[newActiveServer.id] = {
state.cache[newActiveServer.id] = state.cache[newActiveServer.id] || { song: `${RNFS.DocumentDirectoryPath}/servers/${id}/song`,
files: { coverArt: `${RNFS.DocumentDirectoryPath}/servers/${id}/coverArt`,
artistArt: `${RNFS.DocumentDirectoryPath}/servers/${id}/artistArt`,
}
}
if (!state.cacheFiles[newActiveServer.id]) {
state.cacheFiles[newActiveServer.id] = {
song: {},
coverArt: {}, coverArt: {},
artistArt: {}, artistArt: {},
songs: {}, }
}, }
songs: {}, if (!state.cacheRequests[newActiveServer.id]) {
albums: {}, state.cacheRequests[newActiveServer.id] = {
artists: {}, song: {},
coverArt: {},
artistArt: {},
}
} }
}), }),
) )
@ -92,6 +96,7 @@ export const createSettingsSlice = (set: SetState<Store>, get: GetState<Store>):
}) })
export const selectSettings = { export const selectSettings = {
client: (state: SettingsSlice) => state.client,
activeServer: (state: SettingsSlice) => state.settings.servers.find(s => s.id === state.settings.activeServer), activeServer: (state: SettingsSlice) => state.settings.servers.find(s => s.id === state.settings.activeServer),
setActiveServer: (state: SettingsSlice) => state.setActiveServer, setActiveServer: (state: SettingsSlice) => state.setActiveServer,
servers: (state: SettingsSlice) => state.settings.servers, servers: (state: SettingsSlice) => state.settings.servers,

View File

@ -46,7 +46,7 @@ export const useStore = create<Store>(
{ {
name: '@appStore', name: '@appStore',
getStorage: () => storage, getStorage: () => storage,
whitelist: ['settings', 'cache'], whitelist: ['settings', 'cacheFiles'],
onRehydrateStorage: _preState => { onRehydrateStorage: _preState => {
return async (postState, _error) => { return async (postState, _error) => {
await postState?.setActiveServer(postState.settings.activeServer, true) await postState?.setActiveServer(postState.settings.activeServer, true)