UNPKG

vuetify

Version:

Vue Material Component Framework

251 lines (248 loc) 8.25 kB
import { withDirectives as _withDirectives, resolveDirective as _resolveDirective, Fragment as _Fragment, createVNode as _createVNode } from "vue"; import "./VImg.css"; // Components import { VResponsive } from "../VResponsive/index.mjs"; // Directives import intersect from "../../directives/intersect/index.mjs"; // Composables import { makeTransitionProps, MaybeTransition } from "../../composables/transition.mjs"; // Utilities import { computed, nextTick, onBeforeMount, ref, vShow, watch, withDirectives } from 'vue'; import { convertToUnit, genericComponent, SUPPORTS_INTERSECTION, useRender } from "../../util/index.mjs"; // Types export const VImg = genericComponent()({ name: 'VImg', directives: { intersect }, props: { aspectRatio: [String, Number], alt: String, cover: Boolean, eager: Boolean, gradient: String, lazySrc: String, options: { type: Object, // For more information on types, navigate to: // https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API default: () => ({ root: undefined, rootMargin: undefined, threshold: undefined }) }, sizes: String, src: { type: [String, Object], default: '' }, srcset: String, width: [String, Number], ...makeTransitionProps() }, emits: { loadstart: event => true, load: event => true, error: event => true }, setup(props, _ref) { let { emit, slots } = _ref; const currentSrc = ref(''); // Set from srcset const image = ref(); const state = ref(props.eager ? 'loading' : 'idle'); const naturalWidth = ref(); const naturalHeight = ref(); const normalisedSrc = computed(() => { return props.src && typeof props.src === 'object' ? { src: props.src.src, srcset: props.srcset || props.src.srcset, lazySrc: props.lazySrc || props.src.lazySrc, aspect: Number(props.aspectRatio || props.src.aspect || 0) } : { src: props.src, srcset: props.srcset, lazySrc: props.lazySrc, aspect: Number(props.aspectRatio || 0) }; }); const aspectRatio = computed(() => { return normalisedSrc.value.aspect || naturalWidth.value / naturalHeight.value || 0; }); watch(() => props.src, () => { init(state.value !== 'idle'); }); watch(aspectRatio, (val, oldVal) => { if (!val && oldVal && image.value) { pollForSize(image.value); } }); // TODO: getSrc when window width changes onBeforeMount(() => init()); function init(isIntersecting) { if (props.eager && isIntersecting) return; if (SUPPORTS_INTERSECTION && !isIntersecting && !props.eager) return; state.value = 'loading'; if (normalisedSrc.value.lazySrc) { const lazyImg = new Image(); lazyImg.src = normalisedSrc.value.lazySrc; pollForSize(lazyImg, null); } if (!normalisedSrc.value.src) return; nextTick(() => { emit('loadstart', image.value?.currentSrc || normalisedSrc.value.src); if (image.value?.complete) { if (!image.value.naturalWidth) { onError(); } if (state.value === 'error') return; if (!aspectRatio.value) pollForSize(image.value, null); onLoad(); } else { if (!aspectRatio.value) pollForSize(image.value); getSrc(); } }); } function onLoad() { getSrc(); state.value = 'loaded'; emit('load', image.value?.currentSrc || normalisedSrc.value.src); } function onError() { state.value = 'error'; emit('error', image.value?.currentSrc || normalisedSrc.value.src); } function getSrc() { const img = image.value; if (img) currentSrc.value = img.currentSrc || img.src; } let timer = -1; function pollForSize(img) { let timeout = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 100; const poll = () => { clearTimeout(timer); const { naturalHeight: imgHeight, naturalWidth: imgWidth } = img; if (imgHeight || imgWidth) { naturalWidth.value = imgWidth; naturalHeight.value = imgHeight; } else if (!img.complete && state.value === 'loading' && timeout != null) { timer = window.setTimeout(poll, timeout); } else if (img.currentSrc.endsWith('.svg') || img.currentSrc.startsWith('data:image/svg+xml')) { naturalWidth.value = 1; naturalHeight.value = 1; } }; poll(); } const containClasses = computed(() => ({ 'v-img__img--cover': props.cover, 'v-img__img--contain': !props.cover })); const __image = () => { if (!normalisedSrc.value.src || state.value === 'idle') return null; const img = _createVNode("img", { "class": ['v-img__img', containClasses.value], "src": normalisedSrc.value.src, "srcset": normalisedSrc.value.srcset, "alt": "", "sizes": props.sizes, "ref": image, "onLoad": onLoad, "onError": onError }, null); const sources = slots.sources?.(); return _createVNode(MaybeTransition, { "transition": props.transition, "appear": true }, { default: () => [withDirectives(sources ? _createVNode("picture", { "class": "v-img__picture" }, [sources, img]) : img, [[vShow, state.value === 'loaded']])] }); }; const __preloadImage = () => _createVNode(MaybeTransition, { "transition": props.transition }, { default: () => [normalisedSrc.value.lazySrc && state.value !== 'loaded' && _createVNode("img", { "class": ['v-img__img', 'v-img__img--preload', containClasses.value], "src": normalisedSrc.value.lazySrc, "alt": "" }, null)] }); const __placeholder = () => { if (!slots.placeholder) return null; return _createVNode(MaybeTransition, { "transition": props.transition, "appear": true }, { default: () => [(state.value === 'loading' || state.value === 'error' && !slots.error) && _createVNode("div", { "class": "v-img__placeholder" }, [slots.placeholder()])] }); }; const __error = () => { if (!slots.error) return null; return _createVNode(MaybeTransition, { "transition": props.transition, "appear": true }, { default: () => [state.value === 'error' && _createVNode("div", { "class": "v-img__error" }, [slots.error()])] }); }; const __gradient = () => { if (!props.gradient) return null; return _createVNode("div", { "class": "v-img__gradient", "style": { backgroundImage: `linear-gradient(${props.gradient})` } }, null); }; const isBooted = ref(false); { const stop = watch(aspectRatio, val => { if (val) { // Doesn't work with nextTick, idk why requestAnimationFrame(() => { requestAnimationFrame(() => { isBooted.value = true; }); }); stop(); } }); } useRender(() => _withDirectives(_createVNode(VResponsive, { "class": ['v-img', { 'v-img--booting': !isBooted.value }], "style": { width: convertToUnit(props.width === 'auto' ? naturalWidth.value : props.width) }, "aspectRatio": aspectRatio.value, "aria-label": props.alt, "role": props.alt ? 'img' : undefined }, { additional: () => _createVNode(_Fragment, null, [_createVNode(__image, null, null), _createVNode(__preloadImage, null, null), _createVNode(__gradient, null, null), _createVNode(__placeholder, null, null), _createVNode(__error, null, null)]), default: slots.default }), [[_resolveDirective("intersect"), { handler: init, options: props.options }, null, { once: true }]])); return { currentSrc, image, state, naturalWidth, naturalHeight }; } }); //# sourceMappingURL=VImg.mjs.map