|
|
@ -1,7 +1,7 @@ |
|
|
|
import classNames from 'classnames'; |
|
|
|
import ResizeObserver from 'rc-resize-observer'; |
|
|
|
import omit from 'rc-util/lib/omit'; |
|
|
|
import React, { createRef, forwardRef, useContext } from 'react'; |
|
|
|
import React, { useContext, useEffect, useMemo, useRef, useState } from 'react'; |
|
|
|
import throttleByAnimationFrame from '../_util/throttleByAnimationFrame'; |
|
|
|
import type { ConfigConsumerProps } from '../config-provider'; |
|
|
|
import { ConfigContext } from '../config-provider'; |
|
|
@ -39,10 +39,6 @@ export interface AffixProps { |
|
|
|
children: React.ReactNode; |
|
|
|
} |
|
|
|
|
|
|
|
interface InternalAffixProps extends AffixProps { |
|
|
|
affixPrefixCls: string; |
|
|
|
} |
|
|
|
|
|
|
|
enum AffixStatus { |
|
|
|
None, |
|
|
|
Prepare, |
|
|
@ -56,263 +52,152 @@ export interface AffixState { |
|
|
|
prevTarget: Window | HTMLElement | null; |
|
|
|
} |
|
|
|
|
|
|
|
class InternalAffix extends React.Component<InternalAffixProps, AffixState> { |
|
|
|
static contextType = ConfigContext; |
|
|
|
|
|
|
|
state: AffixState = { |
|
|
|
status: AffixStatus.None, |
|
|
|
lastAffix: false, |
|
|
|
prevTarget: null, |
|
|
|
}; |
|
|
|
|
|
|
|
private placeholderNodeRef = createRef<HTMLDivElement>(); |
|
|
|
|
|
|
|
private fixedNodeRef = createRef<HTMLDivElement>(); |
|
|
|
|
|
|
|
private timer: NodeJS.Timeout | null; |
|
|
|
|
|
|
|
context: ConfigConsumerProps; |
|
|
|
|
|
|
|
private getTargetFunc() { |
|
|
|
const { getTargetContainer } = this.context; |
|
|
|
const { target } = this.props; |
|
|
|
const Affix: React.FC<AffixProps> = (props) => { |
|
|
|
const { |
|
|
|
rootClassName: customizeRootClassName, |
|
|
|
children, |
|
|
|
offsetBottom, |
|
|
|
offsetTop, |
|
|
|
prefixCls: customizePrefixCls, |
|
|
|
onChange, |
|
|
|
target: customizeTarget, |
|
|
|
} = props; |
|
|
|
|
|
|
|
const [lastAffix, setLastAffix] = useState<boolean>(false); |
|
|
|
const [affixStyle, setAffixStyle] = useState<React.CSSProperties>(); |
|
|
|
const [placeholderStyle, setPlaceholderStyle] = useState<React.CSSProperties>(); |
|
|
|
const placeholderNodeRef = useRef<HTMLDivElement>(null); |
|
|
|
const fixedNodeRef = useRef<HTMLDivElement>(null); |
|
|
|
const timerRef = useRef<NodeJS.Timeout | null>(null); |
|
|
|
|
|
|
|
const { getTargetContainer, getPrefixCls } = useContext<ConfigConsumerProps>(ConfigContext); |
|
|
|
|
|
|
|
if (target !== undefined) { |
|
|
|
return target; |
|
|
|
} |
|
|
|
|
|
|
|
return getTargetContainer ?? getDefaultTarget; |
|
|
|
} |
|
|
|
|
|
|
|
addListeners = () => { |
|
|
|
const targetFunc = this.getTargetFunc(); |
|
|
|
const target = targetFunc?.(); |
|
|
|
const { prevTarget } = this.state; |
|
|
|
if (prevTarget !== target) { |
|
|
|
TRIGGER_EVENTS.forEach((eventName) => { |
|
|
|
prevTarget?.removeEventListener(eventName, this.lazyUpdatePosition); |
|
|
|
target?.addEventListener(eventName, this.lazyUpdatePosition); |
|
|
|
}); |
|
|
|
this.updatePosition(); |
|
|
|
this.setState({ prevTarget: target }); |
|
|
|
} |
|
|
|
}; |
|
|
|
const affixPrefixCls = getPrefixCls('affix', customizePrefixCls); |
|
|
|
|
|
|
|
removeListeners = () => { |
|
|
|
if (this.timer) { |
|
|
|
clearTimeout(this.timer); |
|
|
|
this.timer = null; |
|
|
|
} |
|
|
|
const { prevTarget } = this.state; |
|
|
|
const targetFunc = this.getTargetFunc(); |
|
|
|
const newTarget = targetFunc?.(); |
|
|
|
TRIGGER_EVENTS.forEach((eventName) => { |
|
|
|
newTarget?.removeEventListener(eventName, this.lazyUpdatePosition); |
|
|
|
prevTarget?.removeEventListener(eventName, this.lazyUpdatePosition); |
|
|
|
}); |
|
|
|
this.updatePosition.cancel(); |
|
|
|
// https://github.com/ant-design/ant-design/issues/22683
|
|
|
|
this.lazyUpdatePosition.cancel(); |
|
|
|
}; |
|
|
|
const target = useMemo<ReturnType<NonNullable<AffixProps['target']>>>( |
|
|
|
() => (customizeTarget ?? getTargetContainer ?? getDefaultTarget)(), |
|
|
|
[customizeTarget, getTargetContainer], |
|
|
|
); |
|
|
|
|
|
|
|
// Event handler
|
|
|
|
componentDidMount() { |
|
|
|
// [Legacy] Wait for parent component ref has its value.
|
|
|
|
// We should use target as directly element instead of function which makes element check hard.
|
|
|
|
this.timer = setTimeout(this.addListeners); |
|
|
|
} |
|
|
|
const memoOffsetTop = useMemo<number>( |
|
|
|
() => (offsetBottom === undefined && offsetTop === undefined ? 0 : (offsetTop as number)), |
|
|
|
[offsetBottom, offsetTop], |
|
|
|
); |
|
|
|
|
|
|
|
componentDidUpdate(prevProps: AffixProps) { |
|
|
|
this.addListeners(); |
|
|
|
if ( |
|
|
|
prevProps.offsetTop !== this.props.offsetTop || |
|
|
|
prevProps.offsetBottom !== this.props.offsetBottom |
|
|
|
) { |
|
|
|
this.updatePosition(); |
|
|
|
const measure = () => { |
|
|
|
if (!target || !fixedNodeRef.current || !placeholderNodeRef.current) { |
|
|
|
return; |
|
|
|
} |
|
|
|
this.measure(); |
|
|
|
} |
|
|
|
|
|
|
|
componentWillUnmount() { |
|
|
|
this.removeListeners(); |
|
|
|
} |
|
|
|
|
|
|
|
getOffsetTop = () => { |
|
|
|
const { offsetBottom, offsetTop } = this.props; |
|
|
|
return offsetBottom === undefined && offsetTop === undefined ? 0 : offsetTop; |
|
|
|
}; |
|
|
|
|
|
|
|
getOffsetBottom = () => this.props.offsetBottom; |
|
|
|
|
|
|
|
// =================== Measure ===================
|
|
|
|
measure = () => { |
|
|
|
const { status, lastAffix } = this.state; |
|
|
|
const { onChange } = this.props; |
|
|
|
const targetFunc = this.getTargetFunc(); |
|
|
|
const placeholderRect = getTargetRect(placeholderNodeRef.current); |
|
|
|
if ( |
|
|
|
status !== AffixStatus.Prepare || |
|
|
|
!this.fixedNodeRef.current || |
|
|
|
!this.placeholderNodeRef.current || |
|
|
|
!targetFunc |
|
|
|
placeholderRect.top === 0 && |
|
|
|
placeholderRect.left === 0 && |
|
|
|
placeholderRect.width === 0 && |
|
|
|
placeholderRect.height === 0 |
|
|
|
) { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
const offsetTop = this.getOffsetTop(); |
|
|
|
const offsetBottom = this.getOffsetBottom(); |
|
|
|
|
|
|
|
const targetNode = targetFunc(); |
|
|
|
if (targetNode) { |
|
|
|
const newState: Partial<AffixState> = { |
|
|
|
status: AffixStatus.None, |
|
|
|
}; |
|
|
|
const placeholderRect = getTargetRect(this.placeholderNodeRef.current); |
|
|
|
|
|
|
|
if ( |
|
|
|
placeholderRect.top === 0 && |
|
|
|
placeholderRect.left === 0 && |
|
|
|
placeholderRect.width === 0 && |
|
|
|
placeholderRect.height === 0 |
|
|
|
) { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
const targetRect = getTargetRect(targetNode); |
|
|
|
const fixedTop = getFixedTop(placeholderRect, targetRect, offsetTop); |
|
|
|
const fixedBottom = getFixedBottom(placeholderRect, targetRect, offsetBottom); |
|
|
|
|
|
|
|
if (fixedTop !== undefined) { |
|
|
|
newState.affixStyle = { |
|
|
|
position: 'fixed', |
|
|
|
top: fixedTop, |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}; |
|
|
|
newState.placeholderStyle = { |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}; |
|
|
|
} else if (fixedBottom !== undefined) { |
|
|
|
newState.affixStyle = { |
|
|
|
position: 'fixed', |
|
|
|
bottom: fixedBottom, |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}; |
|
|
|
newState.placeholderStyle = { |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}; |
|
|
|
} |
|
|
|
const targetRect = getTargetRect(target); |
|
|
|
const fixedTop = getFixedTop(placeholderRect, targetRect, memoOffsetTop); |
|
|
|
const fixedBottom = getFixedBottom(placeholderRect, targetRect, offsetBottom); |
|
|
|
|
|
|
|
newState.lastAffix = !!newState.affixStyle; |
|
|
|
if (onChange && lastAffix !== newState.lastAffix) { |
|
|
|
onChange(newState.lastAffix); |
|
|
|
} |
|
|
|
this.setState(newState as AffixState); |
|
|
|
if (fixedTop !== undefined) { |
|
|
|
setAffixStyle({ |
|
|
|
position: 'fixed', |
|
|
|
top: fixedTop, |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}); |
|
|
|
setPlaceholderStyle({ |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}); |
|
|
|
} else if (fixedBottom !== undefined) { |
|
|
|
setAffixStyle({ |
|
|
|
position: 'fixed', |
|
|
|
bottom: fixedBottom, |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}); |
|
|
|
setPlaceholderStyle({ |
|
|
|
width: placeholderRect.width, |
|
|
|
height: placeholderRect.height, |
|
|
|
}); |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
prepareMeasure = () => { |
|
|
|
// event param is used before. Keep compatible ts define here.
|
|
|
|
this.setState({ |
|
|
|
status: AffixStatus.Prepare, |
|
|
|
affixStyle: undefined, |
|
|
|
placeholderStyle: undefined, |
|
|
|
setLastAffix((prevState) => { |
|
|
|
if (lastAffix !== prevState) { |
|
|
|
onChange?.(!!affixStyle); |
|
|
|
return !!affixStyle; |
|
|
|
} |
|
|
|
return lastAffix; |
|
|
|
}); |
|
|
|
|
|
|
|
// Test if `updatePosition` called
|
|
|
|
if (process.env.NODE_ENV === 'test') { |
|
|
|
const { onTestUpdatePosition } = this.props as any; |
|
|
|
onTestUpdatePosition?.(); |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
updatePosition = throttleByAnimationFrame(() => { |
|
|
|
this.prepareMeasure(); |
|
|
|
}); |
|
|
|
|
|
|
|
lazyUpdatePosition = throttleByAnimationFrame(() => { |
|
|
|
const targetFunc = this.getTargetFunc(); |
|
|
|
const { affixStyle } = this.state; |
|
|
|
|
|
|
|
const lazyUpdatePosition = throttleByAnimationFrame(() => { |
|
|
|
// Check position change before measure to make Safari smooth
|
|
|
|
if (targetFunc && affixStyle) { |
|
|
|
const offsetTop = this.getOffsetTop(); |
|
|
|
const offsetBottom = this.getOffsetBottom(); |
|
|
|
|
|
|
|
const targetNode = targetFunc(); |
|
|
|
if (targetNode && this.placeholderNodeRef.current) { |
|
|
|
const targetRect = getTargetRect(targetNode); |
|
|
|
const placeholderRect = getTargetRect(this.placeholderNodeRef.current); |
|
|
|
const fixedTop = getFixedTop(placeholderRect, targetRect, offsetTop); |
|
|
|
const fixedBottom = getFixedBottom(placeholderRect, targetRect, offsetBottom); |
|
|
|
|
|
|
|
if ( |
|
|
|
(fixedTop !== undefined && affixStyle.top === fixedTop) || |
|
|
|
(fixedBottom !== undefined && affixStyle.bottom === fixedBottom) |
|
|
|
) { |
|
|
|
return; |
|
|
|
} |
|
|
|
if (target && placeholderNodeRef.current) { |
|
|
|
const targetRect = getTargetRect(target); |
|
|
|
const placeholderRect = getTargetRect(placeholderNodeRef.current); |
|
|
|
const fixedTop = getFixedTop(placeholderRect, targetRect, memoOffsetTop); |
|
|
|
const fixedBottom = getFixedBottom(placeholderRect, targetRect, offsetBottom); |
|
|
|
if ( |
|
|
|
(fixedTop !== undefined && affixStyle?.top === fixedTop) || |
|
|
|
(fixedBottom !== undefined && affixStyle?.bottom === fixedBottom) |
|
|
|
) { |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Directly call prepare measure since it's already throttled.
|
|
|
|
this.prepareMeasure(); |
|
|
|
measure(); |
|
|
|
}); |
|
|
|
|
|
|
|
// =================== Render ===================
|
|
|
|
render() { |
|
|
|
const { affixStyle, placeholderStyle } = this.state; |
|
|
|
const { affixPrefixCls, rootClassName, children } = this.props; |
|
|
|
const className = classNames(affixStyle && rootClassName, { |
|
|
|
[affixPrefixCls]: !!affixStyle, |
|
|
|
useEffect(() => { |
|
|
|
timerRef.current = setTimeout(() => { |
|
|
|
TRIGGER_EVENTS.forEach((eventName) => { |
|
|
|
target?.addEventListener(eventName, lazyUpdatePosition); |
|
|
|
}); |
|
|
|
measure(); |
|
|
|
}); |
|
|
|
return () => { |
|
|
|
if (timerRef.current) { |
|
|
|
clearTimeout(timerRef.current); |
|
|
|
timerRef.current = null; |
|
|
|
} |
|
|
|
TRIGGER_EVENTS.forEach((eventName) => { |
|
|
|
target?.removeEventListener(eventName, lazyUpdatePosition); |
|
|
|
}); |
|
|
|
|
|
|
|
let props = omit(this.props, [ |
|
|
|
'prefixCls', |
|
|
|
'offsetTop', |
|
|
|
'offsetBottom', |
|
|
|
'target', |
|
|
|
'onChange', |
|
|
|
'affixPrefixCls', |
|
|
|
'rootClassName', |
|
|
|
]); |
|
|
|
// Omit this since `onTestUpdatePosition` only works on test.
|
|
|
|
if (process.env.NODE_ENV === 'test') { |
|
|
|
props = omit(props as typeof props & { onTestUpdatePosition: any }, ['onTestUpdatePosition']); |
|
|
|
} |
|
|
|
|
|
|
|
return ( |
|
|
|
<ResizeObserver onResize={this.updatePosition}> |
|
|
|
<div {...props} ref={this.placeholderNodeRef}> |
|
|
|
{affixStyle && <div style={placeholderStyle} aria-hidden="true" />} |
|
|
|
<div className={className} ref={this.fixedNodeRef} style={affixStyle}> |
|
|
|
<ResizeObserver onResize={this.updatePosition}>{children}</ResizeObserver> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</ResizeObserver> |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
// just use in test
|
|
|
|
export type InternalAffixClass = InternalAffix; |
|
|
|
|
|
|
|
const Affix = forwardRef<InternalAffix, AffixProps>((props, ref) => { |
|
|
|
const { prefixCls: customizePrefixCls, rootClassName } = props; |
|
|
|
const { getPrefixCls } = useContext<ConfigConsumerProps>(ConfigContext); |
|
|
|
const affixPrefixCls = getPrefixCls('affix', customizePrefixCls); |
|
|
|
|
|
|
|
lazyUpdatePosition.cancel(); |
|
|
|
}; |
|
|
|
}, [offsetTop, offsetBottom, customizeTarget, getTargetContainer]); |
|
|
|
const [wrapSSR, hashId] = useStyle(affixPrefixCls); |
|
|
|
const rootClassName = classNames(customizeRootClassName, hashId); |
|
|
|
|
|
|
|
const AffixProps: InternalAffixProps = { |
|
|
|
...props, |
|
|
|
affixPrefixCls, |
|
|
|
rootClassName: classNames(rootClassName, hashId), |
|
|
|
}; |
|
|
|
const className = classNames(affixStyle && rootClassName, { |
|
|
|
[affixPrefixCls]: !!affixStyle, |
|
|
|
}); |
|
|
|
|
|
|
|
return wrapSSR(<InternalAffix {...AffixProps} ref={ref} />); |
|
|
|
}); |
|
|
|
const divProps = omit(props, [ |
|
|
|
'prefixCls', |
|
|
|
'offsetTop', |
|
|
|
'offsetBottom', |
|
|
|
'target', |
|
|
|
'onChange', |
|
|
|
'rootClassName', |
|
|
|
]); |
|
|
|
|
|
|
|
return wrapSSR( |
|
|
|
<ResizeObserver onResize={lazyUpdatePosition}> |
|
|
|
<div {...divProps} ref={placeholderNodeRef}> |
|
|
|
{affixStyle && <div style={placeholderStyle} aria-hidden="true" />} |
|
|
|
<div className={className} ref={fixedNodeRef} style={affixStyle}> |
|
|
|
<ResizeObserver onResize={lazyUpdatePosition}>{children}</ResizeObserver> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</ResizeObserver>, |
|
|
|
); |
|
|
|
}; |
|
|
|
|
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
|
|
Affix.displayName = 'Affix'; |
|
|
|