| 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 |
1x
5x
5x
5x
14x
14x
1x
1x
| import PropTypes from 'prop-types';
import React from 'react';
import {
View,
Text as NativeText,
StyleSheet,
TouchableHighlight,
Platform,
} from 'react-native';
import colors from '../config/colors';
import Text from '../text/Text';
import normalize from '../helpers/normalizeText';
import ViewPropTypes from '../config/ViewPropTypes';
const ButtonGroup = props => {
const {
component,
buttons,
onPress,
selectedIndex,
containerStyle,
innerBorderStyle,
lastBorderStyle,
buttonStyle,
textStyle,
selectedTextStyle,
selectedBackgroundColor,
underlayColor,
activeOpacity,
onHideUnderlay,
onShowUnderlay,
setOpacityTo,
containerBorderRadius,
disableSelected,
...attributes
} = props;
const Component = component || TouchableHighlight;
return (
<View
{...attributes}
style={[styles.container, containerStyle && containerStyle]}
>
{buttons.map((button, i) => {
const containerRadius = !isNaN(containerBorderRadius)
? containerBorderRadius
: 3;
return (
<Component
activeOpacity={activeOpacity}
setOpacityTo={setOpacityTo}
onHideUnderlay={onHideUnderlay}
onShowUnderlay={onShowUnderlay}
underlayColor={underlayColor || '#ffffff'}
disabled={disableSelected && i === selectedIndex ? true : false}
onPress={onPress ? () => onPress(i) : () => {}}
key={i}
style={[
styles.button,
// FIXME: This is a workaround to the borderColor and borderRadius bug
// react-native ref: https://github.com/facebook/react-native/issues/8236
i < buttons.length - 1 && {
borderRightWidth:
i === 0
? 0
: (innerBorderStyle && innerBorderStyle.width) || 1,
borderRightColor:
(innerBorderStyle && innerBorderStyle.color) || colors.grey4,
},
i === 1 && {
borderLeftWidth:
(innerBorderStyle && innerBorderStyle.width) || 1,
borderLeftColor:
(innerBorderStyle && innerBorderStyle.color) || colors.grey4,
},
i === buttons.length - 1 && {
...lastBorderStyle,
borderTopRightRadius: containerRadius,
borderBottomRightRadius: containerRadius,
},
i === 0 && {
borderTopLeftRadius: containerRadius,
borderBottomLeftRadius: containerRadius,
},
selectedIndex === i && {
backgroundColor: selectedBackgroundColor || 'white',
},
]}
>
<View style={[styles.textContainer, buttonStyle && buttonStyle]}>
{button.element
? <button.element />
: <Text
style={[
styles.buttonText,
textStyle && textStyle,
selectedIndex === i && { color: colors.grey1 },
selectedIndex === i && selectedTextStyle,
]}
>
{button}
</Text>}
</View>
</Component>
);
})}
</View>
);
};
const styles = StyleSheet.create({
button: {
flex: 1,
},
textContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
container: {
marginLeft: 10,
marginRight: 10,
marginBottom: 5,
marginTop: 5,
borderColor: '#e3e3e3',
borderWidth: 1,
flexDirection: 'row',
borderRadius: 3,
overflow: 'hidden',
backgroundColor: '#f5f5f5',
height: 40,
},
buttonText: {
fontSize: normalize(13),
color: colors.grey2,
...Platform.select({
ios: {
fontWeight: '500',
},
}),
},
});
ButtonGroup.propTypes = {
button: PropTypes.object,
component: PropTypes.any,
onPress: PropTypes.func,
buttons: PropTypes.array,
containerStyle: ViewPropTypes.style,
textStyle: NativeText.propTypes.style,
selectedTextStyle: NativeText.propTypes.style,
underlayColor: PropTypes.string,
selectedIndex: PropTypes.number,
activeOpacity: PropTypes.number,
onHideUnderlay: PropTypes.func,
onShowUnderlay: PropTypes.func,
setOpacityTo: PropTypes.any,
innerBorderStyle: PropTypes.shape({
color: PropTypes.string,
width: PropTypes.number,
}),
lastBorderStyle: PropTypes.oneOfType([
ViewPropTypes.style,
NativeText.propTypes.style,
]),
buttonStyle: ViewPropTypes.style,
selectedBackgroundColor: PropTypes.string,
containerBorderRadius: PropTypes.number,
disableSelected: PropTypes.bool,
};
export default ButtonGroup;
|