docsify/src/core/render/gen-tree.js
Anix 75c72e917b
chore: added new linter config (#1028)
* chore: added new linter config

* chore: linting fixes

* chore: refactore in linting config and minor linting fixes
2020-02-20 14:01:04 +05:30

31 lines
709 B
JavaScript

/**
* Gen toc tree
* @link https://github.com/killercup/grock/blob/5280ae63e16c5739e9233d9009bc235ed7d79a50/styles/solarized/assets/js/behavior.coffee#L54-L81
* @param {Array} toc List of TOC elements
* @param {Number} maxLevel Deep level
* @return {Array} Headlines
*/
export function genTree(toc, maxLevel) {
const headlines = [];
const last = {};
toc.forEach(headline => {
const level = headline.level || 1;
const len = level - 1;
if (level > maxLevel) {
return;
}
if (last[len]) {
last[len].children = (last[len].children || []).concat(headline);
} else {
headlines.push(headline);
}
last[level] = headline;
});
return headlines;
}