-
Notifications
You must be signed in to change notification settings - Fork 610
/
Copy pathBottomNavigation.react.js
138 lines (119 loc) · 3.17 KB
/
BottomNavigation.react.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
/* eslint-disable import/no-unresolved, import/extensions */
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { View, Animated, Easing, StyleSheet } from 'react-native';
import { ViewPropTypes } from '../utils';
/* eslint-enable import/no-unresolved, import/extensions */
import withTheme from '../styles/withTheme';
import BottomNavigationAction from './BottomNavigationAction.react';
const propTypes = {
/**
* The key of selected/active tab
*/
active: PropTypes.string,
/**
* BottomNavigation.Action nodes
*/
children: PropTypes.node.isRequired,
/**
* Wether or not the BottomNaviagtion should show
*/
hidden: PropTypes.bool,
/**
* Inline style of bottom navigation
*/
style: PropTypes.shape({
container: ViewPropTypes.style,
}),
};
const defaultProps = {
active: null,
hidden: false,
style: {},
};
function getStyles(props) {
const { bottomNavigation } = props.theme;
const local = {};
return {
container: [
bottomNavigation.container,
local.container,
props.style.container,
],
actionsContainer: [
bottomNavigation.actionsContainer,
local.actionsContainer,
props.style.actionsContainer,
],
};
}
/**
* Component for bottom navigation
* https://material.google.com/components/bottom-navigation.html
*/
class BottomNavigation extends PureComponent {
constructor(props, context) {
super(props, context);
this.state = {
styles: getStyles(props, context),
moveAnimated: new Animated.Value(0),
};
}
componentWillReceiveProps(nextProps) {
const { style, hidden } = this.props;
if (nextProps.style !== style) {
this.setState({ styles: getStyles(nextProps, this.context) });
}
if (nextProps.hidden !== hidden) {
if (nextProps.hidden === true) {
this.hide();
} else {
this.show();
}
}
}
show = () => {
const { moveAnimated } = this.state;
Animated.timing(moveAnimated, {
toValue: 0,
duration: 225,
easing: Easing.bezier(0.0, 0.0, 0.2, 1),
useNativeDriver: true,
}).start();
};
hide = () => {
const { moveAnimated, styles } = this.state;
Animated.timing(moveAnimated, {
toValue: StyleSheet.flatten(styles.container).height,
duration: 195,
easing: Easing.bezier(0.4, 0.0, 0.6, 1),
useNativeDriver: true,
}).start();
};
render() {
const { active, children } = this.props;
const { styles, moveAnimated } = this.state;
return (
<Animated.View
style={[
styles.container,
{ transform: [{ translateY: moveAnimated }] },
]}
>
<View style={styles.actionsContainer}>
{React.Children.map(children, child =>
React.cloneElement(child, {
...child.props,
active: child.key === active,
}),
)}
</View>
</Animated.View>
);
}
}
BottomNavigation.propTypes = propTypes;
BottomNavigation.defaultProps = defaultProps;
BottomNavigation.Action = BottomNavigationAction;
const ThemedBottomNavigation = withTheme(BottomNavigation);
export default ThemedBottomNavigation;