123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- "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 __assign = (this && this.__assign) || function () {
- __assign = Object.assign || function(t) {
- for (var s, i = 1, n = arguments.length; i < n; i++) {
- s = arguments[i];
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
- t[p] = s[p];
- }
- return t;
- };
- return __assign.apply(this, arguments);
- };
- 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;
- };
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
- if (ar || !(i in from)) {
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
- ar[i] = from[i];
- }
- }
- return to.concat(ar || Array.prototype.slice.call(from));
- };
- var __values = (this && this.__values) || function(o) {
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
- if (m) return m.call(o);
- if (o && typeof o.length === "number") return {
- next: function () {
- if (o && i >= o.length) o = void 0;
- return { value: o && o[i++], done: !o };
- }
- };
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.MenuHandler = exports.MenuMathDocumentMixin = exports.MenuMathItemMixin = void 0;
- var mathjax_js_1 = require("../../mathjax.js");
- var MathItem_js_1 = require("../../core/MathItem.js");
- var Options_js_1 = require("../../util/Options.js");
- var Menu_js_1 = require("./Menu.js");
- (0, MathItem_js_1.newState)('CONTEXT_MENU', 170);
- function MenuMathItemMixin(BaseMathItem) {
- return (function (_super) {
- __extends(class_1, _super);
- function class_1() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- class_1.prototype.addMenu = function (document, force) {
- if (force === void 0) { force = false; }
- if (this.state() >= MathItem_js_1.STATE.CONTEXT_MENU)
- return;
- if (!this.isEscaped && (document.options.enableMenu || force)) {
- document.menu.addMenu(this);
- }
- this.state(MathItem_js_1.STATE.CONTEXT_MENU);
- };
- class_1.prototype.checkLoading = function (document) {
- document.checkLoading();
- };
- return class_1;
- }(BaseMathItem));
- }
- exports.MenuMathItemMixin = MenuMathItemMixin;
- function MenuMathDocumentMixin(BaseDocument) {
- var _a;
- return _a = (function (_super) {
- __extends(class_2, _super);
- function class_2() {
- var args = [];
- for (var _i = 0; _i < arguments.length; _i++) {
- args[_i] = arguments[_i];
- }
- var _this = _super.apply(this, __spreadArray([], __read(args), false)) || this;
- _this.menu = new _this.options.MenuClass(_this, _this.options.menuOptions);
- var ProcessBits = _this.constructor.ProcessBits;
- if (!ProcessBits.has('context-menu')) {
- ProcessBits.allocate('context-menu');
- }
- _this.options.MathItem = MenuMathItemMixin(_this.options.MathItem);
- return _this;
- }
- class_2.prototype.addMenu = function () {
- var e_1, _a;
- if (!this.processed.isSet('context-menu')) {
- try {
- for (var _b = __values(this.math), _c = _b.next(); !_c.done; _c = _b.next()) {
- var math = _c.value;
- math.addMenu(this);
- }
- }
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
- finally {
- try {
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
- }
- finally { if (e_1) throw e_1.error; }
- }
- this.processed.set('context-menu');
- }
- return this;
- };
- class_2.prototype.checkLoading = function () {
- if (this.menu.isLoading) {
- mathjax_js_1.mathjax.retryAfter(this.menu.loadingPromise.catch(function (err) { return console.log(err); }));
- }
- var settings = this.menu.settings;
- if (settings.collapsible) {
- this.options.enableComplexity = true;
- this.menu.checkComponent('a11y/complexity');
- }
- if (settings.explorer) {
- this.options.enableEnrichment = true;
- this.options.enableExplorer = true;
- this.menu.checkComponent('a11y/explorer');
- }
- return this;
- };
- class_2.prototype.state = function (state, restore) {
- if (restore === void 0) { restore = false; }
- _super.prototype.state.call(this, state, restore);
- if (state < MathItem_js_1.STATE.CONTEXT_MENU) {
- this.processed.clear('context-menu');
- }
- return this;
- };
- class_2.prototype.updateDocument = function () {
- _super.prototype.updateDocument.call(this);
- this.menu.menu.store.sort();
- return this;
- };
- return class_2;
- }(BaseDocument)),
- _a.OPTIONS = __assign(__assign({ enableEnrichment: true, enableComplexity: true, enableExplorer: true, enrichSpeech: 'none', enrichError: function (_doc, _math, err) {
- return console.warn('Enrichment Error:', err);
- } }, BaseDocument.OPTIONS), { MenuClass: Menu_js_1.Menu, menuOptions: Menu_js_1.Menu.OPTIONS, enableMenu: true, sre: (BaseDocument.OPTIONS.sre || (0, Options_js_1.expandable)({})), a11y: (BaseDocument.OPTIONS.a11y || (0, Options_js_1.expandable)({})), renderActions: (0, Options_js_1.expandable)(__assign(__assign({}, BaseDocument.OPTIONS.renderActions), { addMenu: [MathItem_js_1.STATE.CONTEXT_MENU], checkLoading: [MathItem_js_1.STATE.UNPROCESSED + 1] })) }),
- _a;
- }
- exports.MenuMathDocumentMixin = MenuMathDocumentMixin;
- function MenuHandler(handler) {
- handler.documentClass = MenuMathDocumentMixin(handler.documentClass);
- return handler;
- }
- exports.MenuHandler = MenuHandler;
- //# sourceMappingURL=MenuHandler.js.map
|