/** * Sample React Native App * https://github.com/facebook/react-native * * @format */ import React, { useState, useEffect } from 'react'; import { View, StyleSheet, I18nManager, Platform, LogBox } from 'react-native'; import { NavigationContainer } from '@react-navigation/native'; import { GestureHandlerRootView } from 'react-native-gesture-handler'; import { StatusBar } from 'expo-status-bar'; import { Provider as PaperProvider } from 'react-native-paper'; import { enableScreens } from 'react-native-screens'; import AppNavigator, { CustomNavigationDarkTheme, CustomDarkTheme } from './src/navigation/AppNavigator'; import 'react-native-reanimated'; import { CatalogProvider } from './src/contexts/CatalogContext'; import { GenreProvider } from './src/contexts/GenreContext'; import { TraktProvider } from './src/contexts/TraktContext'; import { ThemeProvider, useTheme } from './src/contexts/ThemeContext'; import { TrailerProvider } from './src/contexts/TrailerContext'; import { DownloadsProvider } from './src/contexts/DownloadsContext'; import SplashScreen from './src/components/SplashScreen'; import UpdatePopup from './src/components/UpdatePopup'; import MajorUpdateOverlay from './src/components/MajorUpdateOverlay'; import { useGithubMajorUpdate } from './src/hooks/useGithubMajorUpdate'; import { useUpdatePopup } from './src/hooks/useUpdatePopup'; import AsyncStorage from '@react-native-async-storage/async-storage'; import * as Sentry from '@sentry/react-native'; import UpdateService from './src/services/updateService'; import { memoryMonitorService } from './src/services/memoryMonitorService'; import { aiService } from './src/services/aiService'; import { AccountProvider, useAccount } from './src/contexts/AccountContext'; Sentry.init({ dsn: 'https://1a58bf436454d346e5852b7bfd3c95e8@o4509536317276160.ingest.de.sentry.io/4509536317734992', // Adds more context data to events (IP address, cookies, user, etc.) // For more information, visit: https://docs.sentry.io/platforms/react-native/data-management/data-collected/ sendDefaultPii: true, // Configure Session Replay conservatively to avoid startup overhead in production replaysSessionSampleRate: __DEV__ ? 0.1 : 0, replaysOnErrorSampleRate: __DEV__ ? 1 : 0, integrations: [Sentry.feedbackIntegration()], // uncomment the line below to enable Spotlight (https://spotlightjs.com) // spotlight: __DEV__, }); // Force LTR layout to prevent RTL issues when Arabic is set as system language // This ensures posters and UI elements remain visible and properly positioned I18nManager.allowRTL(false); I18nManager.forceRTL(false); // Suppress duplicate key warnings app-wide LogBox.ignoreLogs([ 'Warning: Encountered two children with the same key', 'Keys should be unique so that components maintain their identity across updates' ]); // This fixes many navigation layout issues by using native screen containers enableScreens(true); // Inner app component that uses the theme context const ThemedApp = () => { // Log JS engine once at startup useEffect(() => { try { // eslint-disable-next-line @typescript-eslint/no-explicit-any const engine = (global as any).HermesInternal ? 'Hermes' : 'JSC'; console.log('JS Engine:', engine); } catch {} }, []); const { currentTheme } = useTheme(); const [isAppReady, setIsAppReady] = useState(false); const [hasCompletedOnboarding, setHasCompletedOnboarding] = useState(null); // Update popup functionality const { showUpdatePopup, updateInfo, isInstalling, handleUpdateNow, handleUpdateLater, handleDismiss, } = useUpdatePopup(); // GitHub major/minor release overlay const githubUpdate = useGithubMajorUpdate(); // Check onboarding status and initialize services useEffect(() => { const initializeApp = async () => { try { // Check onboarding status const onboardingCompleted = await AsyncStorage.getItem('hasCompletedOnboarding'); setHasCompletedOnboarding(onboardingCompleted === 'true'); // Initialize update service (skip on Android to prevent update checks) if (Platform.OS !== 'android') { await UpdateService.initialize(); } // Initialize memory monitoring service to prevent OutOfMemoryError memoryMonitorService; // Just accessing it starts the monitoring console.log('Memory monitoring service initialized'); // Initialize AI service await aiService.initialize(); console.log('AI service initialized'); } catch (error) { console.error('Error initializing app:', error); // Default to showing onboarding if we can't check setHasCompletedOnboarding(false); } }; initializeApp(); }, []); // Create custom themes based on current theme const customDarkTheme = { ...CustomDarkTheme, colors: { ...CustomDarkTheme.colors, primary: currentTheme.colors.primary, } }; const customNavigationTheme = { ...CustomNavigationDarkTheme, colors: { ...CustomNavigationDarkTheme.colors, primary: currentTheme.colors.primary, card: currentTheme.colors.darkBackground, background: currentTheme.colors.darkBackground, } }; // Handler for splash screen completion const handleSplashComplete = () => { setIsAppReady(true); }; // Don't render anything until we know the onboarding status const shouldShowApp = isAppReady && hasCompletedOnboarding !== null; const initialRouteName = hasCompletedOnboarding ? 'MainTabs' : 'Onboarding'; return ( {!isAppReady && } {shouldShowApp && } {Platform.OS === 'ios' && ( )} ); } function App(): React.JSX.Element { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, }, }); export default Sentry.wrap(App);