redoc/lib/utils/md-renderer.ts

113 lines
3.0 KiB
TypeScript
Raw Normal View History

2016-10-30 18:56:24 +03:00
'use strict';
import { Injectable } from '@angular/core';
import * as slugify from 'slugify';
import * as Remarkable from 'remarkable';
2017-01-30 18:21:12 +03:00
import { StringMap } from './';
2016-10-30 18:56:24 +03:00
declare var Prism: any;
const md = new Remarkable({
html: true,
linkify: true,
breaks: false,
typographer: false,
highlight: (str, lang) => {
if (lang === 'json') lang = 'js';
let grammar = Prism.languages[lang];
//fallback to clike
if (!grammar) return str;
return Prism.highlight(str, grammar);
}
});
2017-01-30 18:21:12 +03:00
export interface MarkdownHeading {
title?: string;
id: string;
content?: string;
children?: StringMap<MarkdownHeading>;
}
2016-10-30 18:56:24 +03:00
@Injectable()
export class MdRenderer {
2017-01-30 18:21:12 +03:00
public headings: StringMap<MarkdownHeading> = {};
currentTopHeading: MarkdownHeading;
2016-10-31 11:15:04 +03:00
2016-10-30 18:56:24 +03:00
private _origRules:any = {};
private _preProcessors:Function[] = [];
constructor(private raw: boolean = false) {
}
addPreprocessor(p: Function) {
this._preProcessors.push(p);
}
saveOrigRules() {
this._origRules.open = md.renderer.rules.heading_open;
this._origRules.close = md.renderer.rules.heading_close;
}
restoreOrigRules() {
md.renderer.rules.heading_open = this._origRules.open;
md.renderer.rules.heading_close = this._origRules.close;
}
2017-01-30 18:21:12 +03:00
saveHeading(title: string, parent:MarkdownHeading = {id:null, children: this.headings}) :MarkdownHeading {
let id = slugify(title);
if (parent && parent.id) id = `${parent.id}/${id}`;
parent.children = parent.children || {};
parent.children[id] = {
title,
id
};
return parent.children[id];
}
2016-10-30 18:56:24 +03:00
headingOpenRule(tokens, idx) {
if (tokens[idx].hLevel > 2 ) {
2016-10-30 18:56:24 +03:00
return this._origRules.open(tokens, idx);
} else {
let content = tokens[idx + 1].content;
if (tokens[idx].hLevel === 1 ) {
2017-01-30 18:21:12 +03:00
this.currentTopHeading = this.saveHeading(content);;
let id = this.currentTopHeading.id;
return `<h${tokens[idx].hLevel} section="section/${id}">` +
`<a class="share-link" href="#section/${id}"></a>`;
} else if (tokens[idx].hLevel === 2 ) {
2017-01-30 18:21:12 +03:00
let heading = this.saveHeading(content, this.currentTopHeading);
let contentSlug = `${heading.id}`;
return `<h${tokens[idx].hLevel} section="section/${heading.id}">` +
`<a class="share-link" href="#section/${contentSlug}"></a>`;
}
2016-10-30 18:56:24 +03:00
}
}
headingCloseRule(tokens, idx) {
if (tokens[idx].hLevel > 2 ) {
2016-10-30 18:56:24 +03:00
return this._origRules.close(tokens, idx);
} else {
return `</h${tokens[idx].hLevel}>\n`;
}
}
renderMd(rawText:string) {
if (!this.raw) {
this.saveOrigRules();
md.renderer.rules.heading_open = this.headingOpenRule.bind(this);
md.renderer.rules.heading_close = this.headingCloseRule.bind(this);
}
let text = rawText;
for (let i=0; i<this._preProcessors.length; i++) {
text = this._preProcessors[i](text);
}
let res = md.render(text);
if (!this.raw) {
this.restoreOrigRules();
}
return res;
}
}