generated from codegouvfr/eleventy-dsfr
-
Notifications
You must be signed in to change notification settings - Fork 5
/
utils.js
64 lines (51 loc) · 1.8 KB
/
utils.js
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
const { JSDOM } = require("jsdom");
class Node {
constructor(id, name, tagName) {
this.id = id;
this.name = name;
this.tagName = tagName;
this.children = [];
}
addChild(childNode) {
this.children.push(childNode);
}
}
/**
*
* @param {Node} parent
* @param {Node} node
* @param {number} level
*/
function insertNode(parent, node, level) {
// Si le parent n'a pas d'enfants, ça veut dire que node est le premier du niveau de heading rencontré et donc on l'ajoute au parent
// init children
if (!parent.children.length) {
parent.addChild(node);
} else {
// sinon on continue à chercher le parent
let lastChild = parent.children[parent.children.length - 1];
let lastChildLevel = parseInt(lastChild.tagName.slice(1));
// si niveau courant est supérieur au niveau du dernier enfant du parent, la fonction appelle lui-même avec le dernier enfant du parent comme parent
if (level > lastChildLevel) {
insertNode(lastChild, node, level);
} else {
parent.addChild(node);
}
}
}
const getSideMenuItems = (content = "") => {
const { document } = new JSDOM(content).window;
const headings = Array.from(document.querySelectorAll("h2, h3, h4")).filter(
(h) => !h.classList.contains("fr-tile__title") && !h.classList.contains("fr-alert__title") && !h.classList.contains("fr-accordion__title")
);
const root = new Node("root", "root", "root");
headings.forEach((heading) => {
const level = parseInt(heading.tagName.slice(1));
const node = new Node(heading.id, heading.textContent.replace(" #", ""), heading.tagName);
insertNode(root, node, level);
});
return root.children;
};
module.exports = {
getSideMenuItems,
};