-
Notifications
You must be signed in to change notification settings - Fork 1
/
kino.Base.js
228 lines (193 loc) · 6.8 KB
/
kino.Base.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
(function () {
var k = {
rnum: 0
};
/**********************************************************************************************
Private
*********************************************************************************************/
var p = {
loadHash: {}
};
p.aLoad = function (options) {
///<summary>
///异步加载脚本
///</summary>
//判断脚本是否已经加载
var scriptBlock = p.getCurrentScriptBlock();
var fullUrl = p.handleUrl(options.url);
var newScript = document.createElement("script");
newScript.src = fullUrl;
newScript.type = "text/javascript";
//scriptBlock.parentNode.appendChild(newScript);
scriptBlock.parentNode.insertBefore(newScript, scriptBlock);
newScript.onload = newScript.onreadystatechange = function () {
k.rnum++;
scriptBlock.parentNode.removeChild(newScript);
if (typeof (options.callback) !== "undefined" && typeof (options.callback) === "function")
options.callback.call();
};
};
p.getCurrentScriptBlock = function () {
///<summary>
///获取当前脚本块
///</summary>
var ss = document.getElementsByTagName("script");
return ss[ss.length - 1];
};
p.handleUrl = function (url) {
var currentScript = p.getCurrentScriptBlock();
if (currentScript.src == '' || typeof currentScript.src == undefined)
return url;
else {
//匹配完整url模式
if (/^https?:\/\//.test(url))
return url;
//匹配根目录模式
else if (url.substr(0, 1) == "/") {
var host = /^(https?:\/\/[^\/]+)/.exec(window.location.href)[0];
return host + url;
}
//匹配父目录模式
else if (/^\.\.\//.test(url)) {
var filePath = /\.\.\/((?:[^\.][^\/]*(?:\/|$))+)$/.exec(url)[1];
var rstr = url.replace(/\.\.\/((?:[^\.][^\/]*(?:\/|$))+)$/, "../")
.replace(/\.\.\//g, "[^/]+/") + "[^\/]+$";
var r = new RegExp(rstr, "g");
return currentScript.src.replace(r, "") + filePath;
}
//当前页面模式
else
return currentScript.src.replace(/[^\/]+$/, url);
}
};
p.requireListHandle = function (item, callback, i) {
var _i;
if (i === undefined)
_i = 0;
else
_i = i + 1;
var _url;
var hasLoaded = false;
//string mode
if (Object.prototype.toString.call(item[_i]) === '[object String]')
_url = item[_i];
//json mode
else if (item[_i] != null && typeof item[_i] === 'object') {
for (var json in item[_i]) {
_url = item[_i][json];
if (typeof p.loadHash[json] !== 'undefined')
hasLoaded = true;
else
p.loadHash[json] = true;
break;
}
}
if (hasLoaded) {
if (_i < item.length - 1)
p.requireListHandle(item, callback, _i);
else {
if (callback !== undefined && typeof (callback) === 'function')
callback.call();
}
}
else {
p.aLoad({
url: _url,
callback: function () {
if (_i < item.length - 1)
p.requireListHandle(item, callback, _i);
else {
if (callback !== undefined && typeof (callback) === 'function')
callback.call();
}
}
});
}
};
/**********************************************************************************************
Public
*********************************************************************************************/
k.resetLoadHash = function () {
///<summary>
///清空哈希加载列表
///</summary>
k.rnum = 0;
p.loadHash = {};
};
k.getRootPath = function () {
///<summary>
///获取根目录url路径
///</summary>
///<returns type="String"/>
return p.rootPath;
};
k.setRootPath = function (url) {
///<summary>
///设置根目录url路径
///</summary>
///<param name="url" type="String"/>
if (/^\./.test(url))
p.rootPath = document.location.href.replace(/([^\/?]+)(?:\?.*$|$)/, "") + url.replace(/^\.(?:\/)?/, "");
};
//init rootPath as current referer page
k.setRootPath(".");
k.require = function (item, callback) {
///<summary>
///动态加载
///</summary>
///<param name='item' type='String|Json|Array'>加载项</param>
///<param name='callback' type='Function'>回调函数</param>
if (Object.prototype.toString.call(item) === '[object String]')
p.aLoad({
url: item,
callback: callback
});
else if (Object.prototype.toString.call(item) === '[object Array]')
p.requireListHandle(item, callback);
//single json object handle
else if (item != null && typeof item === 'object') {
for (var i in item) {
if (typeof p.loadHash[i] === 'undefined')
p.loadHash[i] = true;
else {
if (typeof (callback) === "function")
callback();
return;
}
p.aLoad({
url: item[i],
key: i,
callback: callback
});
break;
}
}
};
k.define = function (className, construct) {
///<summary>
///类定义帮助函数
///</summary>
///<param name='className' type='String'>类名</param>
///<param name='construct' type='Function'>构造函数</param>
///<returns type='Class' />
var ns = className.split('.');
var temp = window;
for (var i = 0; i < ns.length; i++) {
if (i == ns.length - 1) {
if (construct != null)
temp[ns[i]] = construct;
else
temp[ns[i]] = function () { };
return temp[ns[i]];
}
else if (typeof temp[ns[i]] === 'undefined') {
temp[ns[i]] = {};
temp = temp[ns[i]];
}
else if (typeof temp[ns[i]] !== 'undefined') {
temp = temp[ns[i]];
}
}
};
this.kino = k;
})();