@ckeditor/ckeditor5-engine 36.0.1 → 37.0.0-alpha.1
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/README.md +1 -1
- package/package.json +25 -24
- package/src/controller/datacontroller.d.ts +331 -0
- package/src/controller/datacontroller.js +72 -116
- package/src/controller/editingcontroller.d.ts +98 -0
- package/src/controller/editingcontroller.js +22 -46
- package/src/conversion/conversion.d.ts +476 -0
- package/src/conversion/conversion.js +328 -347
- package/src/conversion/conversionhelpers.d.ts +26 -0
- package/src/conversion/conversionhelpers.js +1 -5
- package/src/conversion/downcastdispatcher.d.ts +547 -0
- package/src/conversion/downcastdispatcher.js +74 -152
- package/src/conversion/downcasthelpers.d.ts +1226 -0
- package/src/conversion/downcasthelpers.js +843 -762
- package/src/conversion/mapper.d.ts +503 -0
- package/src/conversion/mapper.js +84 -99
- package/src/conversion/modelconsumable.d.ts +201 -0
- package/src/conversion/modelconsumable.js +96 -99
- package/src/conversion/upcastdispatcher.d.ts +492 -0
- package/src/conversion/upcastdispatcher.js +73 -100
- package/src/conversion/upcasthelpers.d.ts +499 -0
- package/src/conversion/upcasthelpers.js +406 -373
- package/src/conversion/viewconsumable.d.ts +369 -0
- package/src/conversion/viewconsumable.js +139 -173
- package/src/dataprocessor/basichtmlwriter.d.ts +18 -0
- package/src/dataprocessor/basichtmlwriter.js +0 -9
- package/src/dataprocessor/dataprocessor.d.ts +61 -0
- package/src/dataprocessor/htmldataprocessor.d.ts +76 -0
- package/src/dataprocessor/htmldataprocessor.js +6 -28
- package/src/dataprocessor/htmlwriter.d.ts +16 -0
- package/src/dataprocessor/xmldataprocessor.d.ts +90 -0
- package/src/dataprocessor/xmldataprocessor.js +8 -40
- package/src/dev-utils/model.d.ts +124 -0
- package/src/dev-utils/model.js +41 -38
- package/src/dev-utils/operationreplayer.d.ts +51 -0
- package/src/dev-utils/operationreplayer.js +6 -14
- package/src/dev-utils/utils.d.ts +37 -0
- package/src/dev-utils/utils.js +5 -18
- package/src/dev-utils/view.d.ts +319 -0
- package/src/dev-utils/view.js +205 -226
- package/src/index.d.ts +108 -0
- package/src/index.js +4 -0
- package/src/model/batch.d.ts +106 -0
- package/src/model/differ.d.ts +329 -0
- package/src/model/document.d.ts +246 -0
- package/src/model/document.js +1 -1
- package/src/model/documentfragment.d.ts +196 -0
- package/src/model/documentfragment.js +2 -2
- package/src/model/documentselection.d.ts +420 -0
- package/src/model/element.d.ts +165 -0
- package/src/model/history.d.ts +114 -0
- package/src/model/item.d.ts +14 -0
- package/src/model/liveposition.d.ts +77 -0
- package/src/model/liverange.d.ts +102 -0
- package/src/model/markercollection.d.ts +335 -0
- package/src/model/model.d.ts +885 -0
- package/src/model/model.js +59 -81
- package/src/model/node.d.ts +256 -0
- package/src/model/nodelist.d.ts +91 -0
- package/src/model/operation/attributeoperation.d.ts +98 -0
- package/src/model/operation/detachoperation.d.ts +55 -0
- package/src/model/operation/insertoperation.d.ts +85 -0
- package/src/model/operation/markeroperation.d.ts +86 -0
- package/src/model/operation/mergeoperation.d.ts +95 -0
- package/src/model/operation/mergeoperation.js +1 -1
- package/src/model/operation/moveoperation.d.ts +91 -0
- package/src/model/operation/nooperation.d.ts +33 -0
- package/src/model/operation/operation.d.ts +89 -0
- package/src/model/operation/operationfactory.d.ts +18 -0
- package/src/model/operation/renameoperation.d.ts +78 -0
- package/src/model/operation/rootattributeoperation.d.ts +97 -0
- package/src/model/operation/rootattributeoperation.js +1 -1
- package/src/model/operation/splitoperation.d.ts +104 -0
- package/src/model/operation/splitoperation.js +1 -1
- package/src/model/operation/transform.d.ts +100 -0
- package/src/model/operation/utils.d.ts +71 -0
- package/src/model/operation/utils.js +1 -1
- package/src/model/position.d.ts +539 -0
- package/src/model/position.js +1 -1
- package/src/model/range.d.ts +458 -0
- package/src/model/range.js +1 -1
- package/src/model/rootelement.d.ts +40 -0
- package/src/model/schema.d.ts +1176 -0
- package/src/model/schema.js +19 -19
- package/src/model/selection.d.ts +472 -0
- package/src/model/text.d.ts +66 -0
- package/src/model/text.js +0 -2
- package/src/model/textproxy.d.ts +144 -0
- package/src/model/treewalker.d.ts +186 -0
- package/src/model/treewalker.js +19 -10
- package/src/model/typecheckable.d.ts +285 -0
- package/src/model/utils/autoparagraphing.d.ts +37 -0
- package/src/model/utils/deletecontent.d.ts +58 -0
- package/src/model/utils/findoptimalinsertionrange.d.ts +32 -0
- package/src/model/utils/getselectedcontent.d.ts +30 -0
- package/src/model/utils/insertcontent.d.ts +46 -0
- package/src/model/utils/insertcontent.js +2 -12
- package/src/model/utils/insertobject.d.ts +44 -0
- package/src/model/utils/insertobject.js +3 -14
- package/src/model/utils/modifyselection.d.ts +48 -0
- package/src/model/utils/selection-post-fixer.d.ts +65 -0
- package/src/model/writer.d.ts +823 -0
- package/src/model/writer.js +6 -61
- package/src/view/attributeelement.d.ts +108 -0
- package/src/view/attributeelement.js +25 -69
- package/src/view/containerelement.d.ts +49 -0
- package/src/view/containerelement.js +10 -43
- package/src/view/datatransfer.d.ts +75 -0
- package/src/view/document.d.ts +184 -0
- package/src/view/document.js +15 -84
- package/src/view/documentfragment.d.ts +149 -0
- package/src/view/documentfragment.js +39 -81
- package/src/view/documentselection.d.ts +306 -0
- package/src/view/documentselection.js +42 -143
- package/src/view/domconverter.d.ts +650 -0
- package/src/view/domconverter.js +157 -283
- package/src/view/downcastwriter.d.ts +996 -0
- package/src/view/downcastwriter.js +259 -426
- package/src/view/editableelement.d.ts +52 -0
- package/src/view/editableelement.js +9 -49
- package/src/view/element.d.ts +468 -0
- package/src/view/element.js +150 -222
- package/src/view/elementdefinition.d.ts +87 -0
- package/src/view/emptyelement.d.ts +41 -0
- package/src/view/emptyelement.js +11 -44
- package/src/view/filler.d.ts +111 -0
- package/src/view/filler.js +24 -21
- package/src/view/item.d.ts +14 -0
- package/src/view/matcher.d.ts +486 -0
- package/src/view/matcher.js +247 -218
- package/src/view/node.d.ts +163 -0
- package/src/view/node.js +26 -100
- package/src/view/observer/arrowkeysobserver.d.ts +41 -0
- package/src/view/observer/arrowkeysobserver.js +0 -13
- package/src/view/observer/bubblingemittermixin.d.ts +166 -0
- package/src/view/observer/bubblingemittermixin.js +36 -25
- package/src/view/observer/bubblingeventinfo.d.ts +47 -0
- package/src/view/observer/bubblingeventinfo.js +3 -29
- package/src/view/observer/clickobserver.d.ts +43 -0
- package/src/view/observer/clickobserver.js +9 -19
- package/src/view/observer/compositionobserver.d.ts +82 -0
- package/src/view/observer/compositionobserver.js +13 -42
- package/src/view/observer/domeventdata.d.ts +50 -0
- package/src/view/observer/domeventdata.js +5 -30
- package/src/view/observer/domeventobserver.d.ts +69 -0
- package/src/view/observer/domeventobserver.js +19 -21
- package/src/view/observer/fakeselectionobserver.d.ts +43 -0
- package/src/view/observer/fakeselectionobserver.js +0 -16
- package/src/view/observer/focusobserver.d.ts +82 -0
- package/src/view/observer/focusobserver.js +14 -40
- package/src/view/observer/inputobserver.d.ts +86 -0
- package/src/view/observer/inputobserver.js +18 -64
- package/src/view/observer/keyobserver.d.ts +66 -0
- package/src/view/observer/keyobserver.js +8 -42
- package/src/view/observer/mouseobserver.d.ts +89 -0
- package/src/view/observer/mouseobserver.js +8 -28
- package/src/view/observer/mutationobserver.d.ts +82 -0
- package/src/view/observer/mutationobserver.js +7 -37
- package/src/view/observer/observer.d.ts +84 -0
- package/src/view/observer/observer.js +12 -25
- package/src/view/observer/selectionobserver.d.ts +144 -0
- package/src/view/observer/selectionobserver.js +17 -107
- package/src/view/observer/tabobserver.d.ts +42 -0
- package/src/view/observer/tabobserver.js +0 -14
- package/src/view/placeholder.d.ts +85 -0
- package/src/view/placeholder.js +26 -43
- package/src/view/position.d.ts +189 -0
- package/src/view/position.js +36 -83
- package/src/view/range.d.ts +279 -0
- package/src/view/range.js +79 -122
- package/src/view/rawelement.d.ts +73 -0
- package/src/view/rawelement.js +34 -48
- package/src/view/renderer.d.ts +265 -0
- package/src/view/renderer.js +105 -193
- package/src/view/rooteditableelement.d.ts +41 -0
- package/src/view/rooteditableelement.js +12 -40
- package/src/view/selection.d.ts +375 -0
- package/src/view/selection.js +79 -153
- package/src/view/styles/background.d.ts +33 -0
- package/src/view/styles/background.js +14 -12
- package/src/view/styles/border.d.ts +43 -0
- package/src/view/styles/border.js +58 -48
- package/src/view/styles/margin.d.ts +29 -0
- package/src/view/styles/margin.js +13 -11
- package/src/view/styles/padding.d.ts +29 -0
- package/src/view/styles/padding.js +13 -11
- package/src/view/styles/utils.d.ts +93 -0
- package/src/view/styles/utils.js +22 -48
- package/src/view/stylesmap.d.ts +675 -0
- package/src/view/stylesmap.js +249 -244
- package/src/view/text.d.ts +74 -0
- package/src/view/text.js +16 -46
- package/src/view/textproxy.d.ts +97 -0
- package/src/view/textproxy.js +10 -59
- package/src/view/treewalker.d.ts +195 -0
- package/src/view/treewalker.js +43 -106
- package/src/view/typecheckable.d.ts +448 -0
- package/src/view/uielement.d.ts +96 -0
- package/src/view/uielement.js +29 -63
- package/src/view/upcastwriter.d.ts +417 -0
- package/src/view/upcastwriter.js +86 -157
- package/src/view/view.d.ts +417 -0
- package/src/view/view.js +47 -175
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @module engine/view/rawelement
|
|
7
|
+
*/
|
|
8
|
+
import Element, { type ElementAttributes } from './element';
|
|
9
|
+
import Node from './node';
|
|
10
|
+
import type Document from './document';
|
|
11
|
+
import type DomConverter from './domconverter';
|
|
12
|
+
import type Item from './item';
|
|
13
|
+
type DomElement = globalThis.HTMLElement;
|
|
14
|
+
/**
|
|
15
|
+
* The raw element class.
|
|
16
|
+
*
|
|
17
|
+
* The raw elements work as data containers ("wrappers", "sandboxes") but their children are not managed or
|
|
18
|
+
* even recognized by the editor. This encapsulation allows integrations to maintain custom DOM structures
|
|
19
|
+
* in the editor content without, for instance, worrying about compatibility with other editor features.
|
|
20
|
+
* Raw elements are a perfect tool for integration with external frameworks and data sources.
|
|
21
|
+
*
|
|
22
|
+
* Unlike {@link module:engine/view/uielement~UIElement UI elements}, raw elements act like real editor
|
|
23
|
+
* content (similar to {@link module:engine/view/containerelement~ContainerElement} or
|
|
24
|
+
* {@link module:engine/view/emptyelement~EmptyElement}), they are considered by the editor selection and
|
|
25
|
+
* {@link module:widget/utils~toWidget they can work as widgets}.
|
|
26
|
+
*
|
|
27
|
+
* To create a new raw element, use the
|
|
28
|
+
* {@link module:engine/view/downcastwriter~DowncastWriter#createRawElement `downcastWriter#createRawElement()`} method.
|
|
29
|
+
*/
|
|
30
|
+
export default class RawElement extends Element {
|
|
31
|
+
/**
|
|
32
|
+
* Creates a new instance of a raw element.
|
|
33
|
+
*
|
|
34
|
+
* Throws the `view-rawelement-cannot-add` {@link module:utils/ckeditorerror~CKEditorError CKEditorError} when the `children`
|
|
35
|
+
* parameter is passed to inform that the usage of `RawElement` is incorrect (adding child nodes to `RawElement` is forbidden).
|
|
36
|
+
*
|
|
37
|
+
* @see module:engine/view/downcastwriter~DowncastWriter#createRawElement
|
|
38
|
+
* @internal
|
|
39
|
+
* @param document The document instance to which this element belongs.
|
|
40
|
+
* @param name Node name.
|
|
41
|
+
* @param attrs Collection of attributes.
|
|
42
|
+
* @param children A list of nodes to be inserted into created element.
|
|
43
|
+
*/
|
|
44
|
+
constructor(document: Document, name: string, attrs?: ElementAttributes, children?: Node | Iterable<Node>);
|
|
45
|
+
/**
|
|
46
|
+
* Overrides the {@link module:engine/view/element~Element#_insertChild} method.
|
|
47
|
+
* Throws the `view-rawelement-cannot-add` {@link module:utils/ckeditorerror~CKEditorError CKEditorError} to prevent
|
|
48
|
+
* adding any child nodes to a raw element.
|
|
49
|
+
*
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
_insertChild(index: number, items: Item | Iterable<Item>): number;
|
|
53
|
+
/**
|
|
54
|
+
* This allows rendering the children of a {@link module:engine/view/rawelement~RawElement} on the DOM level.
|
|
55
|
+
* This method is called by the {@link module:engine/view/domconverter~DomConverter} with the raw DOM element
|
|
56
|
+
* passed as an argument, leaving the number and shape of the children up to the integrator.
|
|
57
|
+
*
|
|
58
|
+
* This method **must be defined** for the raw element to work:
|
|
59
|
+
*
|
|
60
|
+
* ```ts
|
|
61
|
+
* const myRawElement = downcastWriter.createRawElement( 'div' );
|
|
62
|
+
*
|
|
63
|
+
* myRawElement.render = function( domElement, domConverter ) {
|
|
64
|
+
* domConverter.setContentOf( domElement, '<b>This is the raw content of myRawElement.</b>' );
|
|
65
|
+
* };
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param domElement The native DOM element representing the raw view element.
|
|
69
|
+
* @param domConverter Instance of the DomConverter used to optimize the output.
|
|
70
|
+
*/
|
|
71
|
+
render(domElement: DomElement, domConverter: DomConverter): void;
|
|
72
|
+
}
|
|
73
|
+
export {};
|
package/src/view/rawelement.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/**
|
|
6
7
|
* @module engine/view/rawelement
|
|
7
8
|
*/
|
|
@@ -23,8 +24,6 @@ import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
|
23
24
|
*
|
|
24
25
|
* To create a new raw element, use the
|
|
25
26
|
* {@link module:engine/view/downcastwriter~DowncastWriter#createRawElement `downcastWriter#createRawElement()`} method.
|
|
26
|
-
*
|
|
27
|
-
* @extends module:engine/view/element~Element
|
|
28
27
|
*/
|
|
29
28
|
export default class RawElement extends Element {
|
|
30
29
|
/**
|
|
@@ -34,21 +33,15 @@ export default class RawElement extends Element {
|
|
|
34
33
|
* parameter is passed to inform that the usage of `RawElement` is incorrect (adding child nodes to `RawElement` is forbidden).
|
|
35
34
|
*
|
|
36
35
|
* @see module:engine/view/downcastwriter~DowncastWriter#createRawElement
|
|
37
|
-
* @
|
|
38
|
-
* @param
|
|
39
|
-
* @param
|
|
40
|
-
* @param
|
|
41
|
-
* @param
|
|
42
|
-
* A list of nodes to be inserted into the created element.
|
|
36
|
+
* @internal
|
|
37
|
+
* @param document The document instance to which this element belongs.
|
|
38
|
+
* @param name Node name.
|
|
39
|
+
* @param attrs Collection of attributes.
|
|
40
|
+
* @param children A list of nodes to be inserted into created element.
|
|
43
41
|
*/
|
|
44
|
-
constructor(
|
|
45
|
-
super(
|
|
46
|
-
|
|
47
|
-
* Returns `null` because filler is not needed for raw elements.
|
|
48
|
-
*
|
|
49
|
-
* @method #getFillerOffset
|
|
50
|
-
* @returns {null} Always returns null.
|
|
51
|
-
*/
|
|
42
|
+
constructor(document, name, attrs, children) {
|
|
43
|
+
super(document, name, attrs, children);
|
|
44
|
+
// Returns `null` because filler is not needed for raw elements.
|
|
52
45
|
this.getFillerOffset = getFillerOffset;
|
|
53
46
|
}
|
|
54
47
|
/**
|
|
@@ -56,7 +49,7 @@ export default class RawElement extends Element {
|
|
|
56
49
|
* Throws the `view-rawelement-cannot-add` {@link module:utils/ckeditorerror~CKEditorError CKEditorError} to prevent
|
|
57
50
|
* adding any child nodes to a raw element.
|
|
58
51
|
*
|
|
59
|
-
* @
|
|
52
|
+
* @internal
|
|
60
53
|
*/
|
|
61
54
|
_insertChild(index, items) {
|
|
62
55
|
if (items && (items instanceof Node || Array.from(items).length > 0)) {
|
|
@@ -69,35 +62,28 @@ export default class RawElement extends Element {
|
|
|
69
62
|
}
|
|
70
63
|
return 0;
|
|
71
64
|
}
|
|
72
|
-
|
|
65
|
+
/**
|
|
66
|
+
* This allows rendering the children of a {@link module:engine/view/rawelement~RawElement} on the DOM level.
|
|
67
|
+
* This method is called by the {@link module:engine/view/domconverter~DomConverter} with the raw DOM element
|
|
68
|
+
* passed as an argument, leaving the number and shape of the children up to the integrator.
|
|
69
|
+
*
|
|
70
|
+
* This method **must be defined** for the raw element to work:
|
|
71
|
+
*
|
|
72
|
+
* ```ts
|
|
73
|
+
* const myRawElement = downcastWriter.createRawElement( 'div' );
|
|
74
|
+
*
|
|
75
|
+
* myRawElement.render = function( domElement, domConverter ) {
|
|
76
|
+
* domConverter.setContentOf( domElement, '<b>This is the raw content of myRawElement.</b>' );
|
|
77
|
+
* };
|
|
78
|
+
* ```
|
|
79
|
+
*
|
|
80
|
+
* @param domElement The native DOM element representing the raw view element.
|
|
81
|
+
* @param domConverter Instance of the DomConverter used to optimize the output.
|
|
82
|
+
*/
|
|
83
|
+
render(domElement, domConverter) { }
|
|
73
84
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
*
|
|
77
|
-
* rawElement.is( 'rawElement' ); // -> true
|
|
78
|
-
* rawElement.is( 'element' ); // -> true
|
|
79
|
-
* rawElement.is( 'node' ); // -> true
|
|
80
|
-
* rawElement.is( 'view:rawElement' ); // -> true
|
|
81
|
-
* rawElement.is( 'view:element' ); // -> true
|
|
82
|
-
* rawElement.is( 'view:node' ); // -> true
|
|
83
|
-
*
|
|
84
|
-
* rawElement.is( 'model:element' ); // -> false
|
|
85
|
-
* rawElement.is( 'documentFragment' ); // -> false
|
|
86
|
-
*
|
|
87
|
-
* Assuming that the object being checked is a raw element, you can also check its
|
|
88
|
-
* {@link module:engine/view/rawelement~RawElement#name name}:
|
|
89
|
-
*
|
|
90
|
-
* rawElement.is( 'img' ); // -> true if this is an img element
|
|
91
|
-
* rawElement.is( 'rawElement', 'img' ); // -> same as above
|
|
92
|
-
* text.is( 'img' ); -> false
|
|
93
|
-
*
|
|
94
|
-
* {@link module:engine/view/node~Node#is Check the entire list of view objects} which implement the `is()` method.
|
|
95
|
-
*
|
|
96
|
-
* @param {String} type The type to check when the `name` parameter is present.
|
|
97
|
-
* Otherwise, it acts like the `name` parameter.
|
|
98
|
-
* @param {String} [name] The element name.
|
|
99
|
-
* @returns {Boolean}
|
|
100
|
-
*/
|
|
85
|
+
// The magic of type inference using `is` method is centralized in `TypeCheckable` class.
|
|
86
|
+
// Proper overload would interfere with that.
|
|
101
87
|
RawElement.prototype.is = function (type, name) {
|
|
102
88
|
if (!name) {
|
|
103
89
|
return type === 'rawElement' || type === 'view:rawElement' ||
|
|
@@ -111,9 +97,9 @@ RawElement.prototype.is = function (type, name) {
|
|
|
111
97
|
type === 'element' || type === 'view:element');
|
|
112
98
|
}
|
|
113
99
|
};
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
100
|
+
/**
|
|
101
|
+
* Returns `null` because block filler is not needed for raw elements.
|
|
102
|
+
*/
|
|
117
103
|
function getFillerOffset() {
|
|
118
104
|
return null;
|
|
119
105
|
}
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
import type { ChangeType } from './document';
|
|
6
|
+
import type DocumentSelection from './documentselection';
|
|
7
|
+
import type DomConverter from './domconverter';
|
|
8
|
+
import type ViewElement from './element';
|
|
9
|
+
import type ViewNode from './node';
|
|
10
|
+
import '../../theme/renderer.css';
|
|
11
|
+
type DomDocument = globalThis.Document;
|
|
12
|
+
declare const Renderer_base: {
|
|
13
|
+
new (): import("@ckeditor/ckeditor5-utils").Observable;
|
|
14
|
+
prototype: import("@ckeditor/ckeditor5-utils").Observable;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Renderer is responsible for updating the DOM structure and the DOM selection based on
|
|
18
|
+
* the {@link module:engine/view/renderer~Renderer#markToSync information about updated view nodes}.
|
|
19
|
+
* In other words, it renders the view to the DOM.
|
|
20
|
+
*
|
|
21
|
+
* Its main responsibility is to make only the necessary, minimal changes to the DOM. However, unlike in many
|
|
22
|
+
* virtual DOM implementations, the primary reason for doing minimal changes is not the performance but ensuring
|
|
23
|
+
* that native editing features such as text composition, autocompletion, spell checking, selection's x-index are
|
|
24
|
+
* affected as little as possible.
|
|
25
|
+
*
|
|
26
|
+
* Renderer uses {@link module:engine/view/domconverter~DomConverter} to transform view nodes and positions
|
|
27
|
+
* to and from the DOM.
|
|
28
|
+
*/
|
|
29
|
+
export default class Renderer extends Renderer_base {
|
|
30
|
+
/**
|
|
31
|
+
* Set of DOM Documents instances.
|
|
32
|
+
*/
|
|
33
|
+
readonly domDocuments: Set<DomDocument>;
|
|
34
|
+
/**
|
|
35
|
+
* Converter instance.
|
|
36
|
+
*/
|
|
37
|
+
readonly domConverter: DomConverter;
|
|
38
|
+
/**
|
|
39
|
+
* Set of nodes which attributes changed and may need to be rendered.
|
|
40
|
+
*/
|
|
41
|
+
readonly markedAttributes: Set<ViewElement>;
|
|
42
|
+
/**
|
|
43
|
+
* Set of elements which child lists changed and may need to be rendered.
|
|
44
|
+
*/
|
|
45
|
+
readonly markedChildren: Set<ViewElement>;
|
|
46
|
+
/**
|
|
47
|
+
* Set of text nodes which text data changed and may need to be rendered.
|
|
48
|
+
*/
|
|
49
|
+
readonly markedTexts: Set<ViewNode>;
|
|
50
|
+
/**
|
|
51
|
+
* View selection. Renderer updates DOM selection based on the view selection.
|
|
52
|
+
*/
|
|
53
|
+
readonly selection: DocumentSelection;
|
|
54
|
+
/**
|
|
55
|
+
* Indicates if the view document is focused and selection can be rendered. Selection will not be rendered if
|
|
56
|
+
* this is set to `false`.
|
|
57
|
+
*
|
|
58
|
+
* @observable
|
|
59
|
+
*/
|
|
60
|
+
readonly isFocused: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Indicates whether the user is making a selection in the document (e.g. holding the mouse button and moving the cursor).
|
|
63
|
+
* When they stop selecting, the property goes back to `false`.
|
|
64
|
+
*
|
|
65
|
+
* Note: In some browsers, the renderer will stop rendering the selection and inline fillers while the user is making
|
|
66
|
+
* a selection to avoid glitches in DOM selection
|
|
67
|
+
* (https://github.com/ckeditor/ckeditor5/issues/10562, https://github.com/ckeditor/ckeditor5/issues/10723).
|
|
68
|
+
*
|
|
69
|
+
* @observable
|
|
70
|
+
*/
|
|
71
|
+
readonly isSelecting: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* True if composition is in progress inside the document.
|
|
74
|
+
*
|
|
75
|
+
* This property is bound to the {@link module:engine/view/document~Document#isComposing `Document#isComposing`} property.
|
|
76
|
+
*
|
|
77
|
+
* @observable
|
|
78
|
+
*/
|
|
79
|
+
readonly isComposing: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* The text node in which the inline filler was rendered.
|
|
82
|
+
*/
|
|
83
|
+
private _inlineFiller;
|
|
84
|
+
/**
|
|
85
|
+
* DOM element containing fake selection.
|
|
86
|
+
*/
|
|
87
|
+
private _fakeSelectionContainer;
|
|
88
|
+
/**
|
|
89
|
+
* Creates a renderer instance.
|
|
90
|
+
*
|
|
91
|
+
* @param domConverter Converter instance.
|
|
92
|
+
* @param selection View selection.
|
|
93
|
+
*/
|
|
94
|
+
constructor(domConverter: DomConverter, selection: DocumentSelection);
|
|
95
|
+
/**
|
|
96
|
+
* Marks a view node to be updated in the DOM by {@link #render `render()`}.
|
|
97
|
+
*
|
|
98
|
+
* Note that only view nodes whose parents have corresponding DOM elements need to be marked to be synchronized.
|
|
99
|
+
*
|
|
100
|
+
* @see #markedAttributes
|
|
101
|
+
* @see #markedChildren
|
|
102
|
+
* @see #markedTexts
|
|
103
|
+
*
|
|
104
|
+
* @param type Type of the change.
|
|
105
|
+
* @param node ViewNode to be marked.
|
|
106
|
+
*/
|
|
107
|
+
markToSync(type: ChangeType, node: ViewNode): void;
|
|
108
|
+
/**
|
|
109
|
+
* Renders all buffered changes ({@link #markedAttributes}, {@link #markedChildren} and {@link #markedTexts}) and
|
|
110
|
+
* the current view selection (if needed) to the DOM by applying a minimal set of changes to it.
|
|
111
|
+
*
|
|
112
|
+
* Renderer tries not to break the text composition (e.g. IME) and x-index of the selection,
|
|
113
|
+
* so it does as little as it is needed to update the DOM.
|
|
114
|
+
*
|
|
115
|
+
* Renderer also handles {@link module:engine/view/filler fillers}. Especially, it checks if the inline filler is needed
|
|
116
|
+
* at the selection position and adds or removes it. To prevent breaking text composition inline filler will not be
|
|
117
|
+
* removed as long as the selection is in the text node which needed it at first.
|
|
118
|
+
*/
|
|
119
|
+
render(): void;
|
|
120
|
+
/**
|
|
121
|
+
* Updates mappings of view element's children.
|
|
122
|
+
*
|
|
123
|
+
* Children that were replaced in the view structure by similar elements (same tag name) are treated as 'replaced'.
|
|
124
|
+
* This means that their mappings can be updated so the new view elements are mapped to the existing DOM elements.
|
|
125
|
+
* Thanks to that these elements do not need to be re-rendered completely.
|
|
126
|
+
*
|
|
127
|
+
* @param viewElement The view element whose children mappings will be updated.
|
|
128
|
+
*/
|
|
129
|
+
private _updateChildrenMappings;
|
|
130
|
+
/**
|
|
131
|
+
* Updates mappings of a given view element.
|
|
132
|
+
*
|
|
133
|
+
* @param viewElement The view element whose mappings will be updated.
|
|
134
|
+
* @param domElement The DOM element representing the given view element.
|
|
135
|
+
*/
|
|
136
|
+
private _updateElementMappings;
|
|
137
|
+
/**
|
|
138
|
+
* Gets the position of the inline filler based on the current selection.
|
|
139
|
+
* Here, we assume that we know that the filler is needed and
|
|
140
|
+
* {@link #_isSelectionInInlineFiller is at the selection position}, and, since it is needed,
|
|
141
|
+
* it is somewhere at the selection position.
|
|
142
|
+
*
|
|
143
|
+
* Note: The filler position cannot be restored based on the filler's DOM text node, because
|
|
144
|
+
* when this method is called (before rendering), the bindings will often be broken. View-to-DOM
|
|
145
|
+
* bindings are only dependable after rendering.
|
|
146
|
+
*/
|
|
147
|
+
private _getInlineFillerPosition;
|
|
148
|
+
/**
|
|
149
|
+
* Returns `true` if the selection has not left the inline filler's text node.
|
|
150
|
+
* If it is `true`, it means that the filler had been added for a reason and the selection did not
|
|
151
|
+
* leave the filler's text node. For example, the user can be in the middle of a composition so it should not be touched.
|
|
152
|
+
*
|
|
153
|
+
* @returns `true` if the inline filler and selection are in the same place.
|
|
154
|
+
*/
|
|
155
|
+
private _isSelectionInInlineFiller;
|
|
156
|
+
/**
|
|
157
|
+
* Removes the inline filler.
|
|
158
|
+
*/
|
|
159
|
+
private _removeInlineFiller;
|
|
160
|
+
/**
|
|
161
|
+
* Checks if the inline {@link module:engine/view/filler filler} should be added.
|
|
162
|
+
*
|
|
163
|
+
* @returns `true` if the inline filler should be added.
|
|
164
|
+
*/
|
|
165
|
+
private _needsInlineFillerAtSelection;
|
|
166
|
+
/**
|
|
167
|
+
* Checks if text needs to be updated and possibly updates it.
|
|
168
|
+
*
|
|
169
|
+
* @param viewText View text to update.
|
|
170
|
+
* @param options.inlineFillerPosition The position where the inline filler should be rendered.
|
|
171
|
+
*/
|
|
172
|
+
private _updateText;
|
|
173
|
+
/**
|
|
174
|
+
* Checks if attribute list needs to be updated and possibly updates it.
|
|
175
|
+
*
|
|
176
|
+
* @param viewElement The view element to update.
|
|
177
|
+
*/
|
|
178
|
+
private _updateAttrs;
|
|
179
|
+
/**
|
|
180
|
+
* Checks if elements child list needs to be updated and possibly updates it.
|
|
181
|
+
*
|
|
182
|
+
* Note that on Android, to reduce the risk of composition breaks, it tries to update data of an existing
|
|
183
|
+
* child text nodes instead of replacing them completely.
|
|
184
|
+
*
|
|
185
|
+
* @param viewElement View element to update.
|
|
186
|
+
* @param options.inlineFillerPosition The position where the inline filler should be rendered.
|
|
187
|
+
*/
|
|
188
|
+
private _updateChildren;
|
|
189
|
+
/**
|
|
190
|
+
* Shorthand for diffing two arrays or node lists of DOM nodes.
|
|
191
|
+
*
|
|
192
|
+
* @param actualDomChildren Actual DOM children
|
|
193
|
+
* @param expectedDomChildren Expected DOM children.
|
|
194
|
+
* @returns The list of actions based on the {@link module:utils/diff~diff} function.
|
|
195
|
+
*/
|
|
196
|
+
private _diffNodeLists;
|
|
197
|
+
/**
|
|
198
|
+
* Finds DOM nodes that were replaced with the similar nodes (same tag name) in the view. All nodes are compared
|
|
199
|
+
* within one `insert`/`delete` action group, for example:
|
|
200
|
+
*
|
|
201
|
+
* ```
|
|
202
|
+
* Actual DOM: <p><b>Foo</b>Bar<i>Baz</i><b>Bax</b></p>
|
|
203
|
+
* Expected DOM: <p>Bar<b>123</b><i>Baz</i><b>456</b></p>
|
|
204
|
+
* Input actions: [ insert, insert, delete, delete, equal, insert, delete ]
|
|
205
|
+
* Output actions: [ insert, replace, delete, equal, replace ]
|
|
206
|
+
* ```
|
|
207
|
+
*
|
|
208
|
+
* @param actions Actions array which is a result of the {@link module:utils/diff~diff} function.
|
|
209
|
+
* @param actualDom Actual DOM children
|
|
210
|
+
* @param expectedDom Expected DOM children.
|
|
211
|
+
* @param options Options
|
|
212
|
+
* @param options.replaceText Mark text nodes replacement.
|
|
213
|
+
* @returns Actions array modified with the `replace` actions.
|
|
214
|
+
*/
|
|
215
|
+
private _findReplaceActions;
|
|
216
|
+
/**
|
|
217
|
+
* Marks text nodes to be synchronized.
|
|
218
|
+
*
|
|
219
|
+
* If a text node is passed, it will be marked. If an element is passed, all descendant text nodes inside it will be marked.
|
|
220
|
+
*
|
|
221
|
+
* @param viewNode View node to sync.
|
|
222
|
+
*/
|
|
223
|
+
private _markDescendantTextToSync;
|
|
224
|
+
/**
|
|
225
|
+
* Checks if the selection needs to be updated and possibly updates it.
|
|
226
|
+
*/
|
|
227
|
+
private _updateSelection;
|
|
228
|
+
/**
|
|
229
|
+
* Updates the fake selection.
|
|
230
|
+
*
|
|
231
|
+
* @param domRoot A valid DOM root where the fake selection container should be added.
|
|
232
|
+
*/
|
|
233
|
+
private _updateFakeSelection;
|
|
234
|
+
/**
|
|
235
|
+
* Updates the DOM selection.
|
|
236
|
+
*
|
|
237
|
+
* @param domRoot A valid DOM root where the DOM selection should be rendered.
|
|
238
|
+
*/
|
|
239
|
+
private _updateDomSelection;
|
|
240
|
+
/**
|
|
241
|
+
* Checks whether a given DOM selection needs to be updated.
|
|
242
|
+
*
|
|
243
|
+
* @param domSelection The DOM selection to check.
|
|
244
|
+
*/
|
|
245
|
+
private _domSelectionNeedsUpdate;
|
|
246
|
+
/**
|
|
247
|
+
* Checks whether the fake selection needs to be updated.
|
|
248
|
+
*
|
|
249
|
+
* @param domRoot A valid DOM root where a new fake selection container should be added.
|
|
250
|
+
*/
|
|
251
|
+
private _fakeSelectionNeedsUpdate;
|
|
252
|
+
/**
|
|
253
|
+
* Removes the DOM selection.
|
|
254
|
+
*/
|
|
255
|
+
private _removeDomSelection;
|
|
256
|
+
/**
|
|
257
|
+
* Removes the fake selection.
|
|
258
|
+
*/
|
|
259
|
+
private _removeFakeSelection;
|
|
260
|
+
/**
|
|
261
|
+
* Checks if focus needs to be updated and possibly updates it.
|
|
262
|
+
*/
|
|
263
|
+
private _updateFocus;
|
|
264
|
+
}
|
|
265
|
+
export {};
|