@wiris/mathtype-ckeditor5 8.15.1 → 8.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +412 -104
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.js +412 -104
- package/dist/browser/index.umd.js.map +1 -1
- package/dist/index.js +412 -104
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/integration.js +468 -122
- package/src/plugin.js +63 -3
package/dist/browser/index.js
CHANGED
|
@@ -11295,49 +11295,68 @@ delete Array.prototype.__class__; // @codingStandardsIgnoreEnd
|
|
|
11295
11295
|
* @param {String} mathml MathML to update old one or insert
|
|
11296
11296
|
* @returns {module:engine/model/element~Element} The model element corresponding to the inserted image
|
|
11297
11297
|
*/ insertMathml(mathml) {
|
|
11298
|
-
// This returns the value returned by the callback function (writer => {...})
|
|
11299
11298
|
return this.editorObject.model.change((writer)=>{
|
|
11300
|
-
const
|
|
11299
|
+
const { isNewElement, temporalImage } = this.getCore().editionProperties;
|
|
11301
11300
|
const selection = this.editorObject.model.document.selection;
|
|
11301
|
+
const attributes = Object.fromEntries(selection.getAttributes());
|
|
11302
11302
|
const modelElementNew = writer.createElement("mathml", {
|
|
11303
11303
|
formula: mathml,
|
|
11304
|
-
...
|
|
11304
|
+
...attributes
|
|
11305
11305
|
});
|
|
11306
|
-
|
|
11307
|
-
|
|
11308
|
-
// Don't bother inserting anything at all if the MathML is empty.
|
|
11309
|
-
if (!mathml) return;
|
|
11310
|
-
const viewSelection = this.core.editionProperties.selection || this.editorObject.editing.view.document.selection;
|
|
11311
|
-
const modelPosition = this.editorObject.editing.mapper.toModelPosition(viewSelection.getLastPosition());
|
|
11312
|
-
this.editorObject.model.insertObject(modelElementNew, modelPosition);
|
|
11313
|
-
// Remove selection
|
|
11314
|
-
if (!viewSelection.isCollapsed) {
|
|
11315
|
-
for (const range of viewSelection.getRanges()){
|
|
11316
|
-
const modelRange = this.editorObject.editing.mapper.toModelRange(range);
|
|
11317
|
-
const modelSelection = this.editorObject.model.createSelection(modelRange);
|
|
11318
|
-
this.editorObject.model.deleteContent(modelSelection);
|
|
11319
|
-
}
|
|
11320
|
-
}
|
|
11321
|
-
// Set carret after the formula
|
|
11322
|
-
const position = this.editorObject.model.createPositionAfter(modelElementNew);
|
|
11323
|
-
writer.setSelection(position);
|
|
11324
|
-
} else {
|
|
11325
|
-
const img = core.editionProperties.temporalImage;
|
|
11326
|
-
const viewElement = this.editorObject.editing.view.domConverter.domToView(img).parent;
|
|
11327
|
-
const modelElementOld = this.editorObject.editing.mapper.toModelElement(viewElement);
|
|
11328
|
-
// Insert the new <mathml> and remove the old one
|
|
11329
|
-
const position = this.editorObject.model.createPositionBefore(modelElementOld);
|
|
11330
|
-
// If the given MathML is empty, don't insert a new formula.
|
|
11331
|
-
if (mathml) {
|
|
11332
|
-
this.editorObject.model.insertObject(modelElementNew, position);
|
|
11333
|
-
}
|
|
11334
|
-
this.editorObject.model.deleteContent(this.editorObject.model.createSelection(modelElementOld, 'on'));
|
|
11306
|
+
if (isNewElement) {
|
|
11307
|
+
return this.insertNewFormula(writer, mathml, modelElementNew);
|
|
11335
11308
|
}
|
|
11336
|
-
|
|
11337
|
-
return modelElementNew;
|
|
11309
|
+
return this.replaceExistingFormula(mathml, modelElementNew, temporalImage);
|
|
11338
11310
|
});
|
|
11339
11311
|
}
|
|
11340
11312
|
/**
|
|
11313
|
+
* Inserts a new formula at the current selection position.
|
|
11314
|
+
*/ insertNewFormula(writer, mathml, modelElement) {
|
|
11315
|
+
if (!mathml) {
|
|
11316
|
+
return;
|
|
11317
|
+
}
|
|
11318
|
+
const viewSelection = this.core.editionProperties.selection || this.editorObject.editing.view.document.selection;
|
|
11319
|
+
const modelPosition = this.editorObject.editing.mapper.toModelPosition(viewSelection.getLastPosition());
|
|
11320
|
+
this.editorObject.model.insertObject(modelElement, modelPosition);
|
|
11321
|
+
this.deleteViewSelection(viewSelection);
|
|
11322
|
+
// Set carret after the formula.
|
|
11323
|
+
const position = this.editorObject.model.createPositionAfter(modelElement);
|
|
11324
|
+
writer.setSelection(position);
|
|
11325
|
+
return modelElement;
|
|
11326
|
+
}
|
|
11327
|
+
deleteViewSelection(viewSelection) {
|
|
11328
|
+
if (viewSelection.isCollapsed) {
|
|
11329
|
+
return;
|
|
11330
|
+
}
|
|
11331
|
+
for (const range of viewSelection.getRanges()){
|
|
11332
|
+
const modelRange = this.editorObject.editing.mapper.toModelRange(range);
|
|
11333
|
+
const modelSelection = this.editorObject.model.createSelection(modelRange);
|
|
11334
|
+
this.editorObject.model.deleteContent(modelSelection);
|
|
11335
|
+
}
|
|
11336
|
+
}
|
|
11337
|
+
/**
|
|
11338
|
+
* Replaces an existing formula with updated MathML.
|
|
11339
|
+
*/ replaceExistingFormula(mathml, modelElement, temporalImage) {
|
|
11340
|
+
const viewNode = this.editorObject.editing.view.domConverter.domToView(temporalImage);
|
|
11341
|
+
// Check if image exists in view to do standard formula editing
|
|
11342
|
+
if (viewNode?.parent) {
|
|
11343
|
+
const modelElementOld = this.editorObject.editing.mapper.toModelElement(viewNode.parent);
|
|
11344
|
+
// Insert the new <mathml> and remove the old one
|
|
11345
|
+
const position = this.editorObject.model.createPositionBefore(modelElementOld);
|
|
11346
|
+
if (mathml) {
|
|
11347
|
+
this.editorObject.model.insertObject(modelElement, position);
|
|
11348
|
+
}
|
|
11349
|
+
this.editorObject.model.deleteContent(this.editorObject.model.createSelection(modelElementOld, "on"));
|
|
11350
|
+
return modelElement;
|
|
11351
|
+
}
|
|
11352
|
+
// Otherwise it's LaTeX editing, so we insert at current selection
|
|
11353
|
+
if (!mathml) {
|
|
11354
|
+
return;
|
|
11355
|
+
}
|
|
11356
|
+
this.editorObject.model.insertContent(modelElement);
|
|
11357
|
+
return modelElement;
|
|
11358
|
+
}
|
|
11359
|
+
/**
|
|
11341
11360
|
* Finds the text node corresponding to given DOM text element.
|
|
11342
11361
|
* @param {element} viewElement Element to find corresponding text node of.
|
|
11343
11362
|
* @returns {module:engine/model/text~Text|undefined} Text node corresponding to the given element or undefined if it doesn't exist.
|
|
@@ -11364,81 +11383,26 @@ delete Array.prototype.__class__; // @codingStandardsIgnoreEnd
|
|
|
11364
11383
|
}
|
|
11365
11384
|
}
|
|
11366
11385
|
}
|
|
11367
|
-
/** @inheritdoc */ insertFormula(
|
|
11386
|
+
/** @inheritdoc */ insertFormula(_focusElement, windowTarget, mathml, _wirisProperties) {
|
|
11368
11387
|
// eslint-disable-line no-unused-vars
|
|
11369
11388
|
const returnObject = {};
|
|
11370
11389
|
let mathmlOrigin;
|
|
11371
11390
|
if (!mathml) {
|
|
11372
11391
|
this.insertMathml("");
|
|
11373
11392
|
} else if (this.core.editMode === "latex") {
|
|
11374
|
-
returnObject
|
|
11375
|
-
returnObject.node = windowTarget.document.createTextNode(`$$${returnObject.latex}$$`);
|
|
11376
|
-
this.editorObject.model.change((writer)=>{
|
|
11377
|
-
const { latexRange } = this.core.editionProperties;
|
|
11378
|
-
// Add null check for latexRange.
|
|
11379
|
-
// When the editor is initialized in a textarea element, latexRange may not be set on initial load.
|
|
11380
|
-
// This check ensures formulas can still be inserted by falling back to MathML insertion if latexRange is not available.
|
|
11381
|
-
if (!latexRange) {
|
|
11382
|
-
// Fallback to regular MathML insertion if latexRange is not available
|
|
11383
|
-
this.insertMathml(mathml);
|
|
11384
|
-
return;
|
|
11385
|
-
}
|
|
11386
|
-
const startNode = this.findText(latexRange.startContainer);
|
|
11387
|
-
const endNode = this.findText(latexRange.endContainer);
|
|
11388
|
-
let startPosition = writer.createPositionAt(startNode.parent, startNode.startOffset + latexRange.startOffset);
|
|
11389
|
-
let endPosition = writer.createPositionAt(endNode.parent, endNode.startOffset + latexRange.endOffset);
|
|
11390
|
-
let range = writer.createRange(startPosition, endPosition);
|
|
11391
|
-
// When Latex is next to image/formula.
|
|
11392
|
-
if (latexRange.startContainer.nodeType === 3 && latexRange.startContainer.previousSibling?.nodeType === 1) {
|
|
11393
|
-
// Get the position of the latex to be replaced.
|
|
11394
|
-
const latexEdited = `$$${Latex.getLatexFromMathML(MathML.safeXmlDecode(this.core.editionProperties.temporalImage.dataset.mathml))}$$`;
|
|
11395
|
-
let data = latexRange.startContainer.data;
|
|
11396
|
-
// Remove invisible characters.
|
|
11397
|
-
data = data.replaceAll(String.fromCharCode(8288), "");
|
|
11398
|
-
// Get to the start of the latex we are editing.
|
|
11399
|
-
const offset = data.indexOf(latexEdited);
|
|
11400
|
-
const dataOffset = data.substring(offset);
|
|
11401
|
-
const second$ = dataOffset.substring(2).indexOf("$$") + 4;
|
|
11402
|
-
const substring = dataOffset.substr(0, second$);
|
|
11403
|
-
data = data.replace(substring, "");
|
|
11404
|
-
if (!data) {
|
|
11405
|
-
startPosition = writer.createPositionBefore(startNode);
|
|
11406
|
-
range = startNode;
|
|
11407
|
-
} else {
|
|
11408
|
-
startPosition = startPosition = writer.createPositionAt(startNode.parent, startNode.startOffset + offset);
|
|
11409
|
-
endPosition = writer.createPositionAt(endNode.parent, endNode.startOffset + second$ + offset);
|
|
11410
|
-
range = writer.createRange(startPosition, endPosition);
|
|
11411
|
-
}
|
|
11412
|
-
}
|
|
11413
|
-
const modelSelection = this.editorObject.model.createSelection(range);
|
|
11414
|
-
this.editorObject.model.deleteContent(modelSelection);
|
|
11415
|
-
writer.insertText(`$$${returnObject.latex}$$`, startNode.getAttributes(), startPosition);
|
|
11416
|
-
});
|
|
11393
|
+
this.handleLatexInsertion(returnObject, windowTarget, mathml);
|
|
11417
11394
|
} else {
|
|
11418
|
-
mathmlOrigin = this.
|
|
11419
|
-
try {
|
|
11420
|
-
returnObject.node = this.editorObject.editing.view.domConverter.viewToDom(this.editorObject.editing.mapper.toViewElement(this.insertMathml(mathml)), windowTarget.document);
|
|
11421
|
-
} catch (e) {
|
|
11422
|
-
const x = e.toString();
|
|
11423
|
-
if (x.includes("CKEditorError: Cannot read property 'parent' of undefined")) {
|
|
11424
|
-
this.core.modalDialog.cancelAction();
|
|
11425
|
-
}
|
|
11426
|
-
}
|
|
11395
|
+
mathmlOrigin = this.handleMathmlInsertion(returnObject, windowTarget, mathml);
|
|
11427
11396
|
}
|
|
11428
|
-
// Build the telemeter payload separated to delete null/undefined entries.
|
|
11429
11397
|
const payload = {
|
|
11430
|
-
|
|
11431
|
-
mathml: mathml ? MathML.safeXmlDecode(mathml) : mathml,
|
|
11398
|
+
mathml: mathml ? MathML.safeXmlDecode(mathml) : undefined,
|
|
11432
11399
|
elapsed_time: Date.now() - this.core.editionProperties.editionStartTime,
|
|
11433
|
-
editor_origin: null,
|
|
11434
11400
|
toolbar: this.core.modalDialog.contentManager.toolbar,
|
|
11435
11401
|
size: mathml?.length
|
|
11436
11402
|
};
|
|
11437
|
-
|
|
11438
|
-
|
|
11439
|
-
|
|
11440
|
-
});
|
|
11441
|
-
// Call Telemetry service to track the event.
|
|
11403
|
+
if (mathmlOrigin) {
|
|
11404
|
+
payload.mathml_origin = MathML.safeXmlDecode(mathmlOrigin);
|
|
11405
|
+
}
|
|
11442
11406
|
try {
|
|
11443
11407
|
Telemeter.telemeter.track("INSERTED_FORMULA", {
|
|
11444
11408
|
...payload
|
|
@@ -11446,15 +11410,312 @@ delete Array.prototype.__class__; // @codingStandardsIgnoreEnd
|
|
|
11446
11410
|
} catch (error) {
|
|
11447
11411
|
console.error("Error tracking INSERTED_FORMULA", error);
|
|
11448
11412
|
}
|
|
11449
|
-
/* Due to PLUGINS-1329, we add the onChange event to the CK4 insertFormula.
|
|
11450
|
-
We probably should add it here as well, but we should look further into how */ // this.editorObject.fire('change');
|
|
11451
|
-
// Remove temporal image of inserted formula
|
|
11452
11413
|
this.core.editionProperties.temporalImage = null;
|
|
11453
11414
|
return returnObject;
|
|
11454
11415
|
}
|
|
11416
|
+
handleLatexInsertion(returnObject, windowTarget, mathml) {
|
|
11417
|
+
returnObject.latex = Latex.getLatexFromMathML(mathml);
|
|
11418
|
+
returnObject.node = windowTarget.document.createTextNode(`$$${returnObject.latex}$$`);
|
|
11419
|
+
const { latexRange } = this.core.editionProperties;
|
|
11420
|
+
// When latexRange exists (meaning the whole LaTeX was selected or the editor was opened),
|
|
11421
|
+
// find the node contaning the LaTeX and replace it fully.
|
|
11422
|
+
if (latexRange) {
|
|
11423
|
+
const startNode = this.findText(latexRange.startContainer);
|
|
11424
|
+
const endNode = this.findText(latexRange.endContainer);
|
|
11425
|
+
// If nodes found, use standard replacement.
|
|
11426
|
+
if (startNode && endNode) {
|
|
11427
|
+
this.replaceLatexWithNodes(startNode, endNode, latexRange, returnObject.latex);
|
|
11428
|
+
return;
|
|
11429
|
+
}
|
|
11430
|
+
}
|
|
11431
|
+
this.replaceLatexUsingModelSearch(returnObject.latex);
|
|
11432
|
+
}
|
|
11433
|
+
handleMathmlInsertion(returnObject, windowTarget, mathml) {
|
|
11434
|
+
const mathmlOrigin = this.core.editionProperties.temporalImage?.dataset.mathml;
|
|
11435
|
+
try {
|
|
11436
|
+
const modelElement = this.insertMathml(mathml);
|
|
11437
|
+
const viewElement = this.editorObject.editing.mapper.toViewElement(modelElement);
|
|
11438
|
+
returnObject.node = this.editorObject.editing.view.domConverter.viewToDom(viewElement, windowTarget.document);
|
|
11439
|
+
} catch (error) {
|
|
11440
|
+
if (error.toString().includes("Cannot read property 'parent' of undefined")) {
|
|
11441
|
+
this.core.modalDialog.cancelAction();
|
|
11442
|
+
}
|
|
11443
|
+
}
|
|
11444
|
+
return mathmlOrigin;
|
|
11445
|
+
}
|
|
11455
11446
|
/**
|
|
11456
|
-
*
|
|
11457
|
-
*/
|
|
11447
|
+
* Gets selection attributes excluding track changes tags.
|
|
11448
|
+
*/ getCleanSelectionAttributes() {
|
|
11449
|
+
const attributes = {};
|
|
11450
|
+
for (const [key, value] of this.editorObject.model.document.selection.getAttributes()){
|
|
11451
|
+
if (!key.startsWith("suggestion:") && !key.startsWith("comment:")) {
|
|
11452
|
+
attributes[key] = value;
|
|
11453
|
+
}
|
|
11454
|
+
}
|
|
11455
|
+
return attributes;
|
|
11456
|
+
}
|
|
11457
|
+
/**
|
|
11458
|
+
* Searches for the original LaTeX in the model and replaces it.
|
|
11459
|
+
* Fallback when findText() cannot locate DOM nodes (like when there are track changes modifications).
|
|
11460
|
+
*/ replaceLatexUsingModelSearch(newLatex) {
|
|
11461
|
+
const foundRange = this.findLatexBlockNearSelection();
|
|
11462
|
+
if (foundRange) {
|
|
11463
|
+
this.editorObject.model.change((writer)=>writer.setSelection(foundRange));
|
|
11464
|
+
this.replaceRangeWithLatex(newLatex);
|
|
11465
|
+
} else {
|
|
11466
|
+
// Insert at current position as a last resort.
|
|
11467
|
+
this.editorObject.model.change((writer)=>{
|
|
11468
|
+
const newLatexText = writer.createText(`$$${newLatex}$$`, this.getCleanSelectionAttributes());
|
|
11469
|
+
this.editorObject.model.insertContent(newLatexText);
|
|
11470
|
+
});
|
|
11471
|
+
}
|
|
11472
|
+
this.core.editionProperties.extractedLatex = null;
|
|
11473
|
+
}
|
|
11474
|
+
/**
|
|
11475
|
+
* Checks if a text proxy has a track changes deletion marker.
|
|
11476
|
+
*/ isDeletedText(text) {
|
|
11477
|
+
for (const [key, value] of text.getAttributes()){
|
|
11478
|
+
if (key.startsWith("suggestion:") && value === "deletion") {
|
|
11479
|
+
return true;
|
|
11480
|
+
}
|
|
11481
|
+
}
|
|
11482
|
+
return false;
|
|
11483
|
+
}
|
|
11484
|
+
/**
|
|
11485
|
+
* Finds a LaTeX block ($$...$$) near the current selection.
|
|
11486
|
+
* Handles track changes by considering the "accepted" version of text.
|
|
11487
|
+
*/ findLatexBlockNearSelection() {
|
|
11488
|
+
const position = this.editorObject.model.document.selection.getFirstPosition();
|
|
11489
|
+
if (!position?.parent) {
|
|
11490
|
+
return;
|
|
11491
|
+
}
|
|
11492
|
+
// Build LaTeX with track changes accepted suggestions, if any.
|
|
11493
|
+
const { textParts, acceptedText } = this.collectTextParts(position.parent);
|
|
11494
|
+
if (!acceptedText.includes("$$")) {
|
|
11495
|
+
return;
|
|
11496
|
+
}
|
|
11497
|
+
// To handle multiple LaTeX on same line.
|
|
11498
|
+
const targetLatex = this.core.editionProperties.extractedLatex;
|
|
11499
|
+
const fullLatex = `$$${targetLatex}$$`;
|
|
11500
|
+
const startIndex = acceptedText.indexOf(fullLatex);
|
|
11501
|
+
if (startIndex === -1) {
|
|
11502
|
+
return;
|
|
11503
|
+
}
|
|
11504
|
+
const latexBoundaries = {
|
|
11505
|
+
start: startIndex,
|
|
11506
|
+
end: startIndex + fullLatex.length
|
|
11507
|
+
};
|
|
11508
|
+
return this.convertAcceptedOffsetsToModelRange(textParts, latexBoundaries);
|
|
11509
|
+
}
|
|
11510
|
+
/**
|
|
11511
|
+
* Collects all text fragments from a paragraph, tracking both model and accepted text positions.
|
|
11512
|
+
* This is necessary to handle track changes where some LaTeX may have suggestions.
|
|
11513
|
+
*/ collectTextParts(paragraph) {
|
|
11514
|
+
const textParts = [];
|
|
11515
|
+
let acceptedTextOffset = 0;
|
|
11516
|
+
let acceptedText = "";
|
|
11517
|
+
for (const item of this.editorObject.model.createRangeIn(paragraph).getItems()){
|
|
11518
|
+
if (item.is("$textProxy")) {
|
|
11519
|
+
const isDeleted = this.isDeletedText(item);
|
|
11520
|
+
textParts.push({
|
|
11521
|
+
text: item.data,
|
|
11522
|
+
startOffset: item.startOffset,
|
|
11523
|
+
endOffset: item.startOffset + item.data.length,
|
|
11524
|
+
parent: item.textNode.parent,
|
|
11525
|
+
acceptedStart: isDeleted ? null : acceptedTextOffset,
|
|
11526
|
+
acceptedEnd: isDeleted ? null : acceptedTextOffset + item.data.length,
|
|
11527
|
+
isDeleted
|
|
11528
|
+
});
|
|
11529
|
+
if (!isDeleted) {
|
|
11530
|
+
acceptedText += item.data;
|
|
11531
|
+
acceptedTextOffset += item.data.length;
|
|
11532
|
+
}
|
|
11533
|
+
}
|
|
11534
|
+
}
|
|
11535
|
+
return {
|
|
11536
|
+
textParts,
|
|
11537
|
+
acceptedText
|
|
11538
|
+
};
|
|
11539
|
+
}
|
|
11540
|
+
/**
|
|
11541
|
+
* Converts LaTeX with track changes accepted suggestions to a CKEditor model Range.
|
|
11542
|
+
*/ convertAcceptedOffsetsToModelRange(textParts, latexBoundaries) {
|
|
11543
|
+
let startPartIndex = -1, endPartIndex = -1;
|
|
11544
|
+
let startOffsetInPart = 0, endOffsetInPart = 0;
|
|
11545
|
+
// Find which text parts contain the LaTeX block boundaries
|
|
11546
|
+
for(let i = 0; i < textParts.length; i++){
|
|
11547
|
+
const part = textParts[i];
|
|
11548
|
+
if (part.isDeleted) continue;
|
|
11549
|
+
if (startPartIndex === -1 && latexBoundaries.start >= part.acceptedStart && latexBoundaries.start <= part.acceptedEnd) {
|
|
11550
|
+
startPartIndex = i;
|
|
11551
|
+
startOffsetInPart = latexBoundaries.start - part.acceptedStart;
|
|
11552
|
+
}
|
|
11553
|
+
if (latexBoundaries.end >= part.acceptedStart && latexBoundaries.end <= part.acceptedEnd) {
|
|
11554
|
+
endPartIndex = i;
|
|
11555
|
+
endOffsetInPart = latexBoundaries.end - part.acceptedStart;
|
|
11556
|
+
}
|
|
11557
|
+
}
|
|
11558
|
+
if (startPartIndex === -1 || endPartIndex === -1) {
|
|
11559
|
+
return;
|
|
11560
|
+
}
|
|
11561
|
+
// Extend range to include any consecutive deleted parts after the block.
|
|
11562
|
+
let finalEndIndex = endPartIndex;
|
|
11563
|
+
let finalEndOffset = endOffsetInPart;
|
|
11564
|
+
for(let i = endPartIndex + 1; i < textParts.length && textParts[i].isDeleted; i++){
|
|
11565
|
+
finalEndIndex = i;
|
|
11566
|
+
finalEndOffset = textParts[i].text.length;
|
|
11567
|
+
}
|
|
11568
|
+
const startPart = textParts[startPartIndex];
|
|
11569
|
+
const endPart = textParts[finalEndIndex];
|
|
11570
|
+
return this.editorObject.model.createRange(this.editorObject.model.createPositionAt(startPart.parent, startPart.startOffset + startOffsetInPart), this.editorObject.model.createPositionAt(endPart.parent, endPart.startOffset + finalEndOffset));
|
|
11571
|
+
}
|
|
11572
|
+
replaceRangeWithLatex(newLatex) {
|
|
11573
|
+
this.editorObject.model.change((writer)=>{
|
|
11574
|
+
this.editorObject.model.deleteContent(this.editorObject.model.document.selection);
|
|
11575
|
+
const newLatexText = writer.createText(`$$${newLatex}$$`, this.getCleanSelectionAttributes());
|
|
11576
|
+
this.editorObject.model.insertContent(newLatexText);
|
|
11577
|
+
});
|
|
11578
|
+
}
|
|
11579
|
+
/**
|
|
11580
|
+
* Replaces the whole LaTeX in the CKEditor5 model.
|
|
11581
|
+
*/ replaceLatexWithNodes(startNode, endNode, latexRange, newLatex) {
|
|
11582
|
+
this.editorObject.model.change((writer)=>{
|
|
11583
|
+
const startOffset = startNode.startOffset + latexRange.startOffset;
|
|
11584
|
+
const endOffset = endNode.startOffset + latexRange.endOffset;
|
|
11585
|
+
let startPosition = writer.createPositionAt(startNode.parent, startOffset);
|
|
11586
|
+
let endPosition = writer.createPositionAt(endNode.parent, endOffset);
|
|
11587
|
+
// Adjust positions when LaTeX is adjacent to a formula.
|
|
11588
|
+
const startContainer = latexRange.startContainer;
|
|
11589
|
+
if (startContainer.nodeType === Node.TEXT_NODE && startContainer.previousSibling?.nodeType === Node.ELEMENT_NODE) {
|
|
11590
|
+
const originalLatex = `$$${Latex.getLatexFromMathML(MathML.safeXmlDecode(this.core.editionProperties.temporalImage.dataset.mathml))}$$`;
|
|
11591
|
+
const textData = startContainer.data.replaceAll(String.fromCodePoint(8288), "");
|
|
11592
|
+
const latexOffset = textData.indexOf(originalLatex);
|
|
11593
|
+
if (latexOffset !== -1) {
|
|
11594
|
+
const closingDelimiterOffset = textData.substring(latexOffset + 2).indexOf("$$") + 4;
|
|
11595
|
+
startPosition = writer.createPositionAt(startNode.parent, startNode.startOffset + latexOffset);
|
|
11596
|
+
endPosition = writer.createPositionAt(endNode.parent, endNode.startOffset + closingDelimiterOffset + latexOffset);
|
|
11597
|
+
}
|
|
11598
|
+
}
|
|
11599
|
+
writer.setSelection(writer.createRange(startPosition, endPosition));
|
|
11600
|
+
});
|
|
11601
|
+
this.replaceRangeWithLatex(newLatex);
|
|
11602
|
+
}
|
|
11603
|
+
/**
|
|
11604
|
+
* Inherited method from IntegrationModel.
|
|
11605
|
+
* Gets the MathML from a text node containing LaTeX.
|
|
11606
|
+
* Handles track changes by simulating "accept all changes" before conversion.
|
|
11607
|
+
*/ getMathmlFromTextNode(textNode, caretPosition) {
|
|
11608
|
+
const standardResult = Latex.getLatexFromTextNode(textNode, caretPosition);
|
|
11609
|
+
const acceptedLatex = this.extractAcceptedLatexFromDOM(textNode, caretPosition);
|
|
11610
|
+
// Prioritize accepted LaTeX if it differs from standard extraction (for track changes compatibility).
|
|
11611
|
+
// Important node: use explicit undefined check to allow empty LaTeX strings, otherwise it would not detect $$$$ as valid LaTeX.
|
|
11612
|
+
const latex = acceptedLatex !== undefined && acceptedLatex !== standardResult?.latex ? acceptedLatex : standardResult?.latex;
|
|
11613
|
+
// Do not continue if no LaTeX found by either method.
|
|
11614
|
+
// This is necessary since both parameters can be independently undefined in some edge cases.
|
|
11615
|
+
if (latex === undefined && acceptedLatex === undefined) {
|
|
11616
|
+
return;
|
|
11617
|
+
}
|
|
11618
|
+
// Verify caret is inside LaTeX block for track changes edge cases.
|
|
11619
|
+
if (!standardResult && acceptedLatex !== undefined && !this.isCaretInsideLatexBlock(textNode, caretPosition)) {
|
|
11620
|
+
return;
|
|
11621
|
+
}
|
|
11622
|
+
const finalLatex = latex === undefined ? acceptedLatex : latex;
|
|
11623
|
+
this.storeLatexRangeWithFallback(textNode, caretPosition, finalLatex);
|
|
11624
|
+
return Latex.getMathMLFromLatex(finalLatex);
|
|
11625
|
+
}
|
|
11626
|
+
isCaretInsideLatexBlock(textNode, caretPosition = 0) {
|
|
11627
|
+
// If LaTeX is found, the caret is inside one.
|
|
11628
|
+
return this.extractAcceptedLatexFromDOM(textNode, caretPosition) !== undefined;
|
|
11629
|
+
}
|
|
11630
|
+
/**
|
|
11631
|
+
* Stores the LaTeX range for its replacement later.
|
|
11632
|
+
*/ storeLatexRangeWithFallback(textNode, caretPosition, latex) {
|
|
11633
|
+
const parentTag = textNode.parentElement?.tagName?.toLowerCase();
|
|
11634
|
+
if (!textNode.parentElement || parentTag === "textarea") {
|
|
11635
|
+
return;
|
|
11636
|
+
}
|
|
11637
|
+
const latexResult = Latex.getLatexFromTextNode(textNode, caretPosition);
|
|
11638
|
+
if (latexResult) {
|
|
11639
|
+
const range = document.createRange();
|
|
11640
|
+
range.setStart(latexResult.startNode, latexResult.startPosition);
|
|
11641
|
+
range.setEnd(latexResult.endNode, latexResult.endPosition);
|
|
11642
|
+
this.core.editionProperties.latexRange = range;
|
|
11643
|
+
} else {
|
|
11644
|
+
this.core.editionProperties.latexRange = null;
|
|
11645
|
+
}
|
|
11646
|
+
this.core.editionProperties.extractedLatex = latex;
|
|
11647
|
+
}
|
|
11648
|
+
/**
|
|
11649
|
+
* Finds a container element containing a complete LaTeX block.
|
|
11650
|
+
* Necessary for track changes handling, to find the full LaTeX even with the suggestions.
|
|
11651
|
+
*/ findLatexContainerElement(textNode) {
|
|
11652
|
+
const MAX_DEPTH = 10; // Prevent excessive loops.
|
|
11653
|
+
let element = textNode.parentElement;
|
|
11654
|
+
for(let i = 0; i < MAX_DEPTH && element; i++){
|
|
11655
|
+
const text = element.textContent || "";
|
|
11656
|
+
const openDelim = text.indexOf("$$");
|
|
11657
|
+
if (openDelim !== -1 && text.includes("$$", openDelim + 2)) {
|
|
11658
|
+
return element;
|
|
11659
|
+
}
|
|
11660
|
+
element = element.parentElement;
|
|
11661
|
+
}
|
|
11662
|
+
return null;
|
|
11663
|
+
}
|
|
11664
|
+
/**
|
|
11665
|
+
* Extracts LaTeX from DOM, skipping track changes deletion markers.
|
|
11666
|
+
*/ extractAcceptedLatexFromDOM(textNode, caretPositionInNode = 0) {
|
|
11667
|
+
const container = this.findLatexContainerElement(textNode);
|
|
11668
|
+
if (!container) {
|
|
11669
|
+
return;
|
|
11670
|
+
}
|
|
11671
|
+
const acceptedText = this.getAcceptedTextContent(container);
|
|
11672
|
+
// Calculate caret offset that will be used later to find the correct LaTeX block.
|
|
11673
|
+
// This includes all accepted text before textNode, plus the caret position within textNode.
|
|
11674
|
+
const walker = document.createTreeWalker(container, NodeFilter.SHOW_TEXT);
|
|
11675
|
+
let node = walker.nextNode();
|
|
11676
|
+
let caretOffset = 0;
|
|
11677
|
+
while(node && node !== textNode){
|
|
11678
|
+
if (!node.parentElement?.classList?.contains("ck-suggestion-marker-deletion")) {
|
|
11679
|
+
caretOffset += node.textContent?.length || 0;
|
|
11680
|
+
}
|
|
11681
|
+
node = walker.nextNode();
|
|
11682
|
+
}
|
|
11683
|
+
// Add the caret position within the text node, only if textNode is not deleted by Track Changes.
|
|
11684
|
+
if (node === textNode && !textNode.parentElement?.classList?.contains("ck-suggestion-marker-deletion")) {
|
|
11685
|
+
caretOffset += caretPositionInNode;
|
|
11686
|
+
}
|
|
11687
|
+
// Find the LaTeX block that contains the caret.
|
|
11688
|
+
let nextSearchIndex = 0;
|
|
11689
|
+
while(nextSearchIndex < acceptedText.length){
|
|
11690
|
+
const openDelim = acceptedText.indexOf("$$", nextSearchIndex);
|
|
11691
|
+
if (openDelim === -1) {
|
|
11692
|
+
break;
|
|
11693
|
+
}
|
|
11694
|
+
const closeDelim = acceptedText.indexOf("$$", openDelim + 2);
|
|
11695
|
+
if (closeDelim === -1) {
|
|
11696
|
+
break;
|
|
11697
|
+
}
|
|
11698
|
+
if (caretOffset >= openDelim && caretOffset <= closeDelim + 2) {
|
|
11699
|
+
return acceptedText.substring(openDelim + 2, closeDelim);
|
|
11700
|
+
}
|
|
11701
|
+
nextSearchIndex = closeDelim + 2;
|
|
11702
|
+
}
|
|
11703
|
+
}
|
|
11704
|
+
/**
|
|
11705
|
+
* Recursively extracts text content, skipping track changes tags.
|
|
11706
|
+
*/ getAcceptedTextContent(node) {
|
|
11707
|
+
if (node.nodeType === Node.TEXT_NODE) {
|
|
11708
|
+
return node.textContent || "";
|
|
11709
|
+
}
|
|
11710
|
+
if (node.nodeType === Node.ELEMENT_NODE) {
|
|
11711
|
+
if (node.classList?.contains("ck-suggestion-marker-deletion")) {
|
|
11712
|
+
return "";
|
|
11713
|
+
}
|
|
11714
|
+
return Array.from(node.childNodes).map((child)=>this.getAcceptedTextContent(child)).join("");
|
|
11715
|
+
}
|
|
11716
|
+
return "";
|
|
11717
|
+
}
|
|
11718
|
+
/** Called when the modal window is closed. */ notifyWindowClosed() {
|
|
11458
11719
|
this.editorObject.editing.view.focus();
|
|
11459
11720
|
}
|
|
11460
11721
|
}
|
|
@@ -11532,7 +11793,7 @@ var mathIcon = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adob
|
|
|
11532
11793
|
|
|
11533
11794
|
var chemIcon = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 40.3 49.5\" style=\"enable-background:new 0 0 40.3 49.5;\" xml:space=\"preserve\">\n<style type=\"text/css\">\n\t.st0{fill:#A4CF61;}\n</style>\n<path class=\"st0\" d=\"M39.2,12.1c0-1.9-1.1-3.6-2.7-4.4L24.5,0.9l0,0c-0.7-0.4-1.5-0.6-2.4-0.6c-0.9,0-1.7,0.2-2.4,0.6l0,0L2.3,10.8\n\tl0,0C0.9,11.7,0,13.2,0,14.9h0v19.6h0c0,1.7,0.9,3.3,2.3,4.1l0,0l17.4,9.9l0,0c0.7,0.4,1.5,0.6,2.4,0.6c0.9,0,1.7-0.2,2.4-0.6l0,0\n\tl12.2-6.9h0c1.5-0.8,2.6-2.5,2.6-4.3c0-2.7-2.2-4.9-4.9-4.9c-0.9,0-1.8,0.3-2.5,0.7l0,0l-9.7,5.6l-12.3-7V17.8l12.3-7l9.9,5.7l0,0\n\tc0.7,0.4,1.5,0.6,2.4,0.6C37,17,39.2,14.8,39.2,12.1\"/>\n</svg>\n";
|
|
11534
11795
|
|
|
11535
|
-
var version = "8.15.
|
|
11796
|
+
var version = "8.15.2";
|
|
11536
11797
|
var packageInfo = {
|
|
11537
11798
|
version: version};
|
|
11538
11799
|
|
|
@@ -11986,8 +12247,10 @@ class MathType extends Plugin {
|
|
|
11986
12247
|
e.return = MathML.removeSafeXMLSemantics(previewOutput);
|
|
11987
12248
|
return;
|
|
11988
12249
|
}
|
|
11989
|
-
//
|
|
11990
|
-
const
|
|
12250
|
+
// Clean track changes markers only from LaTeX content before converting to MathML.
|
|
12251
|
+
const latexParsedOutput = this._endParseEditModeWithTrackChangesSupport(output);
|
|
12252
|
+
// Convert formula images to MathML. It's important to use the save mode to prevent issues.
|
|
12253
|
+
const parsedResult = Parser.endParseSaveMode(latexParsedOutput);
|
|
11991
12254
|
// Remove all semantic annotations (including handwritten data points)
|
|
11992
12255
|
// to ensure clean, standard MathML format for storage
|
|
11993
12256
|
e.return = MathML.removeSafeXMLSemantics(parsedResult);
|
|
@@ -12029,6 +12292,38 @@ class MathType extends Plugin {
|
|
|
12029
12292
|
});
|
|
12030
12293
|
}
|
|
12031
12294
|
/**
|
|
12295
|
+
* When track changes markers are present inside a LaTeX block:
|
|
12296
|
+
* - The LaTeX is preserved as text (not converted to MathML) to maintain suggestions.
|
|
12297
|
+
* - It also prevents the issue where the suggestions were placed as MathML tags.
|
|
12298
|
+
*
|
|
12299
|
+
* When no track changes markers are inside a LaTeX block:
|
|
12300
|
+
* - The LaTeX is converted to MathML normally. (previous default behavior)
|
|
12301
|
+
*
|
|
12302
|
+
* This is to ensure that:
|
|
12303
|
+
* 1. LaTeX without suggestions gets converted to MathML for final output.
|
|
12304
|
+
* 2. LaTeX with pending suggestions is preserved so setData(getData()) works correctly.
|
|
12305
|
+
*/ _endParseEditModeWithTrackChangesSupport(code) {
|
|
12306
|
+
if (!Configuration.get("parseModes").includes("latex")) {
|
|
12307
|
+
return code;
|
|
12308
|
+
}
|
|
12309
|
+
const latexBlockRegex = /\$\$([\s\S]*?)\$\$/g;
|
|
12310
|
+
const trackChangesRegex = /<(suggestion|comment)-(start|end)/i;
|
|
12311
|
+
//TODO: Validate if replace all is needed instead of just replace when it is all implemented.
|
|
12312
|
+
return code.replace(latexBlockRegex, (fullMatch, latexContent)=>{
|
|
12313
|
+
// Check if this LaTeX contains track changes markers to prevent conversion.
|
|
12314
|
+
if (trackChangesRegex.test(latexContent)) {
|
|
12315
|
+
return fullMatch;
|
|
12316
|
+
}
|
|
12317
|
+
// When LaTeX has no suggestion, it can be converted to MathML.
|
|
12318
|
+
const decodedLatex = Util.htmlEntitiesDecode(latexContent);
|
|
12319
|
+
let mathml = Util.htmlSanitize(Latex.getMathMLFromLatex(decodedLatex, true));
|
|
12320
|
+
if (!Configuration.get("saveHandTraces")) {
|
|
12321
|
+
mathml = MathML.removeAnnotation(mathml, "application/json");
|
|
12322
|
+
}
|
|
12323
|
+
return mathml;
|
|
12324
|
+
});
|
|
12325
|
+
}
|
|
12326
|
+
/**
|
|
12032
12327
|
* Expose the WirisPlugin variable to the window
|
|
12033
12328
|
*/ // eslint-disable-next-line class-methods-use-this
|
|
12034
12329
|
_exposeWiris() {
|
|
@@ -12055,8 +12350,21 @@ class MathType extends Plugin {
|
|
|
12055
12350
|
// Adds custom label replacing the default 'mathml'.
|
|
12056
12351
|
// Handles both singular and plural forms.
|
|
12057
12352
|
trackChangesEditing.descriptionFactory.registerElementLabel("mathml", (quantity)=>(quantity > 1 ? `${quantity} ` : "") + StringManager.get(quantity > 1 ? "formulas" : "formula", integration?.getLanguage() || "en"));
|
|
12353
|
+
this._registerLatexTrackChangesAdapter(integration);
|
|
12058
12354
|
}
|
|
12059
12355
|
}
|
|
12356
|
+
/**
|
|
12357
|
+
* Register a custom adapter for handling LaTeX text changes.
|
|
12358
|
+
* This ensures that LaTeX formulas ($$...$$) are treated as atomic units
|
|
12359
|
+
* when used by the track changes feature and avoid partial edits.
|
|
12360
|
+
*/ _registerLatexTrackChangesAdapter(integration) {
|
|
12361
|
+
const { editor } = this;
|
|
12362
|
+
editor.model.document.on("change:data", ()=>{
|
|
12363
|
+
if (integration) {
|
|
12364
|
+
integration._trackChangesEnabled = editor.commands.get("trackChanges")?.value ?? false;
|
|
12365
|
+
}
|
|
12366
|
+
});
|
|
12367
|
+
}
|
|
12060
12368
|
}
|
|
12061
12369
|
|
|
12062
12370
|
export { CKEditor5Integration, ChemTypeCommand, MathTypeCommand, MathType as default };
|