forked from sconxu/react-native-checkbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox.js
100 lines (88 loc) · 2.04 KB
/
checkbox.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
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var PropTypes = React.PropTypes;
var {
StyleSheet,
Image,
Text,
View,
TouchableHighlight
} = ReactNative;
var CheckBox = React.createClass({
propTypes: {
label: PropTypes.string,
labelStyle: PropTypes.oneOfType([PropTypes.object,PropTypes.number]),
checked: PropTypes.bool,
checkedImage: PropTypes.checkedImage,
uncheckedImage: PropTypes.uncheckedImage,
onChange: PropTypes.func
},
getDefaultProps() {
return {
label: 'Label',
labelBefore: false,
checked: false,
checkedImage: './cb_enabled.png',
uncheckedImage: './cb_disabled.png',
}
},
onChange() {
if(this.props.onChange){
this.props.onChange(!this.props.checked);
}
},
render() {
var source = require(uncheckedImage);
if(this.props.checked){
source = require(checkedImage);
}
var container = (
<View style={styles.container}>
<Image
style={styles.checkbox}
source={source}/>
<View style={styles.labelContainer}>
<Text style={[styles.label, this.props.labelStyle]}>{this.props.label}</Text>
</View>
</View>
);
if (this.props.labelBefore) {
container = (
<View style={styles.container}>
<View style={styles.labelContainer}>
<Text style={[styles.label, this.props.labelStyle]}>{this.props.label}</Text>
</View>
<Image
style={styles.checkbox}
source={source}/>
</View>
);
}
return (
<TouchableHighlight onPress={this.onChange} underlayColor='white'>
{container}
</TouchableHighlight>
)
}
});
var styles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
marginBottom: 5,
},
checkbox: {
width: 26,
height: 26
},
labelContainer: {
marginLeft: 10,
marginRight: 10
},
label: {
fontSize: 15,
color: 'grey'
}
});
module.exports = CheckBox;