You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.6 KiB
122 lines
3.6 KiB
import VerticalAlignTopOutlined from '@ant-design/icons/VerticalAlignTopOutlined';
|
|
import classNames from 'classnames';
|
|
import CSSMotion from 'rc-motion';
|
|
import omit from 'rc-util/lib/omit';
|
|
import * as React from 'react';
|
|
import type { ConfigConsumerProps } from '../config-provider';
|
|
import { ConfigContext } from '../config-provider';
|
|
import getScroll from '../_util/getScroll';
|
|
import { cloneElement } from '../_util/reactNode';
|
|
import scrollTo from '../_util/scrollTo';
|
|
import throttleByAnimationFrame from '../_util/throttleByAnimationFrame';
|
|
import warning from '../_util/warning';
|
|
import useStyle from './style';
|
|
|
|
export interface BackTopProps {
|
|
visibilityHeight?: number;
|
|
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
target?: () => HTMLElement | Window | Document;
|
|
prefixCls?: string;
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
rootClassName?: string;
|
|
style?: React.CSSProperties;
|
|
duration?: number;
|
|
}
|
|
|
|
const BackTop: React.FC<BackTopProps> = (props) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
visibilityHeight = 400,
|
|
target,
|
|
onClick,
|
|
duration = 450,
|
|
} = props;
|
|
const [visible, setVisible] = React.useState<boolean>(visibilityHeight === 0);
|
|
|
|
const ref = React.useRef<HTMLDivElement>(null);
|
|
|
|
const getDefaultTarget = (): HTMLElement | Document | Window =>
|
|
ref.current && ref.current.ownerDocument ? ref.current.ownerDocument : window;
|
|
|
|
const handleScroll = throttleByAnimationFrame(
|
|
(e: React.UIEvent<HTMLElement, UIEvent> | { target: any }) => {
|
|
const scrollTop = getScroll(e.target, true);
|
|
setVisible(scrollTop >= visibilityHeight);
|
|
},
|
|
);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
warning(false, 'BackTop', '`BackTop` is deprecated, please use `FloatButton.BackTop` instead.');
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
const getTarget = target || getDefaultTarget;
|
|
const container = getTarget();
|
|
handleScroll({ target: container });
|
|
container?.addEventListener('scroll', handleScroll);
|
|
return () => {
|
|
handleScroll.cancel();
|
|
container?.removeEventListener('scroll', handleScroll);
|
|
};
|
|
}, [target]);
|
|
|
|
const scrollToTop = (e: React.MouseEvent<HTMLDivElement>) => {
|
|
scrollTo(0, { getContainer: target || getDefaultTarget, duration });
|
|
onClick?.(e);
|
|
};
|
|
|
|
const { getPrefixCls, direction } = React.useContext<ConfigConsumerProps>(ConfigContext);
|
|
|
|
const prefixCls = getPrefixCls('back-top', customizePrefixCls);
|
|
const rootPrefixCls = getPrefixCls();
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
const classString = classNames(
|
|
hashId,
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
rootClassName,
|
|
);
|
|
|
|
// fix https://fb.me/react-unknown-prop
|
|
const divProps = omit(props, [
|
|
'prefixCls',
|
|
'className',
|
|
'rootClassName',
|
|
'children',
|
|
'visibilityHeight',
|
|
'target',
|
|
]);
|
|
|
|
const defaultElement = (
|
|
<div className={`${prefixCls}-content`}>
|
|
<div className={`${prefixCls}-icon`}>
|
|
<VerticalAlignTopOutlined />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return wrapSSR(
|
|
<div {...divProps} className={classString} onClick={scrollToTop} ref={ref}>
|
|
<CSSMotion visible={visible} motionName={`${rootPrefixCls}-fade`}>
|
|
{({ className: motionClassName }) =>
|
|
cloneElement(props.children || defaultElement, ({ className: cloneCls }) => ({
|
|
className: classNames(motionClassName, cloneCls),
|
|
}))
|
|
}
|
|
</CSSMotion>
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
BackTop.displayName = 'BackTop';
|
|
}
|
|
|
|
export default React.memo(BackTop);
|
|
|