forked from wix-incubator/react-native-controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFavoritesScreen.js
577 lines (524 loc) · 18.9 KB
/
FavoritesScreen.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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
Image,
ScrollView,
TouchableOpacity,
AlertIOS,
NativeAppEventEmitter
} = ReactNative;
var Controllers = require('react-native-controllers');
var FavoritesScreen = React.createClass({
getInitialState: function() {
return({
isNavBarHidden : false
});
},
render: function() {
return (
<ScrollView style={styles.container}>
<Image style={{width: undefined, height: 100}} source={require('./img/colors.png')} />
<Text style={{fontSize: 20, textAlign: 'center', margin: 10, fontWeight: '500', marginTop: 30}}>
Styling Example
</Text>
<Text style={{fontSize: 16, textAlign: 'center', marginHorizontal: 30, marginBottom: 20}}>
There are a lot of styling options supported, scroll down to see them all in action. The images are here to help visualize colorful content with these styles.
</Text>
{
this.props.hidePop ? false :
<TouchableOpacity onPress={ this.onPopClick }>
<Text style={styles.button}>Pop</Text>
</TouchableOpacity>
}
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'plain') }>
<Text style={styles.button}>Push Plain Screen</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navcolors') }>
<Text style={styles.button}>NavBar Colors</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'underboth') }>
<Text style={styles.button}>Draw Under NavBar & TabBar</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'blurstatus') }>
<Text style={styles.button}>Blur StatusBar (& hide NavBar)</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'blurnav') }>
<Text style={styles.button}>Blur Entire NavBar (& draw under it)</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navtransparent') }>
<Text style={styles.button}>Transparent Nav Bar</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'sethidden') }>
<Text style={styles.button}>Toggle Nav Bar Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'toolbarnavigation') }>
<Text style={styles.button}>Custom Toolbar in Nav Bar</Text>
</TouchableOpacity>
<Text style={{fontSize: 16, textAlign: 'center', marginHorizontal: 30, marginBottom: 10, marginTop: 20}}>
More styles under the image
</Text>
<Image style={{width: undefined, height: 100}} source={require('./img/colors.png')} />
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'undernav') }>
<Text style={styles.button}>Draw Under NavBar Only</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'undertab') }>
<Text style={styles.button}>Draw Under TabBar Only</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navhidden') }>
<Text style={styles.button}>NavBar Hidden On Push</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navnothidden') }>
<Text style={styles.button}>NavBar Not Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'statushidden') }>
<Text style={styles.button}>StatusBar Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'lightstatus') }>
<Text style={styles.button}>Light StatusBar</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'darkstatus') }>
<Text style={styles.button}>Dark StatusBar</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navstatushidden') }>
<Text style={styles.button}>NavBar & StatusBar Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navscrollhidden') }>
<Text style={styles.button}>NavBar Hide On Scroll</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'navstatusscrollhidden') }>
<Text style={styles.button}>NavBar & StatusBar Hide On Scroll</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'tabhidden') }>
<Text style={styles.button}>TabBar Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'tabnothidden') }>
<Text style={styles.button}>TabBar Not Hidden</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'backnotext') }>
<Text style={styles.button}>Empty Back Button Text</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'backcustomtext') }>
<Text style={styles.button}>Custom Back Button Text</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'backhidden') }>
<Text style={styles.button}>Hidden Back Button</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'rightbuttons') }>
<Text style={styles.button}>Right NavBar Text Buttons</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'rightbuttonsdisabled') }>
<Text style={styles.button}>Right NavBar Text Buttons Disabled</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'righticonbuttons') }>
<Text style={styles.button}>Right NavBar Icon Buttons</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'eventbuttons') }>
<Text style={styles.button}>Event Based NavBar Buttons</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'titleImage') }>
<Text style={styles.button}>Push With Title Image</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'setTitle') }>
<Text style={styles.button}>Set Title</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'setTitleImage') }>
<Text style={styles.button}>Set Image Title</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'setTitleAndSubtitle') }>
<Text style={styles.button}>Set Title With Subtitle</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'setSubtitle') }>
<Text style={styles.button}>Set Subtitle</Text>
</TouchableOpacity>
<TouchableOpacity onPress={ this.onButtonClick.bind(this, 'setStyleTitleAndSubtitle') }>
<Text style={styles.button}>Set Style Title & Subtitle</Text>
</TouchableOpacity>
<Image style={{width: undefined, height: 100}} source={require('./img/colors.png')} />
</ScrollView>
);
},
onPopClick: function() {
Controllers.NavigationControllerIOS("favorites_nav").pop();
},
onButtonClick: function(cmd) {
switch (cmd) {
case 'plain':
require('./PushedScreen'); // help the react bundler understand we want this file included
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "Pushed screen",
component: "PushedScreen",
animated: true
});
break;
case 'navtransparent':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarTransparent: true,
drawUnderNavBar: true,
navBarTranslucent: true
}
});
break;
case 'navcolors':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarBackgroundColor: '#ffc0c0',
navBarButtonColor: '#00a000',
navBarTextColor: '#ffff00'
}
});
break;
case 'navhidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarHidden: true
}
});
break;
case 'sethidden':
this.state.isNavBarHidden = !this.state.isNavBarHidden;
Controllers.NavigationControllerIOS("favorites_nav").setHidden( {
hidden: this.state.isNavBarHidden,
animated: true //default is true
});
break;
case 'statushidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
statusBarHidden: true
}
});
break;
case 'toolbarnavigation':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "Extra",
component: "ExtraScreen",
style: {
drawUnderNavBar: true,
navBarTranslucent: true,
navBarNoBorder: true
},
rightButtons: [
{
icon: require('./img/star.png'),
disableIconTint: true,
onPress: function() {
AlertIOS.alert('Button', 'You Are My Star');
}
}
]
});
break;
case 'lightstatus':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
statusBarTextColorScheme: 'light'
}
});
break;
case 'darkstatus':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
statusBarTextColorScheme: 'dark'
}
});
break;
case 'navstatushidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarHidden: true,
statusBarHideWithNavBar: true
}
});
break;
case 'navnothidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarHidden: false
}
});
break;
case 'navscrollhidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarHideOnScroll: true
}
});
break;
case 'navstatusscrollhidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarHideOnScroll: true,
statusBarHideWithNavBar: true
}
});
break;
case 'tabhidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
tabBarHidden: true
}
});
break;
case 'tabnothidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
tabBarHidden: false
}
});
break;
case 'undernav':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
drawUnderNavBar: true,
navBarTranslucent: true,
drawUnderTabBar: false
}
});
break;
case 'undertab':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
drawUnderNavBar: false,
drawUnderTabBar: true
}
});
break;
case 'underboth':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
drawUnderNavBar: true,
navBarTranslucent: true,
drawUnderTabBar: true
}
});
break;
case 'blurstatus':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
statusBarBlur: true,
navBarHidden: true
}
});
break;
case 'blurnav':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
style: {
navBarBlur: true,
drawUnderNavBar: true,
navBarTransparent: false
}
});
break;
case 'backnotext':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
backButtonTitle: ""
});
break;
case 'backcustomtext':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
backButtonTitle: "Hello"
});
break;
case 'backhidden':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
backButtonHidden: true
});
break;
case 'rightbuttons':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
rightButtons: [
{
title: "Edit",
onPress: function() {
AlertIOS.alert('Button', 'Edit pressed');
}
},
{
title: "Save",
onPress: function() {
AlertIOS.alert('Button', 'Save pressed');
}
}
]
});
break;
case 'rightbuttonsdisabled':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
rightButtons: [
{
title: "Edit",
disabled: true
},
{
title: "Save",
onPress: function() {
AlertIOS.alert('Button', 'Save pressed');
}
}
]
});
break;
case 'righticonbuttons':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
rightButtons: [
{
icon: require('./img/navicon_edit.png'),
onPress: function() {
AlertIOS.alert('Button', 'Edit pressed');
}
},
{
icon: require('./img/navicon_add.png'),
onPress: function() {
AlertIOS.alert('Button', 'Add pressed');
},
testID: "e2erules"
}
]
});
break;
case 'eventbuttons':
const eventId = 'MY_UNIQUE_EVENT_ID';
NativeAppEventEmitter.addListener(eventId, function (event) {
switch (event.id) {
case 'edit':
AlertIOS.alert('Button', 'Edit pressed');
break;
case 'add':
AlertIOS.alert('Button', 'Add pressed');
break;
}
});
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
component: "FavoritesScreen",
rightButtons: [
{
icon: require('./img/navicon_edit.png'),
id: 'edit',
onPress: eventId
},
{
icon: require('./img/navicon_add.png'),
id: 'add',
onPress: eventId
}
]
});
break;
case 'titleImage':
Controllers.NavigationControllerIOS("favorites_nav").push({
title: "More",
titleImage: require('./img/turtle.png'),
component: "FavoritesScreen"
});
break;
case 'setTitleImage':
Controllers.NavigationControllerIOS("favorites_nav").setTitle({
title: "Favorites",
titleImage: require('./img/turtle.png'),
component: "FavoritesScreen"
});
break;
case 'setTitle':
Controllers.NavigationControllerIOS("favorites_nav").setTitle({
title: "Favorites",
component: "FavoritesScreen"
});
break;
case 'setTitleAndSubtitle':
Controllers.NavigationControllerIOS("favorites_nav").setTitle({
title: "Favorites",
subtitle: "Subtitle",
component: "FavoritesScreen"
});
break;
case 'setSubtitle':
Controllers.NavigationControllerIOS("favorites_nav").setTitle({
subtitle: "Subtitle",
component: "FavoritesScreen"
});
break;
case 'setStyleTitleAndSubtitle':
Controllers.NavigationControllerIOS("favorites_nav").setTitle({
title: "Favorites",
subtitle: "Subtitle",
component: "FavoritesScreen",
style: {
navBarTitleFontSize: 20,
navBarSubtitleFontSize: 15,
navBarSubtitleTextColor: '#00ff00',
navBarTextColor: '#0000ff'
}
});
break;setStyleTitleAndSubtitle
}
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F5FCFF'
},
button: {
textAlign: 'center',
fontSize: 18,
marginBottom: 10,
marginTop:10,
color: 'blue'
}
});
AppRegistry.registerComponent('FavoritesScreen', () => FavoritesScreen);
module.exports = FavoritesScreen;