forked from indexeddbshim/IndexedDBShim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
46 lines (45 loc) · 1.46 KB
/
build.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
/**
* Function that concantenates all the modules that are used by IndexedDB
* @param {Object} callback
*/
var buildIndexedDB = (function(){
var moduleList = ["Init", "util", "Sca", "Key", "Event", "IDBRequest", "IDBKeyRange", "IDBCursor", "IDBIndex", "IDBObjectStore", "IDBTransaction", "IDBDatabase", "shimIndexedDB", "globalVars"];
return {
addScripts: function(callback){
window.idbModules = {};
(function addScript(i){
var x = document.createElement("script");
x.src = "/IndexedDBShim/src/" + moduleList[i] + ".js";
x.type = "text/javascript"
x.onload = function(){
if (i < moduleList.length - 1) addScript(i + 1);
else callback();
}
document.getElementsByTagName('head')[0].appendChild(x);
}(0));
},
concatScripts: function(callback){
var scripts = [""];
(function fetchScript(i){
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest(); // code for IE7+, Firefox, Chrome, Opera, Safari
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");// code for IE6, IE5
}
xmlhttp.open("GET", "/IndexedDBShim/src/" + moduleList[i] + ".js" + "", true);
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
scripts.push(xmlhttp.responseText);
if (i >= moduleList.length - 1) {
callback(scripts.join("\n"));
} else {
fetchScript(i + 1);
}
}
}
xmlhttp.send();
})(0);
}
}
})();