forked from jeffersonRibeiro/react-shopping-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckbox.js
49 lines (38 loc) · 939 Bytes
/
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
import React, { Component } from 'react';
import PropTypes from "prop-types";
class Checkbox extends Component {
state = {
isChecked: false,
}
toggleCheckboxChange = () => {
const { handleCheckboxChange, label } = this.props;
this.setState(({ isChecked }) => (
{
isChecked: !isChecked,
}
));
handleCheckboxChange(label);
}
render() {
const { label, classes } = this.props;
const { isChecked } = this.state;
return (
<div className={classes}>
<label>
<input
type="checkbox"
value={label}
checked={isChecked}
onChange={this.toggleCheckboxChange}
/>
<span className="checkmark">{label}</span>
</label>
</div>
);
}
}
Checkbox.propTypes = {
label: PropTypes.string.isRequired,
handleCheckboxChange: PropTypes.func.isRequired,
};
export default Checkbox;