blob: 365fb2ec36643232f8dd2e449e7af2a5f064845a (
plain)
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
|
(async function(){
const res = await fetch('data.json');
const versions = await res.json();
const input = document.getElementById('search');
input.addEventListener('input', (e) => {
const query = e.target.value.toLowerCase();
for (const [key, data] of Object.entries(versions)) {
const heading = document.getElementById(key);
if (data.features == undefined) {
heading.hidden = query.length != 0;
continue;
}
const results = Object.values(data.features).filter(
feat => {
if (feat.title.toLowerCase().replaceAll('`', '').includes(query)) {
return true;
}
if (query.length > 1 && feat.items && feat.items.some(i => i.toLowerCase().includes(query))) {
return true;
}
return false;
}
);
// so that release notes don't get in the way when <Tab>ing through results
document.body.classList.toggle('hide-release-notes', results.length == 0);
const ul = document.createElement('ul');
for (const feat of results) {
const li = document.createElement('li');
const a = document.createElement('a');
a.textContent = feat.title;
a.innerHTML = a.innerHTML.replaceAll(/`(.+?)`/g, (_, x) => `<code>${x}</code>`);
a.href = feat.url;
li.appendChild(a);
ul.appendChild(li);
}
const list = document.getElementById(key + '-list');
list.replaceChildren(...ul.children);
list.hidden = results.length == 0;
heading.hidden = results.length == 0;
}
});
})();
|