chore(Lazyload): reuse some utils

This commit is contained in:
chenjiahan 2021-11-11 14:22:34 +08:00
parent 74bc0879c4
commit 79146db9d5
6 changed files with 24 additions and 47 deletions

View File

@ -2,6 +2,7 @@ module.exports = {
testPathIgnorePatterns: ['/node_modules/'], testPathIgnorePatterns: ['/node_modules/'],
collectCoverageFrom: [ collectCoverageFrom: [
'src/**/*.{js,jsx,ts,tsx,vue}', 'src/**/*.{js,jsx,ts,tsx,vue}',
'!src/lazyload/vue-lazyload/**',
'!**/demo/**', '!**/demo/**',
'!**/test/**', '!**/test/**',
'!**/lang/**', '!**/lang/**',

View File

@ -1,5 +1,5 @@
import { h } from 'vue'; import { h } from 'vue';
import { inBrowser } from '@vant/use'; import { inBrowser, useRect } from '@vant/use';
export default (lazy) => ({ export default (lazy) => ({
props: { props: {
@ -24,7 +24,6 @@ export default (lazy) => ({
state: { state: {
loaded: false, loaded: false,
}, },
rect: {},
show: false, show: false,
}; };
}, },
@ -40,18 +39,14 @@ export default (lazy) => ({
}, },
methods: { methods: {
getRect() {
this.rect = this.$el.getBoundingClientRect();
},
checkInView() { checkInView() {
this.getRect(); const rect = useRect(this.$el);
return ( return (
inBrowser && inBrowser &&
this.rect.top < window.innerHeight * lazy.options.preLoad && rect.top < window.innerHeight * lazy.options.preLoad &&
this.rect.bottom > 0 && rect.bottom > 0 &&
this.rect.left < window.innerWidth * lazy.options.preLoad && rect.left < window.innerWidth * lazy.options.preLoad &&
this.rect.right > 0 rect.right > 0
); );
}, },

View File

@ -1,5 +1,6 @@
import { inBrowser } from '@vant/use'; import { useRect } from '@vant/use';
import { loadImageAsync, noop } from './util'; import { loadImageAsync } from './util';
import { noop } from '../../utils';
export default (lazyManager) => ({ export default (lazyManager) => ({
props: { props: {
@ -34,7 +35,6 @@ export default (lazyManager) => ({
error: false, error: false,
attempt: 0, attempt: 0,
}, },
rect: {},
renderSrc: '', renderSrc: '',
}; };
}, },
@ -66,17 +66,13 @@ export default (lazyManager) => ({
this.options.loading = loading; this.options.loading = loading;
this.renderSrc = this.options.loading; this.renderSrc = this.options.loading;
}, },
getRect() {
this.rect = this.$el.getBoundingClientRect();
},
checkInView() { checkInView() {
this.getRect(); const rect = useRect(this.$el);
return ( return (
inBrowser && rect.top < window.innerHeight * lazyManager.options.preLoad &&
this.rect.top < window.innerHeight * lazyManager.options.preLoad && rect.bottom > 0 &&
this.rect.bottom > 0 && rect.left < window.innerWidth * lazyManager.options.preLoad &&
this.rect.left < window.innerWidth * lazyManager.options.preLoad && rect.right > 0
this.rect.right > 0
); );
}, },
load(onFinish = noop) { load(onFinish = noop) {

View File

@ -8,11 +8,11 @@ import {
supportWebp, supportWebp,
getDPR, getDPR,
getBestSelectionFromSrcset, getBestSelectionFromSrcset,
isObject,
hasIntersectionObserver, hasIntersectionObserver,
modeType, modeType,
ImageCache, ImageCache,
} from './util'; } from './util';
import { isObject } from '../../utils';
import ReactiveListener from './listener'; import ReactiveListener from './listener';
const DEFAULT_URL = const DEFAULT_URL =
@ -64,7 +64,6 @@ export default function () {
attempt: attempt || 3, attempt: attempt || 3,
scale: scale || getDPR(scale), scale: scale || getDPR(scale),
ListenEvents: listenEvents || DEFAULT_EVENTS, ListenEvents: listenEvents || DEFAULT_EVENTS,
hasbind: false,
supportWebp: supportWebp(), supportWebp: supportWebp(),
filter: filter || {}, filter: filter || {},
adapter: adapter || {}, adapter: adapter || {},

View File

@ -1,4 +1,6 @@
import { loadImageAsync, noop } from './util'; import { useRect } from '@vant/use';
import { loadImageAsync } from './util';
import { noop } from '../../utils';
export default class ReactiveListener { export default class ReactiveListener {
constructor({ constructor({
@ -26,8 +28,6 @@ export default class ReactiveListener {
this.options = options; this.options = options;
this.rect = null;
this.$parent = $parent; this.$parent = $parent;
this.elRenderer = elRenderer; this.elRenderer = elRenderer;
this._imageCache = imageCache; this._imageCache = imageCache;
@ -87,25 +87,17 @@ export default class ReactiveListener {
} }
} }
/*
* get el node rect
* @return
*/
getRect() {
this.rect = this.el.getBoundingClientRect();
}
/* /*
* check el is in view * check el is in view
* @return {Boolean} el is in view * @return {Boolean} el is in view
*/ */
checkInView() { checkInView() {
this.getRect(); const rect = useRect(this.el);
return ( return (
this.rect.top < window.innerHeight * this.options.preLoad && rect.top < window.innerHeight * this.options.preLoad &&
this.rect.bottom > this.options.preLoadTop && rect.bottom > this.options.preLoadTop &&
this.rect.left < window.innerWidth * this.options.preLoad && rect.left < window.innerWidth * this.options.preLoad &&
this.rect.right > 0 rect.right > 0
); );
} }

View File

@ -158,12 +158,6 @@ export const loadImageAsync = (item, resolve, reject) => {
image.onerror = (e) => reject(e); image.onerror = (e) => reject(e);
}; };
export function isObject(obj) {
return obj !== null && typeof obj === 'object';
}
export function noop() {}
export class ImageCache { export class ImageCache {
constructor({ max }) { constructor({ max }) {
this.options = { this.options = {