fix: 兼容低版本浏览器配置table:autoFillHeight(不支持sticky) (#5020)

This commit is contained in:
meerkat 2022-07-29 19:19:42 +08:00 committed by GitHub
parent 27a8c60dc2
commit f81d18c7c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 70 additions and 27 deletions

View File

@ -961,8 +961,10 @@
}
> .#{$ns}Table-fixedTop {
.#{$ns}Table-fixedTop-shadow {
display: none;
}
}
> .#{$ns}Table-footToolbar {
margin-bottom: 0;

View File

@ -606,6 +606,7 @@ export default class Table extends React.Component<TableProps, object> {
}
componentDidMount() {
const {autoFillHeight, classPrefix: ns} = this.props;
const currentNode = findDOMNode(this) as HTMLElement;
let parent: HTMLElement | Window | null = getScrollParent(
currentNode,
@ -641,6 +642,11 @@ export default class Table extends React.Component<TableProps, object> {
this.affixDetect();
parent.addEventListener('scroll', this.affixDetect);
if (autoFillHeight) {
document
.querySelector<HTMLElement>(`.${ns}Table-content`)!
.addEventListener('scroll', this.affixDetect);
}
window.addEventListener('resize', this.affixDetect);
this.updateAutoFillHeight();
window.addEventListener('resize', this.updateAutoFillHeight);
@ -815,10 +821,15 @@ export default class Table extends React.Component<TableProps, object> {
}
componentWillUnmount() {
const {formItem} = this.props;
const {formItem, autoFillHeight, classPrefix: ns} = this.props;
const parent = this.parentNode;
parent && parent.removeEventListener('scroll', this.affixDetect);
if (autoFillHeight) {
document
.querySelector<HTMLElement>(`.${ns}Table-content`)!
.addEventListener('scroll', this.affixDetect);
}
window.removeEventListener('resize', this.affixDetect);
window.removeEventListener('resize', this.updateAutoFillHeight);
(this.updateTableInfoLazy as any).cancel();
@ -1059,33 +1070,61 @@ export default class Table extends React.Component<TableProps, object> {
return store.selectedRows.map(item => item.data);
}
/**
* Table-fixedTop
*/
affixDetect() {
if (!this.props.affixHeader || !this.table || this.props.autoFillHeight) {
const {
affixHeader,
classPrefix: ns,
affixOffsetTop,
env,
autoFillHeight
} = this.props;
if (!(affixHeader || autoFillHeight) || !this.table) {
// if (!this.props.affixHeader || !this.table || this.props.autoFillHeight) {
return;
}
const ns = this.props.classPrefix;
const dom = findDOMNode(this) as HTMLElement;
const clip = (this.table as HTMLElement).getBoundingClientRect();
const offsetY =
this.props.affixOffsetTop ?? this.props.env.affixOffsetTop ?? 0;
const headingHeight =
dom.querySelector(`.${ns}Table-heading`)?.getBoundingClientRect()
.height || 0;
const headerHeight =
dom.querySelector(`.${ns}Table-headToolbar`)?.getBoundingClientRect()
.height || 0;
const affixed =
clip.top - headerHeight - headingHeight < offsetY &&
clip.top + clip.height - 40 > offsetY;
const affixedDom = dom.querySelector(`.${ns}Table-fixedTop`) as HTMLElement;
const affixedDomHeight =
getComputedStyle(affixedDom).getPropertyValue('height');
if (autoFillHeight) {
//! 解决 sticky 不兼容的问题
const tableContentDom = document.querySelector<HTMLElement>(
`.${ns}Table-content`
)!;
const clip = tableContentDom.getBoundingClientRect();
const tableHeaderClip = affixedDom
.querySelector(`.${ns}Table-wrapper`)!
.getBoundingClientRect();
const offsetHeight =
affixedDom.getBoundingClientRect().height - tableHeaderClip.height;
const offsetY = clip.top - offsetHeight;
affixedDom.style.cssText += `top: ${offsetY}px;width: ${clip.width}px`;
affixedDom.classList.add('in');
} else {
// 配置了 affixHeader
const clip = (this.table as HTMLElement).getBoundingClientRect();
const offsetY = affixOffsetTop ?? env.affixOffsetTop ?? 0;
const headingHeight =
dom.querySelector(`.${ns}Table-heading`)?.getBoundingClientRect()
.height || 0;
const affixedShadowDom = dom.querySelector(
`.${ns}Table-fixedTop-shadow`
) as HTMLElement;
const affixedDomHeight =
getComputedStyle(affixedDom).getPropertyValue('height');
const affixed =
clip.top - headerHeight - headingHeight < offsetY &&
clip.top + clip.height - 40 > offsetY;
affixedDom.style.cssText += `top: ${offsetY}px;width: ${
(this.table.parentNode as HTMLElement).offsetWidth
@ -1097,6 +1136,8 @@ export default class Table extends React.Component<TableProps, object> {
affixed
? affixedDom.classList.add('in')
: affixedDom.classList.remove('in');
}
// store.markHeaderAffix(clip.top < offsetY && (clip.top + clip.height - 40) > offsetY);
}