123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var core = require('@vueuse/core');
- var anchor = require('./anchor.js');
- var constants = require('./constants.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- var element = require('../../../utils/dom/element.js');
- var throttleByRaf = require('../../../utils/throttleByRaf.js');
- var types = require('../../../utils/types.js');
- var scroll = require('../../../utils/dom/scroll.js');
- var position = require('../../../utils/dom/position.js');
- var index = require('../../../hooks/use-namespace/index.js');
- var event = require('../../../constants/event.js');
- const __default__ = vue.defineComponent({
- name: "ElAnchor"
- });
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
- ...__default__,
- props: anchor.anchorProps,
- emits: anchor.anchorEmits,
- setup(__props, { expose, emit }) {
- const props = __props;
- const currentAnchor = vue.ref("");
- const anchorRef = vue.ref(null);
- const markerRef = vue.ref(null);
- const containerEl = vue.ref();
- const links = {};
- let isScrolling = false;
- let currentScrollTop = 0;
- const ns = index.useNamespace("anchor");
- const cls = vue.computed(() => [
- ns.b(),
- props.type === "underline" ? ns.m("underline") : "",
- ns.m(props.direction)
- ]);
- const addLink = (state) => {
- links[state.href] = state.el;
- };
- const removeLink = (href) => {
- delete links[href];
- };
- const setCurrentAnchor = (href) => {
- const activeHref = currentAnchor.value;
- if (activeHref !== href) {
- currentAnchor.value = href;
- emit(event.CHANGE_EVENT, href);
- }
- };
- let clearAnimate = null;
- const scrollToAnchor = (href) => {
- if (!containerEl.value)
- return;
- const target = element.getElement(href);
- if (!target)
- return;
- if (clearAnimate)
- clearAnimate();
- isScrolling = true;
- const scrollEle = scroll.getScrollElement(target, containerEl.value);
- const distance = position.getOffsetTopDistance(target, scrollEle);
- const max = scrollEle.scrollHeight - scrollEle.clientHeight;
- const to = Math.min(distance - props.offset, max);
- clearAnimate = scroll.animateScrollTo(containerEl.value, currentScrollTop, to, props.duration, () => {
- setTimeout(() => {
- isScrolling = false;
- }, 20);
- });
- };
- const scrollTo = (href) => {
- if (href) {
- setCurrentAnchor(href);
- scrollToAnchor(href);
- }
- };
- const handleClick = (e, href) => {
- emit("click", e, href);
- scrollTo(href);
- };
- const handleScroll = throttleByRaf.throttleByRaf(() => {
- if (containerEl.value) {
- currentScrollTop = scroll.getScrollTop(containerEl.value);
- }
- const currentHref = getCurrentHref();
- if (isScrolling || types.isUndefined(currentHref))
- return;
- setCurrentAnchor(currentHref);
- });
- const getCurrentHref = () => {
- if (!containerEl.value)
- return;
- const scrollTop = scroll.getScrollTop(containerEl.value);
- const anchorTopList = [];
- for (const href of Object.keys(links)) {
- const target = element.getElement(href);
- if (!target)
- continue;
- const scrollEle = scroll.getScrollElement(target, containerEl.value);
- const distance = position.getOffsetTopDistance(target, scrollEle);
- anchorTopList.push({
- top: distance - props.offset - props.bound,
- href
- });
- }
- anchorTopList.sort((prev, next) => prev.top - next.top);
- for (let i = 0; i < anchorTopList.length; i++) {
- const item = anchorTopList[i];
- const next = anchorTopList[i + 1];
- if (i === 0 && scrollTop === 0) {
- return props.selectScrollTop ? item.href : "";
- }
- if (item.top <= scrollTop && (!next || next.top > scrollTop)) {
- return item.href;
- }
- }
- };
- const getContainer = () => {
- const el = element.getElement(props.container);
- if (!el || types.isWindow(el)) {
- containerEl.value = window;
- } else {
- containerEl.value = el;
- }
- };
- core.useEventListener(containerEl, "scroll", handleScroll);
- const markerStyle = vue.computed(() => {
- if (!anchorRef.value || !markerRef.value || !currentAnchor.value)
- return {};
- const currentLinkEl = links[currentAnchor.value];
- if (!currentLinkEl)
- return {};
- const anchorRect = anchorRef.value.getBoundingClientRect();
- const markerRect = markerRef.value.getBoundingClientRect();
- const linkRect = currentLinkEl.getBoundingClientRect();
- if (props.direction === "horizontal") {
- const left = linkRect.left - anchorRect.left;
- return {
- left: `${left}px`,
- width: `${linkRect.width}px`,
- opacity: 1
- };
- } else {
- const top = linkRect.top - anchorRect.top + (linkRect.height - markerRect.height) / 2;
- return {
- top: `${top}px`,
- opacity: 1
- };
- }
- });
- vue.onMounted(() => {
- getContainer();
- const hash = decodeURIComponent(window.location.hash);
- const target = element.getElement(hash);
- if (target) {
- scrollTo(hash);
- } else {
- handleScroll();
- }
- });
- vue.watch(() => props.container, () => {
- getContainer();
- });
- vue.provide(constants.anchorKey, {
- ns,
- direction: props.direction,
- currentAnchor,
- addLink,
- removeLink,
- handleClick
- });
- expose({
- scrollTo
- });
- return (_ctx, _cache) => {
- return vue.openBlock(), vue.createElementBlock("div", {
- ref_key: "anchorRef",
- ref: anchorRef,
- class: vue.normalizeClass(vue.unref(cls))
- }, [
- _ctx.marker ? (vue.openBlock(), vue.createElementBlock("div", {
- key: 0,
- ref_key: "markerRef",
- ref: markerRef,
- class: vue.normalizeClass(vue.unref(ns).e("marker")),
- style: vue.normalizeStyle(vue.unref(markerStyle))
- }, null, 6)) : vue.createCommentVNode("v-if", true),
- vue.createElementVNode("div", {
- class: vue.normalizeClass(vue.unref(ns).e("list"))
- }, [
- vue.renderSlot(_ctx.$slots, "default")
- ], 2)
- ], 2);
- };
- }
- });
- var Anchor = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "anchor.vue"]]);
- exports["default"] = Anchor;
- //# sourceMappingURL=anchor2.js.map
|