ant-design/components/back-top/index.tsx

128 lines
3.4 KiB
TypeScript
Raw Normal View History

import * as 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';
import omit from 'omit.js';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
import getScroll from '../_util/getScroll';
import scrollTo from '../_util/scrollTo';
2016-10-21 18:02:37 +08:00
function getDefaultTarget() {
return window;
2016-10-21 18:02:37 +08:00
}
2016-09-13 15:31:29 +08:00
export interface BackTopProps {
2016-07-14 13:29:50 +08:00
visibilityHeight?: number;
onClick?: React.MouseEventHandler<HTMLElement>;
2016-08-22 17:18:26 +08:00
target?: () => HTMLElement | Window;
2016-07-14 13:29:50 +08:00
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
visible?: boolean; // Only for test. Don't use it.
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
2017-07-14 15:37:44 +08:00
constructor(props: BackTopProps) {
2016-06-23 23:12:18 +08:00
super(props);
this.state = {
visible: false,
2016-06-23 23:12:18 +08:00
};
}
2019-08-05 18:38:10 +08:00
componentDidMount() {
const getTarget = this.props.target || getDefaultTarget;
this.scrollEvent = addEventListener(getTarget(), 'scroll', this.handleScroll);
this.handleScroll();
}
componentWillUnmount() {
if (this.scrollEvent) {
this.scrollEvent.remove();
}
}
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;
}
}
getCurrentScrollTop = () => {
const getTarget = this.props.target || getDefaultTarget;
const targetNode = getTarget();
if (targetNode === window) {
2018-09-30 16:07:01 +08:00
return window.pageYOffset || document.body.scrollTop || document.documentElement!.scrollTop;
}
return (targetNode as HTMLElement).scrollTop;
2018-12-07 20:02:01 +08:00
};
2017-07-14 15:37:44 +08:00
scrollToTop = (e: React.MouseEvent<HTMLDivElement>) => {
const { target = getDefaultTarget } = this.props;
2019-07-30 12:34:12 +08:00
scrollTo(0, {
getContainer: target,
});
if (typeof this.props.onClick === 'function') {
this.props.onClick(e);
}
2018-12-07 20:02:01 +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;
const scrollTop = getScroll(target(), true);
2016-06-23 23:12:18 +08:00
this.setState({
visible: scrollTop > (visibilityHeight as number),
2016-06-23 23:12:18 +08:00
});
2018-12-07 20:02:01 +08:00
};
2016-06-23 23:12:18 +08:00
renderBackTop = ({ getPrefixCls }: ConfigConsumerProps) => {
const { prefixCls: customizePrefixCls, className = '', children } = this.props;
const prefixCls = getPrefixCls('back-top', customizePrefixCls);
const classString = classNames(prefixCls, className);
2016-06-23 23:12:18 +08:00
const defaultElement = (
<div className={`${prefixCls}-content`}>
<div className={`${prefixCls}-icon`} />
2016-06-23 23:12:18 +08:00
</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',
'target',
'visible',
2016-07-08 10:23:20 +08:00
]);
const visible = 'visible' in this.props ? this.props.visible : this.state.visible;
const backTopBtn = visible ? (
<div {...divProps} className={classString} onClick={this.scrollToTop}>
{children || defaultElement}
</div>
) : null;
2016-06-23 23:12:18 +08:00
return (
<Animate component="" transitionName="fade">
{backTopBtn}
2016-06-23 23:12:18 +08:00
</Animate>
);
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderBackTop}</ConfigConsumer>;
}
2016-06-23 23:12:18 +08:00
}