Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
12 kB
/* eslint-disable no-unused-vars */
import TableCell from "@mui/material/TableCell";
import TableRow from "@mui/material/TableRow";
import Typography from "@mui/material/Typography";
import PropTypes from "prop-types";
import * as React from "react";
import { byString, setByString } from "../utils";
import * as CommonValues from "../utils/common-values";
/* eslint-enable no-unused-vars */
export default class MTableEditRow extends React.Component {
constructor(props) {
super(props);
this.state = {
data: props.data
? JSON.parse(JSON.stringify(props.data))
: this.createRowData(),
};
}
createRowData() {
return this.props.columns
.filter((column) => "initialEditValue" in column && column.field)
.reduce((prev, column) => {
prev[column.field] = column.initialEditValue;
return prev;
}, {});
}
renderColumns() {
const size = CommonValues.elementSize(this.props);
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) => {
const value =
typeof this.state.data[columnDef.field] !== "undefined"
? this.state.data[columnDef.field]
: byString(this.state.data, columnDef.field);
const getCellStyle = (columnDef, value) => {
let cellStyle = {
color: "inherit",
};
if (typeof columnDef.cellStyle === "function") {
cellStyle = {
...cellStyle,
...columnDef.cellStyle(value, this.props.data),
};
} else {
cellStyle = { ...cellStyle, ...columnDef.cellStyle };
}
if (columnDef.disableClick) {
cellStyle.cursor = "default";
}
return { ...cellStyle };
};
const style = {};
if (index === 0) {
style.paddingLeft = 24 + this.props.level * 20;
}
let allowEditing = false;
if (columnDef.editable === undefined) {
allowEditing = true;
}
if (columnDef.editable === "always") {
allowEditing = true;
}
if (columnDef.editable === "onAdd" && this.props.mode === "add") {
allowEditing = true;
}
if (columnDef.editable === "onUpdate" && this.props.mode === "update") {
allowEditing = true;
}
if (typeof columnDef.editable === "function") {
allowEditing = columnDef.editable(columnDef, this.props.data);
}
if (!columnDef.field || !allowEditing) {
const readonlyValue = this.props.getFieldValue(
this.state.data,
columnDef
);
return (
<this.props.components.Cell
size={size}
icons={this.props.icons}
columnDef={columnDef}
value={readonlyValue}
key={columnDef.tableData.id}
rowData={this.props.data}
style={getCellStyle(columnDef, value)}
/>
);
} else {
const { editComponent, ...cellProps } = columnDef;
const EditComponent =
editComponent || this.props.components.EditField;
let error = { isValid: true, helperText: "" };
if (columnDef.validate) {
const validateResponse = columnDef.validate(this.state.data);
switch (typeof validateResponse) {
case "object":
error = { ...validateResponse };
break;
case "boolean":
error = { isValid: validateResponse, helperText: "" };
break;
case "string":
error = { isValid: false, helperText: validateResponse };
break;
}
}
return (
<TableCell
size={size}
key={columnDef.tableData.id}
align={
["numeric"].indexOf(columnDef.type) !== -1 ? "right" : "left"
}
style={getCellStyle(columnDef, value)}
>
<EditComponent
key={columnDef.tableData.id}
columnDef={cellProps}
value={value}
error={!error.isValid}
helperText={error.helperText}
locale={this.props.localization.dateTimePickerLocalization}
rowData={this.state.data}
onChange={(value) => {
const data = { ...this.state.data };
setByString(data, columnDef.field, value);
// data[columnDef.field] = value;
this.setState({ data }, () => {
if (this.props.onBulkEditRowChanged) {
this.props.onBulkEditRowChanged(this.props.data, data);
}
});
}}
onRowDataChange={(data) => {
this.setState({ data }, () => {
if (this.props.onBulkEditRowChanged) {
this.props.onBulkEditRowChanged(this.props.data, data);
}
});
}}
/>
</TableCell>
);
}
});
return mapArr;
}
handleSave = () => {
const newData = this.state.data;
delete newData.tableData;
this.props.onEditingApproved(
this.props.mode,
this.state.data,
this.props.data
);
};
renderActions() {
if (this.props.mode === "bulk") {
return <TableCell padding="none" key="key-actions-column" />;
}
const size = CommonValues.elementSize(this.props);
const localization = {
...MTableEditRow.defaultProps.localization,
...this.props.localization,
};
const isValid = this.props.columns.every((column) => {
if (column.validate) {
const response = column.validate(this.state.data);
switch (typeof response) {
case "object":
return response.isValid;
case "string":
return response.length === 0;
case "boolean":
return response;
}
} else {
return true;
}
});
const actions = [
{
icon: this.props.icons.Check,
tooltip: localization.saveTooltip,
disabled: !isValid,
onClick: this.handleSave,
},
{
icon: this.props.icons.Clear,
tooltip: localization.cancelTooltip,
onClick: () => {
this.props.onEditingCanceled(this.props.mode, this.props.data);
},
},
];
return (
<TableCell
size={size}
padding="none"
key="key-actions-column"
style={{
width: 42 * actions.length,
padding: "0px 5px",
...this.props.options.editCellStyle,
}}
>
<div style={{ display: "flex" }}>
<this.props.components.Actions
data={this.props.data}
actions={actions}
components={this.props.components}
size={size}
/>
</div>
</TableCell>
);
}
getStyle() {
const style = {
// boxShadow: '1px 1px 1px 1px rgba(0,0,0,0.2)',
borderBottom: "1px solid red",
};
return style;
}
handleKeyDown = (e) => {
if (e.keyCode === 13 && e.target.type !== "textarea") {
this.handleSave();
} else if (e.keyCode === 13 && e.target.type === "textarea" && e.shiftKey) {
this.handleSave();
} else if (e.keyCode === 27) {
this.props.onEditingCanceled(this.props.mode, this.props.data);
}
};
render() {
const size = CommonValues.elementSize(this.props);
const localization = {
...MTableEditRow.defaultProps.localization,
...this.props.localization,
};
let columns;
if (
this.props.mode === "add" ||
this.props.mode === "update" ||
this.props.mode === "bulk"
) {
columns = this.renderColumns();
} else {
const colSpan = this.props.columns.filter(
(columnDef) =>
!columnDef.hidden && !(columnDef.tableData.groupOrder > -1)
).length;
columns = [
<TableCell
size={size}
padding={
this.props.options.actionsColumnIndex === 0 ? "none" : undefined
}
key="key-edit-cell"
colSpan={colSpan}
>
<Typography variant="h6">{localization.deleteText}</Typography>
</TableCell>,
];
}
if (this.props.options.selection) {
columns.splice(
0,
0,
<TableCell padding="none" key="key-selection-cell" />
);
}
if (this.props.isTreeData) {
columns.splice(
0,
0,
<TableCell padding="none" key="key-tree-data-cell" />
);
}
if (this.props.options.actionsColumnIndex === -1) {
columns.push(this.renderActions());
} else if (this.props.options.actionsColumnIndex >= 0) {
let endPos = 0;
if (this.props.options.selection) {
endPos = 1;
}
if (this.props.isTreeData) {
endPos = 1;
if (this.props.options.selection) {
columns.splice(1, 1);
}
}
columns.splice(
this.props.options.actionsColumnIndex + endPos,
0,
this.renderActions()
);
}
// Lastly we add detail panel icon
if (this.props.detailPanel) {
const aligment = this.props.options.detailPanelColumnAlignment;
const index = aligment === "left" ? 0 : columns.length;
columns.splice(
index,
0,
<TableCell padding="none" key="key-detail-panel-cell" />
);
}
this.props.columns
.filter((columnDef) => columnDef.tableData.groupOrder > -1)
.forEach((columnDef) => {
columns.splice(
0,
0,
<TableCell
padding="none"
key={"key-group-cell" + columnDef.tableData.id}
/>
);
});
const {
detailPanel,
isTreeData,
onRowClick,
onRowSelected,
onTreeExpandChanged,
onToggleDetailPanel,
onEditingApproved,
onEditingCanceled,
getFieldValue,
components,
icons,
columns: columnsProp, // renamed to not conflict with definition above
localization: localizationProp, // renamed to not conflict with definition above
options,
actions,
errorState,
onBulkEditRowChanged,
scrollWidth,
...rowProps
} = this.props;
return (
<>
<TableRow
onKeyDown={this.handleKeyDown}
{...rowProps}
style={this.getStyle()}
>
{columns}
</TableRow>
</>
);
}
}
MTableEditRow.defaultProps = {
actions: [],
index: 0,
options: {},
path: [],
localization: {
saveTooltip: "Save",
cancelTooltip: "Cancel",
deleteText: "Are you sure you want to delete this row?",
},
onBulkEditRowChanged: () => {},
};
MTableEditRow.propTypes = {
actions: PropTypes.array,
icons: PropTypes.any.isRequired,
index: PropTypes.number.isRequired,
data: PropTypes.object,
detailPanel: PropTypes.oneOfType([
PropTypes.func,
PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.object, PropTypes.func])),
]),
options: PropTypes.object.isRequired,
onRowSelected: PropTypes.func,
path: PropTypes.arrayOf(PropTypes.number),
columns: PropTypes.array,
onRowClick: PropTypes.func,
onEditingApproved: PropTypes.func,
onEditingCanceled: PropTypes.func,
localization: PropTypes.object,
getFieldValue: PropTypes.func,
errorState: PropTypes.oneOfType([PropTypes.object, PropTypes.bool]),
onBulkEditRowChanged: PropTypes.func,
};