-
Notifications
You must be signed in to change notification settings - Fork 73
/
Button.js
121 lines (108 loc) · 3.04 KB
/
Button.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
'use strict';
var React = require('react-native');
var {
View,
TouchableOpacity,
StyleSheet,
PropTypes,
ActivityIndicatorIOS,
ProgressBarAndroid,
TouchableNativeFeedback,
Platform,
Component
} = React;
const IS_ANDROID = Platform.OS === 'android';
class Button extends Component {
constructor() {
super();
this.state = {}
}
_renderChildAndroid() {
if (this.props.loading) {
return (
<ProgressBarAndroid
style={[{height: 20}, styles.spinner]}
styleAttr='Inverse'
color={this.props.activityIndicatorColor || 'black'}
/>
);
}
return this.props.children;
}
_renderChildiOS() {
if (this.props.loading) {
return (
<ActivityIndicatorIOS
animating={true}
size='small'
style={styles.spinner}
color={this.props.activityIndicatorColor || 'black'}
/>
);
}
return this.props.children;
}
_renderChild() {
if (IS_ANDROID) {
return this._renderChildAndroid()
}
return this._renderChildiOS()
}
render() {
if (this.props.disabled === true || this.props.loading === true) {
return (
<View style={[styles.button, this.props.style, (this.props.disabledStyle || styles.opacity)]}>
{this._renderChild()}
</View>
);
} else {
// Extract Touchable props
var touchableProps = {
onPress: this.props.onPress,
onPressIn: this.props.onPressIn,
onPressOut: this.props.onPressOut,
onLongPress: this.props.onLongPress
};
if (IS_ANDROID) {
touchableProps = Object.assign(touchableProps, {
background: this.props.background || TouchableNativeFeedback.SelectableBackground()
});
return (
<TouchableNativeFeedback {...touchableProps}>
{this._renderChildAndroid()}
</TouchableNativeFeedback>
)
} else {
return (
<TouchableOpacity {...touchableProps}
style={[styles.button, this.props.style]}>
{this._renderChildiOS()}
</TouchableOpacity>
);
}
}
}
}
Button.propTypes = {
loading: PropTypes.bool,
disabled: PropTypes.bool,
onPress: PropTypes.func,
onLongPress: PropTypes.func,
onPressIn: PropTypes.func,
onPressOut: PropTypes.func
};
var styles = StyleSheet.create({
button: {
},
textButton: {
fontSize: 18,
alignSelf: 'center'
},
spinner: {
alignSelf: 'center'
},
opacity: {
opacity: 0.5
}
});
module.exports = Button;