-
Notifications
You must be signed in to change notification settings - Fork 199
/
StarButton.js
172 lines (149 loc) · 4.12 KB
/
StarButton.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
// React and react native imports
import React, { Component } from 'react';
import { Image, StyleSheet, ViewPropTypes } from 'react-native';
import PropTypes from 'prop-types';
import { createIconSetFromIcoMoon } from 'react-native-vector-icons';
// Third party imports
import Button from 'react-native-button';
import EntypoIcons from 'react-native-vector-icons/Entypo';
import EvilIconsIcons from 'react-native-vector-icons/EvilIcons';
import FeatherIcons from 'react-native-vector-icons/Feather';
import FontAwesomeIcons from 'react-native-vector-icons/FontAwesome';
import FoundationIcons from 'react-native-vector-icons/Foundation';
import IoniconsIcons from 'react-native-vector-icons/Ionicons';
import MaterialIconsIcons from 'react-native-vector-icons/MaterialIcons';
import MaterialCommunityIconsIcons from 'react-native-vector-icons/MaterialCommunityIcons';
import OcticonsIcons from 'react-native-vector-icons/Octicons';
import ZocialIcons from 'react-native-vector-icons/Zocial';
import SimpleLineIconsIcons from 'react-native-vector-icons/SimpleLineIcons';
const iconSets = {
Entypo: EntypoIcons,
EvilIcons: EvilIconsIcons,
Feather: FeatherIcons,
FontAwesome: FontAwesomeIcons,
Foundation: FoundationIcons,
Ionicons: IoniconsIcons,
MaterialIcons: MaterialIconsIcons,
MaterialCommunityIcons: MaterialCommunityIconsIcons,
Octicons: OcticonsIcons,
Zocial: ZocialIcons,
SimpleLineIcons: SimpleLineIconsIcons,
};
const propTypes = {
buttonStyle: ViewPropTypes.style,
disabled: PropTypes.bool.isRequired,
halfStarEnabled: PropTypes.bool.isRequired,
icoMoonJson: PropTypes.string,
iconSet: PropTypes.string.isRequired,
rating: PropTypes.number.isRequired,
reversed: PropTypes.bool.isRequired,
starColor: PropTypes.string.isRequired,
starIconName: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object,
PropTypes.number,
]).isRequired,
starSize: PropTypes.number.isRequired,
activeOpacity: PropTypes.number.isRequired,
starStyle: ViewPropTypes.style,
onStarButtonPress: PropTypes.func.isRequired,
};
const defaultProps = {
buttonStyle: {},
icoMoonJson: undefined,
starStyle: {},
};
class StarButton extends Component {
constructor(props) {
super(props);
this.onButtonPress = this.onButtonPress.bind(this);
}
onButtonPress(event) {
const {
halfStarEnabled,
starSize,
rating,
onStarButtonPress,
} = this.props;
let addition = 0;
if (halfStarEnabled) {
const isHalfSelected = event.nativeEvent.locationX < starSize / 2;
addition = isHalfSelected ? -0.5 : 0;
}
onStarButtonPress(rating + addition);
}
iconSetFromProps() {
const {
icoMoonJson,
iconSet,
} = this.props;
if (icoMoonJson) {
return createIconSetFromIcoMoon(icoMoonJson);
}
return iconSets[iconSet];
}
renderIcon() {
const {
reversed,
starColor,
starIconName,
starSize,
starStyle,
} = this.props;
const Icon = this.iconSetFromProps();
let iconElement;
const newStarStyle = {
transform: [{
scaleX: reversed ? -1 : 1,
}],
...StyleSheet.flatten(starStyle),
};
if (typeof starIconName === 'string') {
iconElement = (
<Icon
name={starIconName}
size={starSize}
color={starColor}
style={newStarStyle}
/>
);
} else {
const imageStyle = {
width: starSize,
height: starSize,
resizeMode: 'contain',
};
const iconStyles = [
imageStyle,
newStarStyle,
];
iconElement = (
<Image
source={starIconName}
style={iconStyles}
/>
);
}
return iconElement;
}
render() {
const {
activeOpacity,
buttonStyle,
disabled,
} = this.props;
return (
<Button
activeOpacity={activeOpacity}
disabled={disabled}
containerStyle={buttonStyle}
onPress={this.onButtonPress}
>
{this.renderIcon()}
</Button>
);
}
}
StarButton.propTypes = propTypes;
StarButton.defaultProps = defaultProps;
export default StarButton;