1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.CaseEmpheq = void 0;
- const semantic_util_js_1 = require("../semantic_tree/semantic_util.js");
- const abstract_enrich_case_js_1 = require("./abstract_enrich_case.js");
- const EnrichMathml = require("./enrich_mathml.js");
- const enrich_attr_js_1 = require("./enrich_attr.js");
- const DomUtil = require("../common/dom_util.js");
- class CaseEmpheq extends abstract_enrich_case_js_1.AbstractEnrichCase {
- static test(semantic) {
- return !!semantic.mathmlTree && semantic.hasAnnotation('Emph', 'top');
- }
- constructor(semantic) {
- super(semantic);
- this.mrows = [];
- this.mml = semantic.mathmlTree;
- }
- getMathml() {
- this.recurseToTable(this.semantic);
- if (this.mrows.length) {
- const newRow = (0, enrich_attr_js_1.addMrow)();
- const parent = this.mml.parentNode;
- parent.insertBefore(newRow, this.mml);
- for (const mrow of this.mrows) {
- newRow.appendChild(mrow);
- }
- newRow.appendChild(this.mml);
- }
- return this.mml;
- }
- recurseToTable(node) {
- var _a, _b;
- if (!(node.hasAnnotation('Emph', 'top') || node.hasAnnotation('Emph', 'fence')) &&
- (node.hasAnnotation('Emph', 'left') ||
- node.hasAnnotation('Emph', 'right'))) {
- EnrichMathml.walkTree(node);
- return;
- }
- if (!node.mathmlTree ||
- (DomUtil.tagName(node.mathmlTree) === semantic_util_js_1.MMLTAGS.MTABLE &&
- ((_a = node.annotation['Emph']) === null || _a === void 0 ? void 0 : _a.length) &&
- node.annotation['Emph'][0] !== 'table')) {
- const newNode = (0, enrich_attr_js_1.addMrow)();
- (0, enrich_attr_js_1.setAttributes)(newNode, node);
- this.mrows.unshift(newNode);
- }
- else {
- if (DomUtil.tagName(node.mathmlTree) === semantic_util_js_1.MMLTAGS.MTABLE &&
- ((_b = node.annotation['Emph']) === null || _b === void 0 ? void 0 : _b.length) &&
- node.annotation['Emph'][0] === 'table') {
- this.finalizeTable(node);
- return;
- }
- (0, enrich_attr_js_1.setAttributes)(node.mathmlTree, node);
- }
- node.childNodes.forEach(this.recurseToTable.bind(this));
- if (node.textContent || node.type === 'punctuated') {
- const newContent = node.contentNodes.map((x) => {
- const newNode = EnrichMathml.cloneContentNode(x);
- if (newNode.hasAttribute('data-semantic-added')) {
- this.mrows.unshift(newNode);
- }
- else {
- this.recurseToTable(x);
- }
- return newNode;
- });
- EnrichMathml.setOperatorAttribute(node, newContent);
- return;
- }
- node.contentNodes.forEach(this.recurseToTable.bind(this));
- }
- finalizeTable(node) {
- (0, enrich_attr_js_1.setAttributes)(node.mathmlTree, node);
- node.contentNodes.forEach((x) => {
- EnrichMathml.walkTree(x);
- });
- node.childNodes.forEach((x) => {
- EnrichMathml.walkTree(x);
- });
- }
- }
- exports.CaseEmpheq = CaseEmpheq;
|