98 lines
3.9 KiB
TypeScript
98 lines
3.9 KiB
TypeScript
import React, { useCallback, useEffect } from 'react';
|
|
import { useGetImage } from 'utility/JellyfinApi';
|
|
import { MusicNavigationProp } from '../types';
|
|
import { Text, SafeAreaView, FlatList, StyleSheet } from 'react-native';
|
|
import { useNavigation } from '@react-navigation/native';
|
|
import { useAppDispatch, useTypedSelector } from 'store';
|
|
import { fetchRecentAlbums } from 'store/music/actions';
|
|
import TouchableHandler from 'components/TouchableHandler';
|
|
import ListContainer from './components/ListContainer';
|
|
import AlbumImage, { AlbumItem } from './components/AlbumImage';
|
|
import { useRecentAlbums } from 'store/music/selectors';
|
|
import { Header } from 'components/Typography';
|
|
import ListButton from 'components/ListButton';
|
|
import { t } from '@localisation';
|
|
import useDefaultStyles from 'components/Colors';
|
|
import { Album } from 'store/music/types';
|
|
import Divider from 'components/Divider';
|
|
import styled from 'styled-components/native';
|
|
import { ShadowWrapper } from 'components/Shadow';
|
|
|
|
const styles = StyleSheet.create({
|
|
columnWrapper: {
|
|
paddingHorizontal: 16,
|
|
}
|
|
});
|
|
|
|
const HeaderContainer = styled.View`
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
`;
|
|
|
|
const NavigationHeader: React.FC = () => {
|
|
const navigation = useNavigation<MusicNavigationProp>();
|
|
const handleAllAlbumsClick = useCallback(() => { navigation.navigate('Albums'); }, [navigation]);
|
|
const handlePlaylistsClick = useCallback(() => { navigation.navigate('Playlists'); }, [navigation]);
|
|
|
|
return (
|
|
<>
|
|
<ListButton onPress={handleAllAlbumsClick}>{t('all-albums')}</ListButton>
|
|
<ListButton onPress={handlePlaylistsClick}>{t('playlists')}</ListButton>
|
|
<ListContainer>
|
|
<HeaderContainer>
|
|
<Header>{t('recent-albums')}</Header>
|
|
<Divider style={{ marginLeft: 24 }} />
|
|
</HeaderContainer>
|
|
</ListContainer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const RecentAlbums: React.FC = () => {
|
|
const defaultStyles = useDefaultStyles();
|
|
|
|
// Retrieve data from store
|
|
const { entities: albums } = useTypedSelector((state) => state.music.albums);
|
|
const recentAlbums = useRecentAlbums(24);
|
|
const isLoading = useTypedSelector((state) => state.music.albums.isLoading);
|
|
|
|
// Initialise helpers
|
|
const dispatch = useAppDispatch();
|
|
const navigation = useNavigation<MusicNavigationProp>();
|
|
const getImage = useGetImage();
|
|
|
|
// Set callbacks
|
|
const retrieveData = useCallback(() => dispatch(fetchRecentAlbums()), [dispatch]);
|
|
const selectAlbum = useCallback((id: string) => navigation.navigate('Album', { id, album: albums[id] as Album }), [navigation, albums]);
|
|
|
|
// Retrieve data on mount
|
|
useEffect(() => { retrieveData(); }, [retrieveData]);
|
|
|
|
return (
|
|
<SafeAreaView>
|
|
<FlatList
|
|
data={recentAlbums as string[]}
|
|
refreshing={isLoading}
|
|
onRefresh={retrieveData}
|
|
numColumns={2}
|
|
keyExtractor={d => d}
|
|
columnWrapperStyle={styles.columnWrapper}
|
|
ListHeaderComponent={NavigationHeader}
|
|
renderItem={({ item }) => (
|
|
<TouchableHandler id={item} onPress={selectAlbum}>
|
|
<AlbumItem>
|
|
<ShadowWrapper size="medium">
|
|
<AlbumImage source={{ uri: getImage(item) }} style={defaultStyles.imageBackground} />
|
|
</ShadowWrapper>
|
|
<Text style={defaultStyles.text} numberOfLines={1}>{albums[item]?.Name}</Text>
|
|
<Text style={defaultStyles.textHalfOpacity} numberOfLines={1}>{albums[item]?.AlbumArtist}</Text>
|
|
</AlbumItem>
|
|
</TouchableHandler>
|
|
)}
|
|
/>
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default RecentAlbums; |