Created
April 16, 2019 12:53
-
-
Save Anjireddy4246/8948580442bae60d7fe6f0dead3d08ac to your computer and use it in GitHub Desktop.
Angular Directive to load the images based on the viewport
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AfterViewInit, Directive, ElementRef, HostBinding, Input } from '@angular/core'; | |
@Directive({ | |
selector: 'img[appLazyLoad]' | |
}) | |
export class LazyLoadDirective implements AfterViewInit { | |
@HostBinding('attr.src') srcAttr = null; | |
@Input() src: string; | |
constructor(private el: ElementRef) {} | |
ngAfterViewInit() { | |
this.canLazyLoad() ? this.lazyLoadImage() : this.loadImage(); | |
} | |
private canLazyLoad() { | |
return window && 'IntersectionObserver' in window; | |
} | |
private lazyLoadImage() { | |
const obs = new IntersectionObserver(entries => { | |
entries.forEach(({ isIntersecting }) => { | |
if (isIntersecting) { | |
this.loadImage(); | |
obs.unobserve(this.el.nativeElement); | |
} | |
}); | |
}); | |
obs.observe(this.el.nativeElement); | |
} | |
private loadImage() { | |
this.srcAttr = this.src; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment