UNPKG

element-plus

Version:

A Component Library for Vue 3

180 lines (175 loc) 6.32 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var vue = require('vue'); var core = require('@vueuse/core'); require('../../../utils/index.js'); require('../../../tokens/index.js'); require('../../../hooks/index.js'); var util = require('./util.js'); var bar = require('./bar2.js'); var scrollbar = require('./scrollbar.js'); var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js'); var index = require('../../../hooks/use-namespace/index.js'); var style = require('../../../utils/dom/style.js'); var shared = require('@vue/shared'); var error = require('../../../utils/error.js'); var scrollbar$1 = require('../../../tokens/scrollbar.js'); const __default__ = { name: "ElScrollbar" }; const _sfc_main = /* @__PURE__ */ vue.defineComponent({ ...__default__, props: scrollbar.scrollbarProps, emits: scrollbar.scrollbarEmits, setup(__props, { expose, emit }) { const props = __props; const ns = index.useNamespace("scrollbar"); let stopResizeObserver = void 0; let stopResizeListener = void 0; const scrollbar$ = vue.ref(); const wrap$ = vue.ref(); const resize$ = vue.ref(); const sizeWidth = vue.ref("0"); const sizeHeight = vue.ref("0"); const barRef = vue.ref(); const ratioY = vue.ref(1); const ratioX = vue.ref(1); const SCOPE = "ElScrollbar"; const style$1 = vue.computed(() => { const style2 = {}; if (props.height) style2.height = style.addUnit(props.height); if (props.maxHeight) style2.maxHeight = style.addUnit(props.maxHeight); return [props.wrapStyle, style2]; }); const handleScroll = () => { var _a; if (wrap$.value) { (_a = barRef.value) == null ? void 0 : _a.handleScroll(wrap$.value); emit("scroll", { scrollTop: wrap$.value.scrollTop, scrollLeft: wrap$.value.scrollLeft }); } }; function scrollTo(arg1, arg2) { if (shared.isObject(arg1)) { wrap$.value.scrollTo(arg1); } else if (core.isNumber(arg1) && core.isNumber(arg2)) { wrap$.value.scrollTo(arg1, arg2); } } const setScrollTop = (value) => { if (!core.isNumber(value)) { error.debugWarn(SCOPE, "value must be a number"); return; } wrap$.value.scrollTop = value; }; const setScrollLeft = (value) => { if (!core.isNumber(value)) { error.debugWarn(SCOPE, "value must be a number"); return; } wrap$.value.scrollLeft = value; }; const update = () => { if (!wrap$.value) return; const offsetHeight = wrap$.value.offsetHeight - util.GAP; const offsetWidth = wrap$.value.offsetWidth - util.GAP; const originalHeight = offsetHeight ** 2 / wrap$.value.scrollHeight; const originalWidth = offsetWidth ** 2 / wrap$.value.scrollWidth; const height = Math.max(originalHeight, props.minSize); const width = Math.max(originalWidth, props.minSize); ratioY.value = originalHeight / (offsetHeight - originalHeight) / (height / (offsetHeight - height)); ratioX.value = originalWidth / (offsetWidth - originalWidth) / (width / (offsetWidth - width)); sizeHeight.value = height + util.GAP < offsetHeight ? `${height}px` : ""; sizeWidth.value = width + util.GAP < offsetWidth ? `${width}px` : ""; }; vue.watch(() => props.noresize, (noresize) => { if (noresize) { stopResizeObserver == null ? void 0 : stopResizeObserver(); stopResizeListener == null ? void 0 : stopResizeListener(); } else { ; ({ stop: stopResizeObserver } = core.useResizeObserver(resize$, update)); stopResizeListener = core.useEventListener("resize", update); } }, { immediate: true }); vue.watch(() => [props.maxHeight, props.height], () => { if (!props.native) vue.nextTick(() => { var _a; update(); if (wrap$.value) { (_a = barRef.value) == null ? void 0 : _a.handleScroll(wrap$.value); } }); }); vue.provide(scrollbar$1.scrollbarContextKey, vue.reactive({ scrollbarElement: scrollbar$, wrapElement: wrap$ })); vue.onMounted(() => { if (!props.native) vue.nextTick(() => { update(); }); }); vue.onUpdated(() => update()); expose({ wrap$, update, scrollTo, setScrollTop, setScrollLeft, handleScroll }); return (_ctx, _cache) => { return vue.openBlock(), vue.createElementBlock("div", { ref_key: "scrollbar$", ref: scrollbar$, class: vue.normalizeClass(vue.unref(ns).b()) }, [ vue.createElementVNode("div", { ref_key: "wrap$", ref: wrap$, class: vue.normalizeClass([ _ctx.wrapClass, vue.unref(ns).e("wrap"), { [vue.unref(ns).em("wrap", "hidden-default")]: !_ctx.native } ]), style: vue.normalizeStyle(vue.unref(style$1)), onScroll: handleScroll }, [ (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.tag), { ref_key: "resize$", ref: resize$, class: vue.normalizeClass([vue.unref(ns).e("view"), _ctx.viewClass]), style: vue.normalizeStyle(_ctx.viewStyle) }, { default: vue.withCtx(() => [ vue.renderSlot(_ctx.$slots, "default") ]), _: 3 }, 8, ["class", "style"])) ], 38), !_ctx.native ? (vue.openBlock(), vue.createBlock(bar["default"], { key: 0, ref_key: "barRef", ref: barRef, height: sizeHeight.value, width: sizeWidth.value, always: _ctx.always, "ratio-x": ratioX.value, "ratio-y": ratioY.value }, null, 8, ["height", "width", "always", "ratio-x", "ratio-y"])) : vue.createCommentVNode("v-if", true) ], 2); }; } }); var Scrollbar = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/scrollbar/src/scrollbar.vue"]]); exports["default"] = Scrollbar; //# sourceMappingURL=scrollbar2.js.map