mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-16 01:39:44 -07:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import { createPathId } from "../path.js";
|
|
|
|
/**
|
|
* @param {Section} section
|
|
* @param {readonly string[]} path
|
|
*/
|
|
function createContentsItem(section, path) {
|
|
const item = document.createElement("li");
|
|
const anchor = document.createElement("a");
|
|
const children = section.children ?? [];
|
|
const sectionPath = [...path, section.title];
|
|
|
|
anchor.href = `#${createPathId(sectionPath)}`;
|
|
anchor.append(section.title);
|
|
|
|
if (children.length) {
|
|
const list = document.createElement("ol");
|
|
|
|
for (const child of children) {
|
|
list.append(createContentsItem(child, sectionPath));
|
|
}
|
|
item.append(list);
|
|
}
|
|
|
|
item.prepend(anchor);
|
|
return item;
|
|
}
|
|
|
|
/** @param {Section[]} sections */
|
|
export function createContents(sections) {
|
|
const nav = document.createElement("nav");
|
|
const list = document.createElement("ol");
|
|
|
|
nav.setAttribute("aria-label", "Learn contents");
|
|
|
|
for (const section of sections) {
|
|
list.append(createContentsItem(section, []));
|
|
}
|
|
|
|
nav.append(list);
|
|
return nav;
|
|
}
|
|
|
|
/**
|
|
* @typedef {Object} Section
|
|
* @property {string} title
|
|
* @property {Section[]} [children]
|
|
*/
|