| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| import {scriptFromCodepoint} from "./unicodeScripts"; |
| import {escape, hyphenate} from "./utils"; |
| import {path} from "./svgGeometry"; |
| import type Options from "./Options"; |
| import {DocumentFragment} from "./tree"; |
| import {makeEm} from "./units"; |
| import ParseError from "./ParseError"; |
|
|
| import type {VirtualNode} from "./tree"; |
|
|
| |
| |
| |
| |
| export const createClass = function(classes: string[]): string { |
| return classes.filter(cls => cls).join(" "); |
| }; |
|
|
| |
| |
| |
| |
| const cssStyleToString = function(style: CssStyle): string { |
| let styles = ""; |
| for (const key of Object.keys(style) as Array<keyof CssStyle>) { |
| const value = style[key]; |
| if (value !== undefined) { |
| styles += `${hyphenate(key)}:${value};`; |
| } |
| } |
| return styles; |
| }; |
|
|
| type InitNodeData = { |
| classes: string[]; |
| attributes: Record<string, string>; |
| height: number; |
| depth: number; |
| maxFontSize: number; |
| style: CssStyle; |
| }; |
|
|
| type HtmlNodeData = InitNodeData & { |
| children: VirtualNode[]; |
| }; |
|
|
| const initNode = function( |
| this: InitNodeData, |
| classes?: string[], |
| options?: Options, |
| style?: CssStyle, |
| ) { |
| this.classes = classes || []; |
| this.attributes = {}; |
| this.height = 0; |
| this.depth = 0; |
| this.maxFontSize = 0; |
| this.style = style || {}; |
| if (options) { |
| if (options.style.isTight()) { |
| this.classes.push("mtight"); |
| } |
| const color = options.getColor(); |
| if (color) { |
| this.style.color = color; |
| } |
| } |
| }; |
|
|
| |
| |
| |
| const toNode = function(this: HtmlNodeData, tagName: string): HTMLElement { |
| const node = document.createElement(tagName); |
|
|
| |
| node.className = createClass(this.classes); |
|
|
| |
| Object.assign(node.style, this.style); |
|
|
| |
| for (const attr of Object.keys(this.attributes)) { |
| node.setAttribute(attr, this.attributes[attr]); |
| } |
|
|
| |
| for (let i = 0; i < this.children.length; i++) { |
| node.appendChild(this.children[i].toNode()); |
| } |
|
|
| return node; |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| const invalidAttributeNameRegex = /[\s"'>/=\x00-\x1f]/; |
|
|
| |
| |
| |
| const toMarkup = function(this: HtmlNodeData, tagName: string): string { |
| let markup = `<${tagName}`; |
|
|
| |
| if (this.classes.length) { |
| markup += ` class="${escape(createClass(this.classes))}"`; |
| } |
|
|
| const styles = cssStyleToString(this.style); |
| if (styles) { |
| markup += ` style="${escape(styles)}"`; |
| } |
|
|
| |
| for (const attr of Object.keys(this.attributes)) { |
| if (invalidAttributeNameRegex.test(attr)) { |
| throw new ParseError(`Invalid attribute name '${attr}'`); |
| } |
| markup += ` ${attr}="${escape(this.attributes[attr])}"`; |
| } |
|
|
| markup += ">"; |
|
|
| |
| for (let i = 0; i < this.children.length; i++) { |
| markup += this.children[i].toMarkup(); |
| } |
|
|
| markup += `</${tagName}>`; |
|
|
| return markup; |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| export type CssStyle = Partial<{ |
| backgroundColor: string; |
| borderBottomWidth: string; |
| borderColor: string; |
| borderRightStyle: string; |
| borderRightWidth: string; |
| borderTopWidth: string; |
| borderStyle: string; |
| borderWidth: string; |
| bottom: string; |
| color: string; |
| height: string; |
| left: string; |
| margin: string; |
| marginLeft: string; |
| marginRight: string; |
| marginTop: string; |
| minWidth: string; |
| paddingLeft: string; |
| position: string; |
| textShadow: string; |
| top: string; |
| width: string; |
| verticalAlign: string; |
| }> & {}; |
|
|
| export interface HtmlDomNode extends VirtualNode { |
| classes: string[]; |
| height: number; |
| depth: number; |
| maxFontSize: number; |
| style: CssStyle; |
| hasClass(className: string): boolean; |
| } |
|
|
| |
| export type DomSpan = Span<HtmlDomNode>; |
| |
| export type SvgSpan = Span<SvgNode>; |
|
|
| export type SvgChildNode = PathNode | LineNode; |
| export type documentFragment = DocumentFragment<HtmlDomNode>; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export class Span<ChildType extends VirtualNode> implements HtmlDomNode { |
| children: ChildType[]; |
| attributes!: Record<string, string>; |
| classes!: string[]; |
| height!: number; |
| depth!: number; |
| width: number | null | undefined; |
| maxFontSize!: number; |
| style!: CssStyle; |
| |
| |
| |
| |
| |
| italic?: number; |
|
|
| constructor( |
| classes?: string[], |
| children?: ChildType[], |
| options?: Options, |
| style?: CssStyle, |
| ) { |
| initNode.call(this, classes, options, style); |
| this.children = children || []; |
| } |
|
|
| |
| |
| |
| |
| |
| setAttribute(attribute: string, value: string) { |
| this.attributes[attribute] = value; |
| } |
|
|
| hasClass(className: string): boolean { |
| return this.classes.includes(className); |
| } |
|
|
| toNode(): HTMLElement { |
| return toNode.call(this, "span"); |
| } |
|
|
| toMarkup(): string { |
| return toMarkup.call(this, "span"); |
| } |
| } |
|
|
| |
| |
| |
| |
| export class Anchor implements HtmlDomNode { |
| children: HtmlDomNode[]; |
| attributes!: Record<string, string>; |
| classes!: string[]; |
| height!: number; |
| depth!: number; |
| maxFontSize!: number; |
| style!: CssStyle; |
|
|
| constructor( |
| href: string, |
| classes: string[], |
| children: HtmlDomNode[], |
| options: Options, |
| ) { |
| initNode.call(this, classes, options); |
| this.children = children || []; |
| this.setAttribute('href', href); |
| } |
|
|
| setAttribute(attribute: string, value: string) { |
| this.attributes[attribute] = value; |
| } |
|
|
| hasClass(className: string): boolean { |
| return this.classes.includes(className); |
| } |
|
|
| toNode(): HTMLElement { |
| return toNode.call(this, "a"); |
| } |
|
|
| toMarkup(): string { |
| return toMarkup.call(this, "a"); |
| } |
| } |
|
|
| |
| |
| |
| export class Img implements VirtualNode { |
| src: string; |
| alt: string; |
| classes: string[]; |
| height: number; |
| depth: number; |
| maxFontSize: number; |
| style: CssStyle; |
|
|
| constructor( |
| src: string, |
| alt: string, |
| style: CssStyle, |
| ) { |
| this.alt = alt; |
| this.src = src; |
| this.classes = ["mord"]; |
| this.height = 0; |
| this.depth = 0; |
| this.maxFontSize = 0; |
| this.style = style; |
| } |
|
|
| hasClass(className: string): boolean { |
| return this.classes.includes(className); |
| } |
|
|
| toNode(): Node { |
| const node = document.createElement("img"); |
| node.src = this.src; |
| node.alt = this.alt; |
| node.className = "mord"; |
|
|
| |
| Object.assign(node.style, this.style); |
|
|
| return node; |
| } |
|
|
| toMarkup(): string { |
| let markup = `<img src="${escape(this.src)}"` + |
| ` alt="${escape(this.alt)}"`; |
|
|
| const styles = cssStyleToString(this.style); |
| if (styles) { |
| markup += ` style="${escape(styles)}"`; |
| } |
|
|
| markup += "'/>"; |
| return markup; |
| } |
| } |
|
|
| const iCombinations: Record<string, string> = { |
| 'î': '\u0131\u0302', |
| 'ï': '\u0131\u0308', |
| 'í': '\u0131\u0301', |
| |
| 'ì': '\u0131\u0300', |
| }; |
|
|
| |
| |
| |
| |
| |
| export class SymbolNode implements HtmlDomNode { |
| text: string; |
| height: number; |
| depth: number; |
| italic: number; |
| skew: number; |
| width: number; |
| maxFontSize: number; |
| classes: string[]; |
| style: CssStyle; |
|
|
| constructor( |
| text: string, |
| height?: number, |
| depth?: number, |
| italic?: number, |
| skew?: number, |
| width?: number, |
| classes?: string[], |
| style?: CssStyle, |
| ) { |
| this.text = text; |
| this.height = height || 0; |
| this.depth = depth || 0; |
| this.italic = italic || 0; |
| this.skew = skew || 0; |
| this.width = width || 0; |
| this.classes = classes || []; |
| this.style = style || {}; |
| this.maxFontSize = 0; |
|
|
| |
| |
| |
| |
| |
| |
| |
| const script = scriptFromCodepoint(this.text.charCodeAt(0)); |
| if (script) { |
| this.classes.push(script + "_fallback"); |
| } |
|
|
| if (/[îïíì]/.test(this.text)) { |
| this.text = iCombinations[this.text]; |
| } |
| } |
|
|
| hasClass(className: string): boolean { |
| return this.classes.includes(className); |
| } |
|
|
| |
| |
| |
| |
| toNode(): Node { |
| const node = document.createTextNode(this.text); |
| let span = null; |
|
|
| if (this.italic > 0) { |
| span = document.createElement("span"); |
| span.style.marginRight = makeEm(this.italic); |
| } |
|
|
| if (this.classes.length > 0) { |
| span = span || document.createElement("span"); |
| span.className = createClass(this.classes); |
| } |
|
|
| if (Object.keys(this.style).length > 0) { |
| span = span || document.createElement("span"); |
| Object.assign(span.style, this.style); |
| } |
|
|
| if (span) { |
| span.appendChild(node); |
| return span; |
| } else { |
| return node; |
| } |
| } |
|
|
| |
| |
| |
| toMarkup(): string { |
| |
| |
| let needsSpan = false; |
|
|
| let markup = "<span"; |
|
|
| if (this.classes.length) { |
| needsSpan = true; |
| markup += " class=\""; |
| markup += escape(createClass(this.classes)); |
| markup += "\""; |
| } |
|
|
| let styles = ""; |
|
|
| if (this.italic > 0) { |
| styles += `margin-right:${makeEm(this.italic)};`; |
| } |
| styles += cssStyleToString(this.style); |
|
|
| if (styles) { |
| needsSpan = true; |
| markup += " style=\"" + escape(styles) + "\""; |
| } |
|
|
| const escaped = escape(this.text); |
| if (needsSpan) { |
| markup += ">"; |
| markup += escaped; |
| markup += "</span>"; |
| return markup; |
| } else { |
| return escaped; |
| } |
| } |
| } |
|
|
| |
| |
| |
| export class SvgNode implements VirtualNode { |
| children: SvgChildNode[]; |
| attributes: Record<string, string>; |
|
|
| constructor( |
| children?: SvgChildNode[], |
| attributes?: Record<string, string>, |
| ) { |
| this.children = children || []; |
| this.attributes = attributes || {}; |
| } |
|
|
| toNode(): Node { |
| const svgNS = "http://www.w3.org/2000/svg"; |
| const node = document.createElementNS(svgNS, "svg"); |
|
|
| |
| for (const attr of Object.keys(this.attributes)) { |
| node.setAttribute(attr, this.attributes[attr]); |
| } |
|
|
| for (let i = 0; i < this.children.length; i++) { |
| node.appendChild(this.children[i].toNode()); |
| } |
| return node; |
| } |
|
|
| toMarkup(): string { |
| let markup = `<svg xmlns="http://www.w3.org/2000/svg"`; |
|
|
| |
| for (const attr of Object.keys(this.attributes)) { |
| markup += ` ${attr}="${escape(this.attributes[attr])}"`; |
| } |
|
|
| markup += ">"; |
|
|
| for (let i = 0; i < this.children.length; i++) { |
| markup += this.children[i].toMarkup(); |
| } |
|
|
| markup += "</svg>"; |
|
|
| return markup; |
|
|
| } |
| } |
|
|
| export class PathNode implements VirtualNode { |
| pathName: string; |
| alternate: string | null | undefined; |
|
|
| constructor(pathName: string, alternate?: string) { |
| this.pathName = pathName; |
| this.alternate = alternate; |
| } |
|
|
| toNode(): Node { |
| const svgNS = "http://www.w3.org/2000/svg"; |
| const node = document.createElementNS(svgNS, "path"); |
|
|
| if (this.alternate) { |
| node.setAttribute("d", this.alternate); |
| } else { |
| node.setAttribute("d", path[this.pathName]); |
| } |
|
|
| return node; |
| } |
|
|
| toMarkup(): string { |
| if (this.alternate) { |
| return `<path d="${escape(this.alternate)}"/>`; |
| } else { |
| return `<path d="${escape(path[this.pathName])}"/>`; |
| } |
| } |
| } |
|
|
| export class LineNode implements VirtualNode { |
| attributes: Record<string, string>; |
|
|
| constructor( |
| attributes?: Record<string, string>, |
| ) { |
| this.attributes = attributes || {}; |
| } |
|
|
| toNode(): Node { |
| const svgNS = "http://www.w3.org/2000/svg"; |
| const node = document.createElementNS(svgNS, "line"); |
|
|
| |
| for (const attr of Object.keys(this.attributes)) { |
| node.setAttribute(attr, this.attributes[attr]); |
| } |
|
|
| return node; |
| } |
|
|
| toMarkup(): string { |
| let markup = "<line"; |
|
|
| for (const attr of Object.keys(this.attributes)) { |
| markup += ` ${attr}="${escape(this.attributes[attr])}"`; |
| } |
|
|
| markup += "/>"; |
|
|
| return markup; |
| } |
| } |
|
|
| export function assertSymbolDomNode( |
| group: HtmlDomNode, |
| ): SymbolNode { |
| if (group instanceof SymbolNode) { |
| return group; |
| } else { |
| throw new Error(`Expected symbolNode but got ${String(group)}.`); |
| } |
| } |
|
|
| export function assertSpan( |
| group: HtmlDomNode, |
| ): Span<HtmlDomNode> { |
| if (group instanceof Span) { |
| return group; |
| } else { |
| throw new Error(`Expected span<HtmlDomNode> but got ${String(group)}.`); |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| export const hasHtmlDomChildren = ( |
| node: HtmlDomNode, |
| ): node is DomSpan | Anchor | documentFragment => |
| node instanceof Span || |
| node instanceof Anchor || |
| node instanceof DocumentFragment; |
|
|