@ckeditor/ckeditor5-table 36.0.1 → 37.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/README.md +1 -1
  2. package/build/table.js +1 -1
  3. package/ckeditor5-metadata.json +6 -6
  4. package/package.json +34 -29
  5. package/src/augmentation.d.ts +76 -0
  6. package/src/augmentation.js +5 -0
  7. package/src/commands/insertcolumncommand.d.ts +55 -0
  8. package/src/commands/insertcolumncommand.js +45 -60
  9. package/src/commands/insertrowcommand.d.ts +54 -0
  10. package/src/commands/insertrowcommand.js +44 -59
  11. package/src/commands/inserttablecommand.d.ts +44 -0
  12. package/src/commands/inserttablecommand.js +50 -68
  13. package/src/commands/mergecellcommand.d.ts +68 -0
  14. package/src/commands/mergecellcommand.js +169 -244
  15. package/src/commands/mergecellscommand.d.ts +28 -0
  16. package/src/commands/mergecellscommand.js +72 -101
  17. package/src/commands/removecolumncommand.d.ts +29 -0
  18. package/src/commands/removecolumncommand.js +88 -102
  19. package/src/commands/removerowcommand.d.ts +29 -0
  20. package/src/commands/removerowcommand.js +63 -80
  21. package/src/commands/selectcolumncommand.d.ts +33 -0
  22. package/src/commands/selectcolumncommand.js +41 -54
  23. package/src/commands/selectrowcommand.d.ts +33 -0
  24. package/src/commands/selectrowcommand.js +38 -48
  25. package/src/commands/setheadercolumncommand.d.ts +50 -0
  26. package/src/commands/setheadercolumncommand.js +48 -73
  27. package/src/commands/setheaderrowcommand.d.ts +53 -0
  28. package/src/commands/setheaderrowcommand.js +56 -85
  29. package/src/commands/splitcellcommand.d.ts +43 -0
  30. package/src/commands/splitcellcommand.js +35 -49
  31. package/src/converters/downcast.d.ts +63 -0
  32. package/src/converters/downcast.js +98 -130
  33. package/src/converters/table-caption-post-fixer.d.ts +20 -0
  34. package/src/converters/table-caption-post-fixer.js +36 -52
  35. package/src/converters/table-cell-paragraph-post-fixer.d.ts +32 -0
  36. package/src/converters/table-cell-paragraph-post-fixer.js +88 -119
  37. package/src/converters/table-cell-refresh-handler.d.ts +18 -0
  38. package/src/converters/table-cell-refresh-handler.js +29 -48
  39. package/src/converters/table-headings-refresh-handler.d.ts +17 -0
  40. package/src/converters/table-headings-refresh-handler.js +35 -54
  41. package/src/converters/table-layout-post-fixer.d.ts +226 -0
  42. package/src/converters/table-layout-post-fixer.js +276 -313
  43. package/src/converters/tableproperties.d.ts +54 -0
  44. package/src/converters/tableproperties.js +136 -168
  45. package/src/converters/upcasttable.d.ts +49 -0
  46. package/src/converters/upcasttable.js +199 -251
  47. package/src/index.d.ts +60 -0
  48. package/src/index.js +1 -2
  49. package/src/plaintableoutput.d.ts +25 -0
  50. package/src/plaintableoutput.js +107 -135
  51. package/src/table.d.ts +33 -0
  52. package/src/table.js +12 -88
  53. package/src/tablecaption/tablecaptionediting.d.ts +63 -0
  54. package/src/tablecaption/tablecaptionediting.js +104 -135
  55. package/src/tablecaption/tablecaptionui.d.ts +21 -0
  56. package/src/tablecaption/tablecaptionui.js +42 -58
  57. package/src/tablecaption/toggletablecaptioncommand.d.ts +68 -0
  58. package/src/tablecaption/toggletablecaptioncommand.js +77 -92
  59. package/src/tablecaption/utils.d.ts +42 -0
  60. package/src/tablecaption/utils.js +35 -61
  61. package/src/tablecaption.d.ts +22 -0
  62. package/src/tablecaption.js +12 -19
  63. package/src/tablecellproperties/commands/tablecellbackgroundcolorcommand.d.ts +32 -0
  64. package/src/tablecellproperties/commands/tablecellbackgroundcolorcommand.js +14 -20
  65. package/src/tablecellproperties/commands/tablecellbordercolorcommand.d.ts +37 -0
  66. package/src/tablecellproperties/commands/tablecellbordercolorcommand.js +27 -37
  67. package/src/tablecellproperties/commands/tablecellborderstylecommand.d.ts +37 -0
  68. package/src/tablecellproperties/commands/tablecellborderstylecommand.js +27 -37
  69. package/src/tablecellproperties/commands/tablecellborderwidthcommand.d.ts +51 -0
  70. package/src/tablecellproperties/commands/tablecellborderwidthcommand.js +42 -53
  71. package/src/tablecellproperties/commands/tablecellheightcommand.d.ts +46 -0
  72. package/src/tablecellproperties/commands/tablecellheightcommand.js +29 -36
  73. package/src/tablecellproperties/commands/tablecellhorizontalalignmentcommand.d.ts +32 -0
  74. package/src/tablecellproperties/commands/tablecellhorizontalalignmentcommand.js +14 -20
  75. package/src/tablecellproperties/commands/tablecellpaddingcommand.d.ts +51 -0
  76. package/src/tablecellproperties/commands/tablecellpaddingcommand.js +42 -53
  77. package/src/tablecellproperties/commands/tablecellpropertycommand.d.ts +62 -0
  78. package/src/tablecellproperties/commands/tablecellpropertycommand.js +77 -122
  79. package/src/tablecellproperties/commands/tablecellverticalalignmentcommand.d.ts +40 -0
  80. package/src/tablecellproperties/commands/tablecellverticalalignmentcommand.js +14 -20
  81. package/src/tablecellproperties/tablecellpropertiesediting.d.ts +41 -0
  82. package/src/tablecellproperties/tablecellpropertiesediting.js +193 -236
  83. package/src/tablecellproperties/tablecellpropertiesui.d.ts +111 -0
  84. package/src/tablecellproperties/tablecellpropertiesui.js +302 -456
  85. package/src/tablecellproperties/ui/tablecellpropertiesview.d.ts +227 -0
  86. package/src/tablecellproperties/ui/tablecellpropertiesview.js +509 -844
  87. package/src/tablecellproperties.d.ts +28 -0
  88. package/src/tablecellproperties.js +12 -98
  89. package/src/tablecellwidth/commands/tablecellwidthcommand.d.ts +46 -0
  90. package/src/tablecellwidth/commands/tablecellwidthcommand.js +29 -35
  91. package/src/tablecellwidth/tablecellwidthediting.d.ts +28 -0
  92. package/src/tablecellwidth/tablecellwidthediting.js +25 -38
  93. package/src/tableclipboard.d.ts +63 -0
  94. package/src/tableclipboard.js +429 -568
  95. package/src/tablecolumnresize/constants.d.ts +20 -0
  96. package/src/tablecolumnresize/constants.js +0 -10
  97. package/src/tablecolumnresize/converters.d.ts +18 -0
  98. package/src/tablecolumnresize/converters.js +35 -119
  99. package/src/tablecolumnresize/tablecolumnresizeediting.d.ts +137 -0
  100. package/src/tablecolumnresize/tablecolumnresizeediting.js +545 -711
  101. package/src/tablecolumnresize/tablewidthscommand.d.ts +38 -0
  102. package/src/tablecolumnresize/tablewidthscommand.js +61 -0
  103. package/src/tablecolumnresize/utils.d.ts +141 -0
  104. package/src/tablecolumnresize/utils.js +256 -233
  105. package/src/tablecolumnresize.d.ts +24 -0
  106. package/src/tablecolumnresize.js +12 -19
  107. package/src/tableconfig.d.ts +331 -0
  108. package/src/tableconfig.js +5 -0
  109. package/src/tableediting.d.ts +97 -0
  110. package/src/tableediting.js +157 -176
  111. package/src/tablekeyboard.d.ts +63 -0
  112. package/src/tablekeyboard.js +261 -344
  113. package/src/tablemouse/mouseeventsobserver.d.ts +62 -0
  114. package/src/tablemouse/mouseeventsobserver.js +13 -50
  115. package/src/tablemouse.d.ts +46 -0
  116. package/src/tablemouse.js +154 -202
  117. package/src/tableproperties/commands/tablealignmentcommand.d.ts +32 -0
  118. package/src/tableproperties/commands/tablealignmentcommand.js +14 -20
  119. package/src/tableproperties/commands/tablebackgroundcolorcommand.d.ts +32 -0
  120. package/src/tableproperties/commands/tablebackgroundcolorcommand.js +14 -20
  121. package/src/tableproperties/commands/tablebordercolorcommand.d.ts +37 -0
  122. package/src/tableproperties/commands/tablebordercolorcommand.js +27 -37
  123. package/src/tableproperties/commands/tableborderstylecommand.d.ts +37 -0
  124. package/src/tableproperties/commands/tableborderstylecommand.js +27 -37
  125. package/src/tableproperties/commands/tableborderwidthcommand.d.ts +51 -0
  126. package/src/tableproperties/commands/tableborderwidthcommand.js +42 -53
  127. package/src/tableproperties/commands/tableheightcommand.d.ts +46 -0
  128. package/src/tableproperties/commands/tableheightcommand.js +29 -33
  129. package/src/tableproperties/commands/tablepropertycommand.d.ts +61 -0
  130. package/src/tableproperties/commands/tablepropertycommand.js +68 -112
  131. package/src/tableproperties/commands/tablewidthcommand.d.ts +46 -0
  132. package/src/tableproperties/commands/tablewidthcommand.js +29 -33
  133. package/src/tableproperties/tablepropertiesediting.d.ts +39 -0
  134. package/src/tableproperties/tablepropertiesediting.js +163 -210
  135. package/src/tableproperties/tablepropertiesui.d.ts +113 -0
  136. package/src/tableproperties/tablepropertiesui.js +293 -439
  137. package/src/tableproperties/ui/tablepropertiesview.d.ts +203 -0
  138. package/src/tableproperties/ui/tablepropertiesview.js +427 -718
  139. package/src/tableproperties.d.ts +28 -0
  140. package/src/tableproperties.js +12 -95
  141. package/src/tableselection.d.ts +106 -0
  142. package/src/tableselection.js +279 -376
  143. package/src/tabletoolbar.d.ts +31 -0
  144. package/src/tabletoolbar.js +38 -92
  145. package/src/tableui.d.ts +53 -0
  146. package/src/tableui.js +281 -338
  147. package/src/tableutils.d.ts +448 -0
  148. package/src/tableutils.js +1015 -1229
  149. package/src/tablewalker.d.ts +323 -0
  150. package/src/tablewalker.js +308 -548
  151. package/src/ui/colorinputview.d.ts +143 -0
  152. package/src/ui/colorinputview.js +229 -366
  153. package/src/ui/formrowview.d.ts +61 -0
  154. package/src/ui/formrowview.js +38 -84
  155. package/src/ui/inserttableview.d.ts +77 -0
  156. package/src/ui/inserttableview.js +152 -242
  157. package/src/utils/common.d.ts +42 -0
  158. package/src/utils/common.js +33 -57
  159. package/src/utils/structure.d.ts +245 -0
  160. package/src/utils/structure.js +261 -379
  161. package/src/utils/table-properties.d.ts +67 -0
  162. package/src/utils/table-properties.js +60 -81
  163. package/src/utils/ui/contextualballoon.d.ts +34 -0
  164. package/src/utils/ui/contextualballoon.js +70 -89
  165. package/src/utils/ui/table-properties.d.ts +193 -0
  166. package/src/utils/ui/table-properties.js +259 -319
  167. package/src/utils/ui/widget.d.ts +16 -0
  168. package/src/utils/ui/widget.js +24 -46
  169. package/src/tablecolumnresize/tablecolumnwidthscommand.js +0 -55
  170. package/src/tablecolumnresize/tablewidthresizecommand.js +0 -65
package/src/tableui.js CHANGED
@@ -2,22 +2,17 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
-
6
5
  /**
7
6
  * @module table/tableui
8
7
  */
9
-
10
8
  import { Plugin } from 'ckeditor5/src/core';
11
9
  import { addListToDropdown, createDropdown, Model, SplitButtonView, SwitchButtonView } from 'ckeditor5/src/ui';
12
10
  import { Collection } from 'ckeditor5/src/utils';
13
-
14
11
  import InsertTableView from './ui/inserttableview';
15
-
16
12
  import tableIcon from './../theme/icons/table.svg';
17
13
  import tableColumnIcon from './../theme/icons/table-column.svg';
18
14
  import tableRowIcon from './../theme/icons/table-row.svg';
19
15
  import tableMergeCellIcon from './../theme/icons/table-merge-cell.svg';
20
-
21
16
  /**
22
17
  * The table UI plugin. It introduces:
23
18
  *
@@ -27,340 +22,288 @@ import tableMergeCellIcon from './../theme/icons/table-merge-cell.svg';
27
22
  * * The `'mergeTableCells'` split button.
28
23
  *
29
24
  * The `'tableColumn'`, `'tableRow'` and `'mergeTableCells'` dropdowns work best with {@link module:table/tabletoolbar~TableToolbar}.
30
- *
31
- * @extends module:core/plugin~Plugin
32
25
  */
33
26
  export default class TableUI extends Plugin {
34
- /**
35
- * @inheritDoc
36
- */
37
- static get pluginName() {
38
- return 'TableUI';
39
- }
40
-
41
- /**
42
- * @inheritDoc
43
- */
44
- init() {
45
- const editor = this.editor;
46
- const t = this.editor.t;
47
- const contentLanguageDirection = editor.locale.contentLanguageDirection;
48
- const isContentLtr = contentLanguageDirection === 'ltr';
49
-
50
- editor.ui.componentFactory.add( 'insertTable', locale => {
51
- const command = editor.commands.get( 'insertTable' );
52
- const dropdownView = createDropdown( locale );
53
-
54
- dropdownView.bind( 'isEnabled' ).to( command );
55
-
56
- // Decorate dropdown's button.
57
- dropdownView.buttonView.set( {
58
- icon: tableIcon,
59
- label: t( 'Insert table' ),
60
- tooltip: true
61
- } );
62
-
63
- let insertTableView;
64
-
65
- dropdownView.on( 'change:isOpen', () => {
66
- if ( insertTableView ) {
67
- return;
68
- }
69
-
70
- // Prepare custom view for dropdown's panel.
71
- insertTableView = new InsertTableView( locale );
72
- dropdownView.panelView.children.add( insertTableView );
73
-
74
- insertTableView.delegate( 'execute' ).to( dropdownView );
75
-
76
- dropdownView.on( 'execute', () => {
77
- editor.execute( 'insertTable', { rows: insertTableView.rows, columns: insertTableView.columns } );
78
- editor.editing.view.focus();
79
- } );
80
- } );
81
-
82
- return dropdownView;
83
- } );
84
-
85
- editor.ui.componentFactory.add( 'tableColumn', locale => {
86
- const options = [
87
- {
88
- type: 'switchbutton',
89
- model: {
90
- commandName: 'setTableColumnHeader',
91
- label: t( 'Header column' ),
92
- bindIsOn: true
93
- }
94
- },
95
- { type: 'separator' },
96
- {
97
- type: 'button',
98
- model: {
99
- commandName: isContentLtr ? 'insertTableColumnLeft' : 'insertTableColumnRight',
100
- label: t( 'Insert column left' )
101
- }
102
- },
103
- {
104
- type: 'button',
105
- model: {
106
- commandName: isContentLtr ? 'insertTableColumnRight' : 'insertTableColumnLeft',
107
- label: t( 'Insert column right' )
108
- }
109
- },
110
- {
111
- type: 'button',
112
- model: {
113
- commandName: 'removeTableColumn',
114
- label: t( 'Delete column' )
115
- }
116
- },
117
- {
118
- type: 'button',
119
- model: {
120
- commandName: 'selectTableColumn',
121
- label: t( 'Select column' )
122
- }
123
- }
124
- ];
125
-
126
- return this._prepareDropdown( t( 'Column' ), tableColumnIcon, options, locale );
127
- } );
128
-
129
- editor.ui.componentFactory.add( 'tableRow', locale => {
130
- const options = [
131
- {
132
- type: 'switchbutton',
133
- model: {
134
- commandName: 'setTableRowHeader',
135
- label: t( 'Header row' ),
136
- bindIsOn: true
137
- }
138
- },
139
- { type: 'separator' },
140
- {
141
- type: 'button',
142
- model: {
143
- commandName: 'insertTableRowAbove',
144
- label: t( 'Insert row above' )
145
- }
146
- },
147
- {
148
- type: 'button',
149
- model: {
150
- commandName: 'insertTableRowBelow',
151
- label: t( 'Insert row below' )
152
- }
153
- },
154
- {
155
- type: 'button',
156
- model: {
157
- commandName: 'removeTableRow',
158
- label: t( 'Delete row' )
159
- }
160
- },
161
- {
162
- type: 'button',
163
- model: {
164
- commandName: 'selectTableRow',
165
- label: t( 'Select row' )
166
- }
167
- }
168
- ];
169
-
170
- return this._prepareDropdown( t( 'Row' ), tableRowIcon, options, locale );
171
- } );
172
-
173
- editor.ui.componentFactory.add( 'mergeTableCells', locale => {
174
- const options = [
175
- {
176
- type: 'button',
177
- model: {
178
- commandName: 'mergeTableCellUp',
179
- label: t( 'Merge cell up' )
180
- }
181
- },
182
- {
183
- type: 'button',
184
- model: {
185
- commandName: isContentLtr ? 'mergeTableCellRight' : 'mergeTableCellLeft',
186
- label: t( 'Merge cell right' )
187
- }
188
- },
189
- {
190
- type: 'button',
191
- model: {
192
- commandName: 'mergeTableCellDown',
193
- label: t( 'Merge cell down' )
194
- }
195
- },
196
- {
197
- type: 'button',
198
- model: {
199
- commandName: isContentLtr ? 'mergeTableCellLeft' : 'mergeTableCellRight',
200
- label: t( 'Merge cell left' )
201
- }
202
- },
203
- { type: 'separator' },
204
- {
205
- type: 'button',
206
- model: {
207
- commandName: 'splitTableCellVertically',
208
- label: t( 'Split cell vertically' )
209
- }
210
- },
211
- {
212
- type: 'button',
213
- model: {
214
- commandName: 'splitTableCellHorizontally',
215
- label: t( 'Split cell horizontally' )
216
- }
217
- }
218
- ];
219
-
220
- return this._prepareMergeSplitButtonDropdown( t( 'Merge cells' ), tableMergeCellIcon, options, locale );
221
- } );
222
- }
223
-
224
- /**
225
- * Creates a dropdown view from a set of options.
226
- *
227
- * @private
228
- * @param {String} label The dropdown button label.
229
- * @param {String} icon An icon for the dropdown button.
230
- * @param {Array.<module:ui/dropdown/utils~ListDropdownItemDefinition>} options The list of options for the dropdown.
231
- * @param {module:utils/locale~Locale} locale
232
- * @returns {module:ui/dropdown/dropdownview~DropdownView}
233
- */
234
- _prepareDropdown( label, icon, options, locale ) {
235
- const editor = this.editor;
236
- const dropdownView = createDropdown( locale );
237
- const commands = this._fillDropdownWithListOptions( dropdownView, options );
238
-
239
- // Decorate dropdown's button.
240
- dropdownView.buttonView.set( {
241
- label,
242
- icon,
243
- tooltip: true
244
- } );
245
-
246
- // Make dropdown button disabled when all options are disabled.
247
- dropdownView.bind( 'isEnabled' ).toMany( commands, 'isEnabled', ( ...areEnabled ) => {
248
- return areEnabled.some( isEnabled => isEnabled );
249
- } );
250
-
251
- this.listenTo( dropdownView, 'execute', evt => {
252
- editor.execute( evt.source.commandName );
253
-
254
- // Toggling a switch button view should not move the focus to the editable.
255
- if ( !( evt.source instanceof SwitchButtonView ) ) {
256
- editor.editing.view.focus();
257
- }
258
- } );
259
-
260
- return dropdownView;
261
- }
262
-
263
- /**
264
- * Creates a dropdown view with a {@link module:ui/dropdown/button/splitbuttonview~SplitButtonView} for
265
- * merge (and split)–related commands.
266
- *
267
- * @private
268
- * @param {String} label The dropdown button label.
269
- * @param {String} icon An icon for the dropdown button.
270
- * @param {Array.<module:ui/dropdown/utils~ListDropdownItemDefinition>} options The list of options for the dropdown.
271
- * @param {module:utils/locale~Locale} locale
272
- * @returns {module:ui/dropdown/dropdownview~DropdownView}
273
- */
274
- _prepareMergeSplitButtonDropdown( label, icon, options, locale ) {
275
- const editor = this.editor;
276
- const dropdownView = createDropdown( locale, SplitButtonView );
277
- const mergeCommandName = 'mergeTableCells';
278
-
279
- // Main command.
280
- const mergeCommand = editor.commands.get( mergeCommandName );
281
-
282
- // Subcommands in the dropdown.
283
- const commands = this._fillDropdownWithListOptions( dropdownView, options );
284
-
285
- dropdownView.buttonView.set( {
286
- label,
287
- icon,
288
- tooltip: true,
289
- isEnabled: true
290
- } );
291
-
292
- // Make dropdown button disabled when all options are disabled together with the main command.
293
- dropdownView.bind( 'isEnabled' ).toMany( [ mergeCommand, ...commands ], 'isEnabled', ( ...areEnabled ) => {
294
- return areEnabled.some( isEnabled => isEnabled );
295
- } );
296
-
297
- // Merge selected table cells when the main part of the split button is clicked.
298
- this.listenTo( dropdownView.buttonView, 'execute', () => {
299
- editor.execute( mergeCommandName );
300
- editor.editing.view.focus();
301
- } );
302
-
303
- // Execute commands for events coming from the list in the dropdown panel.
304
- this.listenTo( dropdownView, 'execute', evt => {
305
- editor.execute( evt.source.commandName );
306
- editor.editing.view.focus();
307
- } );
308
-
309
- return dropdownView;
310
- }
311
-
312
- /**
313
- * Injects a {@link module:ui/list/listview~ListView} into the passed dropdown with buttons
314
- * which execute editor commands as configured in passed options.
315
- *
316
- * @private
317
- * @param {module:ui/dropdown/dropdownview~DropdownView} dropdownView
318
- * @param {Array.<module:ui/dropdown/utils~ListDropdownItemDefinition>} options The list of options for the dropdown.
319
- * @returns {Array.<module:core/command~Command>} Commands the list options are interacting with.
320
- */
321
- _fillDropdownWithListOptions( dropdownView, options ) {
322
- const editor = this.editor;
323
- const commands = [];
324
- const itemDefinitions = new Collection();
325
-
326
- for ( const option of options ) {
327
- addListOption( option, editor, commands, itemDefinitions );
328
- }
329
-
330
- addListToDropdown( dropdownView, itemDefinitions );
331
-
332
- return commands;
333
- }
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get pluginName() {
31
+ return 'TableUI';
32
+ }
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ init() {
37
+ const editor = this.editor;
38
+ const t = this.editor.t;
39
+ const contentLanguageDirection = editor.locale.contentLanguageDirection;
40
+ const isContentLtr = contentLanguageDirection === 'ltr';
41
+ editor.ui.componentFactory.add('insertTable', locale => {
42
+ const command = editor.commands.get('insertTable');
43
+ const dropdownView = createDropdown(locale);
44
+ dropdownView.bind('isEnabled').to(command);
45
+ // Decorate dropdown's button.
46
+ dropdownView.buttonView.set({
47
+ icon: tableIcon,
48
+ label: t('Insert table'),
49
+ tooltip: true
50
+ });
51
+ let insertTableView;
52
+ dropdownView.on('change:isOpen', () => {
53
+ if (insertTableView) {
54
+ return;
55
+ }
56
+ // Prepare custom view for dropdown's panel.
57
+ insertTableView = new InsertTableView(locale);
58
+ dropdownView.panelView.children.add(insertTableView);
59
+ insertTableView.delegate('execute').to(dropdownView);
60
+ dropdownView.on('execute', () => {
61
+ editor.execute('insertTable', { rows: insertTableView.rows, columns: insertTableView.columns });
62
+ editor.editing.view.focus();
63
+ });
64
+ });
65
+ return dropdownView;
66
+ });
67
+ editor.ui.componentFactory.add('tableColumn', locale => {
68
+ const options = [
69
+ {
70
+ type: 'switchbutton',
71
+ model: {
72
+ commandName: 'setTableColumnHeader',
73
+ label: t('Header column'),
74
+ bindIsOn: true
75
+ }
76
+ },
77
+ { type: 'separator' },
78
+ {
79
+ type: 'button',
80
+ model: {
81
+ commandName: isContentLtr ? 'insertTableColumnLeft' : 'insertTableColumnRight',
82
+ label: t('Insert column left')
83
+ }
84
+ },
85
+ {
86
+ type: 'button',
87
+ model: {
88
+ commandName: isContentLtr ? 'insertTableColumnRight' : 'insertTableColumnLeft',
89
+ label: t('Insert column right')
90
+ }
91
+ },
92
+ {
93
+ type: 'button',
94
+ model: {
95
+ commandName: 'removeTableColumn',
96
+ label: t('Delete column')
97
+ }
98
+ },
99
+ {
100
+ type: 'button',
101
+ model: {
102
+ commandName: 'selectTableColumn',
103
+ label: t('Select column')
104
+ }
105
+ }
106
+ ];
107
+ return this._prepareDropdown(t('Column'), tableColumnIcon, options, locale);
108
+ });
109
+ editor.ui.componentFactory.add('tableRow', locale => {
110
+ const options = [
111
+ {
112
+ type: 'switchbutton',
113
+ model: {
114
+ commandName: 'setTableRowHeader',
115
+ label: t('Header row'),
116
+ bindIsOn: true
117
+ }
118
+ },
119
+ { type: 'separator' },
120
+ {
121
+ type: 'button',
122
+ model: {
123
+ commandName: 'insertTableRowAbove',
124
+ label: t('Insert row above')
125
+ }
126
+ },
127
+ {
128
+ type: 'button',
129
+ model: {
130
+ commandName: 'insertTableRowBelow',
131
+ label: t('Insert row below')
132
+ }
133
+ },
134
+ {
135
+ type: 'button',
136
+ model: {
137
+ commandName: 'removeTableRow',
138
+ label: t('Delete row')
139
+ }
140
+ },
141
+ {
142
+ type: 'button',
143
+ model: {
144
+ commandName: 'selectTableRow',
145
+ label: t('Select row')
146
+ }
147
+ }
148
+ ];
149
+ return this._prepareDropdown(t('Row'), tableRowIcon, options, locale);
150
+ });
151
+ editor.ui.componentFactory.add('mergeTableCells', locale => {
152
+ const options = [
153
+ {
154
+ type: 'button',
155
+ model: {
156
+ commandName: 'mergeTableCellUp',
157
+ label: t('Merge cell up')
158
+ }
159
+ },
160
+ {
161
+ type: 'button',
162
+ model: {
163
+ commandName: isContentLtr ? 'mergeTableCellRight' : 'mergeTableCellLeft',
164
+ label: t('Merge cell right')
165
+ }
166
+ },
167
+ {
168
+ type: 'button',
169
+ model: {
170
+ commandName: 'mergeTableCellDown',
171
+ label: t('Merge cell down')
172
+ }
173
+ },
174
+ {
175
+ type: 'button',
176
+ model: {
177
+ commandName: isContentLtr ? 'mergeTableCellLeft' : 'mergeTableCellRight',
178
+ label: t('Merge cell left')
179
+ }
180
+ },
181
+ { type: 'separator' },
182
+ {
183
+ type: 'button',
184
+ model: {
185
+ commandName: 'splitTableCellVertically',
186
+ label: t('Split cell vertically')
187
+ }
188
+ },
189
+ {
190
+ type: 'button',
191
+ model: {
192
+ commandName: 'splitTableCellHorizontally',
193
+ label: t('Split cell horizontally')
194
+ }
195
+ }
196
+ ];
197
+ return this._prepareMergeSplitButtonDropdown(t('Merge cells'), tableMergeCellIcon, options, locale);
198
+ });
199
+ }
200
+ /**
201
+ * Creates a dropdown view from a set of options.
202
+ *
203
+ * @param label The dropdown button label.
204
+ * @param icon An icon for the dropdown button.
205
+ * @param options The list of options for the dropdown.
206
+ */
207
+ _prepareDropdown(label, icon, options, locale) {
208
+ const editor = this.editor;
209
+ const dropdownView = createDropdown(locale);
210
+ const commands = this._fillDropdownWithListOptions(dropdownView, options);
211
+ // Decorate dropdown's button.
212
+ dropdownView.buttonView.set({
213
+ label,
214
+ icon,
215
+ tooltip: true
216
+ });
217
+ // Make dropdown button disabled when all options are disabled.
218
+ dropdownView.bind('isEnabled').toMany(commands, 'isEnabled', (...areEnabled) => {
219
+ return areEnabled.some(isEnabled => isEnabled);
220
+ });
221
+ this.listenTo(dropdownView, 'execute', evt => {
222
+ editor.execute(evt.source.commandName);
223
+ // Toggling a switch button view should not move the focus to the editable.
224
+ if (!(evt.source instanceof SwitchButtonView)) {
225
+ editor.editing.view.focus();
226
+ }
227
+ });
228
+ return dropdownView;
229
+ }
230
+ /**
231
+ * Creates a dropdown view with a {@link module:ui/dropdown/button/splitbuttonview~SplitButtonView} for
232
+ * merge (and split)–related commands.
233
+ *
234
+ * @param label The dropdown button label.
235
+ * @param icon An icon for the dropdown button.
236
+ * @param options The list of options for the dropdown.
237
+ */
238
+ _prepareMergeSplitButtonDropdown(label, icon, options, locale) {
239
+ const editor = this.editor;
240
+ const dropdownView = createDropdown(locale, SplitButtonView);
241
+ const mergeCommandName = 'mergeTableCells';
242
+ // Main command.
243
+ const mergeCommand = editor.commands.get(mergeCommandName);
244
+ // Subcommands in the dropdown.
245
+ const commands = this._fillDropdownWithListOptions(dropdownView, options);
246
+ dropdownView.buttonView.set({
247
+ label,
248
+ icon,
249
+ tooltip: true,
250
+ isEnabled: true
251
+ });
252
+ // Make dropdown button disabled when all options are disabled together with the main command.
253
+ dropdownView.bind('isEnabled').toMany([mergeCommand, ...commands], 'isEnabled', (...areEnabled) => {
254
+ return areEnabled.some(isEnabled => isEnabled);
255
+ });
256
+ // Merge selected table cells when the main part of the split button is clicked.
257
+ this.listenTo(dropdownView.buttonView, 'execute', () => {
258
+ editor.execute(mergeCommandName);
259
+ editor.editing.view.focus();
260
+ });
261
+ // Execute commands for events coming from the list in the dropdown panel.
262
+ this.listenTo(dropdownView, 'execute', evt => {
263
+ editor.execute(evt.source.commandName);
264
+ editor.editing.view.focus();
265
+ });
266
+ return dropdownView;
267
+ }
268
+ /**
269
+ * Injects a {@link module:ui/list/listview~ListView} into the passed dropdown with buttons
270
+ * which execute editor commands as configured in passed options.
271
+ *
272
+ * @param options The list of options for the dropdown.
273
+ * @returns Commands the list options are interacting with.
274
+ */
275
+ _fillDropdownWithListOptions(dropdownView, options) {
276
+ const editor = this.editor;
277
+ const commands = [];
278
+ const itemDefinitions = new Collection();
279
+ for (const option of options) {
280
+ addListOption(option, editor, commands, itemDefinitions);
281
+ }
282
+ addListToDropdown(dropdownView, itemDefinitions);
283
+ return commands;
284
+ }
334
285
  }
335
-
336
- // Adds an option to a list view.
337
- //
338
- // @param {module:table/tableui~DropdownOption} option A configuration option.
339
- // @param {module:core/editor/editor~Editor} editor
340
- // @param {Array.<module:core/command~Command>} commands The list of commands to update.
341
- // @param {Iterable.<module:ui/dropdown/utils~ListDropdownItemDefinition>} itemDefinitions
342
- // A collection of dropdown items to update with the given option.
343
- function addListOption( option, editor, commands, itemDefinitions ) {
344
- const model = option.model = new Model( option.model );
345
- const { commandName, bindIsOn } = option.model;
346
-
347
- if ( option.type === 'button' || option.type === 'switchbutton' ) {
348
- const command = editor.commands.get( commandName );
349
-
350
- commands.push( command );
351
-
352
- model.set( { commandName } );
353
-
354
- model.bind( 'isEnabled' ).to( command );
355
-
356
- if ( bindIsOn ) {
357
- model.bind( 'isOn' ).to( command, 'value' );
358
- }
359
- }
360
-
361
- model.set( {
362
- withText: true
363
- } );
364
-
365
- itemDefinitions.add( option );
286
+ /**
287
+ * Adds an option to a list view.
288
+ *
289
+ * @param option A configuration option.
290
+ * @param commands The list of commands to update.
291
+ * @param itemDefinitions A collection of dropdown items to update with the given option.
292
+ */
293
+ function addListOption(option, editor, commands, itemDefinitions) {
294
+ if (option.type === 'button' || option.type === 'switchbutton') {
295
+ const model = option.model = new Model(option.model);
296
+ const { commandName, bindIsOn } = option.model;
297
+ const command = editor.commands.get(commandName);
298
+ commands.push(command);
299
+ model.set({ commandName });
300
+ model.bind('isEnabled').to(command);
301
+ if (bindIsOn) {
302
+ model.bind('isOn').to(command, 'value');
303
+ }
304
+ model.set({
305
+ withText: true
306
+ });
307
+ }
308
+ itemDefinitions.add(option);
366
309
  }