Skip to content

Commit

Permalink
Fix #3139 : After resizing and reordering column takes the size of th…
Browse files Browse the repository at this point in the history
…e column it is displacing (#4410)

* After resizing and reordering column takes the size of the column it is displacing

* fixed eslint issue

* After resizing and reordering column takes the size of the column it is displacing

* fixed eslint issue

* formatted Datable.js

* refactored

* fixed lint issue

---------

Co-authored-by: Melloware <mellowaredev@gmail.com>
  • Loading branch information
shuklabhisekh and melloware authored Aug 11, 2023
1 parent 2ae14fe commit e91ae5b
Showing 1 changed file with 34 additions and 20 deletions.
54 changes: 34 additions & 20 deletions components/lib/datatable/DataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,26 @@ export const DataTable = React.forwardRef((inProps, ref) => {
}
};

const addColumnWidthStyles = (widths) => {
createStyleElement();
let innerHTML = '';
let selector = `.p-datatable[${attributeSelector.current}] > .p-datatable-wrapper ${isVirtualScrollerDisabled() ? '' : '> .p-virtualscroller'} > .p-datatable-table`;

widths.forEach((width, index) => {
let style = `width: ${width}px !important; max-width: ${width}px !important`;

innerHTML += `
${selector} > .p-datatable-thead > tr > th:nth-child(${index + 1}),
${selector} > .p-datatable-tbody > tr > td:nth-child(${index + 1}),
${selector} > .p-datatable-tfoot > tr > td:nth-child(${index + 1}) {
${style}
}
`;
});

styleElement.current.innerHTML = innerHTML;
};

const restoreColumnWidths = () => {
if (columnWidthsState.current) {
let widths = columnWidthsState.current.split(',');
Expand All @@ -388,24 +408,7 @@ export const DataTable = React.forwardRef((inProps, ref) => {
}

if (ObjectUtils.isNotEmpty(widths)) {
createStyleElement();

let innerHTML = '';
let selector = `.p-datatable[${attributeSelector.current}] > .p-datatable-wrapper ${isVirtualScrollerDisabled() ? '' : '> .p-virtualscroller'} > .p-datatable-table`;

widths.forEach((width, index) => {
let style = `width: ${width}px !important; max-width: ${width}px !important`;

innerHTML += `
${selector} > .p-datatable-thead > tr > th:nth-child(${index + 1}),
${selector} > .p-datatable-tbody > tr > td:nth-child(${index + 1}),
${selector} > .p-datatable-tfoot > tr > td:nth-child(${index + 1}) {
${style}
}
`;
});

styleElement.current.innerHTML = innerHTML;
addColumnWidthStyles(widths);
}
}
};
Expand Down Expand Up @@ -684,15 +687,17 @@ export const DataTable = React.forwardRef((inProps, ref) => {
const dropHeaderOffset = DomHandler.getOffset(dropHeader);
const targetLeft = dropHeaderOffset.left - containerOffset.left;
const columnCenter = dropHeaderOffset.left + dropHeader.offsetWidth / 2;
let dragIndex = DomHandler.index(draggedColumnElement.current);
let dropIndex = DomHandler.index(findParentHeader(event.currentTarget));

reorderIndicatorUpRef.current.style.top = dropHeaderOffset.top - containerOffset.top - (colReorderIconHeight.current - 1) + 'px';
reorderIndicatorDownRef.current.style.top = dropHeaderOffset.top - containerOffset.top + dropHeader.offsetHeight + 'px';

if (event.pageX > columnCenter) {
if (event.pageX > columnCenter && dragIndex < dropIndex) {
reorderIndicatorUpRef.current.style.left = targetLeft + dropHeader.offsetWidth - Math.ceil(colReorderIconWidth.current / 2) + 'px';
reorderIndicatorDownRef.current.style.left = targetLeft + dropHeader.offsetWidth - Math.ceil(colReorderIconWidth.current / 2) + 'px';
dropPosition.current = 1;
} else {
} else if (dragIndex > dropIndex) {
reorderIndicatorUpRef.current.style.left = targetLeft - Math.ceil(colReorderIconWidth.current / 2) + 'px';
reorderIndicatorDownRef.current.style.left = targetLeft - Math.ceil(colReorderIconWidth.current / 2) + 'px';
dropPosition.current = -1;
Expand Down Expand Up @@ -733,6 +738,15 @@ export const DataTable = React.forwardRef((inProps, ref) => {
let isSameColumn = (col1, col2) => (getColumnProp(col1, 'columnKey') || getColumnProp(col2, 'columnKey') ? ObjectUtils.equals(col1.props, col2.props, 'columnKey') : ObjectUtils.equals(col1.props, col2.props, 'field'));
let dragColIndex = columns.findIndex((child) => isSameColumn(child, draggedColumn.current));
let dropColIndex = columns.findIndex((child) => isSameColumn(child, column));
let widths = [];
let headers = DomHandler.find(tableRef.current, '.p-datatable-thead > tr > th');

headers.forEach((header) => widths.push(DomHandler.getOuterWidth(header)));
const movedItem = widths.find((items, index) => index === dragColIndex);
const remainingItems = widths.filter((items, index) => index !== dragColIndex);
const reorderedWidths = [...remainingItems.slice(0, dropColIndex), movedItem, ...remainingItems.slice(dropColIndex)];

addColumnWidthStyles(reorderedWidths);

if (dropColIndex < dragColIndex && dropPosition.current === 1) {
dropColIndex++;
Expand Down

0 comments on commit e91ae5b

Please sign in to comment.