forked from KompTech1004/VayyUp_RN_Dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
173 lines (163 loc) · 4.62 KB
/
App.js
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
import React, {useEffect, useState} from 'react';
import {
Alert,
AppRegistry,
LogBox,
Platform,
Linking,
Dimensions,
AppState,
} from 'react-native';
import * as Sentry from '@sentry/react-native';
import SplashScreen from 'react-native-splash-screen';
import AppNavigation from './src/navigations/AppNavigation';
import {Provider} from 'react-redux';
import PushNotification from 'react-native-push-notification';
import PushNotificationIOS from '@react-native-community/push-notification-ios'
import store from './src/redux/store';
import {validateVersion} from './src/services/utility';
import {
VUView,
VUText,
VayyUpLogo,
VUTouchableOpacity,
VUImage,
} from 'common-components';
import AsyncStorage from '@react-native-async-storage/async-storage';
const {width, height} = Dimensions.get('window');
import { createTable } from "./src/models/queries";
LogBox.ignoreAllLogs(true);
Sentry.init({
integrations: [new Sentry.ReactNativeTracing()],
});
const App = () => {
const [loading, setLoading] = useState(true);
const [updateRequired, setUpdateRequired] = useState(false);
createTable()
useEffect(() => {
const handleAppStateChange = (nextAppState) => {
if (nextAppState === 'active') {
validateVersion().then((res) => {
setUpdateRequired(res.isNeeded);
});
}
};
AppState.addEventListener('change', handleAppStateChange);
return () => {
AppState.removeEventListener('change', handleAppStateChange);
};
});
useEffect(() => {
PushNotification.configure({
// (optional) Called when Token is generated (iOS and Android)
onRegister: function (token) {
AsyncStorage.setItem('fcmToken', token.token);
},
// (required) Called when a remote or local notification is opened or received
onNotification: function (notification) {
if (notification.foreground) {
PushNotification.localNotification({
title: notification.title,
message: notification.message,
});
}
// process the notification here
// required on iOS only
if (Platform.OS === "ios") {
notification.finish(PushNotificationIOS.FetchResult.NoData);
}
},
// Android only
senderID: '386671631627',
popInitialNotification: true,
// iOS only
permissions: {
alert: true,
badge: true,
sound: true,
},
popInitialNotification: true,
requestPermissions: true,
});
}, []);
useEffect(() => {
if (loading === false) {
SplashScreen.hide();
}
validateVersion().then((res) => {
setLoading(false);
setUpdateRequired(res.isNeeded);
});
}, [loading]);
const handleOpenStore = async () => {
try {
if (Platform.OS === 'ios') {
await Linking.openURL(
'itms-apps://apps.apple.com/in/app/vayy-up/id1561376568',
);
} else {
await Linking.openURL('market://details?id=com.dellainfotech');
}
} catch (error) {
Alert.alert(
'Unable to open the store.\n\nPlease manually open store and upgrad the app.',
);
}
};
if (updateRequired) {
return (
<VUView
flex={1}
justifyContent="center"
alignItems="center"
p={15}
bg="#193C4F">
<VUView alignItems="center">
<VayyUpLogo />
<VUText
my={3}
textAlign="center"
fontSize={24}
fontWeigh="bold"
color="#fff">
Update available.
</VUText>
</VUView>
<VUView flex={1} alignItems="center" justifyContent="center">
<VUImage
source={require('src/../assets/update.png')}
resizeMode="contain"
height={height}
width={width}
/>
</VUView>
<VUView>
<VUText fontSize={16} color="#fff">
Please update to proceed further
</VUText>
<VUTouchableOpacity
bg="#E9326D"
alignItems="center"
px={4}
py={1}
mx={3}
my={3}
borderRadius={25}
onPress={handleOpenStore}>
<VUText color="#fff">
{Platform.OS === 'ios' ? 'Open App Store' : 'Open Play Store'}
</VUText>
</VUTouchableOpacity>
</VUView>
</VUView>
);
}
return (
<Provider store={store}>
<AppNavigation />
</Provider>
);
};
AppRegistry.registerComponent('vayy_up', () => App);
export default App;