|
|
import React from 'react'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import clsx from 'clsx'; |
|
|
import Checkbox from '@mui/material/Checkbox'; |
|
|
import TableCell from '@mui/material/TableCell'; |
|
|
import { makeStyles } from 'tss-react/mui'; |
|
|
import ExpandButton from './ExpandButton'; |
|
|
|
|
|
const useStyles = makeStyles({ name: 'MUIDataTableSelectCell' })(theme => ({ |
|
|
root: { |
|
|
'@media print': { |
|
|
display: 'none', |
|
|
}, |
|
|
}, |
|
|
fixedHeader: { |
|
|
position: 'sticky', |
|
|
top: '0px', |
|
|
zIndex: 100, |
|
|
}, |
|
|
fixedLeft: { |
|
|
position: 'sticky', |
|
|
left: '0px', |
|
|
zIndex: 100, |
|
|
}, |
|
|
icon: { |
|
|
cursor: 'pointer', |
|
|
transition: 'transform 0.25s', |
|
|
}, |
|
|
expanded: { |
|
|
transform: 'rotate(90deg)', |
|
|
}, |
|
|
hide: { |
|
|
visibility: 'hidden', |
|
|
}, |
|
|
headerCell: { |
|
|
zIndex: 110, |
|
|
backgroundColor: theme.palette.background.paper, |
|
|
}, |
|
|
expandDisabled: {}, |
|
|
checkboxRoot: {}, |
|
|
checked: {}, |
|
|
disabled: {}, |
|
|
})); |
|
|
|
|
|
const TableSelectCell = ({ |
|
|
fixedHeader, |
|
|
fixedSelectColumn, |
|
|
isHeaderCell = false, |
|
|
expandableOn = false, |
|
|
selectableOn = 'none', |
|
|
isRowExpanded = false, |
|
|
onExpand, |
|
|
isRowSelectable, |
|
|
selectableRowsHeader, |
|
|
hideExpandButton, |
|
|
expandableRowsHeader, |
|
|
expandedRows, |
|
|
areAllRowsExpanded = () => false, |
|
|
selectableRowsHideCheckboxes, |
|
|
setHeadCellRef, |
|
|
dataIndex, |
|
|
components = {}, |
|
|
...otherProps |
|
|
}) => { |
|
|
const { classes } = useStyles(); |
|
|
const CheckboxComponent = components.Checkbox || Checkbox; |
|
|
const ExpandButtonComponent = components.ExpandButton || ExpandButton; |
|
|
|
|
|
if (expandableOn === false && (selectableOn === 'none' || selectableRowsHideCheckboxes === true)) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
const cellClass = clsx({ |
|
|
[classes.root]: true, |
|
|
[classes.fixedHeader]: fixedHeader && isHeaderCell, |
|
|
[classes.fixedLeft]: fixedSelectColumn, |
|
|
[classes.headerCell]: isHeaderCell, |
|
|
}); |
|
|
|
|
|
const buttonClass = clsx({ |
|
|
[classes.expandDisabled]: hideExpandButton, |
|
|
}); |
|
|
|
|
|
const iconClass = clsx({ |
|
|
[classes.icon]: true, |
|
|
[classes.hide]: isHeaderCell && !expandableRowsHeader, |
|
|
[classes.expanded]: isRowExpanded || (isHeaderCell && areAllRowsExpanded()), |
|
|
}); |
|
|
const iconIndeterminateClass = clsx({ |
|
|
[classes.icon]: true, |
|
|
[classes.hide]: isHeaderCell && !expandableRowsHeader, |
|
|
}); |
|
|
|
|
|
let refProp = {}; |
|
|
if (setHeadCellRef) { |
|
|
refProp.ref = el => { |
|
|
setHeadCellRef(0, 0, el); |
|
|
}; |
|
|
} |
|
|
|
|
|
const renderCheckBox = () => { |
|
|
if (isHeaderCell && (selectableOn !== 'multiple' || selectableRowsHeader === false)) { |
|
|
|
|
|
return null; |
|
|
} |
|
|
return ( |
|
|
<CheckboxComponent |
|
|
classes={{ |
|
|
root: classes.checkboxRoot, |
|
|
checked: classes.checked, |
|
|
disabled: classes.disabled, |
|
|
}} |
|
|
data-description={isHeaderCell ? 'row-select-header' : 'row-select'} |
|
|
data-index={dataIndex || null} |
|
|
color="primary" |
|
|
disabled={!isRowSelectable} |
|
|
{...otherProps} |
|
|
/> |
|
|
); |
|
|
}; |
|
|
|
|
|
return ( |
|
|
<TableCell className={cellClass} padding="checkbox" {...refProp}> |
|
|
<div style={{ display: 'flex', alignItems: 'center' }}> |
|
|
{expandableOn && ( |
|
|
<ExpandButtonComponent |
|
|
isHeaderCell={isHeaderCell} |
|
|
areAllRowsExpanded={areAllRowsExpanded} |
|
|
expandedRows={expandedRows} |
|
|
onExpand={onExpand} |
|
|
expandableRowsHeader={expandableRowsHeader} |
|
|
buttonClass={buttonClass} |
|
|
iconIndeterminateClass={iconIndeterminateClass} |
|
|
iconClass={iconClass} |
|
|
dataIndex={dataIndex} |
|
|
/> |
|
|
)} |
|
|
{selectableOn !== 'none' && selectableRowsHideCheckboxes !== true && renderCheckBox()} |
|
|
</div> |
|
|
</TableCell> |
|
|
); |
|
|
}; |
|
|
|
|
|
TableSelectCell.propTypes = { |
|
|
|
|
|
checked: PropTypes.bool.isRequired, |
|
|
|
|
|
fixedHeader: PropTypes.bool, |
|
|
|
|
|
onChange: PropTypes.func, |
|
|
|
|
|
classes: PropTypes.object, |
|
|
|
|
|
expandableOn: PropTypes.bool, |
|
|
|
|
|
hideExpandButton: PropTypes.bool, |
|
|
|
|
|
selectableOn: PropTypes.string, |
|
|
|
|
|
isRowSelectable: PropTypes.bool, |
|
|
}; |
|
|
|
|
|
export default TableSelectCell; |
|
|
|