-
-
Save supafoundation/1c4a7e283715d061034f96c689a3cc20 to your computer and use it in GitHub Desktop.
AngularJS2 / Ionic2 : ImageCache Directive to use with imgcache.js
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 { Directive, ElementRef, Input } from '@angular/core'; | |
declare var ImgCache: any; | |
@Directive({ | |
selector: '[image-cache]' | |
}) | |
export class ImageCacheDirective { | |
constructor ( | |
private el: ElementRef | |
) { | |
// init | |
} | |
ngOnInit() { | |
this.el.nativeElement.crossOrigin = "Anonymous"; // CORS enabling | |
ImgCache.isCached(this.el.nativeElement.src, (path: string, success: any) => { | |
console.log('path - '+ path); | |
console.log('success - '+ success); | |
if (success) { | |
// already cached | |
console.log('already cached so using cached'); | |
ImgCache.useCachedFile(this.el.nativeElement); | |
} else { | |
// not there, need to cache the image | |
console.log('not there, need to cache the image - ' + this.el.nativeElement.src); | |
ImgCache.cacheFile(this.el.nativeElement.src, () => { | |
console.log('cached file'); | |
// ImgCache.useCachedFile(el.nativeElement); | |
}); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment