forked from Smartdevs17/SubTrackr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
194 lines (167 loc) · 5.35 KB
/
Copy pathApp.tsx
File metadata and controls
194 lines (167 loc) · 5.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import React from 'react';
import { View, Alert } from 'react-native';
import { StatusBar } from 'expo-status-bar';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { AppNavigator } from './src/navigation/AppNavigator';
import { useNotifications } from './src/hooks/useNotifications';
import { useTransactionQueue } from './src/hooks/useTransactionQueue';
import ErrorBoundary from './src/components/ErrorBoundary';
import CrashRecoveryModal from './src/components/CrashRecoveryModal';
import { initI18n } from './src/i18n/config';
import i18n from './src/i18n/config';
import { I18nextProvider } from 'react-i18next';
import { crashReporter, CrashRecord } from './src/services/crashReporter';
// Import WalletConnect compatibility layer
import '@walletconnect/react-native-compat';
import { createAppKit, defaultConfig, AppKit } from '@reown/appkit-ethers-react-native';
import { EVM_RPC_URLS } from './src/config/evm';
import { useNetworkStore, useSettingsStore } from './src/store';
import { sessionService } from './src/services/auth/session';
// Get projectId from environment variable
const projectId = process.env.WALLET_CONNECT_PROJECT_ID || 'YOUR_PROJECT_ID';
// Create metadata
const metadata = {
name: 'SubTrackr',
description: 'Subscription Management with Crypto Payments',
url: 'https://subtrackr.app',
icons: ['https://subtrackr.app/icon.png'],
redirect: {
native: 'subtrackr://',
},
};
const config = defaultConfig({ metadata });
// Define supported chains
const mainnet = {
chainId: 1,
name: 'Ethereum',
currency: 'ETH',
explorerUrl: 'https://etherscan.io',
rpcUrl: EVM_RPC_URLS[1],
};
const polygon = {
chainId: 137,
name: 'Polygon',
currency: 'MATIC',
explorerUrl: 'https://polygonscan.com',
rpcUrl: EVM_RPC_URLS[137],
};
const arbitrum = {
chainId: 42161,
name: 'Arbitrum',
currency: 'ETH',
explorerUrl: 'https://arbiscan.io',
rpcUrl: EVM_RPC_URLS[42161],
};
const chains = [mainnet, polygon, arbitrum];
// Create AppKit
createAppKit({
projectId,
metadata,
chains,
config,
enableAnalytics: true,
});
function NotificationBootstrap() {
useNotifications();
useTransactionQueue();
const { initialize } = useNetworkStore();
const { initializeSettings } = useSettingsStore();
React.useEffect(() => {
initialize();
void initializeSettings();
void sessionService.initializeCurrentSession();
}, [initialize, initializeSettings]);
return null;
}
function AppShell() {
const { isDark, colors } = useTheme();
return (
<GestureHandlerRootView style={{ flex: 1, backgroundColor: colors.background.primary }}>
<View style={{ flex: 1, backgroundColor: colors.background.primary }} testID="app-root">
<StatusBar style={isDark ? 'light' : 'dark'} backgroundColor={colors.background.primary} />
<ErrorBoundary>
<I18nextProvider i18n={i18n}>
<NotificationBootstrap />
<AppNavigator />
</I18nextProvider>
</ErrorBoundary>
<AppKit />
</View>
</GestureHandlerRootView>
);
}
export default function App() {
const [i18nReady, setI18nReady] = React.useState(false);
const [pendingCrash, setPendingCrash] = React.useState<CrashRecord | null>(null);
const [showRecoveryModal, setShowRecoveryModal] = React.useState(false);
React.useEffect(() => {
let cancelled = false;
const run = async () => {
try {
await initI18n();
// Initialize crash reporter — returns the previous crash if one exists
const previousCrash = await crashReporter.initialize({
// Preserve user settings and auth tokens across a recovery wipe
preservedStorageKeys: [
'@subtrackr/settings',
'@subtrackr/auth_token',
'@subtrackr/preferred_currency',
],
installGlobalHandler: true,
});
if (previousCrash && !cancelled) {
setPendingCrash(previousCrash);
setShowRecoveryModal(true);
}
} finally {
if (!cancelled) setI18nReady(true);
}
};
void run();
return () => {
cancelled = true;
};
}, []);
const handleRecover = async () => {
if (pendingCrash) {
const success = await crashReporter.attemptDataRecovery(pendingCrash.id);
await crashReporter.markNotified(pendingCrash.id);
setShowRecoveryModal(false);
setPendingCrash(null);
if (!success) {
Alert.alert(
'Recovery Incomplete',
'Some data could not be restored. The app will continue with a fresh state.'
);
}
}
};
const handleDismissRecovery = async () => {
if (pendingCrash) {
await crashReporter.markNotified(pendingCrash.id);
}
setShowRecoveryModal(false);
setPendingCrash(null);
};
if (!i18nReady) return null;
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<View style={{ flex: 1 }} testID="app-root">
<StatusBar style="light" />
<ErrorBoundary>
<I18nextProvider i18n={i18n}>
<NotificationBootstrap />
<AppNavigator />
</I18nextProvider>
</ErrorBoundary>
<AppKit />
<CrashRecoveryModal
visible={showRecoveryModal}
crash={pendingCrash}
onRecover={handleRecover}
onDismiss={handleDismissRecovery}
/>
</View>
</GestureHandlerRootView>
);
}