summaryrefslogtreecommitdiff
path: root/preact/benches/src/filter_list.html
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-23 16:46:06 -0300
committerSebastian <sebasjm@gmail.com>2021-08-23 16:48:30 -0300
commit38acabfa6089ab8ac469c12b5f55022fb96935e5 (patch)
tree453dbf70000cc5e338b06201af1eaca8343f8f73 /preact/benches/src/filter_list.html
parentf26125e039143b92dc0d84e7775f508ab0cdcaa8 (diff)
downloadnode-vendor-master.tar.gz
node-vendor-master.tar.bz2
node-vendor-master.zip
added web vendorsHEADmaster
Diffstat (limited to 'preact/benches/src/filter_list.html')
-rw-r--r--preact/benches/src/filter_list.html92
1 files changed, 92 insertions, 0 deletions
diff --git a/preact/benches/src/filter_list.html b/preact/benches/src/filter_list.html
new file mode 100644
index 0000000..d31e1af
--- /dev/null
+++ b/preact/benches/src/filter_list.html
@@ -0,0 +1,92 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Patching HTML</title>
+ <style>
+ .items {
+ margin: 1em 0;
+ padding: 0;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 2px;
+ }
+
+ .items > * {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 3em;
+ height: 2em;
+ margin: 0;
+ padding: 0;
+ background: #eee;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="app"></div>
+ <script type="module">
+ import { measureName, measureMemory } from './util.js';
+ import { createRoot, createElement as h, Component } from 'framework';
+
+ function Row(props) {
+ return h('article', null, props.children);
+ }
+
+ function App(props) {
+ return h('div', {}, [
+ h(
+ 'div',
+ { class: 'items' },
+ props.items.map(id => h(Row, { key: id }, id))
+ )
+ ]);
+ }
+
+ const count = 1000;
+ const start = 20;
+ const end = 600;
+
+ const newItems = () =>
+ Array(count)
+ .fill(0)
+ .map((item, i) => i);
+ let items = newItems();
+ let currentItems = items;
+
+ const root = createRoot(document.getElementById('app'));
+ root.render(h(App, { items }));
+
+ function runPatch() {
+ items = newItems().filter(id => {
+ const isVisible = currentItems.includes(id);
+ return id >= start && id <= end ? !isVisible : isVisible;
+ });
+ currentItems = items;
+
+ root.render(h(App, { items }));
+ }
+
+ async function warmup() {
+ const count = 25;
+
+ for (let i = 0; i < count; i++) {
+ runPatch();
+ await new Promise(r => requestAnimationFrame(r));
+ }
+ }
+
+ warmup().then(async () => {
+ performance.mark('start');
+ runPatch();
+ await new Promise(r => requestAnimationFrame(r));
+ performance.mark('stop');
+ performance.measure(measureName, 'start', 'stop');
+
+ measureMemory();
+ });
+ </script>
+ </body>
+</html>