2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-06-23 23:12:18 +08:00
|
|
|
import Animate from 'rc-animate';
|
|
|
|
import addEventListener from 'rc-util/lib/Dom/addEventListener';
|
|
|
|
import classNames from 'classnames';
|
2016-09-10 17:17:55 +08:00
|
|
|
import omit from 'omit.js';
|
2016-10-21 18:02:37 +08:00
|
|
|
import Icon from '../icon';
|
2016-09-29 18:00:23 +08:00
|
|
|
import getScroll from '../_util/getScroll';
|
2016-10-13 16:26:15 +08:00
|
|
|
import getRequestAnimationFrame from '../_util/getRequestAnimationFrame';
|
2016-06-23 23:12:18 +08:00
|
|
|
|
2016-10-13 16:26:15 +08:00
|
|
|
const reqAnimFrame = getRequestAnimationFrame();
|
2016-09-13 17:10:08 +08:00
|
|
|
|
|
|
|
const currentScrollTop = () => {
|
2016-10-13 16:26:15 +08:00
|
|
|
return window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop;
|
2016-09-13 17:10:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const easeInOutCubic = (t, b, c, d) => {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-21 18:02:37 +08:00
|
|
|
function noop() {}
|
|
|
|
|
|
|
|
function getDefaultTarget() {
|
|
|
|
return typeof window !== 'undefined' ?
|
|
|
|
window : null;
|
|
|
|
}
|
|
|
|
|
2016-09-13 15:31:29 +08:00
|
|
|
export interface BackTopProps {
|
2016-07-14 13:29:50 +08:00
|
|
|
visibilityHeight?: number;
|
2016-10-19 17:51:33 +08:00
|
|
|
onClick?: React.MouseEventHandler<any>;
|
2016-08-22 17:18:26 +08:00
|
|
|
target?: () => HTMLElement | Window;
|
2016-07-14 13:29:50 +08:00
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
2016-09-19 10:17:07 +08:00
|
|
|
style?: React.CSSProperties;
|
2016-07-14 13:29:50 +08:00
|
|
|
}
|
2016-06-23 23:12:18 +08:00
|
|
|
|
2016-07-14 13:29:50 +08:00
|
|
|
export default class BackTop extends React.Component<BackTopProps, any> {
|
2016-06-23 23:12:18 +08:00
|
|
|
static defaultProps = {
|
|
|
|
visibilityHeight: 400,
|
2016-07-14 13:29:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollEvent: any;
|
2016-06-23 23:12:18 +08:00
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2016-10-14 15:26:22 +08:00
|
|
|
visible: false,
|
2016-06-23 23:12:18 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
scrollToTop = (e) => {
|
2016-09-13 17:10:08 +08:00
|
|
|
const scrollTop = currentScrollTop();
|
|
|
|
const startTime = Date.now();
|
|
|
|
const frameFunc = () => {
|
|
|
|
const timestamp = Date.now();
|
|
|
|
const time = timestamp - startTime;
|
|
|
|
this.setScrollTop(easeInOutCubic(time, scrollTop, 0, 450));
|
|
|
|
if (time < 450) {
|
|
|
|
reqAnimFrame(frameFunc);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
reqAnimFrame(frameFunc);
|
2016-10-21 18:02:37 +08:00
|
|
|
(this.props.onClick || noop)(e);
|
2016-06-23 23:12:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setScrollTop(value) {
|
2016-10-21 18:02:37 +08:00
|
|
|
const targetNode = (this.props.target || getDefaultTarget)();
|
2016-08-18 11:28:00 +08:00
|
|
|
if (targetNode === window) {
|
|
|
|
document.body.scrollTop = value;
|
|
|
|
document.documentElement.scrollTop = value;
|
|
|
|
} else {
|
2016-08-22 17:18:26 +08:00
|
|
|
(targetNode as HTMLElement).scrollTop = value;
|
2016-08-18 11:28:00 +08:00
|
|
|
}
|
2016-06-23 23:12:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
handleScroll = () => {
|
2016-10-21 18:02:37 +08:00
|
|
|
const { visibilityHeight, target = getDefaultTarget } = this.props;
|
2016-08-18 11:28:00 +08:00
|
|
|
const scrollTop = getScroll(target(), true);
|
2016-06-23 23:12:18 +08:00
|
|
|
this.setState({
|
2016-08-18 11:28:00 +08:00
|
|
|
visible: scrollTop > visibilityHeight,
|
2016-06-23 23:12:18 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2016-10-14 15:26:22 +08:00
|
|
|
this.handleScroll();
|
2016-10-21 18:02:37 +08:00
|
|
|
this.scrollEvent = addEventListener((this.props.target || getDefaultTarget)(), 'scroll', this.handleScroll);
|
2016-06-23 23:12:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.scrollEvent) {
|
|
|
|
this.scrollEvent.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-10-21 18:02:37 +08:00
|
|
|
const { prefixCls = 'ant-back-top', className = '', children } = this.props;
|
2016-11-30 10:20:23 +08:00
|
|
|
const classString = classNames(prefixCls, className);
|
2016-06-23 23:12:18 +08:00
|
|
|
|
|
|
|
const defaultElement = (
|
|
|
|
<div className={`${prefixCls}-content`}>
|
|
|
|
<Icon className={`${prefixCls}-icon`} type="to-top" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2016-07-08 10:23:20 +08:00
|
|
|
// fix https://fb.me/react-unknown-prop
|
2016-07-14 13:29:50 +08:00
|
|
|
const divProps = omit(this.props, [
|
|
|
|
'prefixCls',
|
|
|
|
'className',
|
|
|
|
'children',
|
2016-07-08 10:23:20 +08:00
|
|
|
'visibilityHeight',
|
|
|
|
]);
|
|
|
|
|
2016-11-25 12:03:39 +08:00
|
|
|
const backTopBtn = this.state.visible ? (
|
|
|
|
<div {...divProps} className={classString} onClick={this.scrollToTop}>
|
|
|
|
{children || defaultElement}
|
|
|
|
</div>
|
|
|
|
) : null;
|
|
|
|
|
2016-06-23 23:12:18 +08:00
|
|
|
return (
|
2016-07-01 17:54:01 +08:00
|
|
|
<Animate component="" transitionName="fade">
|
2016-11-25 12:03:39 +08:00
|
|
|
{backTopBtn}
|
2016-06-23 23:12:18 +08:00
|
|
|
</Animate>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|