@ckeditor/ckeditor5-table 0.0.0-nightly-next-20260108.0 → 0.0.0-nightly-20260109.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 (274) hide show
  1. package/build/table.js +5 -0
  2. package/build/translations/af.js +1 -0
  3. package/build/translations/ar.js +1 -0
  4. package/build/translations/ast.js +1 -0
  5. package/build/translations/az.js +1 -0
  6. package/build/translations/be.js +1 -0
  7. package/build/translations/bg.js +1 -0
  8. package/build/translations/bn.js +1 -0
  9. package/build/translations/bs.js +1 -0
  10. package/build/translations/ca.js +1 -0
  11. package/build/translations/cs.js +1 -0
  12. package/build/translations/da.js +1 -0
  13. package/build/translations/de-ch.js +1 -0
  14. package/build/translations/de.js +1 -0
  15. package/build/translations/el.js +1 -0
  16. package/build/translations/en-au.js +1 -0
  17. package/build/translations/en-gb.js +1 -0
  18. package/build/translations/eo.js +1 -0
  19. package/build/translations/es-co.js +1 -0
  20. package/build/translations/es.js +1 -0
  21. package/build/translations/et.js +1 -0
  22. package/build/translations/eu.js +1 -0
  23. package/build/translations/fa.js +1 -0
  24. package/build/translations/fi.js +1 -0
  25. package/build/translations/fr.js +1 -0
  26. package/build/translations/gl.js +1 -0
  27. package/build/translations/gu.js +1 -0
  28. package/build/translations/he.js +1 -0
  29. package/build/translations/hi.js +1 -0
  30. package/build/translations/hr.js +1 -0
  31. package/build/translations/hu.js +1 -0
  32. package/build/translations/hy.js +1 -0
  33. package/build/translations/id.js +1 -0
  34. package/build/translations/it.js +1 -0
  35. package/build/translations/ja.js +1 -0
  36. package/build/translations/jv.js +1 -0
  37. package/build/translations/kk.js +1 -0
  38. package/build/translations/km.js +1 -0
  39. package/build/translations/kn.js +1 -0
  40. package/build/translations/ko.js +1 -0
  41. package/build/translations/ku.js +1 -0
  42. package/build/translations/lt.js +1 -0
  43. package/build/translations/lv.js +1 -0
  44. package/build/translations/ms.js +1 -0
  45. package/build/translations/nb.js +1 -0
  46. package/build/translations/ne.js +1 -0
  47. package/build/translations/nl.js +1 -0
  48. package/build/translations/no.js +1 -0
  49. package/build/translations/oc.js +1 -0
  50. package/build/translations/pl.js +1 -0
  51. package/build/translations/pt-br.js +1 -0
  52. package/build/translations/pt.js +1 -0
  53. package/build/translations/ro.js +1 -0
  54. package/build/translations/ru.js +1 -0
  55. package/build/translations/si.js +1 -0
  56. package/build/translations/sk.js +1 -0
  57. package/build/translations/sl.js +1 -0
  58. package/build/translations/sq.js +1 -0
  59. package/build/translations/sr-latn.js +1 -0
  60. package/build/translations/sr.js +1 -0
  61. package/build/translations/sv.js +1 -0
  62. package/build/translations/th.js +1 -0
  63. package/build/translations/ti.js +1 -0
  64. package/build/translations/tk.js +1 -0
  65. package/build/translations/tr.js +1 -0
  66. package/build/translations/tt.js +1 -0
  67. package/build/translations/ug.js +1 -0
  68. package/build/translations/uk.js +1 -0
  69. package/build/translations/ur.js +1 -0
  70. package/build/translations/uz.js +1 -0
  71. package/build/translations/vi.js +1 -0
  72. package/build/translations/zh-cn.js +1 -0
  73. package/build/translations/zh.js +1 -0
  74. package/ckeditor5-metadata.json +7 -16
  75. package/dist/index-content.css +30 -30
  76. package/dist/index-editor.css +170 -104
  77. package/dist/index.css +237 -147
  78. package/dist/index.css.map +1 -1
  79. package/dist/index.js +2433 -448
  80. package/dist/index.js.map +1 -1
  81. package/lang/contexts.json +4 -2
  82. package/package.json +35 -25
  83. package/{dist → src}/augmentation.d.ts +15 -4
  84. package/src/augmentation.js +5 -0
  85. package/{dist → src}/commands/insertcolumncommand.d.ts +1 -5
  86. package/src/commands/insertcolumncommand.js +71 -0
  87. package/{dist → src}/commands/insertrowcommand.d.ts +1 -5
  88. package/src/commands/insertrowcommand.js +70 -0
  89. package/{dist → src}/commands/inserttablecommand.d.ts +1 -5
  90. package/src/commands/inserttablecommand.js +69 -0
  91. package/{dist → src}/commands/inserttablelayoutcommand.d.ts +1 -5
  92. package/src/commands/inserttablelayoutcommand.js +65 -0
  93. package/{dist → src}/commands/mergecellcommand.d.ts +3 -7
  94. package/src/commands/mergecellcommand.js +206 -0
  95. package/{dist → src}/commands/mergecellscommand.d.ts +1 -5
  96. package/src/commands/mergecellscommand.js +94 -0
  97. package/{dist → src}/commands/removecolumncommand.d.ts +1 -5
  98. package/src/commands/removecolumncommand.js +109 -0
  99. package/{dist → src}/commands/removerowcommand.d.ts +1 -5
  100. package/src/commands/removerowcommand.js +82 -0
  101. package/{dist → src}/commands/selectcolumncommand.d.ts +1 -5
  102. package/src/commands/selectcolumncommand.js +60 -0
  103. package/{dist → src}/commands/selectrowcommand.d.ts +1 -5
  104. package/src/commands/selectrowcommand.js +56 -0
  105. package/{dist → src}/commands/setheadercolumncommand.d.ts +1 -5
  106. package/src/commands/setheadercolumncommand.js +76 -0
  107. package/{dist → src}/commands/setheaderrowcommand.d.ts +1 -5
  108. package/src/commands/setheaderrowcommand.js +83 -0
  109. package/{dist → src}/commands/splitcellcommand.d.ts +1 -5
  110. package/src/commands/splitcellcommand.js +58 -0
  111. package/{dist → src}/converters/downcast.d.ts +2 -6
  112. package/src/converters/downcast.js +298 -0
  113. package/{dist → src}/converters/table-caption-post-fixer.d.ts +1 -5
  114. package/src/converters/table-caption-post-fixer.js +55 -0
  115. package/{dist → src}/converters/table-cell-paragraph-post-fixer.d.ts +1 -5
  116. package/src/converters/table-cell-paragraph-post-fixer.js +109 -0
  117. package/{dist → src}/converters/table-cell-refresh-handler.d.ts +1 -5
  118. package/src/converters/table-cell-refresh-handler.js +47 -0
  119. package/{dist → src}/converters/table-headings-refresh-handler.d.ts +1 -5
  120. package/src/converters/table-headings-refresh-handler.js +51 -0
  121. package/{dist → src}/converters/table-layout-post-fixer.d.ts +1 -5
  122. package/src/converters/table-layout-post-fixer.js +369 -0
  123. package/{dist → src}/converters/tableproperties.d.ts +2 -6
  124. package/src/converters/tableproperties.js +444 -0
  125. package/{dist → src}/converters/upcasttable.d.ts +1 -5
  126. package/src/converters/upcasttable.js +385 -0
  127. package/{dist → src}/index.d.ts +5 -6
  128. package/src/index.js +98 -0
  129. package/{dist → src}/plaintableoutput.d.ts +1 -5
  130. package/src/plaintableoutput.js +49 -0
  131. package/{dist → src}/table.d.ts +2 -6
  132. package/src/table.js +50 -0
  133. package/{dist → src}/tablecaption/tablecaptionediting.d.ts +2 -6
  134. package/src/tablecaption/tablecaptionediting.js +136 -0
  135. package/{dist → src}/tablecaption/tablecaptionui.d.ts +1 -5
  136. package/src/tablecaption/tablecaptionui.js +64 -0
  137. package/{dist → src}/tablecaption/toggletablecaptioncommand.d.ts +1 -5
  138. package/src/tablecaption/toggletablecaptioncommand.js +105 -0
  139. package/{dist → src}/tablecaption/utils.d.ts +1 -5
  140. package/src/tablecaption/utils.js +61 -0
  141. package/{dist → src}/tablecaption.d.ts +1 -5
  142. package/src/tablecaption.js +34 -0
  143. package/{dist → src}/tablecellproperties/commands/tablecellbackgroundcolorcommand.d.ts +1 -5
  144. package/src/tablecellproperties/commands/tablecellbackgroundcolorcommand.js +30 -0
  145. package/{dist → src}/tablecellproperties/commands/tablecellbordercolorcommand.d.ts +2 -6
  146. package/src/tablecellproperties/commands/tablecellbordercolorcommand.js +44 -0
  147. package/{dist → src}/tablecellproperties/commands/tablecellborderstylecommand.d.ts +2 -6
  148. package/src/tablecellproperties/commands/tablecellborderstylecommand.js +44 -0
  149. package/{dist → src}/tablecellproperties/commands/tablecellborderwidthcommand.d.ts +2 -6
  150. package/src/tablecellproperties/commands/tablecellborderwidthcommand.js +64 -0
  151. package/{dist → src}/tablecellproperties/commands/tablecellheightcommand.d.ts +1 -5
  152. package/src/tablecellproperties/commands/tablecellheightcommand.js +51 -0
  153. package/{dist → src}/tablecellproperties/commands/tablecellhorizontalalignmentcommand.d.ts +1 -5
  154. package/src/tablecellproperties/commands/tablecellhorizontalalignmentcommand.js +30 -0
  155. package/{dist → src}/tablecellproperties/commands/tablecellpaddingcommand.d.ts +2 -6
  156. package/src/tablecellproperties/commands/tablecellpaddingcommand.js +64 -0
  157. package/{dist → src}/tablecellproperties/commands/tablecellpropertycommand.d.ts +2 -6
  158. package/src/tablecellproperties/commands/tablecellpropertycommand.js +138 -0
  159. package/{dist → src}/tablecellproperties/commands/tablecelltypecommand.d.ts +6 -6
  160. package/src/tablecellproperties/commands/tablecelltypecommand.js +167 -0
  161. package/{dist → src}/tablecellproperties/commands/tablecellverticalalignmentcommand.d.ts +1 -5
  162. package/src/tablecellproperties/commands/tablecellverticalalignmentcommand.js +38 -0
  163. package/{dist → src}/tablecellproperties/tablecellpropertiesediting.d.ts +1 -5
  164. package/src/tablecellproperties/tablecellpropertiesediting.js +412 -0
  165. package/{dist → src}/tablecellproperties/tablecellpropertiesui.d.ts +2 -6
  166. package/src/tablecellproperties/tablecellpropertiesui.js +385 -0
  167. package/src/tablecellproperties/tablecellpropertiesuiexperimental.d.ts +128 -0
  168. package/src/tablecellproperties/tablecellpropertiesuiexperimental.js +408 -0
  169. package/src/tablecellproperties/ui/tablecellpropertiesview.d.ts +229 -0
  170. package/src/tablecellproperties/ui/tablecellpropertiesview.js +612 -0
  171. package/{dist/tablecellproperties/ui/tablecellpropertiesview.d.ts → src/tablecellproperties/ui/tablecellpropertiesviewexperimental.d.ts} +12 -15
  172. package/src/tablecellproperties/ui/tablecellpropertiesviewexperimental.js +744 -0
  173. package/{dist → src}/tablecellproperties.d.ts +1 -5
  174. package/src/tablecellproperties.js +40 -0
  175. package/{dist → src}/tablecellwidth/commands/tablecellwidthcommand.d.ts +1 -5
  176. package/src/tablecellwidth/commands/tablecellwidthcommand.js +51 -0
  177. package/{dist → src}/tablecellwidth/tablecellwidthediting.d.ts +1 -5
  178. package/src/tablecellwidth/tablecellwidthediting.js +53 -0
  179. package/{dist → src}/tableclipboard.d.ts +3 -7
  180. package/src/tableclipboard.js +500 -0
  181. package/{dist → src}/tablecolumnresize/constants.d.ts +0 -4
  182. package/src/tablecolumnresize/constants.js +33 -0
  183. package/{dist → src}/tablecolumnresize/converters.d.ts +1 -5
  184. package/src/tablecolumnresize/converters.js +62 -0
  185. package/{dist → src}/tablecolumnresize/tablecolumnresizeediting.d.ts +2 -6
  186. package/src/tablecolumnresize/tablecolumnresizeediting.js +729 -0
  187. package/{dist → src}/tablecolumnresize/tablewidthscommand.d.ts +2 -6
  188. package/src/tablecolumnresize/tablewidthscommand.js +61 -0
  189. package/{dist → src}/tablecolumnresize/utils.d.ts +2 -6
  190. package/src/tablecolumnresize/utils.js +370 -0
  191. package/{dist → src}/tablecolumnresize.d.ts +1 -5
  192. package/src/tablecolumnresize.js +36 -0
  193. package/{dist → src}/tableconfig.d.ts +6 -30
  194. package/src/tableconfig.js +5 -0
  195. package/{dist → src}/tableediting.d.ts +2 -6
  196. package/src/tableediting.js +246 -0
  197. package/{dist → src}/tablekeyboard.d.ts +3 -7
  198. package/src/tablekeyboard.js +273 -0
  199. package/{dist → src}/tablelayout/commands/tabletypecommand.d.ts +1 -5
  200. package/src/tablelayout/commands/tabletypecommand.js +68 -0
  201. package/{dist → src}/tablelayout/tablelayoutediting.d.ts +1 -5
  202. package/src/tablelayout/tablelayoutediting.js +295 -0
  203. package/{dist → src}/tablelayout/tablelayoutui.d.ts +1 -5
  204. package/src/tablelayout/tablelayoutui.js +196 -0
  205. package/{dist → src}/tablelayout.d.ts +1 -5
  206. package/src/tablelayout.js +37 -0
  207. package/{dist → src}/tablemouse/mouseeventsobserver.d.ts +1 -5
  208. package/src/tablemouse/mouseeventsobserver.js +34 -0
  209. package/{dist → src}/tablemouse.d.ts +1 -5
  210. package/src/tablemouse.js +178 -0
  211. package/{dist → src}/tableproperties/commands/tablealignmentcommand.d.ts +1 -5
  212. package/src/tableproperties/commands/tablealignmentcommand.js +30 -0
  213. package/{dist → src}/tableproperties/commands/tablebackgroundcolorcommand.d.ts +1 -5
  214. package/src/tableproperties/commands/tablebackgroundcolorcommand.js +30 -0
  215. package/{dist → src}/tableproperties/commands/tablebordercolorcommand.d.ts +2 -6
  216. package/src/tableproperties/commands/tablebordercolorcommand.js +44 -0
  217. package/{dist → src}/tableproperties/commands/tableborderstylecommand.d.ts +2 -6
  218. package/src/tableproperties/commands/tableborderstylecommand.js +44 -0
  219. package/{dist → src}/tableproperties/commands/tableborderwidthcommand.d.ts +2 -6
  220. package/src/tableproperties/commands/tableborderwidthcommand.js +64 -0
  221. package/{dist → src}/tableproperties/commands/tableheightcommand.d.ts +1 -5
  222. package/src/tableproperties/commands/tableheightcommand.js +54 -0
  223. package/{dist → src}/tableproperties/commands/tablepropertycommand.d.ts +2 -6
  224. package/src/tableproperties/commands/tablepropertycommand.js +103 -0
  225. package/{dist → src}/tableproperties/commands/tablewidthcommand.d.ts +1 -5
  226. package/src/tableproperties/commands/tablewidthcommand.js +54 -0
  227. package/{dist → src}/tableproperties/tablepropertiesediting.d.ts +1 -5
  228. package/src/tableproperties/tablepropertiesediting.js +546 -0
  229. package/{dist → src}/tableproperties/tablepropertiesui.d.ts +2 -6
  230. package/src/tableproperties/tablepropertiesui.js +374 -0
  231. package/src/tableproperties/tablepropertiesuiexperimental.d.ts +136 -0
  232. package/src/tableproperties/tablepropertiesuiexperimental.js +375 -0
  233. package/{dist → src}/tableproperties/ui/tablepropertiesview.d.ts +2 -14
  234. package/src/tableproperties/ui/tablepropertiesview.js +520 -0
  235. package/src/tableproperties/ui/tablepropertiesviewexperimental.d.ts +216 -0
  236. package/src/tableproperties/ui/tablepropertiesviewexperimental.js +544 -0
  237. package/{dist → src}/tableproperties.d.ts +1 -5
  238. package/src/tableproperties.js +40 -0
  239. package/{dist → src}/tableselection.d.ts +2 -6
  240. package/src/tableselection.js +323 -0
  241. package/{dist → src}/tabletoolbar.d.ts +2 -6
  242. package/src/tabletoolbar.js +63 -0
  243. package/{dist → src}/tableui.d.ts +1 -5
  244. package/src/tableui.js +335 -0
  245. package/{dist → src}/tableutils.d.ts +2 -6
  246. package/src/tableutils.js +1282 -0
  247. package/{dist → src}/tablewalker.d.ts +1 -5
  248. package/src/tablewalker.js +489 -0
  249. package/{dist → src}/ui/colorinputview.d.ts +2 -6
  250. package/src/ui/colorinputview.js +305 -0
  251. package/{dist → src}/ui/inserttableview.d.ts +2 -6
  252. package/src/ui/inserttableview.js +192 -0
  253. package/{dist → src}/utils/common.d.ts +2 -6
  254. package/src/utils/common.js +118 -0
  255. package/{dist → src}/utils/structure.d.ts +1 -5
  256. package/src/utils/structure.js +452 -0
  257. package/{dist → src}/utils/table-properties.d.ts +1 -5
  258. package/src/utils/table-properties.js +121 -0
  259. package/{dist → src}/utils/ui/contextualballoon.d.ts +2 -6
  260. package/src/utils/ui/contextualballoon.js +111 -0
  261. package/{dist → src}/utils/ui/table-properties.d.ts +2 -6
  262. package/src/utils/ui/table-properties.js +390 -0
  263. package/src/utils/ui/table-propertiesexperimental.d.ts +215 -0
  264. package/src/utils/ui/table-propertiesexperimental.js +391 -0
  265. package/{dist → src}/utils/ui/widget.d.ts +1 -5
  266. package/src/utils/ui/widget.js +56 -0
  267. package/theme/formrow-experimental.css +15 -0
  268. package/theme/formrow.css +0 -2
  269. package/theme/tablecellproperties-experimental.css +4 -0
  270. package/theme/tableform-experimental.css +61 -0
  271. package/theme/tableform.css +5 -1
  272. package/theme/tableproperties-experimental.css +78 -0
  273. package/theme/tableproperties.css +0 -60
  274. package/dist/tablecellproperties/tablecellpropertiesutils.d.ts +0 -22
@@ -0,0 +1,729 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ /**
6
+ * @module table/tablecolumnresize/tablecolumnresizeediting
7
+ */
8
+ import { throttle, isEqual } from 'es-toolkit/compat';
9
+ import { global, DomEmitterMixin, Rect, toUnit } from 'ckeditor5/src/utils.js';
10
+ import { Plugin } from 'ckeditor5/src/core.js';
11
+ import { MouseEventsObserver } from '../../src/tablemouse/mouseeventsobserver.js';
12
+ import { TableEditing } from '../tableediting.js';
13
+ import { TableUtils } from '../tableutils.js';
14
+ import { TableWalker } from '../tablewalker.js';
15
+ import { TableWidthsCommand } from './tablewidthscommand.js';
16
+ import { downcastTableResizedClass, upcastColgroupElement, upcastTableResizedClass } from './converters.js';
17
+ import { clamp, createFilledArray, sumArray, getColumnEdgesIndexes, getChangedResizedTables, getColumnMinWidthAsPercentage, getElementWidthInPixels, getTableWidthInPixels, normalizeColumnWidths, toPrecision, getDomCellOuterWidth, updateColumnElements, getColumnGroupElement, getTableColumnElements, getTableColumnsWidths } from './utils.js';
18
+ import { COLUMN_MIN_WIDTH_IN_PIXELS, COLUMN_RESIZE_DISTANCE_THRESHOLD } from './constants.js';
19
+ const toPx = /* #__PURE__ */ toUnit('px');
20
+ /**
21
+ * The table column resize editing plugin.
22
+ */
23
+ export class TableColumnResizeEditing extends Plugin {
24
+ /**
25
+ * A flag indicating if the column resizing is in progress.
26
+ */
27
+ _isResizingActive;
28
+ /**
29
+ * A temporary storage for the required data needed to correctly calculate the widths of the resized columns. This storage is
30
+ * initialized when column resizing begins, and is purged upon completion.
31
+ */
32
+ _resizingData;
33
+ /**
34
+ * DOM emitter.
35
+ */
36
+ _domEmitter;
37
+ /**
38
+ * A local reference to the {@link module:table/tableutils~TableUtils} plugin.
39
+ */
40
+ _tableUtilsPlugin;
41
+ /**
42
+ * Starting mouse position data used to add a threshold to the resizing process.
43
+ */
44
+ _initialMouseEventData = null;
45
+ /**
46
+ * @inheritDoc
47
+ */
48
+ static get requires() {
49
+ return [TableEditing, TableUtils];
50
+ }
51
+ /**
52
+ * @inheritDoc
53
+ */
54
+ static get pluginName() {
55
+ return 'TableColumnResizeEditing';
56
+ }
57
+ /**
58
+ * @inheritDoc
59
+ * @internal
60
+ */
61
+ static get licenseFeatureCode() {
62
+ return 'TCR';
63
+ }
64
+ /**
65
+ * @inheritDoc
66
+ */
67
+ static get isOfficialPlugin() {
68
+ return true;
69
+ }
70
+ /**
71
+ * @inheritDoc
72
+ */
73
+ static get isPremiumPlugin() {
74
+ return true;
75
+ }
76
+ /**
77
+ * @inheritDoc
78
+ */
79
+ constructor(editor) {
80
+ super(editor);
81
+ this._isResizingActive = false;
82
+ this.set('_isResizingAllowed', true);
83
+ this._resizingData = null;
84
+ this._domEmitter = new (DomEmitterMixin())();
85
+ this._tableUtilsPlugin = editor.plugins.get('TableUtils');
86
+ this.on('change:_isResizingAllowed', (evt, name, value) => {
87
+ // Toggling the `ck-column-resize_disabled` class shows and hides the resizers through CSS.
88
+ const classAction = value ? 'removeClass' : 'addClass';
89
+ editor.editing.view.change(writer => {
90
+ for (const root of editor.editing.view.document.roots) {
91
+ writer[classAction]('ck-column-resize_disabled', editor.editing.view.document.getRoot(root.rootName));
92
+ }
93
+ });
94
+ });
95
+ }
96
+ /**
97
+ * @inheritDoc
98
+ */
99
+ init() {
100
+ this._extendSchema();
101
+ this._registerPostFixer();
102
+ this._registerConverters();
103
+ this._registerResizingListeners();
104
+ this._registerResizerInserter();
105
+ const editor = this.editor;
106
+ const columnResizePlugin = editor.plugins.get('TableColumnResize');
107
+ const tableEditing = editor.plugins.get('TableEditing');
108
+ tableEditing.registerAdditionalSlot({
109
+ filter: element => element.is('element', 'tableColumnGroup'),
110
+ positionOffset: 0
111
+ });
112
+ const tableWidthsCommand = new TableWidthsCommand(editor);
113
+ // For backwards compatibility we have two commands that perform exactly the same operation.
114
+ editor.commands.add('resizeTableWidth', tableWidthsCommand);
115
+ editor.commands.add('resizeColumnWidths', tableWidthsCommand);
116
+ // Currently the states of column resize and table resize (which is actually the last column resize) features
117
+ // are bound together. They can be separated in the future by adding distinct listeners and applying
118
+ // different CSS classes (e.g. `ck-column-resize_disabled` and `ck-table-resize_disabled`) to the editor root.
119
+ // See #12148 for the details.
120
+ this.bind('_isResizingAllowed').to(editor, 'isReadOnly', columnResizePlugin, 'isEnabled', tableWidthsCommand, 'isEnabled', (isEditorReadOnly, isPluginEnabled, isTableWidthsCommandCommandEnabled) => !isEditorReadOnly && isPluginEnabled && isTableWidthsCommandCommandEnabled);
121
+ }
122
+ /**
123
+ * @inheritDoc
124
+ */
125
+ destroy() {
126
+ this._domEmitter.stopListening();
127
+ super.destroy();
128
+ }
129
+ /**
130
+ * Returns a 'tableColumnGroup' element from the 'table'.
131
+ *
132
+ * @param element A 'table' or 'tableColumnGroup' element.
133
+ * @returns A 'tableColumnGroup' element.
134
+ */
135
+ getColumnGroupElement(element) {
136
+ return getColumnGroupElement(element);
137
+ }
138
+ /**
139
+ * Returns an array of 'tableColumn' elements.
140
+ *
141
+ * @param element A 'table' or 'tableColumnGroup' element.
142
+ * @returns An array of 'tableColumn' elements.
143
+ */
144
+ getTableColumnElements(element) {
145
+ return getTableColumnElements(element);
146
+ }
147
+ /**
148
+ * Returns an array of table column widths.
149
+ *
150
+ * @param element A 'table' or 'tableColumnGroup' element.
151
+ * @returns An array of table column widths.
152
+ */
153
+ getTableColumnsWidths(element) {
154
+ return getTableColumnsWidths(element);
155
+ }
156
+ /**
157
+ * Registers new attributes for a table model element.
158
+ */
159
+ _extendSchema() {
160
+ const schema = this.editor.model.schema;
161
+ schema.extend('table', {
162
+ allowAttributes: ['tableWidth']
163
+ });
164
+ schema.register('tableColumnGroup', {
165
+ allowIn: 'table',
166
+ isLimit: true
167
+ });
168
+ schema.register('tableColumn', {
169
+ allowIn: 'tableColumnGroup',
170
+ allowAttributes: ['columnWidth', 'colSpan'],
171
+ isLimit: true
172
+ });
173
+ schema.setAttributeProperties('columnWidth', { isFormatting: true });
174
+ }
175
+ /**
176
+ * Registers table column resize post-fixer.
177
+ *
178
+ * It checks if the change from the differ concerns a table-related element or attribute. For detected changes it:
179
+ * * Adjusts the `columnWidths` attribute to guarantee that the sum of the widths from all columns is 100%.
180
+ * * Checks if the `columnWidths` attribute gets updated accordingly after columns have been added or removed.
181
+ */
182
+ _registerPostFixer() {
183
+ const editor = this.editor;
184
+ const model = editor.model;
185
+ model.document.registerPostFixer(writer => {
186
+ let changed = false;
187
+ for (const table of getChangedResizedTables(model)) {
188
+ const tableColumnGroup = this.getColumnGroupElement(table);
189
+ const columns = this.getTableColumnElements(tableColumnGroup);
190
+ const columnWidths = this.getTableColumnsWidths(tableColumnGroup);
191
+ // Adjust the `columnWidths` attribute to guarantee that the sum of the widths from all columns is 100%.
192
+ let normalizedWidths = normalizeColumnWidths(columnWidths);
193
+ // If the number of columns has changed, then we need to adjust the widths of the affected columns.
194
+ normalizedWidths = adjustColumnWidths(normalizedWidths, table, this);
195
+ if (isEqual(columnWidths, normalizedWidths)) {
196
+ continue;
197
+ }
198
+ updateColumnElements(columns, tableColumnGroup, normalizedWidths, writer);
199
+ changed = true;
200
+ }
201
+ return changed;
202
+ });
203
+ /**
204
+ * Adjusts if necessary the `columnWidths` in case if the number of column has changed.
205
+ *
206
+ * @param columnWidths Note: this array **may be modified** by the function.
207
+ * @param table Table to be checked.
208
+ */
209
+ function adjustColumnWidths(columnWidths, table, plugin) {
210
+ const newTableColumnsCount = plugin._tableUtilsPlugin.getColumns(table);
211
+ const columnsCountDelta = newTableColumnsCount - columnWidths.length;
212
+ if (columnsCountDelta === 0) {
213
+ return columnWidths;
214
+ }
215
+ const widths = columnWidths.map(width => Number(width.replace('%', '')));
216
+ // Collect all cells that are affected by the change.
217
+ const cellSet = getAffectedCells(plugin.editor.model.document.differ, table);
218
+ for (const cell of cellSet) {
219
+ const currentColumnsDelta = newTableColumnsCount - widths.length;
220
+ if (currentColumnsDelta === 0) {
221
+ continue;
222
+ }
223
+ // If the column count in the table changed, adjust the widths of the affected columns.
224
+ const hasMoreColumns = currentColumnsDelta > 0;
225
+ const currentColumnIndex = plugin._tableUtilsPlugin.getCellLocation(cell).column;
226
+ if (hasMoreColumns) {
227
+ const columnMinWidthAsPercentage = getColumnMinWidthAsPercentage(table, plugin.editor);
228
+ const columnWidthsToInsert = createFilledArray(currentColumnsDelta, columnMinWidthAsPercentage);
229
+ widths.splice(currentColumnIndex, 0, ...columnWidthsToInsert);
230
+ }
231
+ else {
232
+ // Moves the widths of the removed columns to the preceding one.
233
+ // Other editors either reduce the width of the whole table or adjust the widths
234
+ // proportionally, so change of this behavior can be considered in the future.
235
+ const removedColumnWidths = widths.splice(currentColumnIndex, Math.abs(currentColumnsDelta));
236
+ widths[currentColumnIndex] += sumArray(removedColumnWidths);
237
+ }
238
+ }
239
+ return widths.map(width => width + '%');
240
+ }
241
+ /**
242
+ * Returns a set of cells that have been changed in a given table.
243
+ */
244
+ function getAffectedCells(differ, table) {
245
+ const cellSet = new Set();
246
+ for (const change of differ.getChanges()) {
247
+ if (change.type == 'insert' &&
248
+ change.position.nodeAfter &&
249
+ change.position.nodeAfter.name == 'tableCell' &&
250
+ change.position.nodeAfter.getAncestors().includes(table)) {
251
+ cellSet.add(change.position.nodeAfter);
252
+ }
253
+ else if (change.type == 'remove') {
254
+ // If the first cell was removed, use the node after the change position instead.
255
+ const referenceNode = (change.position.nodeBefore || change.position.nodeAfter);
256
+ if (referenceNode.name == 'tableCell' && referenceNode.getAncestors().includes(table)) {
257
+ cellSet.add(referenceNode);
258
+ }
259
+ }
260
+ }
261
+ return cellSet;
262
+ }
263
+ }
264
+ /**
265
+ * Registers table column resize converters.
266
+ */
267
+ _registerConverters() {
268
+ const editor = this.editor;
269
+ const conversion = editor.conversion;
270
+ // Table width style
271
+ conversion.for('upcast').attributeToAttribute({
272
+ view: {
273
+ name: /^(figure|table)$/,
274
+ styles: {
275
+ width: /[\s\S]+/
276
+ }
277
+ },
278
+ model: {
279
+ key: 'tableWidth',
280
+ value: (viewElement) => {
281
+ const parent = viewElement.parent;
282
+ if (parent.is('element', 'figure')) {
283
+ return;
284
+ }
285
+ return viewElement.getStyle('width');
286
+ }
287
+ }
288
+ });
289
+ conversion.for('downcast').attributeToAttribute({
290
+ model: {
291
+ name: 'table',
292
+ key: 'tableWidth'
293
+ },
294
+ view: (width) => ({
295
+ name: 'figure',
296
+ key: 'style',
297
+ value: {
298
+ width
299
+ }
300
+ })
301
+ });
302
+ conversion.elementToElement({ model: 'tableColumnGroup', view: 'colgroup' });
303
+ conversion.elementToElement({ model: 'tableColumn', view: 'col' });
304
+ conversion.for('downcast').add(downcastTableResizedClass());
305
+ conversion.for('upcast').add(upcastTableResizedClass());
306
+ conversion.for('upcast').add(upcastColgroupElement(this._tableUtilsPlugin));
307
+ conversion.for('upcast').attributeToAttribute({
308
+ view: {
309
+ name: 'col',
310
+ styles: {
311
+ width: /.*/
312
+ }
313
+ },
314
+ model: {
315
+ key: 'columnWidth',
316
+ value: (viewElement) => {
317
+ const viewColWidth = viewElement.getStyle('width');
318
+ // 'pt' is the default unit for table column width pasted from MS Office.
319
+ // See https://github.com/ckeditor/ckeditor5/issues/14521#issuecomment-1662102889 for more details.
320
+ if (!viewColWidth || (!viewColWidth.endsWith('%') && !viewColWidth.endsWith('pt'))) {
321
+ return 'auto';
322
+ }
323
+ return viewColWidth;
324
+ }
325
+ }
326
+ });
327
+ // The `col[span]` attribute is present in tables pasted from MS Excel. We use it to set the temporary `colSpan` model attribute,
328
+ // which is consumed during the `colgroup` element upcast.
329
+ // See https://github.com/ckeditor/ckeditor5/issues/14521#issuecomment-1662102889 for more details.
330
+ conversion.for('upcast').attributeToAttribute({
331
+ view: {
332
+ name: 'col',
333
+ key: 'span'
334
+ },
335
+ model: 'colSpan'
336
+ });
337
+ conversion.for('downcast').attributeToAttribute({
338
+ model: {
339
+ name: 'tableColumn',
340
+ key: 'columnWidth'
341
+ },
342
+ view: width => ({ key: 'style', value: { width } })
343
+ });
344
+ }
345
+ /**
346
+ * Registers listeners to handle resizing process.
347
+ */
348
+ _registerResizingListeners() {
349
+ const editingView = this.editor.editing.view;
350
+ editingView.addObserver(MouseEventsObserver);
351
+ editingView.document.on('mouseover', this._onMouseOverHandler.bind(this), { priority: 'high' });
352
+ editingView.document.on('mousedown', this._onMouseDownHandler.bind(this), { priority: 'high' });
353
+ editingView.document.on('mouseout', this._onMouseOutHandler.bind(this), { priority: 'high' });
354
+ this._domEmitter.listenTo(global.window.document, 'mousemove', throttle(this._onMouseMoveHandler.bind(this), 50));
355
+ this._domEmitter.listenTo(global.window.document, 'mouseup', this._onMouseUpHandler.bind(this));
356
+ }
357
+ /**
358
+ * Calculate and set `top` and `bottom` styles to the column resizer element to fit the height of the table.
359
+ *
360
+ * @param viewResizer The column resizer element.
361
+ */
362
+ _recalculateResizerElement(viewResizer) {
363
+ const editor = this.editor;
364
+ const domConverter = editor.editing.view.domConverter;
365
+ // Get DOM target figure ancestor element.
366
+ const domTable = domConverter.mapViewToDom(viewResizer.findAncestor('table'));
367
+ // Get DOM table cell element.
368
+ const domCell = domConverter.mapViewToDom(viewResizer.findAncestor(item => ['td', 'th'].includes(item.name)));
369
+ const rectTable = new Rect(domTable);
370
+ const rectCell = new Rect(domCell);
371
+ // Calculate the top, and bottom positions of the column resizer element.
372
+ const targetTopPosition = toPx(Number((rectTable.top - rectCell.top).toFixed(4)));
373
+ const targetBottomPosition = toPx(Number((rectCell.bottom - rectTable.bottom).toFixed(4)));
374
+ // Set `top` and `bottom` styles to the column resizer element.
375
+ editor.editing.view.change(viewWriter => {
376
+ viewWriter.setStyle('top', targetTopPosition, viewResizer);
377
+ viewWriter.setStyle('bottom', targetBottomPosition, viewResizer);
378
+ });
379
+ }
380
+ /**
381
+ * Remove `top` and `bottom` styles of the column resizer element.
382
+ *
383
+ * @param viewResizer The column resizer element.
384
+ */
385
+ _resetResizerStyles(viewResizer) {
386
+ this.editor.editing.view.change(viewWriter => {
387
+ viewWriter.removeStyle('top', viewResizer);
388
+ viewWriter.removeStyle('bottom', viewResizer);
389
+ });
390
+ }
391
+ /**
392
+ * Handles the `mouseover` event on column resizer element.
393
+ * Recalculates the `top` and `bottom` styles of the column resizer element to fit the height of the table.
394
+ *
395
+ * @param eventInfo An object containing information about the fired event.
396
+ * @param domEventData The data related to the DOM event.
397
+ */
398
+ _onMouseOverHandler(eventInfo, domEventData) {
399
+ const target = domEventData.target;
400
+ if (!target.hasClass('ck-table-column-resizer')) {
401
+ return;
402
+ }
403
+ if (!this._isResizingAllowed) {
404
+ return;
405
+ }
406
+ this._recalculateResizerElement(target);
407
+ }
408
+ /**
409
+ * Handles the `mouseout` event on column resizer element.
410
+ * When resizing is not active, it resets the `top` and `bottom` styles of the column resizer element.
411
+ *
412
+ * @param eventInfo An object containing information about the fired event.
413
+ * @param domEventData The data related to the DOM event.
414
+ */
415
+ _onMouseOutHandler(eventInfo, domEventData) {
416
+ const target = domEventData.target;
417
+ if (!target.hasClass('ck-table-column-resizer')) {
418
+ return;
419
+ }
420
+ if (!this._isResizingAllowed) {
421
+ return;
422
+ }
423
+ if (this._isResizingActive) {
424
+ return;
425
+ }
426
+ this._resetResizerStyles(target);
427
+ }
428
+ /**
429
+ * Handles the `mousedown` event on column resizer element:
430
+ * * calculates the initial column pixel widths,
431
+ * * inserts the `<colgroup>` element if it is not present in the `<table>`,
432
+ * * puts the necessary data in the temporary storage,
433
+ * * applies the attributes to the `<table>` view element.
434
+ *
435
+ * @param eventInfo An object containing information about the fired event.
436
+ * @param domEventData The data related to the DOM event.
437
+ */
438
+ _onMouseDownHandler(eventInfo, domEventData) {
439
+ const target = domEventData.target;
440
+ if (!target.hasClass('ck-table-column-resizer')) {
441
+ return;
442
+ }
443
+ if (!this._isResizingAllowed) {
444
+ return;
445
+ }
446
+ const editor = this.editor;
447
+ const modelTable = editor.editing.mapper.toModelElement(target.findAncestor('figure'));
448
+ // Do not resize if table model is in non-editable place.
449
+ if (!editor.model.canEditAt(modelTable)) {
450
+ return;
451
+ }
452
+ domEventData.preventDefault();
453
+ eventInfo.stop();
454
+ this._initialMouseEventData = domEventData;
455
+ }
456
+ /**
457
+ * Starts the resizing process after the threshold is reached.
458
+ */
459
+ _startResizingAfterThreshold() {
460
+ const domEventData = this._initialMouseEventData;
461
+ const { target } = domEventData;
462
+ const modelTable = this.editor.editing.mapper.toModelElement(target.findAncestor('figure'));
463
+ const viewTable = target.findAncestor('table');
464
+ // Calculate the initial column widths in pixels.
465
+ const columnWidthsInPx = _calculateDomColumnWidths(modelTable, this._tableUtilsPlugin, this.editor);
466
+ // Insert colgroup for the table that is resized for the first time.
467
+ if (!Array.from(viewTable.getChildren()).find(viewCol => viewCol.is('element', 'colgroup'))) {
468
+ this.editor.editing.view.change(viewWriter => {
469
+ _insertColgroupElement(viewWriter, columnWidthsInPx, viewTable);
470
+ });
471
+ }
472
+ this._isResizingActive = true;
473
+ this._resizingData = this._getResizingData(domEventData, columnWidthsInPx);
474
+ // At this point we change only the editor view - we don't want other users to see our changes yet,
475
+ // so we can't apply them in the model.
476
+ this.editor.editing.view.change(writer => _applyResizingAttributesToTable(writer, viewTable, this._resizingData));
477
+ /**
478
+ * Calculates the DOM columns' widths. It is done by taking the width of the widest cell
479
+ * from each table column (we rely on the {@link module:table/tablewalker~TableWalker}
480
+ * to determine which column the cell belongs to).
481
+ *
482
+ * @param modelTable A table which columns should be measured.
483
+ * @param tableUtils The Table Utils plugin instance.
484
+ * @param editor The editor instance.
485
+ * @returns Columns' widths expressed in pixels (without unit).
486
+ */
487
+ function _calculateDomColumnWidths(modelTable, tableUtilsPlugin, editor) {
488
+ const columnWidthsInPx = Array(tableUtilsPlugin.getColumns(modelTable));
489
+ const tableWalker = new TableWalker(modelTable);
490
+ for (const cellSlot of tableWalker) {
491
+ const viewCell = editor.editing.mapper.toViewElement(cellSlot.cell);
492
+ const domCell = editor.editing.view.domConverter.mapViewToDom(viewCell);
493
+ const domCellWidth = getDomCellOuterWidth(domCell);
494
+ if (!columnWidthsInPx[cellSlot.column] || domCellWidth < columnWidthsInPx[cellSlot.column]) {
495
+ columnWidthsInPx[cellSlot.column] = toPrecision(domCellWidth);
496
+ }
497
+ }
498
+ return columnWidthsInPx;
499
+ }
500
+ /**
501
+ * Creates a `<colgroup>` element with `<col>`s and inserts it into a given view table.
502
+ *
503
+ * @param viewWriter A writer instance.
504
+ * @param columnWidthsInPx Column widths.
505
+ * @param viewTable A table view element.
506
+ */
507
+ function _insertColgroupElement(viewWriter, columnWidthsInPx, viewTable) {
508
+ const colgroup = viewWriter.createContainerElement('colgroup');
509
+ for (let i = 0; i < columnWidthsInPx.length; i++) {
510
+ const viewColElement = viewWriter.createEmptyElement('col');
511
+ const columnWidthInPc = `${toPrecision(columnWidthsInPx[i] / sumArray(columnWidthsInPx) * 100)}%`;
512
+ viewWriter.setStyle('width', columnWidthInPc, viewColElement);
513
+ viewWriter.insert(viewWriter.createPositionAt(colgroup, 'end'), viewColElement);
514
+ }
515
+ viewWriter.insert(viewWriter.createPositionAt(viewTable, 0), colgroup);
516
+ }
517
+ /**
518
+ * Applies the style and classes to the view table as the resizing begun.
519
+ *
520
+ * @param viewWriter A writer instance.
521
+ * @param viewTable A table containing the clicked resizer.
522
+ * @param resizingData Data related to the resizing.
523
+ */
524
+ function _applyResizingAttributesToTable(viewWriter, viewTable, resizingData) {
525
+ const figureInitialPcWidth = resizingData.widths.viewFigureWidth / resizingData.widths.viewFigureParentWidth;
526
+ viewWriter.addClass('ck-table-resized', viewTable);
527
+ viewWriter.addClass('ck-table-column-resizer__active', resizingData.elements.viewResizer);
528
+ viewWriter.setStyle('width', `${toPrecision(figureInitialPcWidth * 100)}%`, viewTable.findAncestor('figure'));
529
+ }
530
+ }
531
+ /**
532
+ * Handles the `mousemove` event.
533
+ * * If resizing process is not in progress, it does nothing.
534
+ * * If resizing is active but not allowed, it stops the resizing process instantly calling the `mousedown` event handler.
535
+ * * Otherwise it dynamically updates the widths of the resized columns.
536
+ *
537
+ * @param eventInfo An object containing information about the fired event.
538
+ * @param mouseEventData The native DOM event.
539
+ */
540
+ _onMouseMoveHandler(eventInfo, mouseEventData) {
541
+ if (this._initialMouseEventData) {
542
+ const mouseEvent = this._initialMouseEventData.domEvent;
543
+ const distanceX = Math.abs(mouseEventData.clientX - mouseEvent.clientX);
544
+ if (distanceX >= COLUMN_RESIZE_DISTANCE_THRESHOLD) {
545
+ this._startResizingAfterThreshold();
546
+ this._initialMouseEventData = null;
547
+ }
548
+ else {
549
+ return;
550
+ }
551
+ }
552
+ if (!this._isResizingActive) {
553
+ return;
554
+ }
555
+ if (!this._isResizingAllowed) {
556
+ this._onMouseUpHandler();
557
+ return;
558
+ }
559
+ const { columnPosition, flags: { isRightEdge, isTableCentered, isLtrContent }, elements: { viewFigure, viewLeftColumn, viewRightColumn, viewResizer }, widths: { viewFigureParentWidth, tableWidth, leftColumnWidth, rightColumnWidth } } = this._resizingData;
560
+ const dxLowerBound = -leftColumnWidth + COLUMN_MIN_WIDTH_IN_PIXELS;
561
+ const dxUpperBound = isRightEdge ?
562
+ viewFigureParentWidth - tableWidth :
563
+ rightColumnWidth - COLUMN_MIN_WIDTH_IN_PIXELS;
564
+ // The multiplier is needed for calculating the proper movement offset:
565
+ // - it should negate the sign if content language direction is right-to-left,
566
+ // - it should double the offset if the table edge is resized and table is centered.
567
+ const multiplier = (isLtrContent ? 1 : -1) * (isRightEdge && isTableCentered ? 2 : 1);
568
+ const dx = clamp((mouseEventData.clientX - columnPosition) * multiplier, Math.min(dxLowerBound, 0), Math.max(dxUpperBound, 0));
569
+ if (dx === 0) {
570
+ return;
571
+ }
572
+ this.editor.editing.view.change(writer => {
573
+ const leftColumnWidthAsPercentage = toPrecision((leftColumnWidth + dx) * 100 / tableWidth);
574
+ writer.setStyle('width', `${leftColumnWidthAsPercentage}%`, viewLeftColumn);
575
+ if (isRightEdge) {
576
+ const tableWidthAsPercentage = toPrecision((tableWidth + dx) * 100 / viewFigureParentWidth);
577
+ writer.setStyle('width', `${tableWidthAsPercentage}%`, viewFigure);
578
+ }
579
+ else {
580
+ const rightColumnWidthAsPercentage = toPrecision((rightColumnWidth - dx) * 100 / tableWidth);
581
+ writer.setStyle('width', `${rightColumnWidthAsPercentage}%`, viewRightColumn);
582
+ }
583
+ });
584
+ this._recalculateResizerElement(viewResizer);
585
+ }
586
+ /**
587
+ * Handles the `mouseup` event.
588
+ * * If resizing process is not in progress, it does nothing.
589
+ * * If resizing is active but not allowed, it cancels the resizing process restoring the original widths.
590
+ * * Otherwise it propagates the changes from view to the model by executing the adequate commands.
591
+ */
592
+ _onMouseUpHandler() {
593
+ this._initialMouseEventData = null;
594
+ if (!this._isResizingActive) {
595
+ return;
596
+ }
597
+ const { viewResizer, modelTable, viewFigure, viewColgroup } = this._resizingData.elements;
598
+ const editor = this.editor;
599
+ const editingView = editor.editing.view;
600
+ const tableColumnGroup = this.getColumnGroupElement(modelTable);
601
+ const viewColumns = Array
602
+ .from(viewColgroup.getChildren())
603
+ .filter((column) => column.is('view:element'));
604
+ const columnWidthsAttributeOld = tableColumnGroup ?
605
+ this.getTableColumnsWidths(tableColumnGroup) :
606
+ null;
607
+ const columnWidthsAttributeNew = viewColumns.map(column => column.getStyle('width'));
608
+ const isColumnWidthsAttributeChanged = !isEqual(columnWidthsAttributeOld, columnWidthsAttributeNew);
609
+ const tableWidthAttributeOld = modelTable.getAttribute('tableWidth');
610
+ const tableWidthAttributeNew = viewFigure.getStyle('width');
611
+ const isTableWidthAttributeChanged = tableWidthAttributeOld !== tableWidthAttributeNew;
612
+ if (isColumnWidthsAttributeChanged || isTableWidthAttributeChanged) {
613
+ if (this._isResizingAllowed) {
614
+ editor.execute('resizeTableWidth', {
615
+ table: modelTable,
616
+ tableWidth: `${toPrecision(tableWidthAttributeNew)}%`,
617
+ columnWidths: columnWidthsAttributeNew
618
+ });
619
+ }
620
+ else {
621
+ // In read-only mode revert all changes in the editing view. The model is not touched so it does not need to be restored.
622
+ // This case can occur if the read-only mode kicks in during the resizing process.
623
+ editingView.change(writer => {
624
+ // If table had resized columns before, restore the previous column widths.
625
+ // Otherwise clean up the view from the temporary column resizing markup.
626
+ if (columnWidthsAttributeOld) {
627
+ for (const viewCol of viewColumns) {
628
+ writer.setStyle('width', columnWidthsAttributeOld.shift(), viewCol);
629
+ }
630
+ }
631
+ else {
632
+ writer.remove(viewColgroup);
633
+ }
634
+ if (isTableWidthAttributeChanged) {
635
+ // If the whole table was already resized before, restore the previous table width.
636
+ // Otherwise clean up the view from the temporary table resizing markup.
637
+ if (tableWidthAttributeOld) {
638
+ writer.setStyle('width', tableWidthAttributeOld, viewFigure);
639
+ }
640
+ else {
641
+ writer.removeStyle('width', viewFigure);
642
+ }
643
+ }
644
+ // If a table and its columns weren't resized before,
645
+ // prune the remaining common resizing markup.
646
+ if (!columnWidthsAttributeOld && !tableWidthAttributeOld) {
647
+ writer.removeClass('ck-table-resized', [...viewFigure.getChildren()].find(element => element.name === 'table'));
648
+ }
649
+ });
650
+ }
651
+ }
652
+ editingView.change(writer => {
653
+ writer.removeClass('ck-table-column-resizer__active', viewResizer);
654
+ });
655
+ const element = editingView.domConverter.mapViewToDom(viewResizer);
656
+ if (!element.matches(':hover')) {
657
+ this._resetResizerStyles(viewResizer);
658
+ }
659
+ this._isResizingActive = false;
660
+ this._resizingData = null;
661
+ }
662
+ /**
663
+ * Retrieves and returns required data needed for the resizing process.
664
+ *
665
+ * @param domEventData The data of the `mousedown` event.
666
+ * @param columnWidths The current widths of the columns.
667
+ * @returns The data needed for the resizing process.
668
+ */
669
+ _getResizingData(domEventData, columnWidths) {
670
+ const editor = this.editor;
671
+ const columnPosition = domEventData.domEvent.clientX;
672
+ const viewResizer = domEventData.target;
673
+ const viewLeftCell = viewResizer.findAncestor('td') || viewResizer.findAncestor('th');
674
+ const modelLeftCell = editor.editing.mapper.toModelElement(viewLeftCell);
675
+ const modelTable = modelLeftCell.findAncestor('table');
676
+ const leftColumnIndex = getColumnEdgesIndexes(modelLeftCell, this._tableUtilsPlugin).rightEdge;
677
+ const lastColumnIndex = this._tableUtilsPlugin.getColumns(modelTable) - 1;
678
+ const isRightEdge = leftColumnIndex === lastColumnIndex;
679
+ const isTableCentered = !modelTable.hasAttribute('tableAlignment');
680
+ const isLtrContent = editor.locale.contentLanguageDirection !== 'rtl';
681
+ const viewTable = viewLeftCell.findAncestor('table');
682
+ const viewFigure = viewTable.findAncestor('figure');
683
+ const viewColgroup = [...viewTable.getChildren()]
684
+ .find(viewCol => viewCol.is('element', 'colgroup'));
685
+ const viewLeftColumn = viewColgroup.getChild(leftColumnIndex);
686
+ const viewRightColumn = isRightEdge ? undefined : viewColgroup.getChild(leftColumnIndex + 1);
687
+ const viewFigureParentWidth = getElementWidthInPixels(editor.editing.view.domConverter.mapViewToDom(viewFigure.parent));
688
+ const viewFigureWidth = getElementWidthInPixels(editor.editing.view.domConverter.mapViewToDom(viewFigure));
689
+ const tableWidth = getTableWidthInPixels(modelTable, editor);
690
+ const leftColumnWidth = columnWidths[leftColumnIndex];
691
+ const rightColumnWidth = isRightEdge ? undefined : columnWidths[leftColumnIndex + 1];
692
+ return {
693
+ columnPosition,
694
+ flags: {
695
+ isRightEdge,
696
+ isTableCentered,
697
+ isLtrContent
698
+ },
699
+ elements: {
700
+ viewResizer,
701
+ modelTable,
702
+ viewFigure,
703
+ viewColgroup,
704
+ viewLeftColumn,
705
+ viewRightColumn
706
+ },
707
+ widths: {
708
+ viewFigureParentWidth,
709
+ viewFigureWidth,
710
+ tableWidth,
711
+ leftColumnWidth,
712
+ rightColumnWidth
713
+ }
714
+ };
715
+ }
716
+ /**
717
+ * Registers a listener ensuring that each resizable cell have a resizer handle.
718
+ */
719
+ _registerResizerInserter() {
720
+ this.editor.conversion.for('editingDowncast').add(dispatcher => {
721
+ dispatcher.on('insert:tableCell', (evt, data, conversionApi) => {
722
+ const modelElement = data.item;
723
+ const viewElement = conversionApi.mapper.toViewElement(modelElement);
724
+ const viewWriter = conversionApi.writer;
725
+ viewWriter.insert(viewWriter.createPositionAt(viewElement, 'end'), viewWriter.createUIElement('div', { class: 'ck-table-column-resizer' }));
726
+ }, { priority: 'lowest' });
727
+ });
728
+ }
729
+ }