/* eslint max-params: 0 */ import PropTypes from 'prop-types'; import React, { Component } from 'react'; import CheckInput from 'Components/Form/CheckInput'; import TableRowCell from './TableRowCell'; import styles from './TableSelectCell.css'; class TableSelectCell extends Component { // // Lifecycle componentDidMount() { const { id, isSelected, onSelectedChange } = this.props; onSelectedChange({ id, value: isSelected }); } // // Listeners onChange = ({ value, shiftKey }, a, b, c, d) => { const { id, onSelectedChange } = this.props; onSelectedChange({ id, value, shiftKey }); } // // Render render() { const { className, id, isSelected, ...otherProps } = this.props; return ( ); } } TableSelectCell.propTypes = { className: PropTypes.string.isRequired, id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired, isSelected: PropTypes.bool.isRequired, onSelectedChange: PropTypes.func.isRequired }; TableSelectCell.defaultProps = { className: styles.selectCell, isSelected: false }; export default TableSelectCell;