123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*************************************************************
- *
- * Copyright (c) 2017-2022 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview Implements the CHTMLmath wrapper for the MmlMath object
- *
- * @author dpvc@mathjax.org (Davide Cervone)
- */
- import {CHTMLWrapper, CHTMLConstructor} from '../Wrapper.js';
- import {CommonMathMixin} from '../../common/Wrappers/math.js';
- import {MmlMath} from '../../../core/MmlTree/MmlNodes/math.js';
- import {StyleList} from '../../../util/StyleList.js';
- import {BBox} from '../../../util/BBox.js';
- /*****************************************************************/
- /**
- * The CHTMLmath wrapper for the MmlMath object
- *
- * @template N The HTMLElement node class
- * @template T The Text node class
- * @template D The Document class
- */
- // @ts-ignore
- export class CHTMLmath<N, T, D> extends
- CommonMathMixin<CHTMLConstructor<any, any, any>>(CHTMLWrapper) {
- /**
- * The math wrapper
- */
- public static kind = MmlMath.prototype.kind;
- /**
- * @override
- */
- public static styles: StyleList = {
- 'mjx-math': {
- 'line-height': 0,
- 'text-align': 'left',
- 'text-indent': 0,
- 'font-style': 'normal',
- 'font-weight': 'normal',
- 'font-size': '100%',
- 'font-size-adjust': 'none',
- 'letter-spacing': 'normal',
- 'border-collapse': 'collapse',
- 'word-wrap': 'normal',
- 'word-spacing': 'normal',
- 'white-space': 'nowrap',
- 'direction': 'ltr',
- 'padding': '1px 0'
- },
- 'mjx-container[jax="CHTML"][display="true"]': {
- display: 'block',
- 'text-align': 'center',
- margin: '1em 0'
- },
- 'mjx-container[jax="CHTML"][display="true"][width="full"]': {
- display: 'flex'
- },
- 'mjx-container[jax="CHTML"][display="true"] mjx-math': {
- padding: 0
- },
- 'mjx-container[jax="CHTML"][justify="left"]': {
- 'text-align': 'left'
- },
- 'mjx-container[jax="CHTML"][justify="right"]': {
- 'text-align': 'right'
- }
- };
- /**
- * @override
- */
- public toCHTML(parent: N) {
- super.toCHTML(parent);
- const chtml = this.chtml;
- const adaptor = this.adaptor;
- const display = (this.node.attributes.get('display') === 'block');
- if (display) {
- adaptor.setAttribute(chtml, 'display', 'true');
- adaptor.setAttribute(parent, 'display', 'true');
- this.handleDisplay(parent);
- } else {
- this.handleInline(parent);
- }
- adaptor.addClass(chtml, 'MJX-TEX');
- }
- /**
- * Handle displayed equations (set min-width, and so on).
- */
- protected handleDisplay(parent: N) {
- const adaptor = this.adaptor;
- const [align, shift] = this.getAlignShift();
- if (align !== 'center') {
- adaptor.setAttribute(parent, 'justify', align);
- }
- if (this.bbox.pwidth === BBox.fullWidth) {
- adaptor.setAttribute(parent, 'width', 'full');
- if (this.jax.table) {
- let {L, w, R} = this.jax.table.getOuterBBox();
- if (align === 'right') {
- R = Math.max(R || -shift, -shift);
- } else if (align === 'left') {
- L = Math.max(L || shift, shift);
- } else if (align === 'center') {
- w += 2 * Math.abs(shift);
- }
- const W = this.em(Math.max(0, L + w + R));
- adaptor.setStyle(parent, 'min-width', W);
- adaptor.setStyle(this.jax.table.chtml, 'min-width', W);
- }
- } else {
- this.setIndent(this.chtml, align, shift);
- }
- }
- /**
- * Handle in-line expressions
- */
- protected handleInline(parent: N) {
- //
- // Transfer right margin to container (for things like $x\hskip -2em y$)
- //
- const adaptor = this.adaptor;
- const margin = adaptor.getStyle(this.chtml, 'margin-right');
- if (margin) {
- adaptor.setStyle(this.chtml, 'margin-right', '');
- adaptor.setStyle(parent, 'margin-right', margin);
- adaptor.setStyle(parent, 'width', '0');
- }
- }
- /**
- * @override
- */
- public setChildPWidths(recompute: boolean, w: number = null, clear: boolean = true) {
- return (this.parent ? super.setChildPWidths(recompute, w, clear) : false);
- }
- }
|