|
|
|
|
|
import * as React from "react"; |
|
|
import PropTypes from "prop-types"; |
|
|
import TableHead from "@mui/material/TableHead"; |
|
|
import TableRow from "@mui/material/TableRow"; |
|
|
import TableCell from "@mui/material/TableCell"; |
|
|
import TableSortLabel from "@mui/material/TableSortLabel"; |
|
|
import Checkbox from "@mui/material/Checkbox"; |
|
|
import { withStyles } from "@mui/styles"; |
|
|
import { Draggable } from "react-beautiful-dnd"; |
|
|
import { Tooltip } from "@mui/material"; |
|
|
import * as CommonValues from "../utils/common-values"; |
|
|
import equal from "fast-deep-equal"; |
|
|
|
|
|
|
|
|
|
|
|
export class MTableHeader extends React.Component { |
|
|
constructor(props) { |
|
|
super(props); |
|
|
|
|
|
this.state = { |
|
|
lastX: 0, |
|
|
resizingColumnDef: undefined, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
componentDidMount() { |
|
|
document.addEventListener("mousemove", this.handleMouseMove); |
|
|
document.addEventListener("mouseup", this.handleMouseUp); |
|
|
} |
|
|
|
|
|
componentWillUnmount() { |
|
|
document.removeEventListener("mousemove", this.handleMouseMove); |
|
|
document.removeEventListener("mouseup", this.handleMouseUp); |
|
|
} |
|
|
|
|
|
handleMouseDown = (e, columnDef) => { |
|
|
this.setState({ |
|
|
lastAdditionalWidth: columnDef.tableData.additionalWidth, |
|
|
lastX: e.clientX, |
|
|
resizingColumnDef: columnDef, |
|
|
}); |
|
|
}; |
|
|
|
|
|
handleMouseMove = (e) => { |
|
|
if (!this.state.resizingColumnDef) { |
|
|
return; |
|
|
} |
|
|
|
|
|
let additionalWidth = |
|
|
this.state.lastAdditionalWidth + e.clientX - this.state.lastX; |
|
|
|
|
|
additionalWidth = Math.min( |
|
|
this.state.resizingColumnDef.maxWidth || additionalWidth, |
|
|
additionalWidth |
|
|
); |
|
|
|
|
|
if ( |
|
|
this.state.resizingColumnDef.tableData.additionalWidth !== additionalWidth |
|
|
) { |
|
|
this.props.onColumnResized( |
|
|
this.state.resizingColumnDef.tableData.id, |
|
|
additionalWidth |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
handleMouseUp = (e) => { |
|
|
this.setState({ resizingColumnDef: undefined }); |
|
|
}; |
|
|
|
|
|
getCellStyle = (columnDef) => { |
|
|
const width = CommonValues.reducePercentsInCalc( |
|
|
columnDef.tableData.width, |
|
|
this.props.scrollWidth |
|
|
); |
|
|
|
|
|
const style = { |
|
|
...this.props.headerStyle, |
|
|
...columnDef.headerStyle, |
|
|
boxSizing: "border-box", |
|
|
width, |
|
|
maxWidth: columnDef.maxWidth, |
|
|
minWidth: columnDef.minWidth, |
|
|
}; |
|
|
|
|
|
if ( |
|
|
this.props.options.tableLayout === "fixed" && |
|
|
this.props.options.columnResizable && |
|
|
columnDef.resizable !== false |
|
|
) { |
|
|
style.paddingRight = 2; |
|
|
} |
|
|
|
|
|
return style; |
|
|
}; |
|
|
|
|
|
renderHeader() { |
|
|
const size = this.props.options.padding === "default" ? "medium" : "small"; |
|
|
|
|
|
const mapArr = this.props.columns |
|
|
.filter( |
|
|
(columnDef) => |
|
|
!columnDef.hidden && !(columnDef.tableData.groupOrder > -1) |
|
|
) |
|
|
.sort((a, b) => a.tableData.columnOrder - b.tableData.columnOrder) |
|
|
.map((columnDef, index) => { |
|
|
let content = columnDef.title; |
|
|
|
|
|
if (this.props.draggable) { |
|
|
content = ( |
|
|
<Draggable |
|
|
key={columnDef.tableData.id} |
|
|
draggableId={columnDef.tableData.id.toString()} |
|
|
index={index} |
|
|
> |
|
|
{(provided, snapshot) => ( |
|
|
<div |
|
|
ref={provided.innerRef} |
|
|
{...provided.draggableProps} |
|
|
{...provided.dragHandleProps} |
|
|
> |
|
|
{columnDef.title} |
|
|
</div> |
|
|
)} |
|
|
</Draggable> |
|
|
); |
|
|
} |
|
|
|
|
|
if (columnDef.sorting !== false && this.props.sorting) { |
|
|
content = ( |
|
|
<TableSortLabel |
|
|
IconComponent={this.props.icons.SortArrow} |
|
|
active={this.props.orderBy === columnDef.tableData.id} |
|
|
direction={this.props.orderDirection || "asc"} |
|
|
onClick={() => { |
|
|
const orderDirection = |
|
|
columnDef.tableData.id !== this.props.orderBy |
|
|
? "asc" |
|
|
: this.props.orderDirection === "asc" |
|
|
? "desc" |
|
|
: this.props.orderDirection === "desc" && |
|
|
this.props.thirdSortClick |
|
|
? "" |
|
|
: this.props.orderDirection === "desc" && |
|
|
!this.props.thirdSortClick |
|
|
? "asc" |
|
|
: this.props.orderDirection === "" |
|
|
? "asc" |
|
|
: "desc"; |
|
|
this.props.onOrderChange( |
|
|
columnDef.tableData.id, |
|
|
orderDirection |
|
|
); |
|
|
}} |
|
|
> |
|
|
{content} |
|
|
</TableSortLabel> |
|
|
); |
|
|
} |
|
|
|
|
|
if (columnDef.tooltip) { |
|
|
content = ( |
|
|
<Tooltip title={columnDef.tooltip} placement="bottom"> |
|
|
<span>{content}</span> |
|
|
</Tooltip> |
|
|
); |
|
|
} |
|
|
|
|
|
if ( |
|
|
this.props.options.tableLayout === "fixed" && |
|
|
this.props.options.columnResizable && |
|
|
columnDef.resizable !== false |
|
|
) { |
|
|
content = ( |
|
|
<div style={{ display: "flex", alignItems: "center" }}> |
|
|
<div style={{ flex: 1 }}>{content}</div> |
|
|
<div></div> |
|
|
<this.props.icons.Resize |
|
|
style={{ |
|
|
cursor: "col-resize", |
|
|
color: |
|
|
this.state.resizingColumnDef && |
|
|
this.state.resizingColumnDef.tableData.id === |
|
|
columnDef.tableData.id |
|
|
? this.props.theme.palette.primary.main |
|
|
: "inherit", |
|
|
}} |
|
|
onMouseDown={(e) => this.handleMouseDown(e, columnDef)} |
|
|
/> |
|
|
</div> |
|
|
); |
|
|
} |
|
|
|
|
|
const cellAlignment = |
|
|
columnDef.align !== undefined |
|
|
? columnDef.align |
|
|
: ["numeric", "currency"].indexOf(columnDef.type) !== -1 |
|
|
? "right" |
|
|
: "left"; |
|
|
return ( |
|
|
<TableCell |
|
|
key={columnDef.tableData.id} |
|
|
align={cellAlignment} |
|
|
className={this.props.classes.header} |
|
|
style={this.getCellStyle(columnDef)} |
|
|
size={size} |
|
|
> |
|
|
{content} |
|
|
</TableCell> |
|
|
); |
|
|
}); |
|
|
return mapArr; |
|
|
} |
|
|
|
|
|
renderActionsHeader() { |
|
|
const localization = { |
|
|
...MTableHeader.defaultProps.localization, |
|
|
...this.props.localization, |
|
|
}; |
|
|
const width = CommonValues.actionsColumnWidth(this.props); |
|
|
return ( |
|
|
<TableCell |
|
|
key="key-actions-column" |
|
|
padding="checkbox" |
|
|
className={this.props.classes.header} |
|
|
style={{ |
|
|
...this.props.headerStyle, |
|
|
width: width, |
|
|
textAlign: "center", |
|
|
boxSizing: "border-box", |
|
|
}} |
|
|
> |
|
|
<TableSortLabel hideSortIcon={true} disabled> |
|
|
{localization.actions} |
|
|
</TableSortLabel> |
|
|
</TableCell> |
|
|
); |
|
|
} |
|
|
renderSelectionHeader() { |
|
|
const selectionWidth = CommonValues.selectionMaxWidth( |
|
|
this.props, |
|
|
this.props.treeDataMaxLevel |
|
|
); |
|
|
|
|
|
return ( |
|
|
<TableCell |
|
|
padding="none" |
|
|
key="key-selection-column" |
|
|
className={this.props.classes.header} |
|
|
style={{ ...this.props.headerStyle, width: selectionWidth }} |
|
|
> |
|
|
{this.props.showSelectAllCheckbox && ( |
|
|
<Checkbox |
|
|
indeterminate={ |
|
|
this.props.selectedCount > 0 && |
|
|
this.props.selectedCount < this.props.dataCount |
|
|
} |
|
|
checked={ |
|
|
this.props.dataCount > 0 && |
|
|
this.props.selectedCount === this.props.dataCount |
|
|
} |
|
|
onChange={(event, checked) => |
|
|
this.props.onAllSelected && this.props.onAllSelected(checked) |
|
|
} |
|
|
{...this.props.options.headerSelectionProps} |
|
|
/> |
|
|
)} |
|
|
</TableCell> |
|
|
); |
|
|
} |
|
|
|
|
|
renderDetailPanelColumnCell() { |
|
|
return ( |
|
|
<TableCell |
|
|
padding="none" |
|
|
key="key-detail-panel-column" |
|
|
className={this.props.classes.header} |
|
|
style={{ ...this.props.headerStyle }} |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
render() { |
|
|
const headers = this.renderHeader(); |
|
|
if (this.props.hasSelection) { |
|
|
headers.splice(0, 0, this.renderSelectionHeader()); |
|
|
} |
|
|
|
|
|
if (this.props.showActionsColumn) { |
|
|
if (this.props.actionsHeaderIndex >= 0) { |
|
|
let endPos = 0; |
|
|
if (this.props.hasSelection) { |
|
|
endPos = 1; |
|
|
} |
|
|
headers.splice( |
|
|
this.props.actionsHeaderIndex + endPos, |
|
|
0, |
|
|
this.renderActionsHeader() |
|
|
); |
|
|
} else if (this.props.actionsHeaderIndex === -1) { |
|
|
headers.push(this.renderActionsHeader()); |
|
|
} |
|
|
} |
|
|
|
|
|
if (this.props.hasDetailPanel) { |
|
|
if (this.props.detailPanelColumnAlignment === "right") { |
|
|
headers.push(this.renderDetailPanelColumnCell()); |
|
|
} else { |
|
|
headers.splice(0, 0, this.renderDetailPanelColumnCell()); |
|
|
} |
|
|
} |
|
|
|
|
|
if (this.props.isTreeData > 0) { |
|
|
headers.splice( |
|
|
0, |
|
|
0, |
|
|
<TableCell |
|
|
padding="none" |
|
|
key={"key-tree-data-header"} |
|
|
className={this.props.classes.header} |
|
|
style={{ ...this.props.headerStyle }} |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
this.props.columns |
|
|
.filter((columnDef) => columnDef.tableData.groupOrder > -1) |
|
|
.forEach((columnDef) => { |
|
|
headers.splice( |
|
|
0, |
|
|
0, |
|
|
<TableCell |
|
|
padding="checkbox" |
|
|
key={"key-group-header" + columnDef.tableData.id} |
|
|
className={this.props.classes.header} |
|
|
/> |
|
|
); |
|
|
}); |
|
|
|
|
|
return ( |
|
|
<TableHead> |
|
|
<TableRow>{headers}</TableRow> |
|
|
</TableHead> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
MTableHeader.defaultProps = { |
|
|
dataCount: 0, |
|
|
hasSelection: false, |
|
|
headerStyle: {}, |
|
|
selectedCount: 0, |
|
|
sorting: true, |
|
|
localization: { |
|
|
actions: "Actions", |
|
|
}, |
|
|
orderBy: undefined, |
|
|
orderDirection: "asc", |
|
|
actionsHeaderIndex: 0, |
|
|
detailPanelColumnAlignment: "left", |
|
|
draggable: true, |
|
|
thirdSortClick: true, |
|
|
}; |
|
|
|
|
|
MTableHeader.propTypes = { |
|
|
columns: PropTypes.array.isRequired, |
|
|
dataCount: PropTypes.number, |
|
|
hasDetailPanel: PropTypes.bool.isRequired, |
|
|
detailPanelColumnAlignment: PropTypes.string, |
|
|
hasSelection: PropTypes.bool, |
|
|
headerStyle: PropTypes.object, |
|
|
localization: PropTypes.object, |
|
|
selectedCount: PropTypes.number, |
|
|
sorting: PropTypes.bool, |
|
|
onAllSelected: PropTypes.func, |
|
|
onOrderChange: PropTypes.func, |
|
|
orderBy: PropTypes.number, |
|
|
orderDirection: PropTypes.string, |
|
|
actionsHeaderIndex: PropTypes.number, |
|
|
showActionsColumn: PropTypes.bool, |
|
|
showSelectAllCheckbox: PropTypes.bool, |
|
|
draggable: PropTypes.bool, |
|
|
thirdSortClick: PropTypes.bool, |
|
|
tooltip: PropTypes.string, |
|
|
}; |
|
|
|
|
|
export const styles = (theme) => ({ |
|
|
header: { |
|
|
|
|
|
position: "sticky", |
|
|
top: 0, |
|
|
zIndex: 10, |
|
|
backgroundColor: theme.palette.background.paper, |
|
|
}, |
|
|
}); |
|
|
|
|
|
export default withStyles(styles, { withTheme: true })(MTableHeader); |
|
|
|