-
Notifications
You must be signed in to change notification settings - Fork 10
/
imagenie.js
158 lines (133 loc) · 6.63 KB
/
imagenie.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
* Created by Sani Yusuf AKA Toruk Makto on 23/01/15.
* @saniyusuf on Twitter
*
*
*
* Description
* ***********
*The aim of this library is to provide Ionic developers an easy way of having images cache locally without worrying about the specifics.
* You simply hook it into any element DIV, IMG or whatever and anytime that element tries to resolve an Image magic happens
*/
(function () {
angular.module('imagenie', ['LocalForageModule'])
.constant('IMAGENIE_LOCAL_FORAGE_CONFIG', {
name : 'imagenie_db',
storeName : 'image',
description : 'The database to hold base 64 versions of all your images so they are available offline'
})
.factory('ImagenieUtil', ['$q', ImagenieUtil])
.directive('imagenie', ['ImagenieUtil', '$localForage', 'IMAGENIE_LOCAL_FORAGE_CONFIG', DirectiveFunction]);
function ImagenieUtil ($q){
var ImagenieUtil = {};
ImagenieUtil.getImageBase64String = function (url, outputFormat) {
var imageBase64StringPromise = $q.defer();
var canvas = document.createElement('CANVAS'),
ctx = canvas.getContext('2d'),
img = new Image;
img.crossOrigin = 'Anonymous';
img.onload = function(){
var dataURL;
canvas.height = img.height;
canvas.width = img.width;
ctx.drawImage(img, 0, 0);
dataURL = canvas.toDataURL(outputFormat);
canvas = null;
imageBase64StringPromise.resolve(dataURL);
};
img.onerror = function () {
imageBase64StringPromise.reject(url);
};
img.src = url;
return imageBase64StringPromise.promise;
};
ImagenieUtil.isUndefined = function (value) {
return typeof value === 'undefined';
};
ImagenieUtil.isEmpty = function (value) {
return this.isUndefined(value) || value === '' || value === null;
};
ImagenieUtil.getImageSrc = function (elementAttributes) {
if(!this.isEmpty(elementAttributes.imagenie)){
return elementAttributes.imagenie;
}else if(!this.isEmpty(elementAttributes.ngSrc)){
return elementAttributes.ngSrc;
}else if (!this.isEmpty(elementAttributes.src)){
return elementAttributes.src;
}else{
console.warn('Image Src Undefined');
return null;
}
};
ImagenieUtil.setImageToElement = function (element, imageBase64String) {
if(element[0].nodeName === 'IMG'){
element.attr('src', imageBase64String);
}else{
element.css('background-image', 'url(' + imageBase64String + ')');
}
};
ImagenieUtil.isUriAbsolute = function (uri) {
//****************
//http://stackoverflow.com/questions/10687099/how-to-test-if-a-url-string-is-absolute-or-relative
//****************
var uriTypeRegex = new RegExp('^(?:[a-z]+:)?//', 'i');
return uriTypeRegex.test(uri);
};
return ImagenieUtil;
}
function DirectiveFunction(ImagenieUtil, $localForage, IMAGENIE_LOCAL_FORAGE_CONFIG) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
attrs.$observe('imagenie', function () {
var imageSrc = ImagenieUtil.getImageSrc(attrs);
var imagenieLocalForageInstance = {};
try {
imagenieLocalForageInstance = $localForage.instance(IMAGENIE_LOCAL_FORAGE_CONFIG.name);
}catch (error) {
if(ionic.Platform.isIOS()){
//Force WebSQL on IOS as IndexedDB is not stable on IOS
var iosConfig = angular.extend(IMAGENIE_LOCAL_FORAGE_CONFIG, {driver : 'webSQLStorage'});
imagenieLocalForageInstance = $localForage.createInstance(iosConfig);
}else{
imagenieLocalForageInstance = $localForage.createInstance(IMAGENIE_LOCAL_FORAGE_CONFIG);
}
}
if(ImagenieUtil.isUriAbsolute((imageSrc))){
attrs.ngSrc = '';
imagenieLocalForageInstance.getItem(encodeURIComponent(imageSrc))
.then(function (localImageSuccessData) {
if(!ImagenieUtil.isEmpty(localImageSuccessData)){
ImagenieUtil.setImageToElement(element, localImageSuccessData);
}else{
var newImage = angular.element('<img />');
newImage.bind('load', function () {
ImagenieUtil.getImageBase64String(imageSrc)
.then(function (imageBase64String) {
imagenieLocalForageInstance.setItem(encodeURIComponent(imageSrc), imageBase64String);
ImagenieUtil.setImageToElement(element, imageBase64String);
}, function(error) {
ImagenieUtil.setImageToElement(element, imageSrc);
});
});
newImage.attr('src', imageSrc);
}
}, function () {
var newImage = angular.element('<img />');
newImage.bind('load', function () {
ImagenieUtil.getImageBase64String(imageSrc)
.then(function (imageBase64String) {
imagenieLocalForageInstance.setItem(encodeURIComponent(imageSrc), imageBase64String);
ImagenieUtil.setImageToElement(element, imageBase64String);
}, function(error) {
ImagenieUtil.setImageToElement(element, imageSrc);
});
});
newImage.attr('src', imageSrc);
});
}
});
}
}
}
})();