| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var core = require('@vueuse/core');
- var lodashUnified = require('lodash-unified');
- var index$3 = require('../../image-viewer/index.js');
- var image = require('./image.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- var types = require('../../../utils/types.js');
- var index = require('../../../hooks/use-locale/index.js');
- var index$1 = require('../../../hooks/use-namespace/index.js');
- var index$2 = require('../../../hooks/use-attrs/index.js');
- var shared = require('@vue/shared');
- var scroll = require('../../../utils/dom/scroll.js');
- const __default__ = vue.defineComponent({
- name: "ElImage",
- inheritAttrs: false
- });
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
- ...__default__,
- props: image.imageProps,
- emits: image.imageEmits,
- setup(__props, { expose, emit }) {
- const props = __props;
- const { t } = index.useLocale();
- const ns = index$1.useNamespace("image");
- const rawAttrs = vue.useAttrs();
- const containerAttrs = vue.computed(() => {
- return lodashUnified.fromPairs(Object.entries(rawAttrs).filter(([key]) => /^(data-|on[A-Z])/i.test(key) || ["id", "style"].includes(key)));
- });
- const imgAttrs = index$2.useAttrs({
- excludeListeners: true,
- excludeKeys: vue.computed(() => {
- return Object.keys(containerAttrs.value);
- })
- });
- const imageSrc = vue.ref();
- const hasLoadError = vue.ref(false);
- const isLoading = vue.ref(true);
- const showViewer = vue.ref(false);
- const container = vue.ref();
- const _scrollContainer = vue.ref();
- const supportLoading = core.isClient && "loading" in HTMLImageElement.prototype;
- let stopScrollListener;
- const imageKls = vue.computed(() => [
- ns.e("inner"),
- preview.value && ns.e("preview"),
- isLoading.value && ns.is("loading")
- ]);
- const imageStyle = vue.computed(() => {
- const { fit } = props;
- if (core.isClient && fit) {
- return { objectFit: fit };
- }
- return {};
- });
- const preview = vue.computed(() => {
- const { previewSrcList } = props;
- return shared.isArray(previewSrcList) && previewSrcList.length > 0;
- });
- const imageIndex = vue.computed(() => {
- const { previewSrcList, initialIndex } = props;
- let previewIndex = initialIndex;
- if (initialIndex > previewSrcList.length - 1) {
- previewIndex = 0;
- }
- return previewIndex;
- });
- const isManual = vue.computed(() => {
- if (props.loading === "eager")
- return false;
- return !supportLoading && props.loading === "lazy" || props.lazy;
- });
- const loadImage = () => {
- if (!core.isClient)
- return;
- isLoading.value = true;
- hasLoadError.value = false;
- imageSrc.value = props.src;
- };
- function handleLoad(event) {
- isLoading.value = false;
- hasLoadError.value = false;
- emit("load", event);
- }
- function handleError(event) {
- isLoading.value = false;
- hasLoadError.value = true;
- emit("error", event);
- }
- function handleLazyLoad(isIntersecting) {
- if (isIntersecting) {
- loadImage();
- removeLazyLoadListener();
- }
- }
- const lazyLoadHandler = core.useThrottleFn(handleLazyLoad, 200, true);
- async function addLazyLoadListener() {
- var _a;
- if (!core.isClient)
- return;
- await vue.nextTick();
- const { scrollContainer } = props;
- if (types.isElement(scrollContainer)) {
- _scrollContainer.value = scrollContainer;
- } else if (shared.isString(scrollContainer) && scrollContainer !== "") {
- _scrollContainer.value = (_a = document.querySelector(scrollContainer)) != null ? _a : void 0;
- } else if (container.value) {
- const scrollContainer2 = scroll.getScrollContainer(container.value);
- _scrollContainer.value = types.isWindow(scrollContainer2) ? void 0 : scrollContainer2;
- }
- const { stop } = core.useIntersectionObserver(container, ([entry]) => {
- lazyLoadHandler(entry.isIntersecting);
- }, { root: _scrollContainer });
- stopScrollListener = stop;
- }
- function removeLazyLoadListener() {
- if (!core.isClient || !lazyLoadHandler)
- return;
- stopScrollListener == null ? void 0 : stopScrollListener();
- _scrollContainer.value = void 0;
- stopScrollListener = void 0;
- }
- function clickHandler() {
- if (!preview.value)
- return;
- showViewer.value = true;
- emit("show");
- }
- function closeViewer() {
- showViewer.value = false;
- emit("close");
- }
- function switchViewer(val) {
- emit("switch", val);
- }
- vue.watch(() => props.src, () => {
- if (isManual.value) {
- isLoading.value = true;
- hasLoadError.value = false;
- removeLazyLoadListener();
- addLazyLoadListener();
- } else {
- loadImage();
- }
- });
- vue.onMounted(() => {
- if (isManual.value) {
- addLazyLoadListener();
- } else {
- loadImage();
- }
- });
- expose({
- showPreview: clickHandler
- });
- return (_ctx, _cache) => {
- return vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
- ref_key: "container",
- ref: container
- }, vue.unref(containerAttrs), {
- class: [vue.unref(ns).b(), _ctx.$attrs.class]
- }), [
- hasLoadError.value ? vue.renderSlot(_ctx.$slots, "error", { key: 0 }, () => [
- vue.createElementVNode("div", {
- class: vue.normalizeClass(vue.unref(ns).e("error"))
- }, vue.toDisplayString(vue.unref(t)("el.image.error")), 3)
- ]) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
- imageSrc.value !== void 0 ? (vue.openBlock(), vue.createElementBlock("img", vue.mergeProps({ key: 0 }, vue.unref(imgAttrs), {
- src: imageSrc.value,
- loading: _ctx.loading,
- style: vue.unref(imageStyle),
- class: vue.unref(imageKls),
- crossorigin: _ctx.crossorigin,
- onClick: clickHandler,
- onLoad: handleLoad,
- onError: handleError
- }), null, 16, ["src", "loading", "crossorigin"])) : vue.createCommentVNode("v-if", true),
- isLoading.value ? (vue.openBlock(), vue.createElementBlock("div", {
- key: 1,
- class: vue.normalizeClass(vue.unref(ns).e("wrapper"))
- }, [
- vue.renderSlot(_ctx.$slots, "placeholder", {}, () => [
- vue.createElementVNode("div", {
- class: vue.normalizeClass(vue.unref(ns).e("placeholder"))
- }, null, 2)
- ])
- ], 2)) : vue.createCommentVNode("v-if", true)
- ], 64)),
- vue.unref(preview) ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 2 }, [
- showViewer.value ? (vue.openBlock(), vue.createBlock(vue.unref(index$3.ElImageViewer), {
- key: 0,
- "z-index": _ctx.zIndex,
- "initial-index": vue.unref(imageIndex),
- infinite: _ctx.infinite,
- "zoom-rate": _ctx.zoomRate,
- "min-scale": _ctx.minScale,
- "max-scale": _ctx.maxScale,
- "show-progress": _ctx.showProgress,
- "url-list": _ctx.previewSrcList,
- scale: _ctx.scale,
- crossorigin: _ctx.crossorigin,
- "hide-on-click-modal": _ctx.hideOnClickModal,
- teleported: _ctx.previewTeleported,
- "close-on-press-escape": _ctx.closeOnPressEscape,
- onClose: closeViewer,
- onSwitch: switchViewer
- }, vue.createSlots({
- toolbar: vue.withCtx((toolbar) => [
- vue.renderSlot(_ctx.$slots, "toolbar", vue.normalizeProps(vue.guardReactiveProps(toolbar)))
- ]),
- default: vue.withCtx(() => [
- _ctx.$slots.viewer ? (vue.openBlock(), vue.createElementBlock("div", { key: 0 }, [
- vue.renderSlot(_ctx.$slots, "viewer")
- ])) : vue.createCommentVNode("v-if", true)
- ]),
- _: 2
- }, [
- _ctx.$slots.progress ? {
- name: "progress",
- fn: vue.withCtx((progress) => [
- vue.renderSlot(_ctx.$slots, "progress", vue.normalizeProps(vue.guardReactiveProps(progress)))
- ])
- } : void 0,
- _ctx.$slots["viewer-error"] ? {
- name: "viewer-error",
- fn: vue.withCtx((viewerError) => [
- vue.renderSlot(_ctx.$slots, "viewer-error", vue.normalizeProps(vue.guardReactiveProps(viewerError)))
- ])
- } : void 0
- ]), 1032, ["z-index", "initial-index", "infinite", "zoom-rate", "min-scale", "max-scale", "show-progress", "url-list", "scale", "crossorigin", "hide-on-click-modal", "teleported", "close-on-press-escape"])) : vue.createCommentVNode("v-if", true)
- ], 64)) : vue.createCommentVNode("v-if", true)
- ], 16);
- };
- }
- });
- var Image = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "image.vue"]]);
- exports["default"] = Image;
- //# sourceMappingURL=image2.js.map
|