1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SvgV3Highlighter = void 0;
- const DomUtil = require("../common/dom_util.js");
- const XpathUtil = require("../common/xpath_util.js");
- const color_picker_js_1 = require("./color_picker.js");
- const svg_highlighter_js_1 = require("./svg_highlighter.js");
- class SvgV3Highlighter extends svg_highlighter_js_1.SvgHighlighter {
- constructor() {
- super();
- this.mactionName = 'maction';
- }
- highlightNode(node) {
- let info;
- if (this.isHighlighted(node)) {
- info = {
- node: node,
- background: this.colorString().background,
- foreground: this.colorString().foreground
- };
- return info;
- }
- if (node.tagName === 'svg' || node.tagName === 'MJX-CONTAINER') {
- info = {
- node: node,
- background: node.style.backgroundColor,
- foreground: node.style.color
- };
- node.style.backgroundColor = this.colorString().background;
- node.style.color = this.colorString().foreground;
- return info;
- }
- const rect = DomUtil.createElementNS('http://www.w3.org/2000/svg', 'rect');
- rect.setAttribute('sre-highlighter-added', 'true');
- const padding = 40;
- const bbox = node.getBBox();
- rect.setAttribute('x', (bbox.x - padding).toString());
- rect.setAttribute('y', (bbox.y - padding).toString());
- rect.setAttribute('width', (bbox.width + 2 * padding).toString());
- rect.setAttribute('height', (bbox.height + 2 * padding).toString());
- const transform = node.getAttribute('transform');
- if (transform) {
- rect.setAttribute('transform', transform);
- }
- rect.setAttribute('fill', this.colorString().background);
- node.setAttribute(this.ATTR, 'true');
- node.parentNode.insertBefore(rect, node);
- info = { node: node, foreground: node.getAttribute('fill') };
- if (node.nodeName === 'rect') {
- const picker = new color_picker_js_1.ColorPicker({ alpha: 0, color: 'black' });
- node.setAttribute('fill', picker.rgba().foreground);
- }
- else {
- node.setAttribute('fill', this.colorString().foreground);
- }
- return info;
- }
- unhighlightNode(info) {
- const previous = info.node.previousSibling;
- if (previous && previous.hasAttribute('sre-highlighter-added')) {
- info.foreground
- ? info.node.setAttribute('fill', info.foreground)
- : info.node.removeAttribute('fill');
- info.node.parentNode.removeChild(previous);
- return;
- }
- info.node.style.backgroundColor = info.background;
- info.node.style.color = info.foreground;
- }
- isMactionNode(node) {
- return node.getAttribute('data-mml-node') === this.mactionName;
- }
- getMactionNodes(node) {
- return Array.from(XpathUtil.evalXPath(`.//*[@data-mml-node="${this.mactionName}"]`, node));
- }
- }
- exports.SvgV3Highlighter = SvgV3Highlighter;
|