| import React from 'react'; |
| import PropTypes from 'prop-types'; |
| import Checkbox from '@mui/material/Checkbox'; |
| import Typography from '@mui/material/Typography'; |
| import Button from '@mui/material/Button'; |
| import FormControl from '@mui/material/FormControl'; |
| import FormGroup from '@mui/material/FormGroup'; |
| import FormControlLabel from '@mui/material/FormControlLabel'; |
| import { makeStyles } from 'tss-react/mui'; |
|
|
| const useStyles = makeStyles({ name: 'MUIDataTableViewCol' })(theme => ({ |
| root: { |
| padding: '16px 24px 16px 24px', |
| fontFamily: 'Roboto', |
| }, |
| title: { |
| marginLeft: '-7px', |
| marginRight: '24px', |
| fontSize: '14px', |
| color: theme.palette.text.secondary, |
| textAlign: 'left', |
| fontWeight: 500, |
| }, |
| formGroup: { |
| marginTop: '8px', |
| }, |
| formControl: {}, |
| checkbox: { |
| padding: '0px', |
| width: '32px', |
| height: '32px', |
| }, |
| checkboxRoot: {}, |
| checked: {}, |
| label: { |
| fontSize: '15px', |
| marginLeft: '8px', |
| color: theme.palette.text.primary, |
| }, |
| })); |
|
|
| const TableViewCol = ({ columns, options, components = {}, onColumnUpdate, updateColumns }) => { |
| const { classes } = useStyles(); |
| const textLabels = options.textLabels.viewColumns; |
| const CheckboxComponent = components.Checkbox || Checkbox; |
|
|
| const handleColChange = index => { |
| onColumnUpdate(index); |
| }; |
|
|
| const selectAll = () => { |
| var newColumns = columns.map(col => { |
| var newCol = Object.assign({}, col); |
| newCol.display = 'true'; |
| return newCol; |
| }); |
| updateColumns(newColumns); |
| }; |
|
|
| return ( |
| <FormControl component={'fieldset'} className={classes.root} aria-label={textLabels.titleAria}> |
| <Typography variant="caption" className={classes.title}> |
| {textLabels.title} |
| </Typography> |
| <FormGroup className={classes.formGroup}> |
| <Button onClick={selectAll}>Show All</Button> |
| {columns.map((column, index) => { |
| return ( |
| column.display !== 'excluded' && |
| column.viewColumns !== false && ( |
| <FormControlLabel |
| key={index} |
| classes={{ |
| root: classes.formControl, |
| label: classes.label, |
| }} |
| control={ |
| <CheckboxComponent |
| color="primary" |
| className={classes.checkbox} |
| classes={{ |
| root: classes.checkboxRoot, |
| checked: classes.checked, |
| }} |
| onChange={() => handleColChange(index)} |
| checked={column.display === 'true'} |
| value={column.name} |
| /> |
| } |
| label={column.label} |
| /> |
| ) |
| ); |
| })} |
| </FormGroup> |
| </FormControl> |
| ); |
| }; |
|
|
| TableViewCol.propTypes = { |
| |
| columns: PropTypes.array.isRequired, |
| |
| options: PropTypes.object.isRequired, |
| |
| onColumnUpdate: PropTypes.func, |
| |
| classes: PropTypes.object, |
| }; |
|
|
| export default TableViewCol; |
|
|