258 lines
No EOL
8.7 KiB
TypeScript
258 lines
No EOL
8.7 KiB
TypeScript
import React, { useCallback, useMemo, useRef } from 'react';
|
|
import { View, Text, StyleSheet, TouchableOpacity, Platform, Dimensions } from 'react-native';
|
|
import { FlashList } from '@shopify/flash-list';
|
|
import { NavigationProp, useNavigation } from '@react-navigation/native';
|
|
import { MaterialIcons } from '@expo/vector-icons';
|
|
import { LinearGradient } from 'expo-linear-gradient';
|
|
import { CatalogContent, StreamingContent } from '../../services/catalogService';
|
|
import { useTheme } from '../../contexts/ThemeContext';
|
|
import ContentItem from './ContentItem';
|
|
import Animated, { FadeIn, Layout } from 'react-native-reanimated';
|
|
import { RootStackParamList } from '../../navigation/AppNavigator';
|
|
|
|
interface CatalogSectionProps {
|
|
catalog: CatalogContent;
|
|
}
|
|
|
|
const { width } = Dimensions.get('window');
|
|
|
|
// Enhanced responsive breakpoints
|
|
const BREAKPOINTS = {
|
|
phone: 0,
|
|
tablet: 768,
|
|
largeTablet: 1024,
|
|
tv: 1440,
|
|
};
|
|
|
|
const getDeviceType = (deviceWidth: number) => {
|
|
if (deviceWidth >= BREAKPOINTS.tv) return 'tv';
|
|
if (deviceWidth >= BREAKPOINTS.largeTablet) return 'largeTablet';
|
|
if (deviceWidth >= BREAKPOINTS.tablet) return 'tablet';
|
|
return 'phone';
|
|
};
|
|
|
|
const deviceType = getDeviceType(width);
|
|
const isTablet = deviceType === 'tablet';
|
|
const isLargeTablet = deviceType === 'largeTablet';
|
|
const isTV = deviceType === 'tv';
|
|
|
|
// Dynamic poster calculation based on screen width - show 1/4 of next poster
|
|
const calculatePosterLayout = (screenWidth: number) => {
|
|
const MIN_POSTER_WIDTH = 100; // Reduced minimum for more posters
|
|
const MAX_POSTER_WIDTH = 130; // Reduced maximum for more posters
|
|
const LEFT_PADDING = 16; // Left padding
|
|
const SPACING = 8; // Space between posters
|
|
|
|
// Calculate available width for posters (reserve space for left padding)
|
|
const availableWidth = screenWidth - LEFT_PADDING;
|
|
|
|
// Try different numbers of full posters to find the best fit
|
|
let bestLayout = { numFullPosters: 3, posterWidth: 120 };
|
|
|
|
for (let n = 3; n <= 6; n++) {
|
|
// Calculate poster width needed for N full posters + 0.25 partial poster
|
|
// Formula: N * posterWidth + (N-1) * spacing + 0.25 * posterWidth = availableWidth - rightPadding
|
|
// Simplified: posterWidth * (N + 0.25) + (N-1) * spacing = availableWidth - rightPadding
|
|
// We'll use minimal right padding (8px) to maximize space
|
|
const usableWidth = availableWidth - 8;
|
|
const posterWidth = (usableWidth - (n - 1) * SPACING) / (n + 0.25);
|
|
|
|
if (posterWidth >= MIN_POSTER_WIDTH && posterWidth <= MAX_POSTER_WIDTH) {
|
|
bestLayout = { numFullPosters: n, posterWidth };
|
|
}
|
|
}
|
|
|
|
return {
|
|
numFullPosters: bestLayout.numFullPosters,
|
|
posterWidth: bestLayout.posterWidth,
|
|
spacing: SPACING,
|
|
partialPosterWidth: bestLayout.posterWidth * 0.25 // 1/4 of next poster
|
|
};
|
|
};
|
|
|
|
const posterLayout = calculatePosterLayout(width);
|
|
const POSTER_WIDTH = posterLayout.posterWidth;
|
|
|
|
const CatalogSection = ({ catalog }: CatalogSectionProps) => {
|
|
const navigation = useNavigation<NavigationProp<RootStackParamList>>();
|
|
const { currentTheme } = useTheme();
|
|
|
|
const handleContentPress = useCallback((id: string, type: string) => {
|
|
navigation.navigate('Metadata', { id, type, addonId: catalog.addon });
|
|
}, [navigation, catalog.addon]);
|
|
|
|
const renderContentItem = useCallback(({ item }: { item: StreamingContent, index: number }) => {
|
|
return (
|
|
<ContentItem
|
|
item={item}
|
|
onPress={handleContentPress}
|
|
/>
|
|
);
|
|
}, [handleContentPress]);
|
|
|
|
// Memoize the ItemSeparatorComponent to prevent re-creation (responsive spacing)
|
|
const separatorWidth = isTV ? 12 : isLargeTablet ? 10 : isTablet ? 8 : 8;
|
|
const ItemSeparator = useCallback(() => <View style={{ width: separatorWidth }} />, [separatorWidth]);
|
|
|
|
// Memoize the keyExtractor to prevent re-creation
|
|
const keyExtractor = useCallback((item: StreamingContent) => `${item.id}-${item.type}`, []);
|
|
|
|
// FlashList v2 optimization: getItemType for better performance
|
|
const getItemType = useCallback((item: StreamingContent) => {
|
|
// Return different types based on content for better recycling
|
|
return item.type === 'movie' ? 'movie' : 'series';
|
|
}, []);
|
|
|
|
return (
|
|
<Animated.View
|
|
style={styles.catalogContainer}
|
|
entering={FadeIn.duration(400)}
|
|
>
|
|
<View style={[
|
|
styles.catalogHeader,
|
|
{ paddingHorizontal: isTV ? 32 : isLargeTablet ? 28 : isTablet ? 24 : 16 }
|
|
]}>
|
|
<View style={styles.titleContainer}>
|
|
<Text
|
|
style={[
|
|
styles.catalogTitle,
|
|
{
|
|
color: currentTheme.colors.text,
|
|
fontSize: isTV ? 28 : isLargeTablet ? 26 : isTablet ? 24 : 22,
|
|
}
|
|
]}
|
|
numberOfLines={1}
|
|
>
|
|
{catalog.name}
|
|
</Text>
|
|
<View
|
|
style={[
|
|
styles.titleUnderline,
|
|
{
|
|
backgroundColor: currentTheme.colors.primary,
|
|
width: isTV ? 64 : isLargeTablet ? 56 : isTablet ? 48 : 40,
|
|
height: isTV ? 4 : isLargeTablet ? 3 : 3,
|
|
}
|
|
]}
|
|
/>
|
|
</View>
|
|
<TouchableOpacity
|
|
onPress={() =>
|
|
navigation.navigate('Catalog', {
|
|
id: catalog.id,
|
|
type: catalog.type,
|
|
addonId: catalog.addon
|
|
})
|
|
}
|
|
style={[
|
|
styles.viewAllButton,
|
|
{
|
|
paddingVertical: isTV ? 10 : isLargeTablet ? 9 : isTablet ? 8 : 8,
|
|
paddingHorizontal: isTV ? 12 : isLargeTablet ? 11 : isTablet ? 10 : 10,
|
|
borderRadius: isTV ? 22 : isLargeTablet ? 20 : isTablet ? 20 : 20,
|
|
}
|
|
]}
|
|
>
|
|
<Text style={[
|
|
styles.viewAllText,
|
|
{
|
|
color: currentTheme.colors.textMuted,
|
|
fontSize: isTV ? 16 : isLargeTablet ? 15 : isTablet ? 14 : 14,
|
|
marginRight: isTV ? 6 : isLargeTablet ? 5 : 4,
|
|
}
|
|
]}>View All</Text>
|
|
<MaterialIcons
|
|
name="chevron-right"
|
|
size={isTV ? 24 : isLargeTablet ? 22 : isTablet ? 20 : 20}
|
|
color={currentTheme.colors.textMuted}
|
|
/>
|
|
</TouchableOpacity>
|
|
</View>
|
|
|
|
<FlashList
|
|
data={catalog.items}
|
|
renderItem={renderContentItem}
|
|
keyExtractor={keyExtractor}
|
|
getItemType={getItemType}
|
|
horizontal
|
|
showsHorizontalScrollIndicator={false}
|
|
contentContainerStyle={StyleSheet.flatten([
|
|
styles.catalogList,
|
|
{
|
|
paddingHorizontal: isTV ? 32 : isLargeTablet ? 28 : isTablet ? 24 : 16,
|
|
paddingRight: (isTV ? 32 : isLargeTablet ? 28 : isTablet ? 24 : 16) - posterLayout.partialPosterWidth,
|
|
}
|
|
])}
|
|
ItemSeparatorComponent={ItemSeparator}
|
|
onEndReachedThreshold={0.7}
|
|
onEndReached={() => {}}
|
|
// FlashList v2 optimizations
|
|
drawDistance={500}
|
|
/>
|
|
</Animated.View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
catalogContainer: {
|
|
marginBottom: 28,
|
|
},
|
|
catalogHeader: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
marginBottom: 16,
|
|
},
|
|
titleContainer: {
|
|
position: 'relative',
|
|
flex: 1,
|
|
marginRight: 16,
|
|
},
|
|
catalogTitle: {
|
|
fontSize: 24, // will be overridden responsively
|
|
fontWeight: '800',
|
|
letterSpacing: 0.5,
|
|
marginBottom: 4,
|
|
},
|
|
titleUnderline: {
|
|
position: 'absolute',
|
|
bottom: -2,
|
|
left: 0,
|
|
width: 40, // overridden responsively
|
|
height: 3, // overridden responsively
|
|
borderRadius: 2,
|
|
opacity: 0.8,
|
|
},
|
|
viewAllButton: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingVertical: 8, // overridden responsively
|
|
paddingHorizontal: 10, // overridden responsively
|
|
borderRadius: 20, // overridden responsively
|
|
backgroundColor: 'rgba(255,255,255,0.1)',
|
|
},
|
|
viewAllText: {
|
|
fontSize: 14, // overridden responsively
|
|
fontWeight: '600',
|
|
marginRight: 4, // overridden responsively
|
|
},
|
|
catalogList: {
|
|
// padding will be applied responsively in JSX
|
|
},
|
|
});
|
|
|
|
export default React.memo(CatalogSection, (prevProps, nextProps) => {
|
|
// Only re-render if the catalog data actually changes
|
|
return (
|
|
prevProps.catalog.addon === nextProps.catalog.addon &&
|
|
prevProps.catalog.id === nextProps.catalog.id &&
|
|
prevProps.catalog.name === nextProps.catalog.name &&
|
|
prevProps.catalog.items.length === nextProps.catalog.items.length &&
|
|
// Deep compare the first few items to detect changes
|
|
prevProps.catalog.items.slice(0, 3).every((item, index) =>
|
|
nextProps.catalog.items[index] &&
|
|
item.id === nextProps.catalog.items[index].id &&
|
|
item.poster === nextProps.catalog.items[index].poster
|
|
)
|
|
);
|
|
}); |