-
Notifications
You must be signed in to change notification settings - Fork 94
/
bigrender.js
189 lines (150 loc) · 5.15 KB
/
bigrender.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
(function(exports, doc) {
// 兼容低版本 IE
Function.prototype.bind = Function.prototype.bind || function(context) {
var that = this;
return function() {
return that.apply(context, arguments);
};
};
var T = {};
// 工具方法 begin
T.getElementsByClassName = function(cls) {
if (doc.getElementsByClassName)
return doc.getElementsByClassName(cls);
var o = doc.getElementsByTagName("*")
, rs = [];
for (var i = 0, t, len = o.length; i < len; i++)
(t = o[i]) && ~t.className.indexOf(cls) && rs.push(t);
return rs;
};
T.addEvent = function(ele, type, fn) {
ele.attachEvent ? ele.attachEvent("on" + type, fn) : ele.addEventListener(type, fn, false);
};
T.removeEvent = function(ele, type, fn) {
ele.detachEvent ? ele.detachEvent("on" + type, fn) : ele.removeEventListener(type, fn, false);
};
T.getPos = function(ele) {
var pos = {
x: 0,
y: 0
};
while (ele.offsetParent) {
pos.x += ele.offsetLeft;
pos.y += ele.offsetTop;
ele = ele.offsetParent;
}
return pos;
};
T.getViewport = function() {
var html = doc.documentElement;
return {
w: !window.innerWidth ? html.clientHeight : window.innerWidth,
h: !window.innerHeight ? html.clientHeight : window.innerHeight
};
};
T.getScrollHeight = function() {
html = doc.documentElement, bd = doc.body;
return Math.max(window.pageYOffset || 0, html.scrollTop, bd.scrollTop);
};
T.getEleSize = function(ele) {
return {
w: ele.offsetWidth,
h: ele.offsetHeight
};
};
// 工具方法 end
T.datalazyload = {
threshold: 0, // {number} 阈值,预加载高度,单位(px)
els: null, // {Array} 延迟加载元素集合(数组)
fn: null, // {Function} scroll、resize、touchmove 所绑定方法,即为 pollTextareas()
evalScripts: function(code) {
var head = doc.getElementsByTagName("head")[0]
, js = doc.createElement("script");
js.text = code;
head.insertBefore(js, head.firstChild);
head.removeChild(js);
},
evalStyles: function(code) {
var head = doc.getElementsByTagName("head")[0]
, css = doc.createElement("style");
css.type = "text/css";
try {
css.appendChild(doc.createTextNode(code));
} catch (e) {
css.styleSheet.cssText = code;
}
head.appendChild(css);
},
extractCode: function(str, isStyle) {
var cata = isStyle ? "style" : "script"
, scriptFragment = "<" + cata + "[^>]*>([\\S\\s]*?)</" + cata + "\\s*>"
, matchAll = new RegExp(scriptFragment, "img")
, matchOne = new RegExp(scriptFragment, "im")
, matchResults = str.match(matchAll) || []
, ret = [];
for (var i = 0, len = matchResults.length; i < len; i++) {
var temp = (matchResults[i].match(matchOne) || [ "", "" ])[1];
temp && ret.push(temp);
}
return ret;
},
decodeHTML: function(str) {
return str.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&");
},
insert: function(ele) {
var parent = ele.parentNode
, txt = this.decodeHTML(ele.innerHTML)
, matchStyles = this.extractCode(txt, true)
, matchScripts = this.extractCode(txt);
parent.innerHTML = txt
.replace(new RegExp("<script[^>]*>([\\S\\s]*?)</script\\s*>", "img"), "")
.replace(new RegExp("<style[^>]*>([\\S\\s]*?)</style\\s*>", "img"), "");
if (matchStyles.length)
for (var i = matchStyles.length; i --;)
this.evalStyles(matchStyles[i]);
// 如果延迟部分需要做 loading 效果
parent.className = parent.className.replace("loading", "");
if (matchScripts.length)
for (var i = 0, len = matchScripts.length; i < len; i++)
this.evalScripts(matchScripts[i]);
},
inView: function(ele) {
var top = T.getPos(ele).y
, viewVal = T.getViewport().h
, scrollVal = T.getScrollHeight()
, eleHeight = T.getEleSize(ele).h;
if (top >= scrollVal - eleHeight - this.threshold && top <= scrollVal + viewVal + this.threshold) {
return true;
}
return false;
},
pollTextareas: function() {
// 需延迟加载的元素已经全部加载完
if (!this.els.length) {
T.removeEvent(window, "scroll", this.fn);
T.removeEvent(window, "resize", this.fn);
T.removeEvent(doc.body, "touchMove", this.fn);
return;
}
// 判断是否需要加载
for (var i = this.els.length; i--; ) {
var ele = this.els[i];
if (!this.inView(ele))
continue;
this.insert(ele);
this.els.splice(i, 1);
}
},
init: function(config) {
var cls = config.cls;
this.threshold = config.threshold ? config.threshold : 0;
this.els = Array.prototype.slice.call(T.getElementsByClassName(cls));
this.fn = this.pollTextareas.bind(this);
this.fn();
T.addEvent(window, "scroll", this.fn);
T.addEvent(window, "resize", this.fn);
T.addEvent(doc.body, "touchMove", this.fn);
}
};
exports["T"] = T;
})(window, document);