@ckeditor/ckeditor5-engine 36.0.0 → 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 (201) 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/datatransfer.js +24 -27
  107. package/src/view/document.d.ts +184 -0
  108. package/src/view/document.js +15 -84
  109. package/src/view/documentfragment.d.ts +150 -0
  110. package/src/view/documentfragment.js +40 -81
  111. package/src/view/documentselection.d.ts +219 -0
  112. package/src/view/documentselection.js +75 -121
  113. package/src/view/domconverter.d.ts +620 -0
  114. package/src/view/domconverter.js +159 -276
  115. package/src/view/downcastwriter.d.ts +804 -0
  116. package/src/view/downcastwriter.js +336 -380
  117. package/src/view/editableelement.d.ts +52 -0
  118. package/src/view/editableelement.js +9 -49
  119. package/src/view/element.d.ts +466 -0
  120. package/src/view/element.js +150 -222
  121. package/src/view/elementdefinition.d.ts +87 -0
  122. package/src/view/emptyelement.d.ts +41 -0
  123. package/src/view/emptyelement.js +11 -44
  124. package/src/view/filler.d.ts +111 -0
  125. package/src/view/filler.js +24 -21
  126. package/src/view/item.d.ts +14 -0
  127. package/src/view/matcher.d.ts +486 -0
  128. package/src/view/matcher.js +247 -218
  129. package/src/view/node.d.ts +160 -0
  130. package/src/view/node.js +26 -100
  131. package/src/view/observer/arrowkeysobserver.d.ts +41 -0
  132. package/src/view/observer/arrowkeysobserver.js +0 -13
  133. package/src/view/observer/bubblingemittermixin.d.ts +166 -0
  134. package/src/view/observer/bubblingemittermixin.js +36 -25
  135. package/src/view/observer/bubblingeventinfo.d.ts +47 -0
  136. package/src/view/observer/bubblingeventinfo.js +3 -29
  137. package/src/view/observer/clickobserver.d.ts +43 -0
  138. package/src/view/observer/clickobserver.js +9 -19
  139. package/src/view/observer/compositionobserver.d.ts +82 -0
  140. package/src/view/observer/compositionobserver.js +13 -42
  141. package/src/view/observer/domeventdata.d.ts +50 -0
  142. package/src/view/observer/domeventdata.js +5 -30
  143. package/src/view/observer/domeventobserver.d.ts +69 -0
  144. package/src/view/observer/domeventobserver.js +19 -21
  145. package/src/view/observer/fakeselectionobserver.d.ts +46 -0
  146. package/src/view/observer/fakeselectionobserver.js +2 -15
  147. package/src/view/observer/focusobserver.d.ts +82 -0
  148. package/src/view/observer/focusobserver.js +14 -40
  149. package/src/view/observer/inputobserver.d.ts +86 -0
  150. package/src/view/observer/inputobserver.js +18 -64
  151. package/src/view/observer/keyobserver.d.ts +67 -0
  152. package/src/view/observer/keyobserver.js +8 -42
  153. package/src/view/observer/mouseobserver.d.ts +89 -0
  154. package/src/view/observer/mouseobserver.js +8 -28
  155. package/src/view/observer/mutationobserver.d.ts +82 -0
  156. package/src/view/observer/mutationobserver.js +7 -37
  157. package/src/view/observer/observer.d.ts +84 -0
  158. package/src/view/observer/observer.js +12 -25
  159. package/src/view/observer/selectionobserver.d.ts +143 -0
  160. package/src/view/observer/selectionobserver.js +9 -99
  161. package/src/view/observer/tabobserver.d.ts +42 -0
  162. package/src/view/observer/tabobserver.js +0 -14
  163. package/src/view/placeholder.d.ts +85 -0
  164. package/src/view/placeholder.js +26 -43
  165. package/src/view/position.d.ts +189 -0
  166. package/src/view/position.js +36 -83
  167. package/src/view/range.d.ts +279 -0
  168. package/src/view/range.js +79 -122
  169. package/src/view/rawelement.d.ts +73 -0
  170. package/src/view/rawelement.js +34 -48
  171. package/src/view/renderer.d.ts +265 -0
  172. package/src/view/renderer.js +105 -193
  173. package/src/view/rooteditableelement.d.ts +41 -0
  174. package/src/view/rooteditableelement.js +12 -40
  175. package/src/view/selection.d.ts +375 -0
  176. package/src/view/selection.js +79 -153
  177. package/src/view/styles/background.d.ts +33 -0
  178. package/src/view/styles/background.js +14 -12
  179. package/src/view/styles/border.d.ts +43 -0
  180. package/src/view/styles/border.js +58 -48
  181. package/src/view/styles/margin.d.ts +29 -0
  182. package/src/view/styles/margin.js +13 -11
  183. package/src/view/styles/padding.d.ts +29 -0
  184. package/src/view/styles/padding.js +13 -11
  185. package/src/view/styles/utils.d.ts +93 -0
  186. package/src/view/styles/utils.js +22 -48
  187. package/src/view/stylesmap.d.ts +675 -0
  188. package/src/view/stylesmap.js +249 -244
  189. package/src/view/text.d.ts +74 -0
  190. package/src/view/text.js +16 -46
  191. package/src/view/textproxy.d.ts +97 -0
  192. package/src/view/textproxy.js +10 -59
  193. package/src/view/treewalker.d.ts +195 -0
  194. package/src/view/treewalker.js +43 -106
  195. package/src/view/typecheckable.d.ts +401 -0
  196. package/src/view/uielement.d.ts +96 -0
  197. package/src/view/uielement.js +28 -62
  198. package/src/view/upcastwriter.d.ts +328 -0
  199. package/src/view/upcastwriter.js +124 -134
  200. package/src/view/view.d.ts +327 -0
  201. package/src/view/view.js +79 -150
@@ -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 {};