debian-mirror-gitlab/app/assets/javascripts/lazy_loader.js

167 lines
5 KiB
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
import _ from 'underscore';
2018-11-18 11:00:15 +05:30
export const placeholderImage =
'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==';
2018-12-05 23:21:45 +05:30
const SCROLL_THRESHOLD = 500;
2017-09-10 17:25:29 +05:30
export default class LazyLoader {
constructor(options = {}) {
2018-12-05 23:21:45 +05:30
this.intersectionObserver = null;
2017-09-10 17:25:29 +05:30
this.lazyImages = [];
this.observerNode = options.observerNode || '#content-body';
const scrollContainer = options.scrollContainer || window;
2018-12-05 23:21:45 +05:30
scrollContainer.addEventListener('load', () => this.register());
}
static supportsIntersectionObserver() {
return 'IntersectionObserver' in window;
2017-09-10 17:25:29 +05:30
}
2018-12-05 23:21:45 +05:30
2017-09-10 17:25:29 +05:30
searchLazyImages() {
2019-01-03 12:48:30 +05:30
requestIdleCallback(
2018-11-18 11:00:15 +05:30
() => {
2018-12-05 23:21:45 +05:30
const lazyImages = [].slice.call(document.querySelectorAll('.lazy'));
2018-03-17 18:26:18 +05:30
2018-12-05 23:21:45 +05:30
if (LazyLoader.supportsIntersectionObserver()) {
if (this.intersectionObserver) {
lazyImages.forEach(img => this.intersectionObserver.observe(img));
}
} else if (lazyImages.length) {
this.lazyImages = lazyImages;
this.checkElementsInView();
2018-11-18 11:00:15 +05:30
}
},
{ timeout: 500 },
);
2017-09-10 17:25:29 +05:30
}
2018-12-05 23:21:45 +05:30
2017-09-10 17:25:29 +05:30
startContentObserver() {
const contentNode = document.querySelector(this.observerNode) || document.querySelector('body');
if (contentNode) {
2018-12-05 23:21:45 +05:30
this.mutationObserver = new MutationObserver(() => this.searchLazyImages());
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
this.mutationObserver.observe(contentNode, {
2017-09-10 17:25:29 +05:30
childList: true,
subtree: true,
});
}
}
2018-12-05 23:21:45 +05:30
stopContentObserver() {
if (this.mutationObserver) {
this.mutationObserver.takeRecords();
this.mutationObserver.disconnect();
this.mutationObserver = null;
}
}
unregister() {
this.stopContentObserver();
if (this.intersectionObserver) {
this.intersectionObserver.takeRecords();
this.intersectionObserver.disconnect();
this.intersectionObserver = null;
}
if (this.throttledScrollCheck) {
window.removeEventListener('scroll', this.throttledScrollCheck);
}
if (this.debouncedElementsInView) {
window.removeEventListener('resize', this.debouncedElementsInView);
}
}
register() {
if (LazyLoader.supportsIntersectionObserver()) {
this.startIntersectionObserver();
} else {
this.startLegacyObserver();
}
2017-09-10 17:25:29 +05:30
this.startContentObserver();
2018-12-05 23:21:45 +05:30
this.searchLazyImages();
2017-09-10 17:25:29 +05:30
}
2018-12-05 23:21:45 +05:30
startIntersectionObserver = () => {
this.throttledElementsInView = _.throttle(() => this.checkElementsInView(), 300);
this.intersectionObserver = new IntersectionObserver(this.onIntersection, {
rootMargin: `${SCROLL_THRESHOLD}px 0px`,
thresholds: 0.1,
});
};
onIntersection = entries => {
entries.forEach(entry => {
2019-01-03 12:48:30 +05:30
if (entry.isIntersecting) {
2018-12-05 23:21:45 +05:30
this.intersectionObserver.unobserve(entry.target);
this.lazyImages.push(entry.target);
}
});
this.throttledElementsInView();
};
startLegacyObserver() {
this.throttledScrollCheck = _.throttle(() => this.scrollCheck(), 300);
this.debouncedElementsInView = _.debounce(() => this.checkElementsInView(), 300);
window.addEventListener('scroll', this.throttledScrollCheck);
window.addEventListener('resize', this.debouncedElementsInView);
}
2017-09-10 17:25:29 +05:30
scrollCheck() {
2019-01-03 12:48:30 +05:30
requestAnimationFrame(() => this.checkElementsInView());
2017-09-10 17:25:29 +05:30
}
2018-12-05 23:21:45 +05:30
2017-09-10 17:25:29 +05:30
checkElementsInView() {
2018-11-08 19:23:39 +05:30
const scrollTop = window.pageYOffset;
const visHeight = scrollTop + window.innerHeight + SCROLL_THRESHOLD;
2017-09-10 17:25:29 +05:30
// Loading Images which are in the current viewport or close to them
2018-11-18 11:00:15 +05:30
this.lazyImages = this.lazyImages.filter(selectedImage => {
2017-09-10 17:25:29 +05:30
if (selectedImage.getAttribute('data-src')) {
2018-03-17 18:26:18 +05:30
const imgBoundRect = selectedImage.getBoundingClientRect();
const imgTop = scrollTop + imgBoundRect.top;
const imgBound = imgTop + imgBoundRect.height;
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
if (scrollTop <= imgBound && visHeight >= imgTop) {
2019-01-03 12:48:30 +05:30
requestAnimationFrame(() => {
2018-11-18 11:00:15 +05:30
LazyLoader.loadImage(selectedImage);
});
2017-09-10 17:25:29 +05:30
return false;
}
2018-12-05 23:21:45 +05:30
/*
If we are scrolling fast, the img we watched intersecting could have left the view port.
So we are going watch for new intersections.
*/
if (LazyLoader.supportsIntersectionObserver()) {
if (this.intersectionObserver) {
this.intersectionObserver.observe(selectedImage);
}
return false;
}
2017-09-10 17:25:29 +05:30
return true;
}
return false;
});
}
2018-12-05 23:21:45 +05:30
2017-09-10 17:25:29 +05:30
static loadImage(img) {
if (img.getAttribute('data-src')) {
2018-11-18 11:00:15 +05:30
let imgUrl = img.getAttribute('data-src');
// Only adding width + height for avatars for now
if (imgUrl.indexOf('/avatar/') > -1 && imgUrl.indexOf('?') === -1) {
let targetWidth = null;
if (img.getAttribute('width')) {
targetWidth = img.getAttribute('width');
} else {
targetWidth = img.width;
}
if (targetWidth) imgUrl += `?width=${targetWidth}`;
}
img.setAttribute('src', imgUrl);
2017-09-10 17:25:29 +05:30
img.removeAttribute('data-src');
img.classList.remove('lazy');
img.classList.add('js-lazy-loaded');
}
}
}