123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __read = (this && this.__read) || function (o, n) {
- var m = typeof Symbol === "function" && o[Symbol.iterator];
- if (!m) return o;
- var i = m.call(o), r, ar = [], e;
- try {
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
- }
- catch (error) { e = { error: error }; }
- finally {
- try {
- if (r && !r.done && (m = i["return"])) m.call(i);
- }
- finally { if (e) throw e.error; }
- }
- return ar;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.CHTMLmmultiscripts = void 0;
- var msubsup_js_1 = require("./msubsup.js");
- var mmultiscripts_js_1 = require("../../common/Wrappers/mmultiscripts.js");
- var mmultiscripts_js_2 = require("../../../core/MmlTree/MmlNodes/mmultiscripts.js");
- var string_js_1 = require("../../../util/string.js");
- var CHTMLmmultiscripts = (function (_super) {
- __extends(CHTMLmmultiscripts, _super);
- function CHTMLmmultiscripts() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- CHTMLmmultiscripts.prototype.toCHTML = function (parent) {
- var chtml = this.standardCHTMLnode(parent);
- var data = this.scriptData;
- var scriptalign = this.node.getProperty('scriptalign') || 'right left';
- var _a = __read((0, string_js_1.split)(scriptalign + ' ' + scriptalign), 2), preAlign = _a[0], postAlign = _a[1];
- var sub = this.combinePrePost(data.sub, data.psub);
- var sup = this.combinePrePost(data.sup, data.psup);
- var _b = __read(this.getUVQ(sub, sup), 2), u = _b[0], v = _b[1];
- if (data.numPrescripts) {
- var scripts = this.addScripts(u, -v, true, data.psub, data.psup, this.firstPrescript, data.numPrescripts);
- preAlign !== 'right' && this.adaptor.setAttribute(scripts, 'script-align', preAlign);
- }
- this.childNodes[0].toCHTML(chtml);
- if (data.numScripts) {
- var scripts = this.addScripts(u, -v, false, data.sub, data.sup, 1, data.numScripts);
- postAlign !== 'left' && this.adaptor.setAttribute(scripts, 'script-align', postAlign);
- }
- };
- CHTMLmmultiscripts.prototype.addScripts = function (u, v, isPre, sub, sup, i, n) {
- var adaptor = this.adaptor;
- var q = (u - sup.d) + (v - sub.h);
- var U = (u < 0 && v === 0 ? sub.h + u : u);
- var rowdef = (q > 0 ? { style: { height: this.em(q) } } : {});
- var tabledef = (U ? { style: { 'vertical-align': this.em(U) } } : {});
- var supRow = this.html('mjx-row');
- var sepRow = this.html('mjx-row', rowdef);
- var subRow = this.html('mjx-row');
- var name = 'mjx-' + (isPre ? 'pre' : '') + 'scripts';
- var m = i + 2 * n;
- while (i < m) {
- this.childNodes[i++].toCHTML(adaptor.append(subRow, this.html('mjx-cell')));
- this.childNodes[i++].toCHTML(adaptor.append(supRow, this.html('mjx-cell')));
- }
- return adaptor.append(this.chtml, this.html(name, tabledef, [supRow, sepRow, subRow]));
- };
- CHTMLmmultiscripts.kind = mmultiscripts_js_2.MmlMmultiscripts.prototype.kind;
- CHTMLmmultiscripts.styles = {
- 'mjx-prescripts': {
- display: 'inline-table',
- 'padding-left': '.05em'
- },
- 'mjx-scripts': {
- display: 'inline-table',
- 'padding-right': '.05em'
- },
- 'mjx-prescripts > mjx-row > mjx-cell': {
- 'text-align': 'right'
- },
- '[script-align="left"] > mjx-row > mjx-cell': {
- 'text-align': 'left'
- },
- '[script-align="center"] > mjx-row > mjx-cell': {
- 'text-align': 'center'
- },
- '[script-align="right"] > mjx-row > mjx-cell': {
- 'text-align': 'right'
- }
- };
- return CHTMLmmultiscripts;
- }((0, mmultiscripts_js_1.CommonMmultiscriptsMixin)(msubsup_js_1.CHTMLmsubsup)));
- exports.CHTMLmmultiscripts = CHTMLmmultiscripts;
- //# sourceMappingURL=mmultiscripts.js.map
|