mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 17:19:27 +01:00
* initial react-query experiments * use queries for item screens send the data we do have over routing to prepopulate (album/playlist) use number for starred because sending Date freaks out react-navigation * add in equiv. song cover art fix * reorg, switch artistview over start mapping song cover art when any are available * refactor useStar to queries fix caching for starred items and album cover art * add hook to reset queries on server change * refactor search to use query * fix song cover art setting * use query for artistInfo * remove last bits of library state * cleanup * use query key factory already fixed one wrong key... * require coverart size * let's try no promise queues on these for now * image cache uses query * perf fix for playlist parsing also use placeholder data so we don't have to deal with staleness * drill that disabled also list controls doesn't need its own songs hook/copy * switch to react-native-blob-util for downloads slightly slower but allows us to use DownloadManager, which backgrounds downloads so they are no longer corrupted when the app suspends * add a fake "top songs" based on artist search then sorted by play count/ratings artistview should load now even if topSongs fails * try not to swap between topSongs/search on refetch set queueContext by song list so the index isn't off if the list changes * add content type validation for file fetching also try to speed up existing file return by limiting fs ops * if the HEAD fails, don't queue the download * clean up params * reimpl clear image cache * precompute contextId prevents wrong "is playing" when any mismatch between queue and list * clear images from all servers use external files dir instead of cache * fix pressable disabled flicker don't retry topsongs on failure try to optimize setqueue and fixcoverart a bit * wait for queries during clear * break out fetchExistingFile from fetchFile allows to tell if file is coming from disk or not only show placeholder/loading spinner if actually fetching image * forgot these wouldn't do anything with objects * remove query cache when switching servers * add content-disposition extension gathering add support for progress hook (needs native support still) * added custom RNBU pkg with progress changes * fully unmount tabs when server changes prevents unwanted requests, gives fresh start on switch fix fixCoverArt not re-rendering in certain cases on search * use serverId from fetch deps * fix lint * update licenses * just use the whole lodash package * make using cache buster optional
120 lines
3.0 KiB
TypeScript
120 lines
3.0 KiB
TypeScript
import { useQueryArtistArtPath, useQueryCoverArtPath } from '@app/hooks/query'
|
|
import { CacheImageSize } from '@app/models/cache'
|
|
import colors from '@app/styles/colors'
|
|
import React, { useState } from 'react'
|
|
import {
|
|
ActivityIndicator,
|
|
Image,
|
|
ImageResizeMode,
|
|
ImageSourcePropType,
|
|
ImageStyle,
|
|
StyleSheet,
|
|
View,
|
|
ViewStyle,
|
|
} from 'react-native'
|
|
|
|
type BaseProps = {
|
|
style?: ViewStyle
|
|
imageStyle?: ImageStyle
|
|
resizeMode?: ImageResizeMode
|
|
round?: boolean
|
|
size: CacheImageSize
|
|
fadeDuration?: number
|
|
}
|
|
|
|
type ArtistCoverArtProps = BaseProps & {
|
|
type: 'artist'
|
|
artistId: string
|
|
}
|
|
|
|
type CoverArtProps = BaseProps & {
|
|
type: 'cover'
|
|
coverArt?: string
|
|
}
|
|
|
|
type ImageSourceProps = BaseProps & {
|
|
data?: string
|
|
isFetching: boolean
|
|
isExistingFetching: boolean
|
|
}
|
|
|
|
const ImageSource = React.memo<ImageSourceProps>(
|
|
({ style, imageStyle, resizeMode, data, isFetching, isExistingFetching, fadeDuration }) => {
|
|
const [error, setError] = useState(false)
|
|
|
|
let source: ImageSourcePropType
|
|
if (!error && data) {
|
|
source = { uri: `file://${data}` }
|
|
} else {
|
|
source = require('@res/fallback.png')
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{isExistingFetching ? (
|
|
<View style={{ height: style?.height, width: style?.width }} />
|
|
) : (
|
|
<Image
|
|
source={source}
|
|
fadeDuration={fadeDuration === undefined ? 250 : fadeDuration}
|
|
resizeMode={resizeMode || 'contain'}
|
|
style={[{ height: style?.height, width: style?.width }, imageStyle]}
|
|
onError={() => setError(true)}
|
|
/>
|
|
)}
|
|
{isFetching && (
|
|
<ActivityIndicator animating={true} size="large" color={colors.accent} style={styles.indicator} />
|
|
)}
|
|
</>
|
|
)
|
|
},
|
|
)
|
|
|
|
const ArtistImage = React.memo<ArtistCoverArtProps>(props => {
|
|
const { data, isFetching, isExistingFetching } = useQueryArtistArtPath(props.artistId, props.size)
|
|
|
|
return <ImageSource data={data} isFetching={isFetching} isExistingFetching={isExistingFetching} {...props} />
|
|
})
|
|
|
|
const CoverArtImage = React.memo<CoverArtProps>(props => {
|
|
const { data, isFetching, isExistingFetching } = useQueryCoverArtPath(props.coverArt, props.size)
|
|
|
|
return <ImageSource data={data} isFetching={isFetching} isExistingFetching={isExistingFetching} {...props} />
|
|
})
|
|
|
|
const CoverArt = React.memo<CoverArtProps | ArtistCoverArtProps>(props => {
|
|
const viewStyles = [props.style]
|
|
if (props.round) {
|
|
viewStyles.push(styles.round)
|
|
}
|
|
|
|
let imageComponent
|
|
switch (props.type) {
|
|
case 'artist':
|
|
imageComponent = <ArtistImage {...(props as ArtistCoverArtProps)} />
|
|
break
|
|
default:
|
|
imageComponent = <CoverArtImage {...(props as CoverArtProps)} />
|
|
break
|
|
}
|
|
|
|
return <View style={viewStyles}>{imageComponent}</View>
|
|
})
|
|
|
|
const styles = StyleSheet.create({
|
|
round: {
|
|
overflow: 'hidden',
|
|
borderRadius: 1000,
|
|
},
|
|
indicator: {
|
|
height: '100%',
|
|
width: '100%',
|
|
position: 'absolute',
|
|
},
|
|
artistImage: {
|
|
backgroundColor: 'rgba(81, 28, 99, 0.4)',
|
|
},
|
|
})
|
|
|
|
export default CoverArt
|