forked from djchie/react-native-star-rating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstar-button.js
161 lines (139 loc) · 3.59 KB
/
star-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
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
// React and react native imports
import React, {
Component,
} from 'react';
import {
ViewPropTypes,
Image,
} from 'react-native';
import PropTypes from 'prop-types';
import update from 'react-addons-update';
// 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 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 OcticonsIcons from 'react-native-vector-icons/Octicons';
import ZocialIcons from 'react-native-vector-icons/Zocial';
import MaterialCommunityIconsIcons from 'react-native-vector-icons/MaterialCommunityIcons';
const iconSets = {
Entypo: EntypoIcons,
EvilIcons: EvilIconsIcons,
FontAwesome: FontAwesomeIcons,
Foundation: FoundationIcons,
Ionicons: IoniconsIcons,
MaterialIcons: MaterialIconsIcons,
Octicons: OcticonsIcons,
Zocial: ZocialIcons,
MaterialCommunityIcons: MaterialCommunityIconsIcons,
};
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);
}
renderIcon() {
const {
iconSet,
starIconName,
starSize,
starColor,
starStyle,
reversed,
} = this.props;
const Icon = iconSets[iconSet];
let iconElement;
// To check if we need to reverse the star icon
const newStarStyle = update(starStyle, {
transform: {
$set: [
{
scaleX: reversed ? -1 : 1,
},
],
},
});
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 {
disabled,
buttonStyle,
} = this.props;
return (
<Button
activeOpacity={0.20}
disabled={disabled}
containerStyle={buttonStyle}
onPress={this.onButtonPress}
>
{this.renderIcon()}
</Button>
);
}
}
StarButton.propTypes = {
disabled: PropTypes.bool.isRequired,
rating: PropTypes.number.isRequired,
onStarButtonPress: PropTypes.func.isRequired,
iconSet: PropTypes.string.isRequired,
starSize: PropTypes.number.isRequired,
starIconName: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object,
PropTypes.number,
]).isRequired,
starColor: PropTypes.string.isRequired,
starStyle: ViewPropTypes.style,
buttonStyle: ViewPropTypes.style,
halfStarEnabled: PropTypes.bool.isRequired,
reversed: PropTypes.bool.isRequired,
};
StarButton.defaultProps = {
starStyle: {},
buttonStyle: {},
};
export default StarButton;