import React from 'react'; import MuiTable from '@mui/material/Table'; import TablePagination from './TablePagination'; import { makeStyles } from 'tss-react/mui'; import PropTypes from 'prop-types'; const useStyles = makeStyles({ name: 'MUIDataTableFooter' })(() => ({ root: { '@media print': { display: 'none', }, }, })); const TableFooter = ({ options, rowCount, page, rowsPerPage, changeRowsPerPage, changePage }) => { const { classes } = useStyles(); const { customFooter, pagination = true } = options; if (customFooter) { return ( {options.customFooter( rowCount, page, rowsPerPage, changeRowsPerPage, changePage, options.textLabels.pagination, )} ); } if (pagination) { return ( ); } return null; }; TableFooter.propTypes = { /** Total number of table rows */ rowCount: PropTypes.number.isRequired, /** Options used to describe table */ options: PropTypes.shape({ customFooter: PropTypes.func, pagination: PropTypes.bool, textLabels: PropTypes.shape({ pagination: PropTypes.object, }), }), /** Current page index */ page: PropTypes.number.isRequired, /** Total number allowed of rows per page */ rowsPerPage: PropTypes.number.isRequired, /** Callback to trigger rows per page change */ changeRowsPerPage: PropTypes.func.isRequired, /** Callback to trigger page change */ changePage: PropTypes.func.isRequired, }; export default TableFooter;