15.9. Example: A Dynamically Created Table of Contents
The previous sections showed how you can use the Core DOM API to traverse a document, select elements from a document, and alter and add document content.
Example 15-11 brings all these pieces together to automatically create a table of contents (or "TOC") for an HTML document.
The example defines a single function, maketoc(), and registers an onload event handler so that the function is automatically run when the document finishes loading. When maketoc() runs, it traverses the document, looking for <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> tags, which it assumes mark the beginning of important sections within the document. maketoc() looks for an element with the ID "toc" and builds a table of contents within that element. As part of this process, maketoc() adds section numbers to the title of each section, inserts a named anchor before each section, and then inserts links at the beginning of each section back to the TOC. Figure 15-5 shows what a TOC generated by the maketoc() function looks like.
If you maintain and revise long documents that are broken into sections with <h1>, <h2>, and related tags, the maketoc() function may be of interest to you. TOCs are quite useful in long documents, but when you frequently revise a document, it can be difficult to keep the TOC in sync with the document itself. The code in Example 15-11 is written to be unobtrusive: to use it, simply include the module into your HTML document and provide a container element for maketoc() to insert the TOC into. Optionally, you can style the TOC with CSS. You might use it like this:
<script src="TOC.js"></script> <!-- Load the maketoc() function --> <style> #toc { /* these styles apply to the TOC container */ background: #ddd; /* light gray background */ border: solid black 1px; /* simple border */ margin: 10px; padding: 10px; /* indentation */ } .TOCEntry { font-family: sans-serif; } /* TOC entries in sans-serif */ .TOCEntry a { text-decoration: none; } /* TOC links are not underlined */ .TOCLevel1 { font-size: 16pt; font-weight: bold; } /* level 1 big and bold */ .TOCLevel2 { font-size: 12pt; margin-left: .5in; } /* level 2 indented */ .TOCBackLink { display: block; } /* back links on a line by themselves */ .TOCSectNum:after { content: ":"; } /* add colon after section numbers */ </style> <body> <div id="toc"><h1>Table Of Contents</h1></div> <!-- the TOC goes here --> <!-- ... rest of document goes here ... -->
The code for the TOC.js module follows. Example 15-11 is long, but it is well commented and uses techniques that have already been demonstrated. It is worth studying as a practical example of the power of the W3C DOM.
Example 15-11. Automatically generating a table of contents
/** * TOC.js: create a table of contents for a document. * * This module defines a single maketoc() function and registers an onload * event handler so the function is automatically run when the document * finishes loading. When it runs, maketoc() first looks for a document * element with an id of "toc". If there is no such element, maketoc() does * nothing. If there is such an element, maketoc() traverses the document * to find all <h1> through <h6> tags and creates a table of contents, which * it appends to the "toc" element. maketoc() adds section numbers * to each section heading and inserts a link back to the table of contents * before each heading. maketoc() generates links and anchors with names that * begin with "TOC", so you should avoid this prefix in your own HTML. * * The entries in the generated TOC can be styled with CSS. All entries have * a class "TOCEntry". Entries also have a class that corresponds to the level * of the section heading. <h1> tags generate entries of class "TOCLevel1", * <h2> tags generate entries of class "TOCLevel2", and so on. Section numbers * inserted into headings have class "TOCSectNum", and the generated links back * to the TOC have class "TOCBackLink". * * By default, the generated links back to the TOC read "Contents". * Override this default (for internationalization, e.g.) by setting * the maketoc.backlinkText property to the desired text. **/ function maketoc() { // Find the container. If there isn't one, return silently. var container = document.getElementById('toc'); if (!container) return;
// Traverse the document, adding all <h1>...<h6> tags to an array var sections = []; findSections(document, sections);
// Insert an anchor before the container element so we can link back to it var anchor = document.createElement("a"); // Create an <a> node anchor.name = "TOCtop"; // Give it a name anchor.id = "TOCtop"; // And an id (IE needs this) container.parentNode.insertBefore(anchor, container); // add before toc
// Initialize an array that keeps track of section numbers var sectionNumbers = [0,0,0,0,0,0];
// Now loop through the section header elements we found for(var s = 0; s < sections.length; s++) { var section = sections[s];
// Figure out what level heading it is var level = parseInt(section.tagName.charAt(1)); if (isNaN(level) || level < 1 || level > 6) continue;
// Increment the section number for this heading level // And reset all lower heading level numbers to zero sectionNumbers[level-1]++; for(var i = level; i < 6; i++) sectionNumbers[i] = 0;
// Now combine section numbers for all heading levels // to produce a section number like 2.3.1 var sectionNumber = ""; for(i = 0; i < level; i++) { sectionNumber += sectionNumbers[i]; if (i < level-1) sectionNumber += "."; }
// Add the section number and a space to the section header title. // We place the number in a <span> to make it styleable. var frag = document.createDocumentFragment(); // to hold span and space var span = document.createElement("span"); // span to hold number span.className = "TOCSectNum"; // make it styleable span.appendChild(document.createTextNode(sectionNumber)); // add sect# frag.appendChild(span); // Add span to fragment frag.appendChild(document.createTextNode(" ")); // Then add a space section.insertBefore(frag, section.firstChild); // Add both to header
// Create an anchor to mark the beginning of this section. var anchor = document.createElement("a"); anchor.name = "TOC"+sectionNumber; // Name the anchor so we can link anchor.id = "TOC"+sectionNumber; // In IE, generated anchors need ids
// Wrap the anchor around a link back to the TOC var link = document.createElement("a"); link.href = "#TOCtop"; link.className = "TOCBackLink"; link.appendChild(document.createTextNode(maketoc.backlinkText)); anchor.appendChild(link);
// Insert the anchor and link immediately before the section header section.parentNode.insertBefore(anchor, section);
// Now create a link to this section. var link = document.createElement("a"); link.href = "#TOC" + sectionNumber; // Set link destination link.innerHTML = section.innerHTML; // Make link text same as heading
// Place the link in a div that is styleable based on the level var entry = document.createElement("div"); entry.className = "TOCEntry TOCLevel" + level; // For CSS styling entry.appendChild(link);
// And add the div to the TOC container container.appendChild(entry); }
// This method recursively traverses the tree rooted at node n, looks // for <h1> through <h6> tags, and appends them to the sections array. function findSections(n, sects) { // Loop through all the children of n for(var m = n.firstChild; m != null; m = m.nextSibling) { // Skip any nodes that are not elements. if (m.nodeType != 1 /* Node.Element_NODE */) continue; // Skip the container element since it may have its own heading if (m == container) continue; // As an optimization, skip <p> tags since headings are not // supposed to appear inside paragraphs. (We could also skip // lists, <pre> tags, etc., but <p> is the most common one.) if (m.tagName == "P") continue; // optimization
// If we didn't skip the child node, check whether it is a heading. // If so, add it to the array. Otherwise, recurse on it. // Note that the DOM is interface-based not class-based so we // cannot simply test whether (m instanceof HTMLHeadingElement). if (m.tagName.length==2 && m.tagName.charAt(0)=="H") sects.push(m); else findSections(m, sects); } } }
// This is the default text of links back to the TOC maketoc.backlinkText = "Contents";
// Register maketoc() to run automatically when the document finishes loading if (window.addEventListener) window.addEventListener("load", maketoc, false); else if (window.attachEvent) window.attachEvent("onload", maketoc);
|
|
No comments:
Post a Comment