diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-17 02:36:49 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-17 02:36:49 +0100 |
commit | fb01a9122a6a104c509bf39fdee3803d778b67fd (patch) | |
tree | 6ca111baf5d9727caf346decf7e8a956e9428a20 /src/web | |
parent | 4485708c972815bbb6df7f5a228683aa855d553d (diff) | |
download | notes-fb01a9122a6a104c509bf39fdee3803d778b67fd.tar.gz notes-fb01a9122a6a104c509bf39fdee3803d778b67fd.zip |
html: tag filter example
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/html.md | 6 | ||||
-rw-r--r-- | src/web/src/tags.html | 60 |
2 files changed, 66 insertions, 0 deletions
diff --git a/src/web/html.md b/src/web/html.md index 4f545e1..d3b78ba 100644 --- a/src/web/html.md +++ b/src/web/html.md @@ -24,3 +24,9 @@ ```html {{#include src/tabs.html }} ``` + +# Minimal tags filter +[Rendered html](src/tags.html) +```html +{{#include src/tags.html }} +``` diff --git a/src/web/src/tags.html b/src/web/src/tags.html new file mode 100644 index 0000000..25597ca --- /dev/null +++ b/src/web/src/tags.html @@ -0,0 +1,60 @@ +<script> +/// Map HTML elements to display kinds. +const elementToDisplay = (E) => { + switch (E.nodeName) { + case "LI": + return "list-item"; + default: + return "block"; + } +} + +/// Display only elements with tag T. +const showTag = (T) => { + Array.from(document.getElementsByClassName("content")).forEach(E => { + E.style.display = "none"; + }); + + Array.from(document.getElementsByClassName(T)).forEach(E => { + E.style.display = elementToDisplay(E); + }); +}; + +/// Initialize buttons and callbacks. +window.onload = () => { + // Handle to the filter placeholder. + const filter = document.getElementById("filter"); + + // Create buttons for each tag T. + ['arm', 'x86', 'clear'].forEach(T => { + const btn = document.createElement("button"); + btn.innerHTML = T; + btn.onclick = T === "clear" + ? (E) => { + showTag("content"); + filter.innerHTML = ""; + } + : (E) => { + showTag(T); + filter.innerHTML = `<p>filter: <mark>${T}</mark></p>`; + }; + + document.body.prepend(btn); + }); +} +</script> + +<div id = "filter"></div> + +<ul> + <li class = "content arm">arm 1</li> + <li class = "content arm">arm 2</li> + <li class = "content arm">arm 3</li> + <li class = "content x86">x86 1</li> + <li class = "content x86">x86 2</li> + <li class = "content x86 arm">x86 + arm</li> +</ul> + +<div class = "content arm">arm</div> +<div class = "content arm x86">arm x86</div> +<div class = "content x86">x86</div> |