import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import cx from 'classnames'; import { findDOMNode } from 'react-dom'; import KEY_CODES from '/imports/utils/keyCodes'; import Icon from '../icon/component'; import { styles } from './styles'; const propTypes = { disabled: PropTypes.bool, checked: PropTypes.bool, onChange: PropTypes.func.isRequired, className: PropTypes.string, ariaLabelledBy: PropTypes.string, ariaLabel: PropTypes.string, ariaDescribedBy: PropTypes.string, ariaDesc: PropTypes.string, }; const defaultProps = { disabled: false, checked: false, className: null, ariaLabelledBy: null, ariaLabel: null, ariaDescribedBy: null, ariaDesc: null, }; export default class Checkbox extends PureComponent { constructor(props) { super(props); this.onChange = props.onChange; this.handleChange = this.handleChange.bind(this); this.handleKeyDown = this.handleKeyDown.bind(this); } componentDidMount() { const checkbox = findDOMNode(this.checkbox); if (checkbox) checkbox.addEventListener('keydown', this.handleKeyDown); } componentWillUnmount() { const checkbox = findDOMNode(this.checkbox); if (checkbox) checkbox.removeEventListener('keydown', this.handleKeyDown); } handleKeyDown(event) { const { which } = event; const input = findDOMNode(this.input); if ([KEY_CODES.ENTER].includes(which)) { if (input) input.click(); } } handleChange() { const { disabled, keyValue } = this.props; if (disabled) return; this.onChange(keyValue); } render() { const { ariaLabel, ariaDesc, ariaDescribedBy, className, checked, disabled, } = this.props; return (