forked from TimvdLippe/iron-lazy-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiron-lazy-page.html
214 lines (195 loc) · 5.2 KB
/
iron-lazy-page.html
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
<!--
@license
Copyright (C) 2016, Tim van der Lippe
All rights reserved.
This software may be modified and distributed under the terms
of the BSD license. See the LICENSE file for details.
-->
<link rel="import" href="../polymer/polymer.html">
<!--
Template element used in conjunction with `iron-lazy-pages`.
@element iron-lazy-page
-->
<dom-module id="iron-lazy-page">
</dom-module>
<script>
Polymer({
is: 'iron-lazy-page',
extends: 'template',
properties: {
/**
* The url corresponding to the content which should be lazy-loaded.
*/
path: {
type: String,
value: ''
},
/**
* When true, elements will be removed from DOM and discarded when
* the page path does not match anymore and re-created and added back
* to the DOM when the page path matches again.
* By default, stamped elements will be hidden but left in the DOM
* when a page path does not match anymore, which is generally results
* in better performance.
*/
restamp: {
type: Boolean,
value: false
}
},
behaviors: [
Polymer.Templatizer
],
/*
##################
BEGIN DOM-IF LOGIC
##################
*/
_loadAndShow: function(cb, parent) {
var self = this;
var onImportFinished = function() {
cb(function() {
self._stamp(Polymer.dom(self).parentNode);
self._instance._showHideChildren(false);
return self;
})
};
if (!this.loaded && this.path) {
this._importHref(onImportFinished, parent.loadAsync);
} else {
onImportFinished();
}
},
_stamp: function(parentNode) {
if (!this.ctor) {
this.templatize(this);
}
// Attach logic of dom-if
if (parentNode) {
var parent = Polymer.dom(parentNode);
var target = parent.firstElementChild;
if (!this._instance) {
this._instance = this.stamp();
var root = this._instance.root;
parent.insertBefore(root, target);
} else {
var c$ = this._instance._children;
if (c$ && c$.length) {
for (var i = c$.length - 1, n; (i > 0) && (n=c$[i]); i--) {
parent.insertBefore(n, target);
target = n;
}
}
}
}
},
// Implements extension point from Templatizer mixin
// Called as side-effect of a host property change, responsible for
// notifying parent.<prop> path change on instance
_forwardParentProp: function(prop, value) {
if (this._instance) {
this._instance[prop] = value;
}
},
// Implements extension point from Templatizer
// Called as side-effect of a host path change, responsible for
// notifying parent.<path> path change on each row
_forwardParentPath: function(path, value) {
if (this._instance) {
this._instance._notifyPath(path, value, true);
}
},
/*
##################
END DOM-IF LOGIC
##################
*/
_importHref: (function() {
function removeFromHead(e) {
var el = e.target || e.srcElement;
if (el.parentNode === document.head) {
document.head.removeChild(el);
}
}
return function(cb, loadAsync) {
if (!this.timesFailed) {
this._path = this.path;
this.timesFailed = 0;
}
var self = this;
this.importHref(this._path, function(e) {
self.loaded = true;
self.timesFailed = 0;
removeFromHead(e);
cb();
}, function(e) {
removeFromHead(e);
self._path = self.path + '?' + self.timesFailed++;
cb();
}, loadAsync);
}
})(),
_hide: function(restamp, attribute, clazz) {
if (this._instance) {
if (restamp || this.restamp) {
var c$ = this._instance._children;
if (c$ && c$.length) {
// use first child parent, for case when dom-if may have been detached
var parent = Polymer.dom(Polymer.dom(c$[0]).parentNode);
for (var i=0, n; (i<c$.length) && (n=c$[i]); i++) {
parent.removeChild(n);
}
}
this._instance = null;
} else {
this._instance._showHideChildren(true);
if (attribute) {
this._toggleAttribute(attribute, false);
}
if (clazz) {
this._toggleClass(clazz, false);
}
}
}
},
get _contentNode() {
var node;
for (var i=0,l=this._instance._children.length; i<l; i++) {
node = this._instance._children[i];
if (node instanceof HTMLElement) {
return node;
}
}
},
_toggleClass: function(clazz, bool) {
this._forEachHtmlElement(function(n) {
if (bool) {
n.classList.add(clazz);
} else {
n.classList.remove(clazz);
}
});
},
_toggleAttribute: function(attribute, bool) {
this._forEachHtmlElement(function(n) {
if (bool) {
n.setAttribute(attribute, '');
} else {
n.removeAttribute(attribute);
}
});
},
_forEachHtmlElement: function(func) {
if (this._instance) {
var c$ = this._instance._children;
if (c$ && c$.length) {
for (var i=0, n; (i<c$.length) && (n=c$[i]); i++) {
if (n instanceof HTMLElement) {
func(Polymer.dom(n));
}
}
}
}
}
});
</script>