79 lines
3.0 KiB
JavaScript
79 lines
3.0 KiB
JavaScript
/*jslint
|
|
white: true,
|
|
browser: true,
|
|
vars: true
|
|
*/
|
|
|
|
/**
|
|
* Generates a table of contents for your document based on the headings
|
|
* present. Anchors are injected into the document and the
|
|
* entries in the table of contents are linked to them. The table of
|
|
* contents will be generated inside of the first element with the id `toc`.
|
|
* @param {HTMLDOMDocument} documentRef Optional A reference to the document
|
|
* object. Defaults to `document`.
|
|
* @author Matthew Christopher Kastor-Inare III
|
|
* @version 20130726
|
|
* @example
|
|
* // call this after the page has loaded
|
|
* generateTOC();
|
|
*/
|
|
|
|
/**
|
|
* Modified by @danpros
|
|
* select only in selector ID
|
|
* using the heading title as the slug IDs
|
|
* insert the anchor inside the heading
|
|
* fix browser not scrolling to the hash
|
|
*/
|
|
function generateTOC (id) {
|
|
var documentRef = document;
|
|
var selector = id + ' h1,' + id + ' h2,' + id + ' h3,' + id + ' h4,' + id + ' h5,' + id + ' h6';
|
|
var toc = documentRef.getElementById('toc' + id);
|
|
var headings = [].slice.call(documentRef.body.querySelectorAll(selector));
|
|
if (headings && headings.length) {
|
|
headings.forEach(function (heading, index) {
|
|
heading.setAttribute('id', heading.textContent.replace(/\s+/g, '-').toLowerCase() + id);
|
|
heading.setAttribute('class', 'toc-link');
|
|
|
|
var anchor = documentRef.createElement('a');
|
|
anchor.setAttribute('href', '#' + heading.textContent.replace(/\s+/g, '-').toLowerCase() + id);
|
|
anchor.setAttribute('class', 'anchor');
|
|
anchor.setAttribute('aria-label', heading.textContent);
|
|
anchor.innerHTML = '<svg fill="currentColor" class="toc-icon" viewBox="0 0 24 24" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"></path><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z"></path></svg>';
|
|
|
|
var link = documentRef.createElement('a');
|
|
link.setAttribute('href', '#' + heading.textContent.replace(/\s+/g, '-').toLowerCase() + id);
|
|
link.textContent = heading.textContent;
|
|
|
|
var div = documentRef.createElement('div');
|
|
div.setAttribute('class', heading.tagName.toLowerCase() + '-toc');
|
|
|
|
heading.appendChild(anchor);
|
|
div.appendChild(link);
|
|
toc.appendChild(div);
|
|
});
|
|
documentRef.getElementById('toc-wrapper' + id).classList.add('visible');
|
|
documentRef.getElementById('toc-wrapper' + id).style.display = 'inline-block';
|
|
}
|
|
|
|
if (window.location.hash) {
|
|
var hash = window.location.hash;
|
|
scrollToHash(hash);
|
|
}
|
|
}
|
|
|
|
// fix browser not scrolling to the hash
|
|
function scrollToHash (hash) {
|
|
setTimeout(function() {
|
|
hashtag = hash;
|
|
location.hash = '';
|
|
location.hash = hashtag;
|
|
}, 300);
|
|
}
|
|
|
|
try {
|
|
module.exports = generateTOC;
|
|
} catch (e) {
|
|
// module.exports is not defined
|
|
}
|