@@ -3590,6 +3590,27 @@ export class Editor {
3590
3590
if (this.documentHelper.isBookmarkInserted && selection.bookmarks.length > 0) {
3591
3591
this.extendSelectionToBookmarkStart();
3592
3592
}
3593
+ let initComplexHistory: boolean = false;
3594
+ if (selection.isEmpty) {
3595
+ const isAtParagraphStart = selection.start.isAtParagraphStart;
3596
+ const isAtParagraphEnd = selection.end.isAtParagraphEnd;
3597
+ if (isAtParagraphStart || isAtParagraphEnd) {
3598
+ const inlineObj: ElementInfo = selection.start.currentWidget.getInline(selection.start.offset, 0);
3599
+ const element: ElementBox = inlineObj.element;
3600
+ if (element && element instanceof ContentControl && element.contentControlWidgetType === 'Block' && element.reference &&
3601
+ element.paragraph !== element.reference.paragraph) {
3602
+ this.initComplexHistory('Insert');
3603
+ initComplexHistory = true;
3604
+ this.onEnter();
3605
+ if (isAtParagraphStart) {
3606
+ const previousParagraph: Widget = element.paragraph.previousWidget;
3607
+ if (previousParagraph instanceof ParagraphWidget && previousParagraph.isEmpty()) {
3608
+ selection.moveToPreviousParagraph();
3609
+ }
3610
+ }
3611
+ }
3612
+ }
3613
+ }
3593
3614
if (isNullOrUndefined(revisionType) || revisionType === 'Insertion') {
3594
3615
this.initHistory('Insert');
3595
3616
if (!isNullOrUndefined(this.editorHistory) && !isNullOrUndefined(this.editorHistory.currentBaseHistoryInfo)) {
@@ -3863,6 +3884,9 @@ export class Editor {
3863
3884
if ((isNullOrUndefined(revisionType) || revisionType === 'Insertion') && !this.isFieldOperation) {
3864
3885
this.reLayout(selection);
3865
3886
}
3887
+ if (initComplexHistory && this.editorHistory) {
3888
+ this.editorHistory.updateComplexHistory();
3889
+ }
3866
3890
this.documentHelper.isTextInput = false;
3867
3891
}
3868
3892
this.updateXmlMappedContentControl();
@@ -11550,10 +11574,8 @@ export class Editor {
11550
11574
private applyCharFormat(paragraph: ParagraphWidget, selection: Selection, start: TextPosition, end: TextPosition, property: string, value: Object, update: boolean): BlockWidget {
11551
11575
let previousSplittedWidget: ParagraphWidget = paragraph.previousSplitWidget as ParagraphWidget;
11552
11576
let isPageBreak: boolean = false;
11553
- if (!isNullOrUndefined(previousSplittedWidget) && previousSplittedWidget instanceof ParagraphWidget) {
11554
- if (previousSplittedWidget.isEndsWithPageBreak) {
11555
- isPageBreak = true;
11556
- }
11577
+ if (!isNullOrUndefined(previousSplittedWidget) && previousSplittedWidget instanceof ParagraphWidget && previousSplittedWidget.isEndsWithPageBreak) {
11578
+ isPageBreak = true;
11557
11579
}
11558
11580
paragraph = paragraph.combineWidget(this.owner.viewer) as ParagraphWidget;
11559
11581
let startOffset: number = 0;
@@ -20608,14 +20630,14 @@ export class Editor {
20608
20630
let context = draw.getContext('2d');
20609
20631
context.scale(displayPixelRatio, displayPixelRatio);
20610
20632
context.drawImage(drawImage, 0, 0, width, height);
20611
- imageElementBox.imageString = draw.toDataURL('image/png', 1);
20612
20633
if (this.owner.enableCollaborativeEditing) {
20613
20634
this.documentHelper.addBase64StringInCollection(imageElementBox);
20614
20635
imageElementBox.element.src = this.documentHelper.getImageString(imageElementBox);
20615
20636
this.insertPictureInternal(imageElementBox, isUiInteracted, this.isRemoteAction);
20616
20637
this.isImageInsert = false;
20617
20638
this.isRemoteAction = false;
20618
20639
}
20640
+ this.viewer.documentHelper.images.get(parseInt(imageElementBox.imageString))[1] = draw.toDataURL('image/png', 1);
20619
20641
};
20620
20642
drawImage.src = base64String;
20621
20643
if (this.isRemoteAction) {
@@ -20900,13 +20922,16 @@ export class Editor {
20900
20922
* @returns {void}
20901
20923
*/
20902
20924
public updateListItemsTillEnd(blockAdv: BlockWidget, updateNextBlockList: boolean): void {
20903
- let block: BlockWidget = updateNextBlockList ? this.documentHelper.selection.getNextRenderedBlock(blockAdv) : blockAdv;
20904
- while (!isNullOrUndefined(block) && !this.documentHelper.isTextInput) {
20905
- //Updates the list value of the rendered paragraph.
20906
- this.updateRenderedListItems(block);
20907
- block = block.getSplitWidgets().pop().nextRenderedWidget as BlockWidget;
20908
- }
20909
-
20925
+ let splittedWidget: BlockWidget[] = blockAdv.getSplitWidgets() as BlockWidget[];
20926
+ let nextBlock: BlockWidget = splittedWidget[splittedWidget.length - 1].nextRenderedWidget as BlockWidget;
20927
+ if (!isNullOrUndefined(nextBlock)) {
20928
+ let block: BlockWidget = updateNextBlockList ? this.documentHelper.selection.getNextRenderedBlock(blockAdv) : blockAdv;
20929
+ while (!isNullOrUndefined(block) && !this.documentHelper.isTextInput) {
20930
+ //Updates the list value of the rendered paragraph.
20931
+ this.updateRenderedListItems(block);
20932
+ block = block.getSplitWidgets().pop().nextRenderedWidget as BlockWidget;
20933
+ }
20934
+ }
20910
20935
}
20911
20936
/**
20912
20937
* @param block
0 commit comments