-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathmicroReact.ts
600 lines (564 loc) · 22.4 KB
/
microReact.ts
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
declare var Velocity:any;
export interface Handler<T extends Event> {
(evt:T, elem:uElement): void
}
export interface RenderHandler {
(node:HTMLElement, elem:uElement): void
}
export interface uElement {
t?:string
c?:string
id?:string
parent?:string
children?:uElement[]
ix?:number
key?:string
dirty?:boolean
semantic?:string
tween?: any
enter?: any
leave?: any
debug?:any
// Content
contentEditable?:boolean
checked?:boolean
draggable?:boolean
spellcheck?:boolean
href?:string
src?:string
data?:any
download?:string
allowfullscreen?:boolean
placeholder?:string
selected?:boolean
tabindex?:number
text?:string
strictText?: boolean
type?:string
value?:string
dangerouslySetInnerHTML?:string
target?:string
style?: string,
// Styles (Structure)
flex?:number|string
left?:number|string
top?:number|string
width?:number|string
height?:number|string
textAlign?:string
transform?:string
verticalAlign?:string
zIndex?:number
// Styles (Aesthetic)
backgroundColor?:string
backgroundImage?:string
border?:string
borderColor?:string
borderWidth?:number|string
borderRadius?:number|string
color?:string
colspan?:number
fontFamily?:string
fontSize?:string
opacity?:number
// Svg
svg?:boolean
x?:number|string
y?:number|string
dx?:number|string
dy?:number|string
cx?:number|string
cy?:number|string
r?:number|string
d?:number|string
fill?:string
stroke?:string
strokeWidth?:string
startOffset?:number|string
textAnchor?:string
viewBox?:string
xlinkhref?:string
// Events
dblclick?:Handler<MouseEvent>
click?:Handler<MouseEvent>
contextmenu?:Handler<MouseEvent>
mousedown?:Handler<MouseEvent>
mousemove?:Handler<MouseEvent>
mouseup?:Handler<MouseEvent>
mouseover?:Handler<MouseEvent>
mouseout?:Handler<MouseEvent>
mouseleave?:Handler<MouseEvent>
mousewheel?:Handler<MouseEvent>
dragover?:Handler<MouseEvent>
dragstart?:Handler<MouseEvent>
dragend?:Handler<MouseEvent>
drag?:Handler<MouseEvent>
drop?:Handler<MouseEvent>
scroll?:Handler<MouseEvent>
focus?:Handler<FocusEvent>
blur?:Handler<FocusEvent>
input?:Handler<Event>
change?:Handler<Event>
keyup?:Handler<KeyboardEvent>
keydown?:Handler<KeyboardEvent>
cut?:Handler<KeyboardEvent>
copy?:Handler<KeyboardEvent>
paste?:Handler<KeyboardEvent>
postRender?:RenderHandler
[attr:string]: any
}
function now() {
if(window.performance) {
return window.performance.now();
}
return (new Date()).getTime();
}
function shallowEquals(a:any, b:any) {
if(a === b) return true;
if(!a || !b) return false;
for(var k in a) {
if(a[k] !== b[k]) return false;
}
for(var k in b) {
if(b[k] !== a[k]) return false;
}
return true;
}
function postAnimationRemove(elements:Element[]) {
for(let elem of elements) {
if(elem.parentNode) elem.parentNode.removeChild(elem);
}
}
export class Renderer {
// @TODO: A more performant implementation would have a way of rendering subtrees and just have a lambda Renderer to compile into
static _compileRenderer:{[id:string]: Renderer} = {};
static compile(elem:uElement) {
if(!elem.id) throw new Error("Cannot compile element with id " + elem.id);
let renderer = Renderer._compileRenderer[elem.id];
if(!renderer) renderer = Renderer._compileRenderer[elem.id] = new Renderer();
renderer.render([elem]);
return renderer.elementCache[elem.id];
}
content: HTMLElement;
elementCache: {[id:string]: HTMLElement|undefined};
prevTree:{[id:string]: uElement};
tree:{[id:string]: uElement};
postRenders: uElement[];
lastDiff: {adds: string[], updates: {}};
queued: boolean;
handleEvent: (any);
constructor() {
this.content = document.createElement("div");
this.content.className = "__root";
this.elementCache = { "__root": this.content };
this.prevTree = {};
this.tree = {};
this.postRenders = [];
this.lastDiff = {adds: [], updates: {}};
var self = this;
this.handleEvent = function handleEvent(e: Event) {
var id = ((e.currentTarget || e.target) as any)["_id"];
var elem = self.tree[id];
if (!elem) return;
var handler = elem[e.type];
if (handler) { handler(e, elem); }
};
}
reset() {
this.prevTree = this.tree;
this.tree = {};
this.postRenders = [];
}
domify() {
var fakePrev:uElement = {}; //create an empty object once instead of every instance of the loop
var elements = this.tree;
var prevElements = this.prevTree;
var diff = this.lastDiff;
var adds = diff.adds;
var updates:any = diff.updates;
var elemKeys = Object.keys(updates);
var elementCache = this.elementCache;
var tempTween:any = {};
//Create all the new elements to ensure that they're there when they need to be
//parented
for(var i = 0, len = adds.length; i < len; i++) {
var id = adds[i];
var cur = elements[id]!;
var div: any;
if (cur.svg) {
div = document.createElementNS("http://www.w3.org/2000/svg", cur.t || "rect");
} else {
div = document.createElement(cur.t || "div");
}
div._id = id;
elementCache[id] = div;
if(cur.enter) {
if(cur.enter.delay) {
cur.enter.display = "auto";
div.style.display = "none";
}
Velocity(div, cur.enter, cur.enter);
}
}
for(var i = 0, len = elemKeys.length; i < len; i++) {
var id = elemKeys[i];
var cur = elements[id]!;
var prev = prevElements[id] || fakePrev;
var type:any = updates[id];
var div;
if(type === "replaced") {
let me = elementCache[id]!;
if (me.parentNode) me.parentNode.removeChild(me);
if (cur.svg) {
div = document.createElementNS("http://www.w3.org/2000/svg", cur.t || "rect");
} else {
div = document.createElement(cur.t || "div");
}
prev = fakePrev;
div._id = id;
elementCache[id] = div;
} else if (type === "removed") {
//NOTE: Batching the removes such that you only remove the parent
//didn't actually make this faster surprisingly. Given that this
//strategy is much simpler and there's no noticable perf difference
//we'll just do the dumb thing and remove all the children one by one.
let me = elementCache[id]!
if(prev.leave) {
prev.leave.complete = postAnimationRemove;
if(prev.leave.absolute) {
me.style.position = "absolute";
}
Velocity(me, prev.leave, prev.leave);
}
else if(me.parentNode) me.parentNode.removeChild(me);
elementCache[id] = undefined;
continue;
} else {
div = elementCache[id];
}
var style = div.style;
if(cur.c !== prev.c) div.className = cur.c;
if(cur.draggable !== prev.draggable) div.draggable = cur.draggable === undefined ? null : "true";
if(cur.spellcheck !== prev.spellcheck) div.setAttribute("spellcheck", cur.spellcheck);
if(cur.contentEditable !== prev.contentEditable) div.contentEditable = cur.contentEditable !== undefined ? JSON.stringify(cur.contentEditable) : "inherit";
if(cur.colspan !== prev.colspan) div.colSpan = cur.colspan;
if(cur.placeholder !== prev.placeholder) div.setAttribute("placeholder", cur.placeholder);
if(cur.selected !== prev.selected) div.selected = cur.selected;
if((cur.value !== prev.value || cur.strictText) && div.value !== cur.value) div.value = cur.value;
if(cur.t === "input" && cur.type !== prev.type) div.type = cur.type;
if(cur.t === "input" && cur.checked !== prev.checked) div.checked = cur.checked;
if((cur.text !== prev.text || cur.strictText) && div.textContent !== cur.text) div.textContent = cur.text === undefined ? "" : cur.text;
if(cur.tabindex !== prev.tabindex) div.setAttribute("tabindex", cur.tabindex);
if(cur.href !== prev.href) div.setAttribute("href", cur.href);
if(cur.src !== prev.src) div.setAttribute("src", cur.src);
if(cur.target !== prev.target) div.setAttribute("target", cur.target);
if(cur.data !== prev.data) div.setAttribute("data", cur.data);
if(cur.download !== prev.download) div.setAttribute("download", cur.download);
if(cur.allowfullscreen !== prev.allowfullscreen) div.setAttribute("allowfullscreen", cur.allowfullscreen);
// animateable properties
var tween = cur.tween || tempTween;
if(cur.flex !== prev.flex) {
if(tween.flex) tempTween.flex = cur.flex;
else style.flex = cur.flex === undefined ? "" : cur.flex;
}
if(cur.left !== prev.left) {
if(tween.left) tempTween.left = cur.left;
else style.left = cur.left === undefined ? "" : cur.left;
}
if(cur.top !== prev.top) {
if(tween.top) tempTween.top = cur.top;
else style.top = cur.top === undefined ? "" : cur.top;
}
if(cur.height !== prev.height) {
if(tween.height) tempTween.height = cur.height;
else style.height = cur.height === undefined ? "auto" : cur.height;
}
if(cur.width !== prev.width) {
if(tween.width) tempTween.width = cur.width;
else style.width = cur.width === undefined ? "auto" : cur.width;
}
if(cur.zIndex !== prev.zIndex) {
if(tween.zIndex) tempTween.zIndex = cur.zIndex;
else style.zIndex = cur.zIndex;
}
if(cur.backgroundColor !== prev.backgroundColor) {
if(tween.backgroundColor) tempTween.backgroundColor = cur.backgroundColor;
else style.backgroundColor = cur.backgroundColor || "transparent";
}
if(cur.borderColor !== prev.borderColor) {
if(tween.borderColor) tempTween.borderColor = cur.borderColor;
else style.borderColor = cur.borderColor || "none";
}
if(cur.borderWidth !== prev.borderWidth) {
if(tween.borderWidth) tempTween.borderWidth = cur.borderWidth;
else style.borderWidth = cur.borderWidth || 0;
}
if(cur.borderRadius !== prev.borderRadius) {
if(tween.borderRadius) tempTween.borderRadius = cur.borderRadius;
else style.borderRadius = (cur.borderRadius || 0) + "px";
}
if(cur.opacity !== prev.opacity) {
if(tween.opacity) tempTween.opacity = cur.opacity;
else style.opacity = cur.opacity === undefined ? 1 : cur.opacity;
}
if(cur.fontSize !== prev.fontSize) {
if(tween.fontSize) tempTween.fontSize = cur.fontSize;
else style.fontSize = cur.fontSize;
}
if(cur.color !== prev.color) {
if(tween.color) tempTween.color = cur.color;
else style.color = cur.color || "inherit";
}
let animKeys = Object.keys(tempTween);
if(animKeys.length) {
Velocity(div, tempTween, tween);
tempTween = {};
}
// non-animation style properties
if(cur.backgroundImage !== prev.backgroundImage) style.backgroundImage = `url('${cur.backgroundImage}')`;
if(cur.border !== prev.border) style.border = cur.border || "none";
if(cur.textAlign !== prev.textAlign) {
style.alignItems = cur.textAlign;
if(cur.textAlign === "center") {
style.textAlign = "center";
} else if(cur.textAlign === "flex-end") {
style.textAlign = "right";
} else {
style.textAlign = "left";
}
}
if(cur.verticalAlign !== prev.verticalAlign) style.justifyContent = cur.verticalAlign;
if(cur.fontFamily !== prev.fontFamily) style.fontFamily = cur.fontFamily || "inherit";
if(cur.transform !== prev.transform) style.transform = cur.transform || "none";
if(cur.style !== prev.style) div.setAttribute("style", cur.style);
if(cur.dangerouslySetInnerHTML !== prev.dangerouslySetInnerHTML) div.innerHTML = cur.dangerouslySetInnerHTML;
// debug/programmatic properties
if(cur.semantic !== prev.semantic) div.setAttribute("data-semantic", cur.semantic);
if(cur.debug !== prev.debug) div.setAttribute("data-debug", cur.debug);
// SVG properties
if(cur.svg) {
if(cur.fill !== prev.fill) div.setAttributeNS(null, "fill", cur.fill);
if(cur.stroke !== prev.stroke) div.setAttributeNS(null, "stroke", cur.stroke);
if(cur.strokeWidth !== prev.strokeWidth) div.setAttributeNS(null, "stroke-width", cur.strokeWidth);
if(cur.d !== prev.d) div.setAttributeNS(null, "d", cur.d);
if(cur.c !== prev.c) div.setAttributeNS(null, "class", cur.c);
if(cur.x !== prev.x) div.setAttributeNS(null, "x", cur.x);
if(cur.y !== prev.y) div.setAttributeNS(null, "y", cur.y);
if(cur.dx !== prev.dx) div.setAttributeNS(null, "dx", cur.dx);
if(cur.dy !== prev.dy) div.setAttributeNS(null, "dy", cur.dy);
if(cur.cx !== prev.cx) div.setAttributeNS(null, "cx", cur.cx);
if(cur.cy !== prev.cy) div.setAttributeNS(null, "cy", cur.cy);
if(cur.r !== prev.r) div.setAttributeNS(null, "r", cur.r);
if(cur.height !== prev.height) div.setAttributeNS(null, "height", cur.height);
if(cur.width !== prev.width) div.setAttributeNS(null, "width", cur.width);
if(cur.xlinkhref !== prev.xlinkhref) div.setAttributeNS('http://www.w3.org/1999/xlink', "href", cur.xlinkhref);
if(cur.startOffset !== prev.startOffset) div.setAttributeNS(null, "startOffset", cur.startOffset);
if(cur.id !== prev.id) div.setAttributeNS(null, "id", cur.id);
if(cur.viewBox !== prev.viewBox) div.setAttributeNS(null, "viewBox", cur.viewBox);
if(cur.transform !== prev.transform) div.setAttributeNS(null, "transform", cur.transform);
if(cur.draggable !== prev.draggable) div.setAttributeNS(null, "draggable", cur.draggable);
if(cur.textAnchor !== prev.textAnchor) div.setAttributeNS(null, "text-anchor", cur.textAnchor);
}
//events
if(cur.dblclick !== prev.dblclick) div.ondblclick = cur.dblclick !== undefined ? this.handleEvent : undefined;
if(cur.click !== prev.click) div.onclick = cur.click !== undefined ? this.handleEvent : undefined;
if(cur.contextmenu !== prev.contextmenu) div.oncontextmenu = cur.contextmenu !== undefined ? this.handleEvent : undefined;
if(cur.mousedown !== prev.mousedown) div.onmousedown = cur.mousedown !== undefined ? this.handleEvent : undefined;
if(cur.mousemove !== prev.mousemove) div.onmousemove = cur.mousemove !== undefined ? this.handleEvent : undefined;
if(cur.mouseup !== prev.mouseup) div.onmouseup = cur.mouseup !== undefined ? this.handleEvent : undefined;
if(cur.mouseover !== prev.mouseover) div.onmouseover = cur.mouseover !== undefined ? this.handleEvent : undefined;
if(cur.mouseout !== prev.mouseout) div.onmouseout = cur.mouseout !== undefined ? this.handleEvent : undefined;
if(cur.mouseleave !== prev.mouseleave) div.onmouseleave = cur.mouseleave !== undefined ? this.handleEvent : undefined;
if(cur.mousewheel !== prev.mousewheel) div.onmouseheel = cur.mousewheel !== undefined ? this.handleEvent : undefined;
if(cur.dragover !== prev.dragover) div.ondragover = cur.dragover !== undefined ? this.handleEvent : undefined;
if(cur.dragstart !== prev.dragstart) div.ondragstart = cur.dragstart !== undefined ? this.handleEvent : undefined;
if(cur.dragend !== prev.dragend) div.ondragend = cur.dragend !== undefined ? this.handleEvent : undefined;
if(cur.drag !== prev.drag) div.ondrag = cur.drag !== undefined ? this.handleEvent : undefined;
if(cur.drop !== prev.drop) div.ondrop = cur.drop !== undefined ? this.handleEvent : undefined;
if(cur.scroll !== prev.scroll) div.onscroll = cur.scroll !== undefined ? this.handleEvent : undefined;
if(cur.focus !== prev.focus) div.onfocus = cur.focus !== undefined ? this.handleEvent : undefined;
if(cur.blur !== prev.blur) div.onblur = cur.blur !== undefined ? this.handleEvent : undefined;
if(cur.input !== prev.input) div.oninput = cur.input !== undefined ? this.handleEvent : undefined;
if(cur.change !== prev.change) div.onchange = cur.change !== undefined ? this.handleEvent : undefined;
if(cur.keyup !== prev.keyup) div.onkeyup = cur.keyup !== undefined ? this.handleEvent : undefined;
if(cur.keydown !== prev.keydown) div.onkeydown = cur.keydown !== undefined ? this.handleEvent : undefined;
if(cur.cut !== prev.cut) div.oncut = cur.cut !== undefined ? this.handleEvent : undefined;
if(cur.copy !== prev.copy) div.oncopy = cur.copy !== undefined ? this.handleEvent : undefined;
if(cur.paste !== prev.paste) div.onpaste = cur.paste !== undefined ? this.handleEvent : undefined;
if(type === "added" || type === "replaced" || type === "moved") {
var parentEl:any = elementCache[cur.parent!];
if(parentEl) {
if(cur.ix! >= parentEl.children.length) {
parentEl.appendChild(div);
} else {
parentEl.insertBefore(div, parentEl.children[cur.ix!]);
}
}
}
}
}
diff() {
var a = this.prevTree;
var b = this.tree;
var as = Object.keys(a);
var bs = Object.keys(b);
var updated:any = {};
var adds = [];
for(var i = 0, len = as.length; i < len; i++) {
var id = as[i];
var curA = a[id];
var curB = b[id];
if(curB === undefined) {
updated[id] = "removed";
continue;
}
if(curA.t !== curB.t) {
updated[id] = "replaced";
continue;
}
if(curA.ix !== curB.ix || curA.parent !== curB.parent) {
updated[id] = "moved";
continue;
}
if(!curB.dirty
&& curA.c === curB.c
&& curA.key === curB.key
&& curA.dangerouslySetInnerHTML === curB.dangerouslySetInnerHTML
&& curA.tabindex === curB.tabindex
&& curA.href === curB.href
&& curA.src === curB.src
&& curA.data === curB.data
&& curA.download === curB.download
&& curA.allowfullscreen === curB.allowfullscreen
&& curA.placeholder === curB.placeholder
&& curA.selected === curB.selected
&& curA.draggable === curB.draggable
&& curA.spellcheck === curB.spellcheck
&& curA.contentEditable === curB.contentEditable
&& curA.value === curB.value
&& curA.target === curB.target
&& curA.type === curB.type
&& curA.checked === curB.checked
&& curA.text === curB.text
&& curA.top === curB.top
&& curA.flex === curB.flex
&& curA.left === curB.left
&& curA.width === curB.width
&& curA.height === curB.height
&& curA.zIndex === curB.zIndex
&& curA.backgroundColor === curB.backgroundColor
&& curA.backgroundImage === curB.backgroundImage
&& curA.color === curB.color
&& curA.colspan === curB.colspan
&& curA.border === curB.border
&& curA.borderColor === curB.borderColor
&& curA.borderWidth === curB.borderWidth
&& curA.borderRadius === curB.borderRadius
&& curA.opacity === curB.opacity
&& curA.fontFamily === curB.fontFamily
&& curA.fontSize === curB.fontSize
&& curA.textAlign === curB.textAlign
&& curA.transform === curB.transform
&& curA.verticalAlign === curB.verticalAlign
&& curA.semantic === curB.semantic
&& curA.debug === curB.debug
&& curA.style === curB.style
&& (curB.svg === undefined || (
curA.x === curB.x
&& curA.y === curB.y
&& curA.dx === curB.dx
&& curA.dy === curB.dy
&& curA.cx === curB.cx
&& curA.cy === curB.cy
&& curA.r === curB.r
&& curA.d === curB.d
&& curA.fill === curB.fill
&& curA.stroke === curB.stroke
&& curA.strokeWidth === curB.strokeWidth
&& curA.startOffset === curB.startOffset
&& curA.textAnchor === curB.textAnchor
&& curA.viewBox === curB.viewBox
&& curA.xlinkhref === curB.xlinkhref))
) {
continue;
}
updated[id] = "updated";
}
for(var i = 0, len = bs.length; i < len; i++) {
var id = bs[i];
var curA = a[id];
if(curA === undefined) {
adds.push(id);
updated[id] = "added";
continue;
}
}
this.lastDiff = {adds: adds, updates: updated};
return this.lastDiff;
}
prepare(root:uElement) {
var elemLen = 1;
var tree = this.tree;
var elements = [root];
var elem:uElement;
for(var elemIx = 0; elemIx < elemLen; elemIx++) {
elem = elements[elemIx];
if(elem.parent === undefined) elem.parent = "__root";
if(elem.id === undefined) elem.id = "__root__" + elemIx;
tree[elem.id] = elem;
if(elem.postRender !== undefined) {
this.postRenders.push(elem);
}
var children = elem.children;
if(children !== undefined) {
for(var childIx = 0, len = children.length; childIx < len; childIx++) {
var child = children[childIx];
if(child === undefined) continue;
if(child.id === undefined) { child.id = elem.id + "__" + childIx; }
if(child.ix === undefined) { child.ix = childIx; }
if(child.parent === undefined) { child.parent = elem.id; }
elements.push(child);
elemLen++;
}
}
}
return tree;
}
postDomify() {
var postRenders:any = this.postRenders;
var diff:any = this.lastDiff.updates;
var elementCache = this.elementCache;
for(var i = 0, len = postRenders.length; i < len; i++) {
var elem = postRenders[i];
var id = elem.id!;
if(diff[id] === "updated" || diff[id] === "added" || diff[id] === "replaced" || elem.dirty || diff[id] === "moved") {
elem.postRender(elementCache[id]!, elem);
}
}
}
render(elems:uElement[]) {
this.reset();
// We sort elements by depth to allow them to be self referential.
elems.sort((a, b) => (a.parent ? a.parent.split("__").length : 0) - (b.parent ? b.parent.split("__").length : 0));
let start = now();
for(let elem of elems) {
let post = this.prepare(elem);
}
let prepare = now();
let d = this.diff();
let diff = now();
this.domify();
let domify = now();
this.postDomify();
let postDomify = now();
let time = now() - start;
if(time > 5) {
console.log("slow render (> 5ms): ", time, {
prepare: prepare - start,
diff: diff - prepare,
domify: domify - diff,
postDomify: postDomify - domify
});
}
}
}