1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-17 18:44:45 +02:00
joplin/ReactNativeClient/lib/components/checkbox.js

44 lines
948 B
JavaScript
Raw Normal View History

2017-05-16 21:12:37 +02:00
import React, { Component } from 'react';
2017-05-24 22:51:50 +02:00
import { StyleSheet, TouchableHighlight } from 'react-native';
import Icon from 'react-native-vector-icons/Ionicons';
const styles = StyleSheet.create({
checkboxIcon: {
fontSize: 20,
height: 22,
marginRight: 10,
},
});
2017-05-16 21:12:37 +02:00
class Checkbox extends Component {
2017-05-24 22:51:50 +02:00
constructor() {
super();
this.state = {
checked: false,
}
}
componentWillMount() {
this.state = { checked: this.props.checked };
}
2017-06-06 22:01:43 +02:00
onPress() {
2017-05-24 22:51:50 +02:00
let newChecked = !this.state.checked;
this.setState({ checked: newChecked });
if (this.props.onChange) this.props.onChange(newChecked);
}
render() {
const iconName = this.state.checked ? 'md-checkbox-outline' : 'md-square-outline';
return (
2017-06-06 22:01:43 +02:00
<TouchableHighlight onPress={() => this.onPress()} style={{justifyContent: 'center', alignItems: 'center'}}>
2017-05-24 22:51:50 +02:00
<Icon name={iconName} style={styles.checkboxIcon}/>
</TouchableHighlight>
);
}
2017-05-16 21:12:37 +02:00
}
2017-05-24 22:51:50 +02:00
export { Checkbox };