-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathmany-rows.html
72 lines (63 loc) · 1.48 KB
/
many-rows.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>body { font-family: sans-serif; } .red { color: red; }</style>
<script src="../index.js"></script>
</head>
<body>
<p>Boot speed: <span id='boot'></span></p>
<div id="example"></div>
<script>
this.renderer = hyperHTML.bind(example);
const state = {
start: null,
items: []
};
function onClick() {
state.start = performance.now();
state.items.reverse();
render();
debug.textContent = performance.now() - state.start;
}
function adopt() {
render = () => renderer`
<div>
<button onclick="${ onClick }"> update </button>
<button onclick="${ adopt }"> adopt </button>
<p id='debug'></p>${
state.items.map((item, i) => hyperHTML.wire(item, 'adopt')`
<h1 class="${ i%2 === 0 ? 'red' : '' }">
${ item.name }
</h1>`
)}</div>
`;
renderer = hyperHTML.adopt(example);
}
var render = function () {
renderer`
<div>
<button onclick="${ onClick }">
update
</button>
<button onclick="${ adopt }">
adopt
</button>
<p id='debug'></p>${
state.items.map((item, i) => hyperHTML.wire(item)`
<h1 class="${ i%2 === 0 ? 'red' : '' }">
${ item.name }
</h1>`
)}</div>
`
};
let amount = 10000;
while(amount--) {
state.items.push({
name: `item-${ amount }`
});
}
onClick();
</script>
</body>
</html>