first commit
This commit is contained in:
46
frontend/node_modules/rc-table/es/utils/fixUtil.js
generated
vendored
Normal file
46
frontend/node_modules/rc-table/es/utils/fixUtil.js
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
export function getCellFixedInfo(colStart, colEnd, columns, stickyOffsets, direction) {
|
||||
var startColumn = columns[colStart] || {};
|
||||
var endColumn = columns[colEnd] || {};
|
||||
var fixLeft;
|
||||
var fixRight;
|
||||
if (startColumn.fixed === 'left') {
|
||||
fixLeft = stickyOffsets.left[direction === 'rtl' ? colEnd : colStart];
|
||||
} else if (endColumn.fixed === 'right') {
|
||||
fixRight = stickyOffsets.right[direction === 'rtl' ? colStart : colEnd];
|
||||
}
|
||||
var lastFixLeft = false;
|
||||
var firstFixRight = false;
|
||||
var lastFixRight = false;
|
||||
var firstFixLeft = false;
|
||||
var nextColumn = columns[colEnd + 1];
|
||||
var prevColumn = columns[colStart - 1];
|
||||
|
||||
// need show shadow only when canLastFix is true
|
||||
var canLastFix = nextColumn && !nextColumn.fixed || prevColumn && !prevColumn.fixed || columns.every(function (col) {
|
||||
return col.fixed === 'left';
|
||||
});
|
||||
if (direction === 'rtl') {
|
||||
if (fixLeft !== undefined) {
|
||||
var prevFixLeft = prevColumn && prevColumn.fixed === 'left';
|
||||
firstFixLeft = !prevFixLeft && canLastFix;
|
||||
} else if (fixRight !== undefined) {
|
||||
var nextFixRight = nextColumn && nextColumn.fixed === 'right';
|
||||
lastFixRight = !nextFixRight && canLastFix;
|
||||
}
|
||||
} else if (fixLeft !== undefined) {
|
||||
var nextFixLeft = nextColumn && nextColumn.fixed === 'left';
|
||||
lastFixLeft = !nextFixLeft && canLastFix;
|
||||
} else if (fixRight !== undefined) {
|
||||
var prevFixRight = prevColumn && prevColumn.fixed === 'right';
|
||||
firstFixRight = !prevFixRight && canLastFix;
|
||||
}
|
||||
return {
|
||||
fixLeft: fixLeft,
|
||||
fixRight: fixRight,
|
||||
lastFixLeft: lastFixLeft,
|
||||
firstFixRight: firstFixRight,
|
||||
lastFixRight: lastFixRight,
|
||||
firstFixLeft: firstFixLeft,
|
||||
isSticky: stickyOffsets.isSticky
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user