131 lines
4.2 KiB
TypeScript
131 lines
4.2 KiB
TypeScript
import { DOCUMENT } from '@angular/common';
|
|
import { Inject, Injectable } from '@angular/core';
|
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
import { ScrollSpyInfo, ScrollSpyService } from 'app/shared/scroll-spy.service';
|
|
import { ReplaySubject } from 'rxjs';
|
|
|
|
|
|
export interface TocItem {
|
|
content: SafeHtml;
|
|
href: string;
|
|
isSecondary?: boolean;
|
|
level: string;
|
|
title: string;
|
|
}
|
|
|
|
@Injectable()
|
|
export class TocService {
|
|
tocList = new ReplaySubject<TocItem[]>(1);
|
|
activeItemIndex = new ReplaySubject<number | null>(1);
|
|
private scrollSpyInfo: ScrollSpyInfo | null = null;
|
|
|
|
constructor(@Inject(DOCUMENT) private document: any,
|
|
private domSanitizer: DomSanitizer,
|
|
private scrollSpyService: ScrollSpyService) {
|
|
}
|
|
|
|
genToc(docElement?: Element, docId = '') {
|
|
this.resetScrollSpyInfo();
|
|
|
|
if (!docElement) {
|
|
this.tocList.next([]);
|
|
return;
|
|
}
|
|
|
|
const headings = this.findTocHeadings(docElement);
|
|
const idMap = new Map<string, number>();
|
|
const tocList = headings.map(heading => ({
|
|
content: this.extractHeadingSafeHtml(heading),
|
|
href: `${docId}#${this.getId(heading, idMap)}`,
|
|
level: heading.tagName.toLowerCase(),
|
|
title: (heading.textContent || '').trim(),
|
|
}));
|
|
|
|
this.tocList.next(tocList);
|
|
|
|
this.scrollSpyInfo = this.scrollSpyService.spyOn(headings);
|
|
this.scrollSpyInfo.active.subscribe(item => this.activeItemIndex.next(item && item.index));
|
|
}
|
|
|
|
reset() {
|
|
this.resetScrollSpyInfo();
|
|
this.tocList.next([]);
|
|
}
|
|
|
|
// This bad boy exists only to strip off the anchor link attached to a heading
|
|
private extractHeadingSafeHtml(heading: HTMLHeadingElement) {
|
|
const div: HTMLDivElement = this.document.createElement('div');
|
|
div.innerHTML = heading.innerHTML;
|
|
const anchorLinks: NodeListOf<HTMLAnchorElement> = div.querySelectorAll('a');
|
|
for (let i = 0; i < anchorLinks.length; i++) {
|
|
const anchorLink = anchorLinks[i];
|
|
if (!anchorLink.classList.contains('header-link')) {
|
|
// this is an anchor that contains actual content that we want to keep
|
|
// move the contents of the anchor into its parent
|
|
const parent = anchorLink.parentNode!;
|
|
while (anchorLink.childNodes.length) {
|
|
parent.insertBefore(anchorLink.childNodes[0], anchorLink);
|
|
}
|
|
}
|
|
// now remove the anchor
|
|
anchorLink.remove();
|
|
}
|
|
// security: the document element which provides this heading content
|
|
// is always authored by the documentation team and is considered to be safe
|
|
return this.domSanitizer.bypassSecurityTrustHtml(div.innerHTML.trim());
|
|
}
|
|
|
|
private findTocHeadings(docElement: Element): HTMLHeadingElement[] {
|
|
const headings = docElement.querySelectorAll('h1,h2,h3');
|
|
const skipNoTocHeadings = (heading: HTMLHeadingElement) => {
|
|
return !/(?:no-toc|notoc)/i.test(heading.className) && !this.isOriginalText(heading);
|
|
};
|
|
|
|
return Array.prototype.filter.call(headings, skipNoTocHeadings);
|
|
}
|
|
|
|
private isOriginalText(heading: HTMLHeadingElement): boolean {
|
|
if (heading && heading.hasAttribute('translation-origin')) {
|
|
let prevNode = heading.previousElementSibling;
|
|
if (prevNode && prevNode.tagName === 'AIO-TOC') {
|
|
prevNode = prevNode.previousElementSibling;
|
|
}
|
|
if (prevNode && prevNode.hasAttribute('translation-result')) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private resetScrollSpyInfo() {
|
|
if (this.scrollSpyInfo) {
|
|
this.scrollSpyInfo.unspy();
|
|
this.scrollSpyInfo = null;
|
|
}
|
|
|
|
this.activeItemIndex.next(null);
|
|
}
|
|
|
|
// Extract the id from the heading; create one if necessary
|
|
// Is it possible for a heading to lack an id?
|
|
private getId(h: HTMLHeadingElement, idMap: Map<string, number>) {
|
|
let id = h.id;
|
|
if (id) {
|
|
addToMap(id);
|
|
} else {
|
|
id = (h.textContent || '').trim().toLowerCase().replace(/\W+/g, '-');
|
|
id = addToMap(id);
|
|
h.id = id;
|
|
}
|
|
return id;
|
|
|
|
// Map guards against duplicate id creation.
|
|
function addToMap(key: string) {
|
|
const oldCount = idMap.get(key) || 0;
|
|
const count = oldCount + 1;
|
|
idMap.set(key, count);
|
|
return count === 1 ? key : `${key}-${count}`;
|
|
}
|
|
}
|
|
}
|