import React, { useCallback, useEffect, useRef, ReactText } from 'react'; import { useGetImage } from 'utility/JellyfinApi'; import { MusicNavigationProp } from '../types'; import { SafeAreaView, SectionList, View } from 'react-native'; import { useNavigation } from '@react-navigation/native'; import { differenceInDays } from 'date-fns'; import { useAppDispatch, useTypedSelector } from 'store'; import { fetchAllAlbums } from 'store/music/actions'; import { ALBUM_CACHE_AMOUNT_OF_DAYS } from 'CONSTANTS'; import TouchableHandler from 'components/TouchableHandler'; import AlbumImage, { AlbumHeight, AlbumItem } from './components/AlbumImage'; import { selectAlbumsByAlphabet, SectionedId } from 'store/music/selectors'; import AlphabetScroller from 'components/AlphabetScroller'; import { EntityId } from '@reduxjs/toolkit'; import styled from 'styled-components/native'; import useDefaultStyles, { ColoredBlurView } from 'components/Colors'; import { Album } from 'store/music/types'; import { Text } from 'components/Typography'; import { ShadowWrapper } from 'components/Shadow'; const HeadingHeight = 50; interface VirtualizedItemInfo { section: SectionedId, // Key of the section or combined key for section + item key: string, // Relative index within the section index: number, // True if this is the section header header?: boolean, leadingItem?: EntityId, leadingSection?: SectionedId, trailingItem?: EntityId, trailingSection?: SectionedId, } type VirtualizedSectionList = { _subExtractor: (index: number) => VirtualizedItemInfo }; function generateSection({ section }: { section: SectionedId }) { return ( ); } const SectionContainer = styled.View` height: ${HeadingHeight}px; justify-content: center; padding: 0 24px; `; const SectionText = styled(Text)` font-size: 24px; font-weight: 400; `; const SectionHeading = React.memo(function SectionHeading(props: { label: string }) { const { label } = props; return ( {label} ); }); interface GeneratedAlbumItemProps { id: ReactText; imageUrl: string; name: string; artist: string; onPress: (id: string) => void; } const HalfOpacity = styled.Text` opacity: 0.5; `; const GeneratedAlbumItem = React.memo(function GeneratedAlbumItem(props: GeneratedAlbumItemProps) { const defaultStyles = useDefaultStyles(); const { id, imageUrl, name, artist, onPress } = props; return ( {name} {artist} ); }); const Albums: React.FC = () => { // Retrieve data from store const { entities: albums } = useTypedSelector((state) => state.music.albums); const isLoading = useTypedSelector((state) => state.music.albums.isLoading); const lastRefreshed = useTypedSelector((state) => state.music.albums.lastRefreshed); const sections = useTypedSelector(selectAlbumsByAlphabet); // Initialise helpers const dispatch = useAppDispatch(); const navigation = useNavigation(); const getImage = useGetImage(); const listRef = useRef>(null); const getItemLayout = useCallback((data: SectionedId[] | null, index: number): { offset: number, length: number, index: number } => { // We must wait for the ref to become available before we can use the // native item retriever in VirtualizedSectionList if (!listRef.current) { return { offset: 0, length: 0, index }; } // Retrieve the right item info // @ts-ignore const wrapperListRef = (listRef.current?._wrapperListRef) as VirtualizedSectionList; const info: VirtualizedItemInfo = wrapperListRef._subExtractor(index); const { index: itemIndex, header, key } = info; const sectionIndex = parseInt(key.split(':')[0]); // We can then determine the "length" (=height) of this item. Header items // end up with an itemIndex of -1, thus are easy to identify. const length = header ? 50 : (itemIndex % 2 === 0 ? AlbumHeight : 0); // We'll also need to account for any unevenly-ended lists up until the // current item. const previousRows = data?.filter((row, i) => i < sectionIndex) .reduce((sum, row) => sum + Math.ceil(row.data.length / 2), 0) || 0; // We must also calcuate the offset, total distance from the top of the // screen. First off, we'll account for each sectionIndex that is shown up // until now. This only includes the heading for the current section if the // item is not the section header const headingOffset = HeadingHeight * (header ? sectionIndex : sectionIndex + 1); const currentRows = itemIndex > 1 ? Math.ceil((itemIndex + 1) / 2) : 0; const itemOffset = AlbumHeight * (previousRows + currentRows); const offset = headingOffset + itemOffset; return { index, length, offset }; }, [listRef]); // Set callbacks const retrieveData = useCallback(() => dispatch(fetchAllAlbums()), [dispatch]); const selectAlbum = useCallback((id: string) => navigation.navigate('Album', { id, album: albums[id] as Album }), [navigation, albums]); const selectLetter = useCallback((sectionIndex: number) => { listRef.current?.scrollToLocation({ sectionIndex, itemIndex: 0, animated: false, }); }, [listRef]); const generateItem = useCallback(({ item, index, section }: { item: EntityId, index: number, section: SectionedId }) => { if (index % 2 === 1) { return ; } const nextItem = section.data[index + 1]; return ( {albums[nextItem] && } ); }, [albums, getImage, selectAlbum]); // Retrieve data on mount useEffect(() => { // GUARD: Only refresh this API call every set amounts of days if (!lastRefreshed || differenceInDays(lastRefreshed, new Date()) > ALBUM_CACHE_AMOUNT_OF_DAYS) { retrieveData(); } }); return ( item as string} renderSectionHeader={generateSection} renderItem={generateItem} /> ); }; export default Albums;