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.
136 lines
3.4 KiB
136 lines
3.4 KiB
import * as React from 'react';
|
|
import Animate from 'rc-animate';
|
|
import addEventListener from 'rc-util/lib/Dom/addEventListener';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import getScroll from '../_util/getScroll';
|
|
import raf from 'raf';
|
|
|
|
const easeInOutCubic = (t: number, b: number, c: number, d: number) => {
|
|
const cc = c - b;
|
|
t /= d / 2;
|
|
if (t < 1) {
|
|
return cc / 2 * t * t * t + b;
|
|
} else {
|
|
return cc / 2 * ((t -= 2) * t * t + 2) + b;
|
|
}
|
|
};
|
|
|
|
function noop() { }
|
|
|
|
function getDefaultTarget() {
|
|
return window;
|
|
}
|
|
|
|
export interface BackTopProps {
|
|
visibilityHeight?: number;
|
|
onClick?: React.MouseEventHandler<any>;
|
|
target?: () => HTMLElement | Window;
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
export default class BackTop extends React.Component<BackTopProps, any> {
|
|
static defaultProps = {
|
|
visibilityHeight: 400,
|
|
};
|
|
|
|
scrollEvent: any;
|
|
|
|
constructor(props: BackTopProps) {
|
|
super(props);
|
|
this.state = {
|
|
visible: false,
|
|
};
|
|
}
|
|
|
|
getCurrentScrollTop = () => {
|
|
const getTarget = this.props.target || getDefaultTarget;
|
|
const targetNode = getTarget();
|
|
if (targetNode === window) {
|
|
return window.pageYOffset || document.body.scrollTop || document.documentElement!.scrollTop;
|
|
}
|
|
return (targetNode as HTMLElement).scrollTop;
|
|
}
|
|
|
|
scrollToTop = (e: React.MouseEvent<HTMLDivElement>) => {
|
|
const scrollTop = this.getCurrentScrollTop();
|
|
const startTime = Date.now();
|
|
const frameFunc = () => {
|
|
const timestamp = Date.now();
|
|
const time = timestamp - startTime;
|
|
this.setScrollTop(easeInOutCubic(time, scrollTop, 0, 450));
|
|
if (time < 450) {
|
|
raf(frameFunc);
|
|
} else {
|
|
this.setScrollTop(0);
|
|
}
|
|
};
|
|
raf(frameFunc);
|
|
(this.props.onClick || noop)(e);
|
|
}
|
|
|
|
setScrollTop(value: number) {
|
|
const getTarget = this.props.target || getDefaultTarget;
|
|
const targetNode = getTarget();
|
|
if (targetNode === window) {
|
|
document.body.scrollTop = value;
|
|
document.documentElement!.scrollTop = value;
|
|
} else {
|
|
(targetNode as HTMLElement).scrollTop = value;
|
|
}
|
|
}
|
|
|
|
handleScroll = () => {
|
|
const { visibilityHeight, target = getDefaultTarget } = this.props;
|
|
const scrollTop = getScroll(target(), true);
|
|
this.setState({
|
|
visible: scrollTop > (visibilityHeight as number),
|
|
});
|
|
}
|
|
|
|
componentDidMount() {
|
|
const getTarget = this.props.target || getDefaultTarget;
|
|
this.scrollEvent = addEventListener(getTarget(), 'scroll', this.handleScroll);
|
|
this.handleScroll();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.scrollEvent) {
|
|
this.scrollEvent.remove();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { prefixCls = 'ant-back-top', className = '', children } = this.props;
|
|
const classString = classNames(prefixCls, className);
|
|
|
|
const defaultElement = (
|
|
<div className={`${prefixCls}-content`}>
|
|
<div className={`${prefixCls}-icon`} />
|
|
</div>
|
|
);
|
|
|
|
// fix https://fb.me/react-unknown-prop
|
|
const divProps = omit(this.props, [
|
|
'prefixCls',
|
|
'className',
|
|
'children',
|
|
'visibilityHeight',
|
|
'target',
|
|
]);
|
|
|
|
const backTopBtn = this.state.visible ? (
|
|
<div {...divProps} className={classString} onClick={this.scrollToTop}>
|
|
{children || defaultElement}
|
|
</div>
|
|
) : null;
|
|
|
|
return (
|
|
<Animate component="" transitionName="fade">
|
|
{backTopBtn}
|
|
</Animate>
|
|
);
|
|
}
|
|
}
|
|
|