@ckeditor/ckeditor5-engine 36.0.1 → 37.0.0-alpha.0

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.
Files changed (200) hide show
  1. package/README.md +1 -1
  2. package/package.json +24 -23
  3. package/src/controller/datacontroller.d.ts +331 -0
  4. package/src/controller/datacontroller.js +62 -109
  5. package/src/controller/editingcontroller.d.ts +98 -0
  6. package/src/controller/editingcontroller.js +22 -46
  7. package/src/conversion/conversion.d.ts +476 -0
  8. package/src/conversion/conversion.js +328 -347
  9. package/src/conversion/conversionhelpers.d.ts +26 -0
  10. package/src/conversion/conversionhelpers.js +1 -5
  11. package/src/conversion/downcastdispatcher.d.ts +547 -0
  12. package/src/conversion/downcastdispatcher.js +74 -152
  13. package/src/conversion/downcasthelpers.d.ts +1226 -0
  14. package/src/conversion/downcasthelpers.js +843 -762
  15. package/src/conversion/mapper.d.ts +499 -0
  16. package/src/conversion/mapper.js +84 -99
  17. package/src/conversion/modelconsumable.d.ts +201 -0
  18. package/src/conversion/modelconsumable.js +96 -99
  19. package/src/conversion/upcastdispatcher.d.ts +492 -0
  20. package/src/conversion/upcastdispatcher.js +73 -100
  21. package/src/conversion/upcasthelpers.d.ts +499 -0
  22. package/src/conversion/upcasthelpers.js +406 -373
  23. package/src/conversion/viewconsumable.d.ts +177 -0
  24. package/src/conversion/viewconsumable.js +157 -162
  25. package/src/dataprocessor/basichtmlwriter.d.ts +18 -0
  26. package/src/dataprocessor/basichtmlwriter.js +0 -9
  27. package/src/dataprocessor/dataprocessor.d.ts +61 -0
  28. package/src/dataprocessor/htmldataprocessor.d.ts +76 -0
  29. package/src/dataprocessor/htmldataprocessor.js +6 -28
  30. package/src/dataprocessor/htmlwriter.d.ts +16 -0
  31. package/src/dataprocessor/xmldataprocessor.d.ts +90 -0
  32. package/src/dataprocessor/xmldataprocessor.js +8 -40
  33. package/src/dev-utils/model.d.ts +124 -0
  34. package/src/dev-utils/model.js +41 -38
  35. package/src/dev-utils/operationreplayer.d.ts +51 -0
  36. package/src/dev-utils/operationreplayer.js +6 -14
  37. package/src/dev-utils/utils.d.ts +37 -0
  38. package/src/dev-utils/utils.js +5 -18
  39. package/src/dev-utils/view.d.ts +319 -0
  40. package/src/dev-utils/view.js +205 -226
  41. package/src/index.d.ts +105 -0
  42. package/src/index.js +1 -0
  43. package/src/model/batch.d.ts +106 -0
  44. package/src/model/differ.d.ts +329 -0
  45. package/src/model/document.d.ts +245 -0
  46. package/src/model/document.js +1 -1
  47. package/src/model/documentfragment.d.ts +196 -0
  48. package/src/model/documentfragment.js +2 -2
  49. package/src/model/documentselection.d.ts +420 -0
  50. package/src/model/element.d.ts +165 -0
  51. package/src/model/history.d.ts +114 -0
  52. package/src/model/item.d.ts +14 -0
  53. package/src/model/liveposition.d.ts +77 -0
  54. package/src/model/liverange.d.ts +102 -0
  55. package/src/model/markercollection.d.ts +335 -0
  56. package/src/model/model.d.ts +812 -0
  57. package/src/model/model.js +59 -30
  58. package/src/model/node.d.ts +256 -0
  59. package/src/model/nodelist.d.ts +91 -0
  60. package/src/model/operation/attributeoperation.d.ts +98 -0
  61. package/src/model/operation/detachoperation.d.ts +55 -0
  62. package/src/model/operation/insertoperation.d.ts +85 -0
  63. package/src/model/operation/markeroperation.d.ts +86 -0
  64. package/src/model/operation/mergeoperation.d.ts +95 -0
  65. package/src/model/operation/moveoperation.d.ts +91 -0
  66. package/src/model/operation/nooperation.d.ts +33 -0
  67. package/src/model/operation/operation.d.ts +89 -0
  68. package/src/model/operation/operationfactory.d.ts +18 -0
  69. package/src/model/operation/renameoperation.d.ts +78 -0
  70. package/src/model/operation/rootattributeoperation.d.ts +97 -0
  71. package/src/model/operation/rootattributeoperation.js +1 -1
  72. package/src/model/operation/splitoperation.d.ts +104 -0
  73. package/src/model/operation/transform.d.ts +100 -0
  74. package/src/model/operation/utils.d.ts +71 -0
  75. package/src/model/position.d.ts +539 -0
  76. package/src/model/position.js +1 -1
  77. package/src/model/range.d.ts +458 -0
  78. package/src/model/range.js +1 -1
  79. package/src/model/rootelement.d.ts +40 -0
  80. package/src/model/schema.d.ts +1176 -0
  81. package/src/model/schema.js +15 -15
  82. package/src/model/selection.d.ts +472 -0
  83. package/src/model/text.d.ts +66 -0
  84. package/src/model/text.js +0 -2
  85. package/src/model/textproxy.d.ts +144 -0
  86. package/src/model/treewalker.d.ts +186 -0
  87. package/src/model/treewalker.js +19 -10
  88. package/src/model/typecheckable.d.ts +255 -0
  89. package/src/model/utils/autoparagraphing.d.ts +37 -0
  90. package/src/model/utils/deletecontent.d.ts +58 -0
  91. package/src/model/utils/findoptimalinsertionrange.d.ts +32 -0
  92. package/src/model/utils/getselectedcontent.d.ts +30 -0
  93. package/src/model/utils/insertcontent.d.ts +46 -0
  94. package/src/model/utils/insertcontent.js +2 -12
  95. package/src/model/utils/insertobject.d.ts +44 -0
  96. package/src/model/utils/insertobject.js +3 -14
  97. package/src/model/utils/modifyselection.d.ts +48 -0
  98. package/src/model/utils/selection-post-fixer.d.ts +65 -0
  99. package/src/model/writer.d.ts +726 -0
  100. package/src/model/writer.js +6 -4
  101. package/src/view/attributeelement.d.ts +108 -0
  102. package/src/view/attributeelement.js +25 -69
  103. package/src/view/containerelement.d.ts +49 -0
  104. package/src/view/containerelement.js +10 -43
  105. package/src/view/datatransfer.d.ts +75 -0
  106. package/src/view/document.d.ts +184 -0
  107. package/src/view/document.js +15 -84
  108. package/src/view/documentfragment.d.ts +150 -0
  109. package/src/view/documentfragment.js +40 -81
  110. package/src/view/documentselection.d.ts +219 -0
  111. package/src/view/documentselection.js +75 -121
  112. package/src/view/domconverter.d.ts +620 -0
  113. package/src/view/domconverter.js +159 -276
  114. package/src/view/downcastwriter.d.ts +804 -0
  115. package/src/view/downcastwriter.js +336 -380
  116. package/src/view/editableelement.d.ts +52 -0
  117. package/src/view/editableelement.js +9 -49
  118. package/src/view/element.d.ts +466 -0
  119. package/src/view/element.js +150 -222
  120. package/src/view/elementdefinition.d.ts +87 -0
  121. package/src/view/emptyelement.d.ts +41 -0
  122. package/src/view/emptyelement.js +11 -44
  123. package/src/view/filler.d.ts +111 -0
  124. package/src/view/filler.js +24 -21
  125. package/src/view/item.d.ts +14 -0
  126. package/src/view/matcher.d.ts +486 -0
  127. package/src/view/matcher.js +247 -218
  128. package/src/view/node.d.ts +160 -0
  129. package/src/view/node.js +26 -100
  130. package/src/view/observer/arrowkeysobserver.d.ts +41 -0
  131. package/src/view/observer/arrowkeysobserver.js +0 -13
  132. package/src/view/observer/bubblingemittermixin.d.ts +166 -0
  133. package/src/view/observer/bubblingemittermixin.js +36 -25
  134. package/src/view/observer/bubblingeventinfo.d.ts +47 -0
  135. package/src/view/observer/bubblingeventinfo.js +3 -29
  136. package/src/view/observer/clickobserver.d.ts +43 -0
  137. package/src/view/observer/clickobserver.js +9 -19
  138. package/src/view/observer/compositionobserver.d.ts +82 -0
  139. package/src/view/observer/compositionobserver.js +13 -42
  140. package/src/view/observer/domeventdata.d.ts +50 -0
  141. package/src/view/observer/domeventdata.js +5 -30
  142. package/src/view/observer/domeventobserver.d.ts +69 -0
  143. package/src/view/observer/domeventobserver.js +19 -21
  144. package/src/view/observer/fakeselectionobserver.d.ts +46 -0
  145. package/src/view/observer/fakeselectionobserver.js +2 -15
  146. package/src/view/observer/focusobserver.d.ts +82 -0
  147. package/src/view/observer/focusobserver.js +14 -40
  148. package/src/view/observer/inputobserver.d.ts +86 -0
  149. package/src/view/observer/inputobserver.js +18 -64
  150. package/src/view/observer/keyobserver.d.ts +67 -0
  151. package/src/view/observer/keyobserver.js +8 -42
  152. package/src/view/observer/mouseobserver.d.ts +89 -0
  153. package/src/view/observer/mouseobserver.js +8 -28
  154. package/src/view/observer/mutationobserver.d.ts +82 -0
  155. package/src/view/observer/mutationobserver.js +7 -37
  156. package/src/view/observer/observer.d.ts +84 -0
  157. package/src/view/observer/observer.js +12 -25
  158. package/src/view/observer/selectionobserver.d.ts +143 -0
  159. package/src/view/observer/selectionobserver.js +9 -99
  160. package/src/view/observer/tabobserver.d.ts +42 -0
  161. package/src/view/observer/tabobserver.js +0 -14
  162. package/src/view/placeholder.d.ts +85 -0
  163. package/src/view/placeholder.js +26 -43
  164. package/src/view/position.d.ts +189 -0
  165. package/src/view/position.js +36 -83
  166. package/src/view/range.d.ts +279 -0
  167. package/src/view/range.js +79 -122
  168. package/src/view/rawelement.d.ts +73 -0
  169. package/src/view/rawelement.js +34 -48
  170. package/src/view/renderer.d.ts +265 -0
  171. package/src/view/renderer.js +105 -193
  172. package/src/view/rooteditableelement.d.ts +41 -0
  173. package/src/view/rooteditableelement.js +12 -40
  174. package/src/view/selection.d.ts +375 -0
  175. package/src/view/selection.js +79 -153
  176. package/src/view/styles/background.d.ts +33 -0
  177. package/src/view/styles/background.js +14 -12
  178. package/src/view/styles/border.d.ts +43 -0
  179. package/src/view/styles/border.js +58 -48
  180. package/src/view/styles/margin.d.ts +29 -0
  181. package/src/view/styles/margin.js +13 -11
  182. package/src/view/styles/padding.d.ts +29 -0
  183. package/src/view/styles/padding.js +13 -11
  184. package/src/view/styles/utils.d.ts +93 -0
  185. package/src/view/styles/utils.js +22 -48
  186. package/src/view/stylesmap.d.ts +675 -0
  187. package/src/view/stylesmap.js +249 -244
  188. package/src/view/text.d.ts +74 -0
  189. package/src/view/text.js +16 -46
  190. package/src/view/textproxy.d.ts +97 -0
  191. package/src/view/textproxy.js +10 -59
  192. package/src/view/treewalker.d.ts +195 -0
  193. package/src/view/treewalker.js +43 -106
  194. package/src/view/typecheckable.d.ts +401 -0
  195. package/src/view/uielement.d.ts +96 -0
  196. package/src/view/uielement.js +28 -62
  197. package/src/view/upcastwriter.d.ts +328 -0
  198. package/src/view/upcastwriter.js +124 -134
  199. package/src/view/view.d.ts +327 -0
  200. package/src/view/view.js +79 -150
@@ -0,0 +1,74 @@
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/text
7
+ */
8
+ import Node from './node';
9
+ import type Document from './document';
10
+ /**
11
+ * Tree view text node.
12
+ *
13
+ * The constructor of this class should not be used directly. To create a new text node instance
14
+ * use the {@link module:engine/view/downcastwriter~DowncastWriter#createText `DowncastWriter#createText()`}
15
+ * method when working on data downcasted from the model or the
16
+ * {@link module:engine/view/upcastwriter~UpcastWriter#createText `UpcastWriter#createText()`}
17
+ * method when working on non-semantic views.
18
+ */
19
+ export default class Text extends Node {
20
+ /**
21
+ * The text content.
22
+ *
23
+ * Setting the data fires the {@link module:engine/view/node~Node#event:change:text change event}.
24
+ */
25
+ private _textData;
26
+ /**
27
+ * Creates a tree view text node.
28
+ *
29
+ * @see module:engine/view/downcastwriter~DowncastWriter#createText
30
+ * @internal
31
+ * @param document The document instance to which this text node belongs.
32
+ * @param data The text's data.
33
+ */
34
+ constructor(document: Document, data: string);
35
+ /**
36
+ * The text content.
37
+ */
38
+ get data(): string;
39
+ /**
40
+ * The `_data` property is controlled by a getter and a setter.
41
+ *
42
+ * The getter is required when using the addition assignment operator on protected property:
43
+ *
44
+ * ```ts
45
+ * const foo = downcastWriter.createText( 'foo' );
46
+ * const bar = downcastWriter.createText( 'bar' );
47
+ *
48
+ * foo._data += bar.data; // executes: `foo._data = foo._data + bar.data`
49
+ * console.log( foo.data ); // prints: 'foobar'
50
+ * ```
51
+ *
52
+ * If the protected getter didn't exist, `foo._data` will return `undefined` and result of the merge will be invalid.
53
+ *
54
+ * The setter sets data and fires the {@link module:engine/view/node~Node#event:change:text change event}.
55
+ *
56
+ * @internal
57
+ */
58
+ get _data(): string;
59
+ set _data(data: string);
60
+ /**
61
+ * Checks if this text node is similar to other text node.
62
+ * Both nodes should have the same data to be considered as similar.
63
+ *
64
+ * @param otherNode Node to check if it is same as this node.
65
+ */
66
+ isSimilar(otherNode: Node): boolean;
67
+ /**
68
+ * Clones this node.
69
+ *
70
+ * @internal
71
+ * @returns Text node that is a clone of this node.
72
+ */
73
+ _clone(): Text;
74
+ }
package/src/view/text.js CHANGED
@@ -14,34 +14,22 @@ import Node from './node';
14
14
  * method when working on data downcasted from the model or the
15
15
  * {@link module:engine/view/upcastwriter~UpcastWriter#createText `UpcastWriter#createText()`}
16
16
  * method when working on non-semantic views.
17
- *
18
- * @extends module:engine/view/node~Node
19
17
  */
20
18
  export default class Text extends Node {
21
19
  /**
22
20
  * Creates a tree view text node.
23
21
  *
24
- * @protected
25
- * @param {module:engine/view/document~Document} document The document instance to which this text node belongs.
26
- * @param {String} data The text's data.
22
+ * @see module:engine/view/downcastwriter~DowncastWriter#createText
23
+ * @internal
24
+ * @param document The document instance to which this text node belongs.
25
+ * @param data The text's data.
27
26
  */
28
27
  constructor(document, data) {
29
28
  super(document);
30
- /**
31
- * The text content.
32
- *
33
- * Setting the data fires the {@link module:engine/view/node~Node#event:change:text change event}.
34
- *
35
- * @protected
36
- * @member {String} module:engine/view/text~Text#_textData
37
- */
38
29
  this._textData = data;
39
30
  }
40
31
  /**
41
32
  * The text content.
42
- *
43
- * @readonly
44
- * @type {String}
45
33
  */
46
34
  get data() {
47
35
  return this._textData;
@@ -51,18 +39,19 @@ export default class Text extends Node {
51
39
  *
52
40
  * The getter is required when using the addition assignment operator on protected property:
53
41
  *
54
- * const foo = downcastWriter.createText( 'foo' );
55
- * const bar = downcastWriter.createText( 'bar' );
42
+ * ```ts
43
+ * const foo = downcastWriter.createText( 'foo' );
44
+ * const bar = downcastWriter.createText( 'bar' );
56
45
  *
57
- * foo._data += bar.data; // executes: `foo._data = foo._data + bar.data`
58
- * console.log( foo.data ); // prints: 'foobar'
46
+ * foo._data += bar.data; // executes: `foo._data = foo._data + bar.data`
47
+ * console.log( foo.data ); // prints: 'foobar'
48
+ * ```
59
49
  *
60
50
  * If the protected getter didn't exist, `foo._data` will return `undefined` and result of the merge will be invalid.
61
51
  *
62
52
  * The setter sets data and fires the {@link module:engine/view/node~Node#event:change:text change event}.
63
53
  *
64
- * @protected
65
- * @type {String}
54
+ * @internal
66
55
  */
67
56
  get _data() {
68
57
  return this.data;
@@ -75,8 +64,7 @@ export default class Text extends Node {
75
64
  * Checks if this text node is similar to other text node.
76
65
  * Both nodes should have the same data to be considered as similar.
77
66
  *
78
- * @param {module:engine/view/node~Node} otherNode Node to check if it is same as this node.
79
- * @returns {Boolean}
67
+ * @param otherNode Node to check if it is same as this node.
80
68
  */
81
69
  isSimilar(otherNode) {
82
70
  if (!(otherNode instanceof Text)) {
@@ -87,33 +75,15 @@ export default class Text extends Node {
87
75
  /**
88
76
  * Clones this node.
89
77
  *
90
- * @protected
91
- * @returns {module:engine/view/text~Text} Text node that is a clone of this node.
78
+ * @internal
79
+ * @returns Text node that is a clone of this node.
92
80
  */
93
81
  _clone() {
94
82
  return new Text(this.document, this.data);
95
83
  }
96
84
  }
97
- /**
98
- * Checks whether this object is of the given type.
99
- *
100
- * text.is( '$text' ); // -> true
101
- * text.is( 'node' ); // -> true
102
- * text.is( 'view:$text' ); // -> true
103
- * text.is( 'view:node' ); // -> true
104
- *
105
- * text.is( 'model:$text' ); // -> false
106
- * text.is( 'element' ); // -> false
107
- * text.is( 'range' ); // -> false
108
- *
109
- * {@link module:engine/view/node~Node#is Check the entire list of view objects} which implement the `is()` method.
110
- *
111
- * **Note:** Until version 20.0.0 this method wasn't accepting `'$text'` type. The legacy `'text'` type is still
112
- * accepted for backward compatibility.
113
- *
114
- * @param {String} type Type to check.
115
- * @returns {Boolean}
116
- */
85
+ // The magic of type inference using `is` method is centralized in `TypeCheckable` class.
86
+ // Proper overload would interfere with that.
117
87
  Text.prototype.is = function (type) {
118
88
  return type === '$text' || type === 'view:$text' ||
119
89
  // This are legacy values kept for backward compatibility.
@@ -0,0 +1,97 @@
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/textproxy
7
+ */
8
+ import TypeCheckable from './typecheckable';
9
+ import type Document from './document';
10
+ import type DocumentFragment from './documentfragment';
11
+ import type Element from './element';
12
+ import type Node from './node';
13
+ import type Text from './text';
14
+ /**
15
+ * TextProxy is a wrapper for substring of {@link module:engine/view/text~Text}. Instance of this class is created by
16
+ * {@link module:engine/view/treewalker~TreeWalker} when only a part of {@link module:engine/view/text~Text} needs to be returned.
17
+ *
18
+ * `TextProxy` has an API similar to {@link module:engine/view/text~Text Text} and allows to do most of the common tasks performed
19
+ * on view nodes.
20
+ *
21
+ * **Note:** Some `TextProxy` instances may represent whole text node, not just a part of it.
22
+ * See {@link module:engine/view/textproxy~TextProxy#isPartial}.
23
+ *
24
+ * **Note:** `TextProxy` is a readonly interface.
25
+ *
26
+ * **Note:** `TextProxy` instances are created on the fly basing on the current state of parent {@link module:engine/view/text~Text}.
27
+ * Because of this it is highly unrecommended to store references to `TextProxy instances because they might get
28
+ * invalidated due to operations on Document. Also TextProxy is not a {@link module:engine/view/node~Node} so it can not be
29
+ * inserted as a child of {@link module:engine/view/element~Element}.
30
+ *
31
+ * `TextProxy` instances are created by {@link module:engine/view/treewalker~TreeWalker view tree walker}. You should not need to create
32
+ * an instance of this class by your own.
33
+ */
34
+ export default class TextProxy extends TypeCheckable {
35
+ /**
36
+ * Reference to the {@link module:engine/view/text~Text} element which TextProxy is a substring.
37
+ */
38
+ readonly textNode: Text;
39
+ /**
40
+ * Text data represented by this text proxy.
41
+ */
42
+ readonly data: string;
43
+ /**
44
+ * Offset in the `textNode` where this `TextProxy` instance starts.
45
+ */
46
+ readonly offsetInText: number;
47
+ /**
48
+ * Creates a text proxy.
49
+ *
50
+ * @internal
51
+ * @param textNode Text node which part is represented by this text proxy.
52
+ * @param offsetInText Offset in {@link module:engine/view/textproxy~TextProxy#textNode text node}
53
+ * from which the text proxy starts.
54
+ * @param length Text proxy length, that is how many text node's characters, starting from `offsetInText` it represents.
55
+ * @constructor
56
+ */
57
+ constructor(textNode: Text, offsetInText: number, length: number);
58
+ /**
59
+ * Offset size of this node.
60
+ */
61
+ get offsetSize(): number;
62
+ /**
63
+ * Flag indicating whether `TextProxy` instance covers only part of the original {@link module:engine/view/text~Text text node}
64
+ * (`true`) or the whole text node (`false`).
65
+ *
66
+ * This is `false` when text proxy starts at the very beginning of {@link module:engine/view/textproxy~TextProxy#textNode textNode}
67
+ * ({@link module:engine/view/textproxy~TextProxy#offsetInText offsetInText} equals `0`) and text proxy sizes is equal to
68
+ * text node size.
69
+ */
70
+ get isPartial(): boolean;
71
+ /**
72
+ * Parent of this text proxy, which is same as parent of text node represented by this text proxy.
73
+ */
74
+ get parent(): Element | DocumentFragment | null;
75
+ /**
76
+ * Root of this text proxy, which is same as root of text node represented by this text proxy.
77
+ */
78
+ get root(): Node | DocumentFragment;
79
+ /**
80
+ * {@link module:engine/view/document~Document View document} that owns this text proxy, or `null` if the text proxy is inside
81
+ * {@link module:engine/view/documentfragment~DocumentFragment document fragment}.
82
+ */
83
+ get document(): Document | null;
84
+ /**
85
+ * Returns ancestors array of this text proxy.
86
+ *
87
+ * @param options Options object.
88
+ * @param options.includeSelf When set to `true`, textNode will be also included in parent's array.
89
+ * @param options.parentFirst When set to `true`, array will be sorted from text proxy parent to
90
+ * root element, otherwise root element will be the first item in the array.
91
+ * @returns Array with ancestors.
92
+ */
93
+ getAncestors(options?: {
94
+ includeSelf?: boolean;
95
+ parentFirst?: boolean;
96
+ }): Array<Text | Element | DocumentFragment>;
97
+ }
@@ -31,21 +31,15 @@ export default class TextProxy extends TypeCheckable {
31
31
  /**
32
32
  * Creates a text proxy.
33
33
  *
34
- * @protected
35
- * @param {module:engine/view/text~Text} textNode Text node which part is represented by this text proxy.
36
- * @param {Number} offsetInText Offset in {@link module:engine/view/textproxy~TextProxy#textNode text node}
34
+ * @internal
35
+ * @param textNode Text node which part is represented by this text proxy.
36
+ * @param offsetInText Offset in {@link module:engine/view/textproxy~TextProxy#textNode text node}
37
37
  * from which the text proxy starts.
38
- * @param {Number} length Text proxy length, that is how many text node's characters, starting from `offsetInText` it represents.
38
+ * @param length Text proxy length, that is how many text node's characters, starting from `offsetInText` it represents.
39
39
  * @constructor
40
40
  */
41
41
  constructor(textNode, offsetInText, length) {
42
42
  super();
43
- /**
44
- * Reference to the {@link module:engine/view/text~Text} element which TextProxy is a substring.
45
- *
46
- * @readonly
47
- * @member {module:engine/view/text~Text} module:engine/view/textproxy~TextProxy#textNode
48
- */
49
43
  this.textNode = textNode;
50
44
  if (offsetInText < 0 || offsetInText > textNode.data.length) {
51
45
  /**
@@ -63,26 +57,11 @@ export default class TextProxy extends TypeCheckable {
63
57
  */
64
58
  throw new CKEditorError('view-textproxy-wrong-length', this);
65
59
  }
66
- /**
67
- * Text data represented by this text proxy.
68
- *
69
- * @readonly
70
- * @member {String} module:engine/view/textproxy~TextProxy#data
71
- */
72
60
  this.data = textNode.data.substring(offsetInText, offsetInText + length);
73
- /**
74
- * Offset in the `textNode` where this `TextProxy` instance starts.
75
- *
76
- * @readonly
77
- * @member {Number} module:engine/view/textproxy~TextProxy#offsetInText
78
- */
79
61
  this.offsetInText = offsetInText;
80
62
  }
81
63
  /**
82
64
  * Offset size of this node.
83
- *
84
- * @readonly
85
- * @type {Number}
86
65
  */
87
66
  get offsetSize() {
88
67
  return this.data.length;
@@ -94,27 +73,18 @@ export default class TextProxy extends TypeCheckable {
94
73
  * This is `false` when text proxy starts at the very beginning of {@link module:engine/view/textproxy~TextProxy#textNode textNode}
95
74
  * ({@link module:engine/view/textproxy~TextProxy#offsetInText offsetInText} equals `0`) and text proxy sizes is equal to
96
75
  * text node size.
97
- *
98
- * @readonly
99
- * @type {Boolean}
100
76
  */
101
77
  get isPartial() {
102
78
  return this.data.length !== this.textNode.data.length;
103
79
  }
104
80
  /**
105
81
  * Parent of this text proxy, which is same as parent of text node represented by this text proxy.
106
- *
107
- * @readonly
108
- * @type {module:engine/view/element~Element|module:engine/view/documentfragment~DocumentFragment|null}
109
82
  */
110
83
  get parent() {
111
84
  return this.textNode.parent;
112
85
  }
113
86
  /**
114
87
  * Root of this text proxy, which is same as root of text node represented by this text proxy.
115
- *
116
- * @readonly
117
- * @type {module:engine/view/node~Node|module:engine/view/documentfragment~DocumentFragment}
118
88
  */
119
89
  get root() {
120
90
  return this.textNode.root;
@@ -122,9 +92,6 @@ export default class TextProxy extends TypeCheckable {
122
92
  /**
123
93
  * {@link module:engine/view/document~Document View document} that owns this text proxy, or `null` if the text proxy is inside
124
94
  * {@link module:engine/view/documentfragment~DocumentFragment document fragment}.
125
- *
126
- * @readonly
127
- * @type {module:engine/view/document~Document|null}
128
95
  */
129
96
  get document() {
130
97
  return this.textNode.document;
@@ -132,11 +99,11 @@ export default class TextProxy extends TypeCheckable {
132
99
  /**
133
100
  * Returns ancestors array of this text proxy.
134
101
  *
135
- * @param {Object} options Options object.
136
- * @param {Boolean} [options.includeSelf=false] When set to `true` {#textNode} will be also included in parent's array.
137
- * @param {Boolean} [options.parentFirst=false] When set to `true`, array will be sorted from text proxy parent to
102
+ * @param options Options object.
103
+ * @param options.includeSelf When set to `true`, textNode will be also included in parent's array.
104
+ * @param options.parentFirst When set to `true`, array will be sorted from text proxy parent to
138
105
  * root element, otherwise root element will be the first item in the array.
139
- * @returns {Array} Array with ancestors.
106
+ * @returns Array with ancestors.
140
107
  */
141
108
  getAncestors(options = {}) {
142
109
  const ancestors = [];
@@ -148,24 +115,8 @@ export default class TextProxy extends TypeCheckable {
148
115
  return ancestors;
149
116
  }
150
117
  }
151
- /**
152
- * Checks whether this object is of the given type.
153
- *
154
- * textProxy.is( '$textProxy' ); // -> true
155
- * textProxy.is( 'view:$textProxy' ); // -> true
156
- *
157
- * textProxy.is( 'model:$textProxy' ); // -> false
158
- * textProxy.is( 'element' ); // -> false
159
- * textProxy.is( 'range' ); // -> false
160
- *
161
- * {@link module:engine/view/node~Node#is Check the entire list of view objects} which implement the `is()` method.
162
- *
163
- * **Note:** Until version 20.0.0 this method wasn't accepting `'$textProxy'` type. The legacy `'textProxy'` type is still
164
- * accepted for backward compatibility.
165
- *
166
- * @param {String} type Type to check.
167
- * @returns {Boolean}
168
- */
118
+ // The magic of type inference using `is` method is centralized in `TypeCheckable` class.
119
+ // Proper overload would interfere with that.
169
120
  TextProxy.prototype.is = function (type) {
170
121
  return type === '$textProxy' || type === 'view:$textProxy' ||
171
122
  // This are legacy values kept for backward compatibility.
@@ -0,0 +1,195 @@
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 Position from './position';
6
+ import type Item from './item';
7
+ import type Range from './range';
8
+ /**
9
+ * Position iterator class. It allows to iterate forward and backward over the document.
10
+ */
11
+ export default class TreeWalker implements IterableIterator<TreeWalkerValue> {
12
+ /**
13
+ * Walking direction. Defaults `'forward'`.
14
+ */
15
+ readonly direction: TreeWalkerDirection;
16
+ /**
17
+ * Iterator boundaries.
18
+ *
19
+ * When the iterator is walking `'forward'` on the end of boundary or is walking `'backward'`
20
+ * on the start of boundary, then `{ done: true }` is returned.
21
+ *
22
+ * If boundaries are not defined they are set before first and after last child of the root node.
23
+ */
24
+ readonly boundaries: Range | null;
25
+ /**
26
+ * Flag indicating whether all characters from {@link module:engine/view/text~Text} should be returned as one
27
+ * {@link module:engine/view/text~Text} or one by one as {@link module:engine/view/textproxy~TextProxy}.
28
+ */
29
+ readonly singleCharacters: boolean;
30
+ /**
31
+ * Flag indicating whether iterator should enter elements or not. If the iterator is shallow child nodes of any
32
+ * iterated node will not be returned along with `elementEnd` tag.
33
+ */
34
+ readonly shallow: boolean;
35
+ /**
36
+ * Flag indicating whether iterator should ignore `elementEnd` tags. If set to `true`, walker will not
37
+ * return a parent node of the start position. Each {@link module:engine/view/element~Element} will be returned once.
38
+ * When set to `false` each element might be returned twice: for `'elementStart'` and `'elementEnd'`.
39
+ */
40
+ readonly ignoreElementEnd: boolean;
41
+ /**
42
+ * Iterator position. If start position is not defined then position depends on {@link #direction}. If direction is
43
+ * `'forward'` position starts form the beginning, when direction is `'backward'` position starts from the end.
44
+ */
45
+ private _position;
46
+ /**
47
+ * Start boundary parent.
48
+ */
49
+ private readonly _boundaryStartParent;
50
+ /**
51
+ * End boundary parent.
52
+ */
53
+ private readonly _boundaryEndParent;
54
+ /**
55
+ * Creates a range iterator. All parameters are optional, but you have to specify either `boundaries` or `startPosition`.
56
+ *
57
+ * @param options Object with configuration.
58
+ */
59
+ constructor(options?: TreeWalkerOptions);
60
+ /**
61
+ * Iterable interface.
62
+ */
63
+ [Symbol.iterator](): IterableIterator<TreeWalkerValue>;
64
+ /**
65
+ * Iterator position. If start position is not defined then position depends on {@link #direction}. If direction is
66
+ * `'forward'` position starts form the beginning, when direction is `'backward'` position starts from the end.
67
+ */
68
+ get position(): Position;
69
+ /**
70
+ * Moves {@link #position} in the {@link #direction} skipping values as long as the callback function returns `true`.
71
+ *
72
+ * For example:
73
+ *
74
+ * ```ts
75
+ * walker.skip( value => value.type == 'text' ); // <p>{}foo</p> -> <p>foo[]</p>
76
+ * walker.skip( value => true ); // Move the position to the end: <p>{}foo</p> -> <p>foo</p>[]
77
+ * walker.skip( value => false ); // Do not move the position.
78
+ * ```
79
+ *
80
+ * @param skip Callback function. Gets {@link module:engine/view/treewalker~TreeWalkerValue} and should
81
+ * return `true` if the value should be skipped or `false` if not.
82
+ */
83
+ skip(skip: (value: TreeWalkerValue) => boolean): void;
84
+ /**
85
+ * Gets the next tree walker's value.
86
+ *
87
+ * @returns Object implementing iterator interface, returning
88
+ * information about taken step.
89
+ */
90
+ next(): IteratorResult<TreeWalkerValue, undefined>;
91
+ /**
92
+ * Makes a step forward in view. Moves the {@link #position} to the next position and returns the encountered value.
93
+ */
94
+ private _next;
95
+ /**
96
+ * Makes a step backward in view. Moves the {@link #position} to the previous position and returns the encountered value.
97
+ */
98
+ private _previous;
99
+ /**
100
+ * Format returned data and adjust `previousPosition` and `nextPosition` if reach the bound of the {@link module:engine/view/text~Text}.
101
+ *
102
+ * @param type Type of step.
103
+ * @param item Item between old and new position.
104
+ * @param previousPosition Previous position of iterator.
105
+ * @param nextPosition Next position of iterator.
106
+ * @param length Length of the item.
107
+ */
108
+ private _formatReturnValue;
109
+ }
110
+ /**
111
+ * Type of the step made by {@link module:engine/view/treewalker~TreeWalker}.
112
+ * Possible values: `'elementStart'` if walker is at the beginning of a node, `'elementEnd'` if walker is at the end
113
+ * of node, or `'text'` if walker traversed over single and multiple characters.
114
+ * For {@link module:engine/view/text~Text} `elementStart` and `elementEnd` is not returned.
115
+ */
116
+ export type TreeWalkerValueType = 'elementStart' | 'elementEnd' | 'text';
117
+ /**
118
+ * Object returned by {@link module:engine/view/treewalker~TreeWalker} when traversing tree view.
119
+ */
120
+ export interface TreeWalkerValue {
121
+ /**
122
+ * Type of the step made by {@link module:engine/view/treewalker~TreeWalker}.
123
+ */
124
+ type: TreeWalkerValueType;
125
+ /**
126
+ * Item between the old and the new positions of the tree walker.
127
+ */
128
+ item: Item;
129
+ /**
130
+ * Previous position of the iterator.
131
+ * * Forward iteration: For `'elementEnd'` it is the last position inside the element. For all other types it is the
132
+ * position before the item.
133
+ * * Backward iteration: For `'elementStart'` it is the first position inside the element. For all other types it is
134
+ * the position after item.
135
+ * * If the position is at the beginning or at the end of the {@link module:engine/view/text~Text} it is always moved from the
136
+ * inside of the text to its parent just before or just after that text.
137
+ */
138
+ previousPosition: Position;
139
+ /**
140
+ * Next position of the iterator.
141
+ * * Forward iteration: For `'elementStart'` it is the first position inside the element. For all other types it is
142
+ * the position after the item.
143
+ * * Backward iteration: For `'elementEnd'` it is last position inside element. For all other types it is the position
144
+ * before the item.
145
+ * * If the position is at the beginning or at the end of the {@link module:engine/view/text~Text} it is always moved from the
146
+ * inside of the text to its parent just before or just after that text.
147
+ */
148
+ nextPosition: Position;
149
+ /**
150
+ * Length of the item. For `'elementStart'` it is `1`. For `'text'` it is
151
+ * the length of that text. For `'elementEnd'` it is `undefined`.
152
+ */
153
+ length?: number;
154
+ }
155
+ /**
156
+ * Tree walking direction.
157
+ */
158
+ export type TreeWalkerDirection = 'forward' | 'backward';
159
+ /**
160
+ * The configuration of {@link ~TreeWalker}.
161
+ */
162
+ export interface TreeWalkerOptions {
163
+ /**
164
+ * Walking direction.
165
+ *
166
+ * @default 'forward'
167
+ */
168
+ direction?: TreeWalkerDirection;
169
+ /**
170
+ * Range to define boundaries of the iterator.
171
+ */
172
+ boundaries?: Range | null;
173
+ /**
174
+ * Starting position.
175
+ */
176
+ startPosition?: Position;
177
+ /**
178
+ * Flag indicating whether all characters from
179
+ * {@link module:engine/view/text~Text} should be returned as one {@link module:engine/view/text~Text} (`false`) or one by one as
180
+ * {@link module:engine/view/textproxy~TextProxy} (`true`).
181
+ */
182
+ singleCharacters?: boolean;
183
+ /**
184
+ * Flag indicating whether iterator should enter elements or not. If the
185
+ * iterator is shallow child nodes of any iterated node will not be returned along with `elementEnd` tag.
186
+ */
187
+ shallow?: boolean;
188
+ /**
189
+ * Flag indicating whether iterator should ignore `elementEnd`
190
+ * tags. If the option is true walker will not return a parent node of start position. If this option is `true`
191
+ * each {@link module:engine/view/element~Element} will be returned once, while if the option is `false` they might be returned
192
+ * twice: for `'elementStart'` and `'elementEnd'`.
193
+ */
194
+ ignoreElementEnd?: boolean;
195
+ }