-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
416 lines (382 loc) · 11.4 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
import React, { Component } from 'react';
import { Provider } from 'react-redux';
import RootStore from './app/redux/RootStore';
import { View, Alert, Text, Linking, Platform } from 'react-native';
import { createAppContainer, BottomNavigation } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import { createDrawerNavigator } from 'react-navigation-drawer';
import { createBottomTabNavigator } from 'react-navigation-tabs';
import Splash from './app/view/splash.js';
import Login from './app/view/login.js';
import Signup from './app/view/signup.js';
import ForgotPassword from './app/view/forgot_password';
import Home from './app/view/home';
import Library from './app/view/library.js';
import LibraryLimited from './app/view/library_limited';
import LibraryVideos from './app/view/library_videos';
import Membership from './app/view/membership';
import Search from './app/view/search';
import PlayVideo from './app/view/play_video';
import Notifications from './app/view/notifications';
import Chat from './app/view/chat';
import Equipment from './app/view/equipment';
import EditProfile from './app/view/edit_profile';
import SpecialPrograms from './app/view/special_programs';
import SpecialProgramDetails from './app/view/special_program_details';
import Toast from 'react-native-toast-message';
import messaging from '@react-native-firebase/messaging';
import MyStorage from './app/storage/storage'
import Reminders from './app/view/reminders';
import HowTo from './app/view/how_to';
import Favorites from './app/view/favorites';
import MyPrograms from './app/view/my_programs';
import ScheduledPrograms from './app/view/scheduled_programs';
import MyProgramDetails from './app/view/my_program_details';
import AddProgram from './app/view/add_program';
import AddWeeklyProgram from './app/view/add_weekly_program';
import ChooseVideo from './app/view/choose_video';
import WorkUpTo from './app/view/workupto.js';
import AddWorkUpTo from './app/view/add_workupto';
import NavDrawer from './app/view/drawer.js';
import { Root } from "native-base";
import { extendTheme, NativeBaseProvider } from "native-base";
import { stylesC } from './app/styles/style_common.js';
import { IconCustom } from './app/custom/components.js';
import * as Colors from './app/constants/colors.js';
import { Actions } from './app/redux/Actions'
import EventBus from 'react-native-event-bus'
import SyncStorage from 'sync-storage';
import GLOBAL from './app/constants/global.js';
import Purchases from 'react-native-purchases';
import Utils from './app/util/utils.js';
import ExpandImage from './app/util/expand_image';
import setupPush from './app/util/setup_push.js';
setupPush();
const SplashStack = createStackNavigator({
Splash: Splash,
}, {
/* The header settings */
defaultNavigationOptions: null
});
const LoginStack = createStackNavigator({
Login: Login,
Signup: Signup,
ForgotPassword: ForgotPassword
}, {
/* The header settings */
defaultNavigationOptions: null
});
// const HomeStack = createStackNavigator({
// Home: Home,
// Membership: Membership,
// }, {
// headerMode: 'float',
// /* The header settings */
// defaultNavigationOptions: null
// });
const LibraryStack = createStackNavigator({
Library: Library,
LibraryVideos: LibraryVideos,
// Login: Login, // testing
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const SpecialProgramsStack = createStackNavigator({
SpecialPrograms: SpecialPrograms,
SpecialProgramDetails: SpecialProgramDetails,
LibraryLimited: LibraryLimited,
LibraryVideos: LibraryVideos,
// Login: Login, // testing
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const MyProgramsStack = createStackNavigator({
MyPrograms: MyPrograms,
MyProgramDetails: MyProgramDetails,
AddProgram: AddProgram,
AddWeeklyProgram: AddWeeklyProgram,
// Login: Login, // testing
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
// const ScheduledProgramsStack = createStackNavigator({
// ScheduledPrograms: ScheduledPrograms,
// MyProgramDetails: MyProgramDetails,
// }, {
// headerMode: 'float',
// /* The header settings */
// defaultNavigationOptions: null
// });
const WorkUpToStack = createStackNavigator({
WorkUpTo: WorkUpTo,
AddWorkUpTo: AddWorkUpTo,
PlayVideo: PlayVideo, // testing
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const TabStack = createBottomTabNavigator(
{
Home: {
screen: Home,
navigationOptions: {
tabBarLabel: 'Home',
tabBarIcon: ({ tintColor }) => (
<View>
<IconCustom
conatinerStyle={[stylesC.center]}
imageStyle={[stylesC.imageM28, { tintColor: tintColor, width: 25, height: 25 }]}
resizeMode='contain'
source={require('./app/assets/home.png')} />
</View>),
}
},
Library: {
screen: LibraryStack,
navigationOptions: {
tabBarLabel: 'Settings',
tabBarIcon: ({ tintColor }) => (
<View>
<IconCustom
conatinerStyle={[stylesC.center]}
imageStyle={[stylesC.imageM28, { tintColor: tintColor, width: 25, height: 25 }]}
resizeMode='contain'
source={require('./app/assets/library.png')} />
</View>),
}
},
SpecialPrograms: {
screen: SpecialProgramsStack,
navigationOptions: {
tabBarLabel: 'Special Programs',
tabBarIcon: ({ tintColor }) => (
<View>
<IconCustom
conatinerStyle={[stylesC.center]}
imageStyle={[stylesC.imageM24, { tintColor: tintColor }]}
resizeMode='contain'
source={require('./app/assets/special.png')} />
</View>),
}
},
Favorites: {
screen: Favorites,
navigationOptions: {
tabBarLabel: 'Favorites',
tabBarIcon: ({ tintColor }) => (
<View>
<IconCustom
conatinerStyle={[stylesC.center]}
imageStyle={[stylesC.imageM28, { tintColor: tintColor, width: 28, height: 28 }]}
resizeMode='contain'
source={require('./app/assets/star.png')} />
</View>),
}
},
MyPrograms: {
screen: MyProgramsStack,
navigationOptions: {
tabBarLabel: 'My Programs',
tabBarIcon: ({ tintColor }) => (
<View>
<IconCustom
conatinerStyle={[stylesC.center]}
imageStyle={[stylesC.imageM28, { tintColor: tintColor, width: 25, height: 25 }]}
resizeMode='contain'
source={require('./app/assets/programs.png')} />
</View>),
}
},
},
{
initialRouteName: 'Home',
tabBarOptions: {
showLabel: false,
activeTintColor: Colors.white,
inactiveTintColor: Colors.themeDark,
style: { backgroundColor: Colors.theme }
},
},
);
// const DrawerStack = createStackNavigator({
// Home: Home,
// Library: Library,
// }, {
// headerMode: 'float',
// /* The header settings */
// defaultNavigationOptions: null
// });
const EquipmentStack = createStackNavigator({
Equipment: Equipment,
ExpandImage: ExpandImage,
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const SearchStack = createStackNavigator({
Search: Search,
PlayVideo: PlayVideo,
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const HowToStack = createStackNavigator({
HowTo: HowTo,
PlayVideo: PlayVideo,
}, {
headerMode: 'float',
/* The header settings */
defaultNavigationOptions: null
});
const HomeStack = createDrawerNavigator({
DrawerStack: TabStack,
ScheduledPrograms: ScheduledPrograms,
Membership: Membership,
Search: SearchStack,
WorkUpToStack: WorkUpToStack,
ChooseVideo: ChooseVideo,
PlayVideo: PlayVideo,
Notifications: Notifications,
Chat: Chat,
Equipment: EquipmentStack,
EditProfile: EditProfile,
Login: Login, // testing
ExpandImage: ExpandImage,
HowTo: HowToStack,
Reminders:Reminders
}, {
drawerWidth: 300,
gesturesEnabled: false,
headerMode: 'none',
contentComponent: NavDrawer
});
const MainStack = createStackNavigator({
Splash: SplashStack,
LoginStack: LoginStack,
HomeStack: HomeStack,
}, {
initialRouteName: 'Splash',
headerMode: 'none'
});
const AppContainer = createAppContainer(MainStack);
const theme = extendTheme({
components: {
Toast: {
baseStyle: {},
defaultProps: {},
variants: {},
sizes: {},
}
}
});
class App extends Component<Props> {
render() {
let uriPrefix = 'https://www.posturecoremore.com'
return <Provider store={RootStore}>
<AppContainer uriPrefix={uriPrefix} />
<Toast ref={(ref) => Toast.setRef(ref)} />
</Provider>
}
topic = 'public_notification';
componentDidMount() {
console.log("App mount")
SyncStorage.init();
Purchases.setDebugLogsEnabled(true);
Purchases.setup("xGDJtxTceBRTvrQvJkHNojloMhZjvQBN");
messaging()
.subscribeToTopic(this.topic)
.then(() => console.log('Subscribed to topic!'));
this.createNotificationListeners();
Linking.getInitialURL().then(url => {
this.navigate(url);
});
Linking.addEventListener('url', this.handleOpenURL);
};
handleOpenURL = (event) => { // D
this.navigate(event.url);
}
navigate = (url) => { // E
console.log('NAVIGATE: ' + url);
if (url == null)
return
if (url.includes('/Login'))
return
console.log('url: ' + url);
const route = url.replace(/.*?:\/\//g, '');
// const id = route.match(/\/([^\/]+)\/?$/)[1];
const routeName = route.split('/')[0];
const dataArr = url.split('?');
const params = {};
if (dataArr[1]) {
dataArr[1].split('&').map(param => {
params[param.split('=')[0]] = param.split('=')[1];
})
}
const id = params['program']
console.log('route: ' + route);
console.log('id: ' + id);
console.log('routeName: ' + routeName);
if (GLOBAL.navigation != null) {
setTimeout(async () => {
// GLOBAL.openUniversalLink = false
console.log('OPEN DEEPLINK');
// check if logged in
let isLogin = await MyStorage.isLogin();
if (isLogin === 'true') {
GLOBAL.navigation.navigate('MyProgramDetails', { master_id: id });
}
else {
Utils.moveToStack(GLOBAL.navigation, 'LoginStack')
}
}, 50);
}
else {
console.log('NULL NAVIGATION');
}
}
componentWillUnmount() {
console.log('App unmount');
this.notificationListener();
}
async createNotificationListeners() {
this.notificationListener = messaging().onMessage(async (notification) => {
console.log('onNotification: ' + JSON.stringify(notification));
EventBus.getInstance().fireEvent("Notification", {})
if (notification.data) {
if (notification.data.type === 'Message') {
return
}
}
let isLogin = await MyStorage.isLogin()
if (isLogin === 'true') {
this.showAlert(notification.notification.title, notification.notification.body);
}
});
}
showAlert = (title, body) => {
Alert.alert( // react-native
title,
body,
[
{
text: 'OK', onPress: () => {
//
}
}, // positive
],
{
cancelable: true
}
);
};
}
export default App