forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBottomNavigation.tsx
1044 lines (978 loc) · 33.1 KB
/
BottomNavigation.tsx
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable react/no-multi-comp */
import * as React from 'react';
import {
View,
Animated,
TouchableWithoutFeedback,
StyleSheet,
StyleProp,
Platform,
Keyboard,
ViewStyle,
LayoutChangeEvent,
} from 'react-native';
import SafeAreaView from 'react-native-safe-area-view';
import color from 'color';
import overlay from '../styles/overlay';
import Icon, { IconSource } from './Icon';
import Surface from './Surface';
import Badge from './Badge';
import TouchableRipple from './TouchableRipple';
import Text from './Typography/Text';
import { black, white } from '../styles/colors';
import { withTheme } from '../core/theming';
import { Theme } from '../types';
type Route = {
key: string;
title?: string;
icon?: IconSource;
badge?: string | number | boolean;
color?: string;
accessibilityLabel?: string;
testID?: string;
};
type NavigationState = {
index: number;
routes: Route[];
};
type TabPressEvent = {
defaultPrevented: boolean;
preventDefault(): void;
};
type Props = {
/**
* Whether the shifting style is used, the active tab appears wider and the inactive tabs won't have a label.
* By default, this is `true` when you have more than 3 tabs.
*/
shifting?: boolean;
/**
* Whether to show labels in tabs. When `false`, only icons will be displayed.
*/
labeled?: boolean;
/**
* State for the bottom navigation. The state should contain the following properties:
*
* - `index`: a number reprsenting the index of the active route in the `routes` array
* - `routes`: an array containing a list of route objects used for rendering the tabs
*
* Each route object should contain the following properties:
*
* - `key`: a unique key to identify the route (required)
* - `title`: title of the route to use as the tab label
* - `icon`: icon to use as the tab icon, can be a string, an image source or a react component
* - `color`: color to use as background color for shifting bottom navigation
* - `badge`: badge to show on the tab icon, can be `true` to show a dot, `string` or `number` to show text.
* - `accessibilityLabel`: accessibility label for the tab button
* - `testID`: test id for the tab button
*
* Example:
*
* ```js
* {
* index: 1,
* routes: [
* { key: 'music', title: 'Music', icon: 'queue-music', color: '#3F51B5' },
* { key: 'albums', title: 'Albums', icon: 'album', color: '#009688' },
* { key: 'recents', title: 'Recents', icon: 'history', color: '#795548' },
* { key: 'purchased', title: 'Purchased', icon: 'shopping-cart', color: '#607D8B' },
* ]
* }
* ```
*
* `BottomNavigation` is a controlled component, which means the `index` needs to be updated via the `onIndexChange` callback.
*/
navigationState: NavigationState;
/**
* Callback which is called on tab change, receives the index of the new tab as argument.
* The navigation state needs to be updated when it's called, otherwise the change is dropped.
*/
onIndexChange: (index: number) => void;
/**
* Callback which returns a react element to render as the page for the tab. Receives an object containing the route as the argument:
*
* ```js
* renderScene = ({ route, jumpTo }) => {
* switch (route.key) {
* case 'music':
* return <MusicRoute jumpTo={jumpTo} />;
* case 'albums':
* return <AlbumsRoute jumpTo={jumpTo} />;
* }
* }
* ```
*
* Pages are lazily rendered, which means that a page will be rendered the first time you navigate to it.
* After initial render, all the pages stay rendered to preserve their state.
*
* You need to make sure that your individual routes implement a `shouldComponentUpdate` to improve the performance.
* To make it easier to specify the components, you can use the `SceneMap` helper:
*
* ```js
* renderScene = BottomNavigation.SceneMap({
* music: MusicRoute,
* albums: AlbumsRoute,
* });
* ```
*
* Specifying the components this way is easier and takes care of implementing a `shouldComponentUpdate` method.
* Each component will receive the current route and a `jumpTo` method as it's props.
* The `jumpTo` method can be used to navigate to other tabs programmatically:
*
* ```js
* this.props.jumpTo('albums')
* ```
*/
renderScene: (props: {
route: Route;
jumpTo: (key: string) => void;
}) => React.ReactNode | null;
/**
* Callback which returns a React Element to be used as tab icon.
*/
renderIcon?: (props: {
route: Route;
focused: boolean;
color: string;
}) => React.ReactNode;
/**
* Callback which React Element to be used as tab label.
*/
renderLabel?: (props: {
route: Route;
focused: boolean;
color: string;
}) => React.ReactNode;
/**
* Get label text for the tab, uses `route.title` by default. Use `renderLabel` to replace label component.
*/
getLabelText?: (props: { route: Route }) => string;
/**
* Get accessibility label for the tab button. This is read by the screen reader when the user taps the tab.
* Uses `route.accessibilityLabel` by default.
*/
getAccessibilityLabel?: (props: { route: Route }) => string | undefined;
/**
* Get the id to locate this tab button in tests, uses `route.testID` by default.
*/
getTestID?: (props: { route: Route }) => string | undefined;
/**
* Get badge for the tab, uses `route.badge` by default.
*/
getBadge?: (props: { route: Route }) => boolean | number | string | undefined;
/**
* Get color for the tab, uses `route.color` by default.
*/
getColor?: (props: { route: Route }) => string | undefined;
/**
* Function to execute on tab press. It receives the route for the pressed tab, useful for things like scroll to top.
*/
onTabPress?: (props: { route: Route } & TabPressEvent) => void;
/**
* Custom color for icon and label in the active tab.
*/
activeColor?: string;
/**
* Custom color for icon and label in the inactive tab.
*/
inactiveColor?: string;
/**
* Whether animation is enabled for scenes transitions in `shifting` mode.
* By default, the scenes cross-fade during tab change when `shifting` is enabled.
* Specify `sceneAnimationEnabled` as `false` to disable the animation.
*/
sceneAnimationEnabled?: boolean;
/**
* Whether the bottom navigation bar is hidden when keyboard is shown.
* On Android, this works best when [`windowSoftInputMode`](https://developer.android.com/guide/topics/manifest/activity-element#wsoft) is set to `adjustResize`.
*/
keyboardHidesNavigationBar?: boolean;
/**
* Style for the bottom navigation bar.
* You can set a bottom padding here if you have a translucent navigation bar on Android:
*
* ```js
* barStyle={{ paddingBottom: 48 }}
* ```
*/
barStyle?: StyleProp<ViewStyle>;
style?: StyleProp<ViewStyle>;
/**
* @optional
*/
theme: Theme;
};
type State = {
/**
* Visibility of the navigation bar, visible state is 1 and invisible is 0.
*/
visible: Animated.Value;
/**
* Active state of individual tab items, active state is 1 and inactve state is 0.
*/
tabs: Animated.Value[];
/**
* The top offset for each tab item to position it offscreen.
* Placing items offscreen helps to save memory usage for inactive screens with removeClippedSubviews.
* We use animated values for this to prevent unnecesary re-renders.
*/
offsets: Animated.Value[];
/**
* Index of the currently active tab. Used for setting the background color.
* Use don't use the color as an animated value directly, because `setValue` seems to be buggy with colors.
*/
index: Animated.Value;
/**
* Animation for the touch, used to determine it's scale and opacity.
*/
touch: Animated.Value;
/**
* Animation for the background color ripple, used to determine it's scale and opacity.
*/
ripple: Animated.Value;
/**
* Layout of the navigation bar. The width is used to determine the size and position of the ripple.
*/
layout: { height: number; width: number; measured: boolean };
/**
* Currently active index. Used only for getDerivedStateFromProps.
*/
current: number;
/**
* Previously active index. Used to determine the position of the ripple.
*/
previous: number;
/**
* List of loaded tabs, tabs will be loaded when navigated to.
*/
loaded: number[];
/**
* Trak whether the keyboard is visible to show and hide the navigation bar.
*/
keyboard: boolean;
};
const MIN_RIPPLE_SCALE = 0.001; // Minimum scale is not 0 due to bug with animation
const MIN_TAB_WIDTH = 96;
const MAX_TAB_WIDTH = 168;
const BAR_HEIGHT = 56;
const FAR_FAR_AWAY = 9999;
// @ts-ignore
const Touchable = TouchableRipple.supported
? TouchableRipple
: // eslint-disable-next-line @typescript-eslint/no-unused-vars
({ style, children, borderless, centered, rippleColor, ...rest }: any) => (
<TouchableWithoutFeedback {...rest}>
<View style={style}>{children}</View>
</TouchableWithoutFeedback>
);
class SceneComponent extends React.PureComponent<any> {
render() {
const { component, ...rest } = this.props;
return React.createElement(component, rest);
}
}
/**
* Bottom navigation provides quick navigation between top-level views of an app with a bottom navigation bar.
* It is primarily designed for use on mobile.
*
* For integration with React Navigation, you can use [react-navigation-material-bottom-tab-navigator](https://github.com/react-navigation/react-navigation-material-bottom-tab-navigator).
*
* By default Bottom navigation uses primary color as a background, in dark theme with `adaptive` mode it will use surface colour instead.
* See [Dark Theme](https://callstack.github.io/react-native-paper/theming.html#dark-theme) for more informations
*
* <div class="screenshots">
* <img class="medium" src="screenshots/bottom-navigation.gif" />
* </div>
*
* ## Usage
* ```js
* import * as React from 'react';
* import { BottomNavigation, Text } from 'react-native-paper';
*
* const MusicRoute = () => <Text>Music</Text>;
*
* const AlbumsRoute = () => <Text>Albums</Text>;
*
* const RecentsRoute = () => <Text>Recents</Text>;
*
* export default class MyComponent extends React.Component {
* state = {
* index: 0,
* routes: [
* { key: 'music', title: 'Music', icon: 'queue-music' },
* { key: 'albums', title: 'Albums', icon: 'album' },
* { key: 'recents', title: 'Recents', icon: 'history' },
* ],
* };
*
* _handleIndexChange = index => this.setState({ index });
*
* _renderScene = BottomNavigation.SceneMap({
* music: MusicRoute,
* albums: AlbumsRoute,
* recents: RecentsRoute,
* });
*
* render() {
* return (
* <BottomNavigation
* navigationState={this.state}
* onIndexChange={this._handleIndexChange}
* renderScene={this._renderScene}
* />
* );
* }
* }
* ```
*/
class BottomNavigation extends React.Component<Props, State> {
/**
* Function which takes a map of route keys to components.
* Pure components are used to minmize re-rendering of the pages.
* This drastically improves the animation performance.
*/
static SceneMap(scenes: {
[key: string]: React.ComponentType<{
route: Route;
jumpTo: (key: string) => void;
}>;
}) {
return ({
route,
jumpTo,
}: {
route: Route;
jumpTo: (key: string) => void;
}) => (
<SceneComponent
key={route.key}
component={scenes[route.key ? route.key : '']}
route={route}
jumpTo={jumpTo}
/>
);
}
static defaultProps = {
labeled: true,
keyboardHidesNavigationBar: true,
};
static getDerivedStateFromProps(nextProps: any, prevState: State) {
const { index, routes } = nextProps.navigationState;
// Re-create animated values if routes have been added/removed
// Preserve previous animated values if they exist, so we don't break animations
const tabs = routes.map(
// focused === 1, unfocused === 0
(_: any, i: number) =>
prevState.tabs[i] || new Animated.Value(i === index ? 1 : 0)
);
const offsets = routes.map(
// offscreen === 1, normal === 0
(_: any, i: number) =>
prevState.offsets[i] || new Animated.Value(i === index ? 0 : 1)
);
const nextState = {
tabs,
offsets,
};
if (index !== prevState.current) {
/* $FlowFixMe */
Object.assign(nextState, {
// Store the current index in state so that we can later check if the index has changed
current: index,
previous: prevState.current,
// Set the current tab to be loaded if it was not loaded before
loaded: prevState.loaded.includes(index)
? prevState.loaded
: [...prevState.loaded, index],
});
}
return nextState;
}
constructor(props: Props) {
super(props);
const { index } = this.props.navigationState;
this.state = {
visible: new Animated.Value(1),
tabs: [],
offsets: [],
index: new Animated.Value(index),
ripple: new Animated.Value(MIN_RIPPLE_SCALE),
touch: new Animated.Value(MIN_RIPPLE_SCALE),
layout: { height: 0, width: 0, measured: false },
current: index,
previous: 0,
loaded: [index],
keyboard: false,
};
}
componentDidMount() {
// Workaround for native animated bug in react-native@^0.57
// Context: https://github.com/callstack/react-native-paper/pull/637
this.animateToCurrentIndex();
if (Platform.OS === 'ios') {
Keyboard.addListener('keyboardWillShow', this.handleKeyboardShow);
Keyboard.addListener('keyboardWillHide', this.handleKeyboardHide);
} else {
Keyboard.addListener('keyboardDidShow', this.handleKeyboardShow);
Keyboard.addListener('keyboardDidHide', this.handleKeyboardHide);
}
}
componentDidUpdate(prevProps: Props) {
if (prevProps.navigationState.index === this.props.navigationState.index) {
return;
}
// Reset offsets of previous and current tabs before animation
this.state.offsets.forEach((offset, i) => {
if (
i === this.props.navigationState.index ||
i === prevProps.navigationState.index
) {
offset.setValue(0);
}
});
this.animateToCurrentIndex();
}
componentWillUnmount() {
if (Platform.OS === 'ios') {
Keyboard.removeListener('keyboardWillShow', this.handleKeyboardShow);
Keyboard.removeListener('keyboardWillHide', this.handleKeyboardHide);
} else {
Keyboard.removeListener('keyboardDidShow', this.handleKeyboardShow);
Keyboard.removeListener('keyboardDidHide', this.handleKeyboardHide);
}
}
private handleKeyboardShow = () => {
const { scale } = this.props.theme.animation;
this.setState({ keyboard: true }, () =>
Animated.timing(this.state.visible, {
toValue: 0,
duration: 150 * scale,
useNativeDriver: true,
}).start()
);
};
private handleKeyboardHide = () => {
const { scale } = this.props.theme.animation;
Animated.timing(this.state.visible, {
toValue: 1,
duration: 100 * scale,
useNativeDriver: true,
}).start(() => {
this.setState({ keyboard: false });
});
};
private animateToCurrentIndex = () => {
const shifting = this.isShifting();
const {
navigationState,
theme: {
animation: { scale },
},
} = this.props;
const { routes, index } = navigationState;
// Reset the ripple to avoid glitch if it's currently animating
this.state.ripple.setValue(MIN_RIPPLE_SCALE);
Animated.parallel([
Animated.timing(this.state.ripple, {
toValue: 1,
duration: shifting ? 400 * scale : 0,
useNativeDriver: true,
}),
...routes.map((_, i) =>
Animated.timing(this.state.tabs[i], {
toValue: i === index ? 1 : 0,
duration: shifting ? 150 * scale : 0,
useNativeDriver: true,
})
),
]).start(({ finished }) => {
// Workaround a bug in native animations where this is reset after first animation
this.state.tabs.map((tab, i) => tab.setValue(i === index ? 1 : 0));
// Update the index to change bar's bacground color and then hide the ripple
this.state.index.setValue(index);
this.state.ripple.setValue(MIN_RIPPLE_SCALE);
if (finished) {
// Position all inactive screens offscreen to save memory usage
// Only do it when animation has finished to avoid glitches mid-transition if switching fast
this.state.offsets.forEach((offset, i) => {
if (i === index) {
offset.setValue(0);
} else {
offset.setValue(1);
}
});
}
});
};
private handleLayout = (e: LayoutChangeEvent) => {
const { layout } = this.state;
const { height, width } = e.nativeEvent.layout;
if (height === layout.height && width === layout.width) {
return;
}
this.setState({
layout: {
height,
width,
measured: true,
},
});
};
private handleTabPress = (index: number) => {
const { navigationState, onTabPress, onIndexChange } = this.props;
const event = {
route: navigationState.routes[index],
defaultPrevented: false,
preventDefault: () => {
event.defaultPrevented = true;
},
};
onTabPress?.(event);
if (event.defaultPrevented) {
return;
}
if (index !== navigationState.index) {
onIndexChange(index);
}
};
private jumpTo = (key: string) => {
const index = this.props.navigationState.routes.findIndex(
route => route.key === key
);
this.props.onIndexChange(index);
};
private isShifting = () =>
typeof this.props.shifting === 'boolean'
? this.props.shifting
: this.props.navigationState.routes.length > 3;
render() {
const {
navigationState,
renderScene,
renderIcon,
renderLabel,
getLabelText = ({ route }: { route: Route }) => route.title,
getBadge = ({ route }: { route: Route }) => route.badge,
getColor = ({ route }: { route: Route }) => route.color,
getAccessibilityLabel = ({ route }: { route: Route }) =>
route.accessibilityLabel,
getTestID = ({ route }: { route: Route }) => route.testID,
activeColor,
inactiveColor,
keyboardHidesNavigationBar,
barStyle,
labeled,
style,
theme,
sceneAnimationEnabled,
} = this.props;
const {
layout,
loaded,
index,
visible,
ripple,
keyboard,
tabs,
offsets,
} = this.state;
const { routes } = navigationState;
const { colors, dark: isDarkTheme, mode } = theme;
const shifting = this.isShifting();
const { backgroundColor: customBackground, elevation = 4 }: ViewStyle =
StyleSheet.flatten(barStyle) || {};
const approxBackgroundColor = customBackground
? customBackground
: isDarkTheme && mode === 'adaptive'
? overlay(elevation, colors.surface)
: colors.primary;
const backgroundColor = shifting
? index.interpolate({
inputRange: routes.map((_, i) => i),
//@ts-ignore
outputRange: routes.map(
route => getColor({ route }) || approxBackgroundColor
),
})
: approxBackgroundColor;
const isDark = !color(approxBackgroundColor).isLight();
const textColor = isDark ? white : black;
const activeTintColor =
typeof activeColor !== 'undefined' ? activeColor : textColor;
const inactiveTintColor =
typeof inactiveColor !== 'undefined'
? inactiveColor
: color(textColor)
.alpha(0.5)
.rgb()
.string();
const touchColor = color(activeColor || activeTintColor)
.alpha(0.12)
.rgb()
.string();
const maxTabWidth = routes.length > 3 ? MIN_TAB_WIDTH : MAX_TAB_WIDTH;
const maxTabBarWidth = maxTabWidth * routes.length;
const tabBarWidth = Math.min(layout.width, maxTabBarWidth);
const tabWidth = tabBarWidth / routes.length;
const rippleSize = layout.width / 4;
return (
<View style={[styles.container, style]}>
<View style={[styles.content, { backgroundColor: colors.background }]}>
{routes.map((route, index) => {
if (!loaded.includes(index)) {
// Don't render a screen if we've never navigated to it
return null;
}
const focused = navigationState.index === index;
const opacity =
sceneAnimationEnabled !== false ? tabs[index] : focused ? 1 : 0;
const top = offsets[index].interpolate({
inputRange: [0, 1],
outputRange: [0, FAR_FAR_AWAY],
});
return (
<Animated.View
key={route.key}
pointerEvents={focused ? 'auto' : 'none'}
accessibilityElementsHidden={!focused}
importantForAccessibility={
focused ? 'auto' : 'no-hide-descendants'
}
style={[StyleSheet.absoluteFill, { opacity }]}
collapsable={false}
removeClippedSubviews={
// On iOS, set removeClippedSubviews to true only when not focused
// This is an workaround for a bug where the clipped view never re-appears
Platform.OS === 'ios' ? navigationState.index !== index : true
}
>
<Animated.View style={[styles.content, { top }]}>
{renderScene({
route,
jumpTo: this.jumpTo,
})}
</Animated.View>
</Animated.View>
);
})}
</View>
<Surface
style={
[
styles.bar,
keyboardHidesNavigationBar
? {
// When the keyboard is shown, slide down the navigation bar
transform: [
{
translateY: visible.interpolate({
inputRange: [0, 1],
outputRange: [layout.height, 0],
}),
},
],
// Absolutely position the navigation bar so that the content is below it
// This is needed to avoid gap at bottom when the navigation bar is hidden
position: keyboard ? 'absolute' : null,
}
: null,
barStyle,
] as StyleProp<ViewStyle>
}
pointerEvents={
layout.measured
? keyboardHidesNavigationBar && keyboard
? 'none'
: 'auto'
: 'none'
}
onLayout={this.handleLayout}
>
<Animated.View style={[styles.barContent, { backgroundColor }]}>
<SafeAreaView
forceInset={{ top: 'never', bottom: 'always' }}
style={[styles.items, { maxWidth: maxTabBarWidth }]}
>
{shifting ? (
<Animated.View
pointerEvents="none"
style={[
styles.ripple,
{
// Since we have a single ripple, we have to reposition it so that it appears to expand from active tab.
// We need to move it from the top to center of the navigation bar and from the left to the active tab.
top: (BAR_HEIGHT - rippleSize) / 2,
left:
tabWidth * (navigationState.index + 0.5) -
rippleSize / 2,
height: rippleSize,
width: rippleSize,
borderRadius: rippleSize / 2,
backgroundColor: getColor({
route: routes[navigationState.index],
}),
transform: [
{
// Scale to twice the size to ensure it covers the whole navigation bar
scale: ripple.interpolate({
inputRange: [0, 1],
outputRange: [0, 8],
}),
},
],
opacity: ripple.interpolate({
inputRange: [0, MIN_RIPPLE_SCALE, 0.3, 1],
outputRange: [0, 0, 1, 1],
}),
},
]}
/>
) : null}
{routes.map((route, index) => {
const focused = navigationState.index === index;
const active = tabs[index];
// Scale the label up
const scale =
labeled && shifting
? active.interpolate({
inputRange: [0, 1],
outputRange: [0.5, 1],
})
: 1;
// Move down the icon to account for no-label in shifting and smaller label in non-shifting.
const translateY = labeled
? shifting
? active.interpolate({
inputRange: [0, 1],
outputRange: [7, 0],
})
: 0
: 7;
// We render the active icon and label on top of inactive ones and cross-fade them on change.
// This trick gives the illusion that we are animating between active and inactive colors.
// This is to ensure that we can use native driver, as colors cannot be animated with native driver.
const activeOpacity = active;
const inactiveOpacity = active.interpolate({
inputRange: [0, 1],
outputRange: [1, 0],
});
const badge = getBadge({ route });
return (
<Touchable
key={route.key}
borderless
centered
rippleColor={touchColor}
onPress={() => this.handleTabPress(index)}
testID={getTestID({ route })}
accessibilityLabel={getAccessibilityLabel({ route })}
accessibilityTraits={
focused ? ['button', 'selected'] : 'button'
}
accessibilityComponentType="button"
accessibilityRole="button"
accessibilityStates={['selected']}
style={styles.item}
>
<View pointerEvents="none">
<Animated.View
style={[
styles.iconContainer,
{ transform: [{ translateY }] },
]}
>
<Animated.View
style={[
styles.iconWrapper,
{ opacity: activeOpacity },
]}
>
{renderIcon ? (
renderIcon({
route,
focused: true,
color: activeTintColor,
})
) : (
<Icon
source={route.icon as IconSource}
color={activeTintColor}
size={24}
/>
)}
</Animated.View>
<Animated.View
style={[
styles.iconWrapper,
{ opacity: inactiveOpacity },
]}
>
{renderIcon ? (
renderIcon({
route,
focused: false,
color: inactiveTintColor,
})
) : (
<Icon
source={route.icon as IconSource}
color={inactiveTintColor}
size={24}
/>
)}
</Animated.View>
<View
style={[
styles.badgeContainer,
{
right:
(badge != null && typeof badge !== 'boolean'
? String(badge).length * -2
: 0) - 2,
},
]}
>
{typeof badge === 'boolean' ? (
<Badge visible={badge} size={8} />
) : (
<Badge visible={badge != null} size={16}>
{badge}
</Badge>
)}
</View>
</Animated.View>
{labeled ? (
<Animated.View
style={[
styles.labelContainer,
{ transform: [{ scale }] },
]}
>
<Animated.View
style={[
styles.labelWrapper,
{ opacity: activeOpacity },
]}
>
{renderLabel ? (
renderLabel({
route,
focused: true,
color: activeTintColor,
})
) : (
<Text
style={[
styles.label,
{ color: activeTintColor },
]}
>
{getLabelText({ route })}
</Text>
)}
</Animated.View>
{shifting ? null : (
<Animated.View
style={[
styles.labelWrapper,
{ opacity: inactiveOpacity },
]}
>
{renderLabel ? (
renderLabel({
route,
focused: false,
color: inactiveTintColor,
})
) : (
<Text
style={[
styles.label,
{ color: inactiveTintColor },
]}
>
{getLabelText({ route })}
</Text>
)}
</Animated.View>
)}
</Animated.View>
) : (
<View style={styles.labelContainer} />
)}
</View>
</Touchable>
);
})}
</SafeAreaView>
</Animated.View>
</Surface>
</View>
);
}
}
export default withTheme(BottomNavigation);
const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
content: {
flex: 1,
},
bar: {
left: 0,
right: 0,
bottom: 0,
elevation: 4,
},
barContent: {
alignItems: 'center',
overflow: 'hidden',
},
items: {
flexDirection: 'row',
width: '100%',