ant-design-vue/components/anchor/Anchor.jsx

264 lines
6.5 KiB
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import PropTypes from '../_util/vue-types';
import classNames from 'classnames';
import addEventListener from '../_util/Dom/addEventListener';
import Affix from '../affix';
import getScroll from '../_util/getScroll';
import raf from 'raf';
import { initDefaultProps } from '../_util/props-util';
2019-01-12 03:33:27 +00:00
import BaseMixin from '../_util/BaseMixin';
2019-03-11 06:43:23 +00:00
import { ConfigConsumerProps } from '../config-provider';
2019-01-12 03:33:27 +00:00
function getDefaultContainer() {
return window;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
function getOffsetTop(element, container) {
2018-06-02 10:11:50 +00:00
if (!element) {
2019-01-12 03:33:27 +00:00
return 0;
2018-06-02 10:11:50 +00:00
}
if (!element.getClientRects().length) {
2019-01-12 03:33:27 +00:00
return 0;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
const rect = element.getBoundingClientRect();
2018-06-02 10:11:50 +00:00
if (rect.width || rect.height) {
if (container === window) {
2019-01-12 03:33:27 +00:00
container = element.ownerDocument.documentElement;
return rect.top - container.clientTop;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
return rect.top - container.getBoundingClientRect().top;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
return rect.top;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
function easeInOutCubic(t, b, c, d) {
const cc = c - b;
t /= d / 2;
2018-06-02 10:11:50 +00:00
if (t < 1) {
2019-01-12 03:33:27 +00:00
return (cc / 2) * t * t * t + b;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
return (cc / 2) * ((t -= 2) * t * t + 2) + b;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
const sharpMatcherRegx = /#([^#]+)$/;
function scrollTo(href, offsetTop = 0, getContainer, callback = () => {}) {
const container = getContainer();
const scrollTop = getScroll(container, true);
const sharpLinkMatch = sharpMatcherRegx.exec(href);
if (!sharpLinkMatch) {
return;
}
const targetElement = document.getElementById(sharpLinkMatch[1]);
2018-06-02 10:11:50 +00:00
if (!targetElement) {
2019-01-12 03:33:27 +00:00
return;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
const eleOffsetTop = getOffsetTop(targetElement, container);
const targetScrollTop = scrollTop + eleOffsetTop - offsetTop;
const startTime = Date.now();
2018-06-02 10:11:50 +00:00
const frameFunc = () => {
2019-01-12 03:33:27 +00:00
const timestamp = Date.now();
const time = timestamp - startTime;
const nextScrollTop = easeInOutCubic(time, scrollTop, targetScrollTop, 450);
2018-06-02 10:11:50 +00:00
if (container === window) {
2019-01-12 03:33:27 +00:00
window.scrollTo(window.pageXOffset, nextScrollTop);
2018-06-02 10:11:50 +00:00
} else {
2019-01-12 03:33:27 +00:00
container.scrollTop = nextScrollTop;
2018-06-02 10:11:50 +00:00
}
if (time < 450) {
2019-01-12 03:33:27 +00:00
raf(frameFunc);
2018-06-02 10:11:50 +00:00
} else {
2019-01-12 03:33:27 +00:00
callback();
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
};
raf(frameFunc);
2018-06-02 10:11:50 +00:00
}
export const AnchorProps = {
prefixCls: PropTypes.string,
offsetTop: PropTypes.number,
bounds: PropTypes.number,
2018-06-04 09:09:01 +00:00
affix: PropTypes.bool,
showInkInFixed: PropTypes.bool,
2018-06-02 10:11:50 +00:00
getContainer: PropTypes.func,
wrapperClass: PropTypes.string,
wrapperStyle: PropTypes.object,
2019-01-12 03:33:27 +00:00
};
2018-06-02 10:11:50 +00:00
export default {
name: 'AAnchor',
mixins: [BaseMixin],
inheritAttrs: false,
props: initDefaultProps(AnchorProps, {
affix: true,
showInkInFixed: false,
getContainer: getDefaultContainer,
}),
2019-03-11 06:43:23 +00:00
inject: {
configProvider: { default: () => ({}) },
},
2019-01-12 03:33:27 +00:00
data() {
this.links = [];
2019-03-11 06:43:23 +00:00
this._sPrefixCls = '';
2018-06-02 10:11:50 +00:00
return {
activeLink: null,
2019-01-12 03:33:27 +00:00
};
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
provide() {
2018-06-02 10:11:50 +00:00
return {
antAnchor: {
2019-01-12 03:33:27 +00:00
registerLink: link => {
2018-06-02 10:11:50 +00:00
if (!this.links.includes(link)) {
2019-01-12 03:33:27 +00:00
this.links.push(link);
2018-06-02 10:11:50 +00:00
}
},
2019-01-12 03:33:27 +00:00
unregisterLink: link => {
const index = this.links.indexOf(link);
2018-06-02 10:11:50 +00:00
if (index !== -1) {
2019-01-12 03:33:27 +00:00
this.links.splice(index, 1);
2018-06-02 10:11:50 +00:00
}
},
$data: this.$data,
scrollTo: this.handleScrollTo,
},
antAnchorContext: this,
2019-01-12 03:33:27 +00:00
};
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
mounted() {
2018-06-02 10:11:50 +00:00
this.$nextTick(() => {
2019-01-12 03:33:27 +00:00
const { getContainer } = this;
this.scrollEvent = addEventListener(getContainer(), 'scroll', this.handleScroll);
this.handleScroll();
});
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
beforeDestroy() {
2018-06-02 10:11:50 +00:00
if (this.scrollEvent) {
2019-01-12 03:33:27 +00:00
this.scrollEvent.remove();
2018-06-02 10:11:50 +00:00
}
},
2019-01-12 03:33:27 +00:00
updated() {
2018-06-02 10:11:50 +00:00
this.$nextTick(() => {
2019-01-12 03:33:27 +00:00
this.updateInk();
});
2018-06-02 10:11:50 +00:00
},
methods: {
2019-01-12 03:33:27 +00:00
handleScroll() {
2018-06-02 10:11:50 +00:00
if (this.animating) {
2019-01-12 03:33:27 +00:00
return;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
const { offsetTop, bounds } = this;
2018-06-02 10:11:50 +00:00
this.setState({
activeLink: this.getCurrentAnchor(offsetTop, bounds),
2019-01-12 03:33:27 +00:00
});
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
handleScrollTo(link) {
const { offsetTop, getContainer } = this;
this.animating = true;
this.setState({ activeLink: link });
2018-06-02 10:11:50 +00:00
scrollTo(link, offsetTop, getContainer, () => {
2019-01-12 03:33:27 +00:00
this.animating = false;
});
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
getCurrentAnchor(offsetTop = 0, bounds = 5) {
const activeLink = '';
2018-06-02 10:11:50 +00:00
if (typeof document === 'undefined') {
2019-01-12 03:33:27 +00:00
return activeLink;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
const linkSections = [];
const { getContainer } = this;
const container = getContainer();
2018-06-02 10:11:50 +00:00
this.links.forEach(link => {
2019-01-12 03:33:27 +00:00
const sharpLinkMatch = sharpMatcherRegx.exec(link.toString());
if (!sharpLinkMatch) {
return;
}
const target = document.getElementById(sharpLinkMatch[1]);
2018-06-02 10:11:50 +00:00
if (target) {
2019-01-12 03:33:27 +00:00
const top = getOffsetTop(target, container);
2018-06-02 10:11:50 +00:00
if (top < offsetTop + bounds) {
linkSections.push({
link,
top,
2019-01-12 03:33:27 +00:00
});
2018-06-02 10:11:50 +00:00
}
}
2019-01-12 03:33:27 +00:00
});
2018-06-02 10:11:50 +00:00
if (linkSections.length) {
2019-01-12 03:33:27 +00:00
const maxSection = linkSections.reduce((prev, curr) => (curr.top > prev.top ? curr : prev));
return maxSection.link;
2018-06-02 10:11:50 +00:00
}
2019-01-12 03:33:27 +00:00
return '';
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
updateInk() {
2018-06-02 10:11:50 +00:00
if (typeof document === 'undefined') {
2019-01-12 03:33:27 +00:00
return;
2018-06-02 10:11:50 +00:00
}
2019-03-11 06:43:23 +00:00
const { _sPrefixCls } = this;
const linkNode = this.$el.getElementsByClassName(`${_sPrefixCls}-link-title-active`)[0];
2018-06-02 10:11:50 +00:00
if (linkNode) {
2019-01-12 03:33:27 +00:00
this.$refs.linkNode.style.top = `${linkNode.offsetTop + linkNode.clientHeight / 2 - 4.5}px`;
2018-06-02 10:11:50 +00:00
}
},
},
2019-01-12 03:33:27 +00:00
render() {
2019-05-28 03:37:38 +00:00
const {
prefixCls: customizePrefixCls,
offsetTop,
affix,
showInkInFixed,
activeLink,
$slots,
getContainer,
} = this;
2019-03-11 06:43:23 +00:00
const getPrefixCls = this.configProvider.getPrefixCls || ConfigConsumerProps.getPrefixCls;
const prefixCls = getPrefixCls('anchor', customizePrefixCls);
this._sPrefixCls = prefixCls;
2018-06-02 10:11:50 +00:00
const inkClass = classNames(`${prefixCls}-ink-ball`, {
visible: activeLink,
2019-01-12 03:33:27 +00:00
});
2018-06-02 10:11:50 +00:00
const wrapperClass = classNames(this.wrapperClass, `${prefixCls}-wrapper`);
2018-06-02 10:11:50 +00:00
const anchorClass = classNames(prefixCls, {
2019-01-12 03:33:27 +00:00
fixed: !affix && !showInkInFixed,
});
2018-06-02 10:11:50 +00:00
const wrapperStyle = {
maxHeight: offsetTop ? `calc(100vh - ${offsetTop}px)` : '100vh',
...this.wrapperStyle,
2019-01-12 03:33:27 +00:00
};
2018-06-02 10:11:50 +00:00
const anchorContent = (
2019-01-12 03:33:27 +00:00
<div class={wrapperClass} style={wrapperStyle}>
2018-06-02 10:11:50 +00:00
<div class={anchorClass}>
2019-01-12 03:33:27 +00:00
<div class={`${prefixCls}-ink`}>
<span class={inkClass} ref="linkNode" />
2018-06-02 10:11:50 +00:00
</div>
{$slots.default}
</div>
</div>
2019-01-12 03:33:27 +00:00
);
2018-06-02 10:11:50 +00:00
2019-01-12 03:33:27 +00:00
return !affix ? (
anchorContent
) : (
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 13:28:54 +00:00
<Affix offsetTop={offsetTop} target={getContainer}>
2018-06-02 10:11:50 +00:00
{anchorContent}
</Affix>
2019-01-12 03:33:27 +00:00
);
2018-06-02 10:11:50 +00:00
},
2019-01-12 03:33:27 +00:00
};