@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.
- package/build/table.js +5 -0
- package/build/translations/af.js +1 -0
- package/build/translations/ar.js +1 -0
- package/build/translations/ast.js +1 -0
- package/build/translations/az.js +1 -0
- package/build/translations/be.js +1 -0
- package/build/translations/bg.js +1 -0
- package/build/translations/bn.js +1 -0
- package/build/translations/bs.js +1 -0
- package/build/translations/ca.js +1 -0
- package/build/translations/cs.js +1 -0
- package/build/translations/da.js +1 -0
- package/build/translations/de-ch.js +1 -0
- package/build/translations/de.js +1 -0
- package/build/translations/el.js +1 -0
- package/build/translations/en-au.js +1 -0
- package/build/translations/en-gb.js +1 -0
- package/build/translations/eo.js +1 -0
- package/build/translations/es-co.js +1 -0
- package/build/translations/es.js +1 -0
- package/build/translations/et.js +1 -0
- package/build/translations/eu.js +1 -0
- package/build/translations/fa.js +1 -0
- package/build/translations/fi.js +1 -0
- package/build/translations/fr.js +1 -0
- package/build/translations/gl.js +1 -0
- package/build/translations/gu.js +1 -0
- package/build/translations/he.js +1 -0
- package/build/translations/hi.js +1 -0
- package/build/translations/hr.js +1 -0
- package/build/translations/hu.js +1 -0
- package/build/translations/hy.js +1 -0
- package/build/translations/id.js +1 -0
- package/build/translations/it.js +1 -0
- package/build/translations/ja.js +1 -0
- package/build/translations/jv.js +1 -0
- package/build/translations/kk.js +1 -0
- package/build/translations/km.js +1 -0
- package/build/translations/kn.js +1 -0
- package/build/translations/ko.js +1 -0
- package/build/translations/ku.js +1 -0
- package/build/translations/lt.js +1 -0
- package/build/translations/lv.js +1 -0
- package/build/translations/ms.js +1 -0
- package/build/translations/nb.js +1 -0
- package/build/translations/ne.js +1 -0
- package/build/translations/nl.js +1 -0
- package/build/translations/no.js +1 -0
- package/build/translations/oc.js +1 -0
- package/build/translations/pl.js +1 -0
- package/build/translations/pt-br.js +1 -0
- package/build/translations/pt.js +1 -0
- package/build/translations/ro.js +1 -0
- package/build/translations/ru.js +1 -0
- package/build/translations/si.js +1 -0
- package/build/translations/sk.js +1 -0
- package/build/translations/sl.js +1 -0
- package/build/translations/sq.js +1 -0
- package/build/translations/sr-latn.js +1 -0
- package/build/translations/sr.js +1 -0
- package/build/translations/sv.js +1 -0
- package/build/translations/th.js +1 -0
- package/build/translations/ti.js +1 -0
- package/build/translations/tk.js +1 -0
- package/build/translations/tr.js +1 -0
- package/build/translations/tt.js +1 -0
- package/build/translations/ug.js +1 -0
- package/build/translations/uk.js +1 -0
- package/build/translations/ur.js +1 -0
- package/build/translations/uz.js +1 -0
- package/build/translations/vi.js +1 -0
- package/build/translations/zh-cn.js +1 -0
- package/build/translations/zh.js +1 -0
- package/ckeditor5-metadata.json +7 -16
- package/dist/index-content.css +30 -30
- package/dist/index-editor.css +170 -104
- package/dist/index.css +237 -147
- package/dist/index.css.map +1 -1
- package/dist/index.js +2433 -448
- package/dist/index.js.map +1 -1
- package/lang/contexts.json +4 -2
- package/package.json +35 -25
- package/{dist → src}/augmentation.d.ts +15 -4
- package/src/augmentation.js +5 -0
- package/{dist → src}/commands/insertcolumncommand.d.ts +1 -5
- package/src/commands/insertcolumncommand.js +71 -0
- package/{dist → src}/commands/insertrowcommand.d.ts +1 -5
- package/src/commands/insertrowcommand.js +70 -0
- package/{dist → src}/commands/inserttablecommand.d.ts +1 -5
- package/src/commands/inserttablecommand.js +69 -0
- package/{dist → src}/commands/inserttablelayoutcommand.d.ts +1 -5
- package/src/commands/inserttablelayoutcommand.js +65 -0
- package/{dist → src}/commands/mergecellcommand.d.ts +3 -7
- package/src/commands/mergecellcommand.js +206 -0
- package/{dist → src}/commands/mergecellscommand.d.ts +1 -5
- package/src/commands/mergecellscommand.js +94 -0
- package/{dist → src}/commands/removecolumncommand.d.ts +1 -5
- package/src/commands/removecolumncommand.js +109 -0
- package/{dist → src}/commands/removerowcommand.d.ts +1 -5
- package/src/commands/removerowcommand.js +82 -0
- package/{dist → src}/commands/selectcolumncommand.d.ts +1 -5
- package/src/commands/selectcolumncommand.js +60 -0
- package/{dist → src}/commands/selectrowcommand.d.ts +1 -5
- package/src/commands/selectrowcommand.js +56 -0
- package/{dist → src}/commands/setheadercolumncommand.d.ts +1 -5
- package/src/commands/setheadercolumncommand.js +76 -0
- package/{dist → src}/commands/setheaderrowcommand.d.ts +1 -5
- package/src/commands/setheaderrowcommand.js +83 -0
- package/{dist → src}/commands/splitcellcommand.d.ts +1 -5
- package/src/commands/splitcellcommand.js +58 -0
- package/{dist → src}/converters/downcast.d.ts +2 -6
- package/src/converters/downcast.js +298 -0
- package/{dist → src}/converters/table-caption-post-fixer.d.ts +1 -5
- package/src/converters/table-caption-post-fixer.js +55 -0
- package/{dist → src}/converters/table-cell-paragraph-post-fixer.d.ts +1 -5
- package/src/converters/table-cell-paragraph-post-fixer.js +109 -0
- package/{dist → src}/converters/table-cell-refresh-handler.d.ts +1 -5
- package/src/converters/table-cell-refresh-handler.js +47 -0
- package/{dist → src}/converters/table-headings-refresh-handler.d.ts +1 -5
- package/src/converters/table-headings-refresh-handler.js +51 -0
- package/{dist → src}/converters/table-layout-post-fixer.d.ts +1 -5
- package/src/converters/table-layout-post-fixer.js +369 -0
- package/{dist → src}/converters/tableproperties.d.ts +2 -6
- package/src/converters/tableproperties.js +444 -0
- package/{dist → src}/converters/upcasttable.d.ts +1 -5
- package/src/converters/upcasttable.js +385 -0
- package/{dist → src}/index.d.ts +5 -6
- package/src/index.js +98 -0
- package/{dist → src}/plaintableoutput.d.ts +1 -5
- package/src/plaintableoutput.js +49 -0
- package/{dist → src}/table.d.ts +2 -6
- package/src/table.js +50 -0
- package/{dist → src}/tablecaption/tablecaptionediting.d.ts +2 -6
- package/src/tablecaption/tablecaptionediting.js +136 -0
- package/{dist → src}/tablecaption/tablecaptionui.d.ts +1 -5
- package/src/tablecaption/tablecaptionui.js +64 -0
- package/{dist → src}/tablecaption/toggletablecaptioncommand.d.ts +1 -5
- package/src/tablecaption/toggletablecaptioncommand.js +105 -0
- package/{dist → src}/tablecaption/utils.d.ts +1 -5
- package/src/tablecaption/utils.js +61 -0
- package/{dist → src}/tablecaption.d.ts +1 -5
- package/src/tablecaption.js +34 -0
- package/{dist → src}/tablecellproperties/commands/tablecellbackgroundcolorcommand.d.ts +1 -5
- package/src/tablecellproperties/commands/tablecellbackgroundcolorcommand.js +30 -0
- package/{dist → src}/tablecellproperties/commands/tablecellbordercolorcommand.d.ts +2 -6
- package/src/tablecellproperties/commands/tablecellbordercolorcommand.js +44 -0
- package/{dist → src}/tablecellproperties/commands/tablecellborderstylecommand.d.ts +2 -6
- package/src/tablecellproperties/commands/tablecellborderstylecommand.js +44 -0
- package/{dist → src}/tablecellproperties/commands/tablecellborderwidthcommand.d.ts +2 -6
- package/src/tablecellproperties/commands/tablecellborderwidthcommand.js +64 -0
- package/{dist → src}/tablecellproperties/commands/tablecellheightcommand.d.ts +1 -5
- package/src/tablecellproperties/commands/tablecellheightcommand.js +51 -0
- package/{dist → src}/tablecellproperties/commands/tablecellhorizontalalignmentcommand.d.ts +1 -5
- package/src/tablecellproperties/commands/tablecellhorizontalalignmentcommand.js +30 -0
- package/{dist → src}/tablecellproperties/commands/tablecellpaddingcommand.d.ts +2 -6
- package/src/tablecellproperties/commands/tablecellpaddingcommand.js +64 -0
- package/{dist → src}/tablecellproperties/commands/tablecellpropertycommand.d.ts +2 -6
- package/src/tablecellproperties/commands/tablecellpropertycommand.js +138 -0
- package/{dist → src}/tablecellproperties/commands/tablecelltypecommand.d.ts +6 -6
- package/src/tablecellproperties/commands/tablecelltypecommand.js +167 -0
- package/{dist → src}/tablecellproperties/commands/tablecellverticalalignmentcommand.d.ts +1 -5
- package/src/tablecellproperties/commands/tablecellverticalalignmentcommand.js +38 -0
- package/{dist → src}/tablecellproperties/tablecellpropertiesediting.d.ts +1 -5
- package/src/tablecellproperties/tablecellpropertiesediting.js +412 -0
- package/{dist → src}/tablecellproperties/tablecellpropertiesui.d.ts +2 -6
- package/src/tablecellproperties/tablecellpropertiesui.js +385 -0
- package/src/tablecellproperties/tablecellpropertiesuiexperimental.d.ts +128 -0
- package/src/tablecellproperties/tablecellpropertiesuiexperimental.js +408 -0
- package/src/tablecellproperties/ui/tablecellpropertiesview.d.ts +229 -0
- package/src/tablecellproperties/ui/tablecellpropertiesview.js +612 -0
- package/{dist/tablecellproperties/ui/tablecellpropertiesview.d.ts → src/tablecellproperties/ui/tablecellpropertiesviewexperimental.d.ts} +12 -15
- package/src/tablecellproperties/ui/tablecellpropertiesviewexperimental.js +744 -0
- package/{dist → src}/tablecellproperties.d.ts +1 -5
- package/src/tablecellproperties.js +40 -0
- package/{dist → src}/tablecellwidth/commands/tablecellwidthcommand.d.ts +1 -5
- package/src/tablecellwidth/commands/tablecellwidthcommand.js +51 -0
- package/{dist → src}/tablecellwidth/tablecellwidthediting.d.ts +1 -5
- package/src/tablecellwidth/tablecellwidthediting.js +53 -0
- package/{dist → src}/tableclipboard.d.ts +3 -7
- package/src/tableclipboard.js +500 -0
- package/{dist → src}/tablecolumnresize/constants.d.ts +0 -4
- package/src/tablecolumnresize/constants.js +33 -0
- package/{dist → src}/tablecolumnresize/converters.d.ts +1 -5
- package/src/tablecolumnresize/converters.js +62 -0
- package/{dist → src}/tablecolumnresize/tablecolumnresizeediting.d.ts +2 -6
- package/src/tablecolumnresize/tablecolumnresizeediting.js +729 -0
- package/{dist → src}/tablecolumnresize/tablewidthscommand.d.ts +2 -6
- package/src/tablecolumnresize/tablewidthscommand.js +61 -0
- package/{dist → src}/tablecolumnresize/utils.d.ts +2 -6
- package/src/tablecolumnresize/utils.js +370 -0
- package/{dist → src}/tablecolumnresize.d.ts +1 -5
- package/src/tablecolumnresize.js +36 -0
- package/{dist → src}/tableconfig.d.ts +6 -30
- package/src/tableconfig.js +5 -0
- package/{dist → src}/tableediting.d.ts +2 -6
- package/src/tableediting.js +246 -0
- package/{dist → src}/tablekeyboard.d.ts +3 -7
- package/src/tablekeyboard.js +273 -0
- package/{dist → src}/tablelayout/commands/tabletypecommand.d.ts +1 -5
- package/src/tablelayout/commands/tabletypecommand.js +68 -0
- package/{dist → src}/tablelayout/tablelayoutediting.d.ts +1 -5
- package/src/tablelayout/tablelayoutediting.js +295 -0
- package/{dist → src}/tablelayout/tablelayoutui.d.ts +1 -5
- package/src/tablelayout/tablelayoutui.js +196 -0
- package/{dist → src}/tablelayout.d.ts +1 -5
- package/src/tablelayout.js +37 -0
- package/{dist → src}/tablemouse/mouseeventsobserver.d.ts +1 -5
- package/src/tablemouse/mouseeventsobserver.js +34 -0
- package/{dist → src}/tablemouse.d.ts +1 -5
- package/src/tablemouse.js +178 -0
- package/{dist → src}/tableproperties/commands/tablealignmentcommand.d.ts +1 -5
- package/src/tableproperties/commands/tablealignmentcommand.js +30 -0
- package/{dist → src}/tableproperties/commands/tablebackgroundcolorcommand.d.ts +1 -5
- package/src/tableproperties/commands/tablebackgroundcolorcommand.js +30 -0
- package/{dist → src}/tableproperties/commands/tablebordercolorcommand.d.ts +2 -6
- package/src/tableproperties/commands/tablebordercolorcommand.js +44 -0
- package/{dist → src}/tableproperties/commands/tableborderstylecommand.d.ts +2 -6
- package/src/tableproperties/commands/tableborderstylecommand.js +44 -0
- package/{dist → src}/tableproperties/commands/tableborderwidthcommand.d.ts +2 -6
- package/src/tableproperties/commands/tableborderwidthcommand.js +64 -0
- package/{dist → src}/tableproperties/commands/tableheightcommand.d.ts +1 -5
- package/src/tableproperties/commands/tableheightcommand.js +54 -0
- package/{dist → src}/tableproperties/commands/tablepropertycommand.d.ts +2 -6
- package/src/tableproperties/commands/tablepropertycommand.js +103 -0
- package/{dist → src}/tableproperties/commands/tablewidthcommand.d.ts +1 -5
- package/src/tableproperties/commands/tablewidthcommand.js +54 -0
- package/{dist → src}/tableproperties/tablepropertiesediting.d.ts +1 -5
- package/src/tableproperties/tablepropertiesediting.js +546 -0
- package/{dist → src}/tableproperties/tablepropertiesui.d.ts +2 -6
- package/src/tableproperties/tablepropertiesui.js +374 -0
- package/src/tableproperties/tablepropertiesuiexperimental.d.ts +136 -0
- package/src/tableproperties/tablepropertiesuiexperimental.js +375 -0
- package/{dist → src}/tableproperties/ui/tablepropertiesview.d.ts +2 -14
- package/src/tableproperties/ui/tablepropertiesview.js +520 -0
- package/src/tableproperties/ui/tablepropertiesviewexperimental.d.ts +216 -0
- package/src/tableproperties/ui/tablepropertiesviewexperimental.js +544 -0
- package/{dist → src}/tableproperties.d.ts +1 -5
- package/src/tableproperties.js +40 -0
- package/{dist → src}/tableselection.d.ts +2 -6
- package/src/tableselection.js +323 -0
- package/{dist → src}/tabletoolbar.d.ts +2 -6
- package/src/tabletoolbar.js +63 -0
- package/{dist → src}/tableui.d.ts +1 -5
- package/src/tableui.js +335 -0
- package/{dist → src}/tableutils.d.ts +2 -6
- package/src/tableutils.js +1282 -0
- package/{dist → src}/tablewalker.d.ts +1 -5
- package/src/tablewalker.js +489 -0
- package/{dist → src}/ui/colorinputview.d.ts +2 -6
- package/src/ui/colorinputview.js +305 -0
- package/{dist → src}/ui/inserttableview.d.ts +2 -6
- package/src/ui/inserttableview.js +192 -0
- package/{dist → src}/utils/common.d.ts +2 -6
- package/src/utils/common.js +118 -0
- package/{dist → src}/utils/structure.d.ts +1 -5
- package/src/utils/structure.js +452 -0
- package/{dist → src}/utils/table-properties.d.ts +1 -5
- package/src/utils/table-properties.js +121 -0
- package/{dist → src}/utils/ui/contextualballoon.d.ts +2 -6
- package/src/utils/ui/contextualballoon.js +111 -0
- package/{dist → src}/utils/ui/table-properties.d.ts +2 -6
- package/src/utils/ui/table-properties.js +390 -0
- package/src/utils/ui/table-propertiesexperimental.d.ts +215 -0
- package/src/utils/ui/table-propertiesexperimental.js +391 -0
- package/{dist → src}/utils/ui/widget.d.ts +1 -5
- package/src/utils/ui/widget.js +56 -0
- package/theme/formrow-experimental.css +15 -0
- package/theme/formrow.css +0 -2
- package/theme/tablecellproperties-experimental.css +4 -0
- package/theme/tableform-experimental.css +61 -0
- package/theme/tableform.css +5 -1
- package/theme/tableproperties-experimental.css +78 -0
- package/theme/tableproperties.css +0 -60
- package/dist/tablecellproperties/tablecellpropertiesutils.d.ts +0 -22
|
@@ -0,0 +1,323 @@
|
|
|
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/tableselection
|
|
7
|
+
*/
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { first } from 'ckeditor5/src/utils.js';
|
|
10
|
+
import { TableWalker } from './tablewalker.js';
|
|
11
|
+
import { TableUtils } from './tableutils.js';
|
|
12
|
+
import { cropTableToDimensions, adjustLastRowIndex, adjustLastColumnIndex } from './utils/structure.js';
|
|
13
|
+
import '../theme/tableselection.css';
|
|
14
|
+
/**
|
|
15
|
+
* This plugin enables the advanced table cells, rows and columns selection.
|
|
16
|
+
* It is loaded automatically by the {@link module:table/table~Table} plugin.
|
|
17
|
+
*/
|
|
18
|
+
export class TableSelection extends Plugin {
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName() {
|
|
23
|
+
return 'TableSelection';
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @inheritDoc
|
|
27
|
+
*/
|
|
28
|
+
static get isOfficialPlugin() {
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
static get requires() {
|
|
35
|
+
return [TableUtils, TableUtils];
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @inheritDoc
|
|
39
|
+
*/
|
|
40
|
+
init() {
|
|
41
|
+
const editor = this.editor;
|
|
42
|
+
const model = editor.model;
|
|
43
|
+
const view = editor.editing.view;
|
|
44
|
+
this.listenTo(model, 'deleteContent', (evt, args) => this._handleDeleteContent(evt, args), { priority: 'high' });
|
|
45
|
+
this.listenTo(view.document, 'insertText', (evt, data) => this._handleInsertTextEvent(evt, data), { priority: 'high' });
|
|
46
|
+
this._defineSelectionConverter();
|
|
47
|
+
this._enablePluginDisabling(); // sic!
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Returns the currently selected table cells or `null` if it is not a table cells selection.
|
|
51
|
+
*/
|
|
52
|
+
getSelectedTableCells() {
|
|
53
|
+
const tableUtils = this.editor.plugins.get(TableUtils);
|
|
54
|
+
const selection = this.editor.model.document.selection;
|
|
55
|
+
const selectedCells = tableUtils.getSelectedTableCells(selection);
|
|
56
|
+
if (selectedCells.length == 0) {
|
|
57
|
+
return null;
|
|
58
|
+
}
|
|
59
|
+
// This should never happen, but let's know if it ever happens.
|
|
60
|
+
// @if CK_DEBUG // if ( selectedCells.length != selection.rangeCount ) {
|
|
61
|
+
// @if CK_DEBUG // console.warn( 'Mixed selection warning. The selection contains table cells and some other ranges.' );
|
|
62
|
+
// @if CK_DEBUG // }
|
|
63
|
+
return selectedCells;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns the selected table fragment as a document fragment.
|
|
67
|
+
*/
|
|
68
|
+
getSelectionAsFragment() {
|
|
69
|
+
const tableUtils = this.editor.plugins.get(TableUtils);
|
|
70
|
+
const selectedCells = this.getSelectedTableCells();
|
|
71
|
+
if (!selectedCells) {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
return this.editor.model.change(writer => {
|
|
75
|
+
const documentFragment = writer.createDocumentFragment();
|
|
76
|
+
const { first: firstColumn, last: lastColumn } = tableUtils.getColumnIndexes(selectedCells);
|
|
77
|
+
const { first: firstRow, last: lastRow } = tableUtils.getRowIndexes(selectedCells);
|
|
78
|
+
const sourceTable = selectedCells[0].findAncestor('table');
|
|
79
|
+
let adjustedLastRow = lastRow;
|
|
80
|
+
let adjustedLastColumn = lastColumn;
|
|
81
|
+
// If the selection is rectangular there could be a case of all cells in the last row/column spanned over
|
|
82
|
+
// next row/column so the real lastRow/lastColumn should be updated.
|
|
83
|
+
if (tableUtils.isSelectionRectangular(selectedCells)) {
|
|
84
|
+
const dimensions = {
|
|
85
|
+
firstColumn,
|
|
86
|
+
lastColumn,
|
|
87
|
+
firstRow,
|
|
88
|
+
lastRow
|
|
89
|
+
};
|
|
90
|
+
adjustedLastRow = adjustLastRowIndex(sourceTable, dimensions);
|
|
91
|
+
adjustedLastColumn = adjustLastColumnIndex(sourceTable, dimensions);
|
|
92
|
+
}
|
|
93
|
+
const cropDimensions = {
|
|
94
|
+
startRow: firstRow,
|
|
95
|
+
startColumn: firstColumn,
|
|
96
|
+
endRow: adjustedLastRow,
|
|
97
|
+
endColumn: adjustedLastColumn
|
|
98
|
+
};
|
|
99
|
+
const table = cropTableToDimensions(sourceTable, cropDimensions, writer);
|
|
100
|
+
writer.insert(table, documentFragment, 0);
|
|
101
|
+
return documentFragment;
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Sets the model selection based on given anchor and target cells (can be the same cell).
|
|
106
|
+
* Takes care of setting the backward flag.
|
|
107
|
+
*
|
|
108
|
+
* ```ts
|
|
109
|
+
* const modelRoot = editor.model.document.getRoot();
|
|
110
|
+
* const firstCell = modelRoot.getNodeByPath( [ 0, 0, 0 ] );
|
|
111
|
+
* const lastCell = modelRoot.getNodeByPath( [ 0, 0, 1 ] );
|
|
112
|
+
*
|
|
113
|
+
* const tableSelection = editor.plugins.get( 'TableSelection' );
|
|
114
|
+
* tableSelection.setCellSelection( firstCell, lastCell );
|
|
115
|
+
* ```
|
|
116
|
+
*/
|
|
117
|
+
setCellSelection(anchorCell, targetCell) {
|
|
118
|
+
const cellsToSelect = this._getCellsToSelect(anchorCell, targetCell);
|
|
119
|
+
this.editor.model.change(writer => {
|
|
120
|
+
writer.setSelection(cellsToSelect.cells.map(cell => writer.createRangeOn(cell)), { backward: cellsToSelect.backward });
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Returns the focus cell from the current selection.
|
|
125
|
+
*/
|
|
126
|
+
getFocusCell() {
|
|
127
|
+
const selection = this.editor.model.document.selection;
|
|
128
|
+
const focusCellRange = [...selection.getRanges()].pop();
|
|
129
|
+
const element = focusCellRange.getContainedElement();
|
|
130
|
+
if (element && element.is('element', 'tableCell')) {
|
|
131
|
+
return element;
|
|
132
|
+
}
|
|
133
|
+
return null;
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Returns the anchor cell from the current selection.
|
|
137
|
+
*/
|
|
138
|
+
getAnchorCell() {
|
|
139
|
+
const selection = this.editor.model.document.selection;
|
|
140
|
+
const anchorCellRange = first(selection.getRanges());
|
|
141
|
+
const element = anchorCellRange.getContainedElement();
|
|
142
|
+
if (element && element.is('element', 'tableCell')) {
|
|
143
|
+
return element;
|
|
144
|
+
}
|
|
145
|
+
return null;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Defines a selection converter which marks the selected cells with a specific class.
|
|
149
|
+
*
|
|
150
|
+
* The real DOM selection is put in the last cell. Since the order of ranges is dependent on whether the
|
|
151
|
+
* selection is backward or not, the last cell will usually be close to the "focus" end of the selection
|
|
152
|
+
* (a selection has anchor and focus).
|
|
153
|
+
*
|
|
154
|
+
* The real DOM selection is then hidden with CSS.
|
|
155
|
+
*/
|
|
156
|
+
_defineSelectionConverter() {
|
|
157
|
+
const editor = this.editor;
|
|
158
|
+
const highlighted = new Set();
|
|
159
|
+
editor.conversion.for('editingDowncast').add(dispatcher => dispatcher.on('selection', (evt, data, conversionApi) => {
|
|
160
|
+
const viewWriter = conversionApi.writer;
|
|
161
|
+
clearHighlightedTableCells(viewWriter);
|
|
162
|
+
const selectedCells = this.getSelectedTableCells();
|
|
163
|
+
if (!selectedCells) {
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
for (const tableCell of selectedCells) {
|
|
167
|
+
const viewElement = conversionApi.mapper.toViewElement(tableCell);
|
|
168
|
+
viewWriter.addClass('ck-editor__editable_selected', viewElement);
|
|
169
|
+
highlighted.add(viewElement);
|
|
170
|
+
}
|
|
171
|
+
const lastViewCell = conversionApi.mapper.toViewElement(selectedCells[selectedCells.length - 1]);
|
|
172
|
+
viewWriter.setSelection(lastViewCell, 0);
|
|
173
|
+
}, { priority: 'lowest' }));
|
|
174
|
+
function clearHighlightedTableCells(viewWriter) {
|
|
175
|
+
for (const previouslyHighlighted of highlighted) {
|
|
176
|
+
viewWriter.removeClass('ck-editor__editable_selected', previouslyHighlighted);
|
|
177
|
+
}
|
|
178
|
+
highlighted.clear();
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Creates a listener that reacts to changes in {@link #isEnabled} and, if the plugin was disabled,
|
|
183
|
+
* it collapses the multi-cell selection to a regular selection placed inside a table cell.
|
|
184
|
+
*
|
|
185
|
+
* This listener helps features that disable the table selection plugin bring the selection
|
|
186
|
+
* to a clear state they can work with (for instance, because they don't support multiple cell selection).
|
|
187
|
+
*/
|
|
188
|
+
_enablePluginDisabling() {
|
|
189
|
+
const editor = this.editor;
|
|
190
|
+
this.on('change:isEnabled', () => {
|
|
191
|
+
if (!this.isEnabled) {
|
|
192
|
+
const selectedCells = this.getSelectedTableCells();
|
|
193
|
+
if (!selectedCells) {
|
|
194
|
+
return;
|
|
195
|
+
}
|
|
196
|
+
editor.model.change(writer => {
|
|
197
|
+
const position = writer.createPositionAt(selectedCells[0], 0);
|
|
198
|
+
const range = editor.model.schema.getNearestSelectionRange(position);
|
|
199
|
+
writer.setSelection(range);
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Overrides the default `model.deleteContent()` behavior over a selected table fragment.
|
|
206
|
+
*
|
|
207
|
+
* @param args Delete content method arguments.
|
|
208
|
+
*/
|
|
209
|
+
_handleDeleteContent(event, args) {
|
|
210
|
+
const tableUtils = this.editor.plugins.get(TableUtils);
|
|
211
|
+
const selection = args[0];
|
|
212
|
+
const options = args[1];
|
|
213
|
+
const model = this.editor.model;
|
|
214
|
+
const isBackward = !options || options.direction == 'backward';
|
|
215
|
+
const selectedTableCells = tableUtils.getSelectedTableCells(selection);
|
|
216
|
+
if (!selectedTableCells.length) {
|
|
217
|
+
return;
|
|
218
|
+
}
|
|
219
|
+
event.stop();
|
|
220
|
+
model.change(writer => {
|
|
221
|
+
const tableCellToSelect = selectedTableCells[isBackward ? selectedTableCells.length - 1 : 0];
|
|
222
|
+
model.change(writer => {
|
|
223
|
+
for (const tableCell of selectedTableCells) {
|
|
224
|
+
model.deleteContent(writer.createSelection(tableCell, 'in'));
|
|
225
|
+
}
|
|
226
|
+
});
|
|
227
|
+
const rangeToSelect = model.schema.getNearestSelectionRange(writer.createPositionAt(tableCellToSelect, 0));
|
|
228
|
+
// Note: we ignore the case where rangeToSelect may be null because deleteContent() will always (unless someone broke it)
|
|
229
|
+
// create an empty paragraph to accommodate the selection.
|
|
230
|
+
if (selection.is('documentSelection')) {
|
|
231
|
+
writer.setSelection(rangeToSelect);
|
|
232
|
+
}
|
|
233
|
+
else {
|
|
234
|
+
selection.setTo(rangeToSelect);
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* This handler makes it possible to remove the content of all selected cells by starting to type.
|
|
240
|
+
* If you take a look at {@link #_defineSelectionConverter} you will find out that despite the multi-cell selection being set
|
|
241
|
+
* in the model, the view selection is collapsed in the last cell (because most browsers are unable to render multi-cell selections;
|
|
242
|
+
* yes, it's a hack).
|
|
243
|
+
*
|
|
244
|
+
* When multiple cells are selected in the model and the user starts to type, the
|
|
245
|
+
* {@link module:engine/view/document~ViewDocument#event:insertText} event carries information provided by the
|
|
246
|
+
* beforeinput DOM event, that in turn only knows about this collapsed DOM selection in the last cell.
|
|
247
|
+
*
|
|
248
|
+
* As a result, the selected cells have no chance to be cleaned up. To fix this, this listener intercepts
|
|
249
|
+
* the event and injects the custom view selection in the data that translates correctly to the actual state
|
|
250
|
+
* of the multi-cell selection in the model.
|
|
251
|
+
*
|
|
252
|
+
* @param data Insert text event data.
|
|
253
|
+
*/
|
|
254
|
+
_handleInsertTextEvent(evt, data) {
|
|
255
|
+
const editor = this.editor;
|
|
256
|
+
const selectedCells = this.getSelectedTableCells();
|
|
257
|
+
if (!selectedCells) {
|
|
258
|
+
return;
|
|
259
|
+
}
|
|
260
|
+
const view = editor.editing.view;
|
|
261
|
+
const mapper = editor.editing.mapper;
|
|
262
|
+
const viewRanges = selectedCells.map(tableCell => view.createRangeOn(mapper.toViewElement(tableCell)));
|
|
263
|
+
data.selection = view.createSelection(viewRanges);
|
|
264
|
+
// Do not let the browser handle it itself. We must modify the model and then apply changes to the view and DOM.
|
|
265
|
+
data.preventDefault();
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Returns an array of table cells that should be selected based on the
|
|
269
|
+
* given anchor cell and target (focus) cell.
|
|
270
|
+
*
|
|
271
|
+
* The cells are returned in a reverse direction if the selection is backward.
|
|
272
|
+
*/
|
|
273
|
+
_getCellsToSelect(anchorCell, targetCell) {
|
|
274
|
+
const tableUtils = this.editor.plugins.get('TableUtils');
|
|
275
|
+
const startLocation = tableUtils.getCellLocation(anchorCell);
|
|
276
|
+
const endLocation = tableUtils.getCellLocation(targetCell);
|
|
277
|
+
const startRow = Math.min(startLocation.row, endLocation.row);
|
|
278
|
+
const endRow = Math.max(startLocation.row, endLocation.row);
|
|
279
|
+
const startColumn = Math.min(startLocation.column, endLocation.column);
|
|
280
|
+
// Adjust the selection to include the entire row if a cell with colspan is selected.
|
|
281
|
+
// This ensures that the selection covers the full width of the colspan cell.
|
|
282
|
+
//
|
|
283
|
+
// Example:
|
|
284
|
+
// +---+---+---+---+
|
|
285
|
+
// | A | B | C | D |
|
|
286
|
+
// +---+---+---+---+
|
|
287
|
+
// | E |
|
|
288
|
+
// +---+---+---+---+
|
|
289
|
+
//
|
|
290
|
+
// If the selection starts at `B` and ends at `E`, the entire first row should be selected.
|
|
291
|
+
//
|
|
292
|
+
// In other words, the selection will represent the following cells:
|
|
293
|
+
// * Without this adjustment, only `B`, `A` and `E` would be selected.
|
|
294
|
+
// * With this adjustment, `A`, `B`, `C`, `D`, and `E` are selected.
|
|
295
|
+
//
|
|
296
|
+
// See: https://github.com/ckeditor/ckeditor5/issues/17538
|
|
297
|
+
const endColumnExtraColspan = (parseInt(targetCell.getAttribute('colspan') || '1') - 1);
|
|
298
|
+
const endColumn = Math.max(startLocation.column, endLocation.column + endColumnExtraColspan);
|
|
299
|
+
// 2-dimensional array of the selected cells to ease flipping the order of cells for backward selections.
|
|
300
|
+
const selectionMap = new Array(endRow - startRow + 1).fill(null).map(() => []);
|
|
301
|
+
const walkerOptions = {
|
|
302
|
+
startRow,
|
|
303
|
+
endRow,
|
|
304
|
+
startColumn,
|
|
305
|
+
endColumn
|
|
306
|
+
};
|
|
307
|
+
for (const { row, cell } of new TableWalker(anchorCell.findAncestor('table'), walkerOptions)) {
|
|
308
|
+
selectionMap[row - startRow].push(cell);
|
|
309
|
+
}
|
|
310
|
+
const flipVertically = endLocation.row < startLocation.row;
|
|
311
|
+
const flipHorizontally = endLocation.column < startLocation.column;
|
|
312
|
+
if (flipVertically) {
|
|
313
|
+
selectionMap.reverse();
|
|
314
|
+
}
|
|
315
|
+
if (flipHorizontally) {
|
|
316
|
+
selectionMap.forEach(row => row.reverse());
|
|
317
|
+
}
|
|
318
|
+
return {
|
|
319
|
+
cells: selectionMap.flat(),
|
|
320
|
+
backward: flipVertically || flipHorizontally
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
}
|
|
@@ -1,7 +1,3 @@
|
|
|
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
1
|
/**
|
|
6
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -9,8 +5,8 @@
|
|
|
9
5
|
/**
|
|
10
6
|
* @module table/tabletoolbar
|
|
11
7
|
*/
|
|
12
|
-
import { Plugin } from '
|
|
13
|
-
import { WidgetToolbarRepository } from '
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { WidgetToolbarRepository } from 'ckeditor5/src/widget.js';
|
|
14
10
|
/**
|
|
15
11
|
* The table toolbar class. It creates toolbars for the table feature and its content (for now only for the table cell content).
|
|
16
12
|
*
|
|
@@ -0,0 +1,63 @@
|
|
|
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/tabletoolbar
|
|
7
|
+
*/
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { WidgetToolbarRepository } from 'ckeditor5/src/widget.js';
|
|
10
|
+
import { getSelectedTableWidget, getTableWidgetAncestor } from './utils/ui/widget.js';
|
|
11
|
+
/**
|
|
12
|
+
* The table toolbar class. It creates toolbars for the table feature and its content (for now only for the table cell content).
|
|
13
|
+
*
|
|
14
|
+
* The table toolbar shows up when a table widget is selected. Its components (e.g. buttons) are created based on the
|
|
15
|
+
* {@link module:table/tableconfig~TableConfig#tableToolbar `table.tableToolbar` configuration option}.
|
|
16
|
+
*
|
|
17
|
+
* Table content toolbar shows up when the selection is inside the content of a table. It creates its component based on the
|
|
18
|
+
* {@link module:table/tableconfig~TableConfig#contentToolbar `table.contentToolbar` configuration option}.
|
|
19
|
+
*/
|
|
20
|
+
export class TableToolbar extends Plugin {
|
|
21
|
+
/**
|
|
22
|
+
* @inheritDoc
|
|
23
|
+
*/
|
|
24
|
+
static get requires() {
|
|
25
|
+
return [WidgetToolbarRepository];
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get pluginName() {
|
|
31
|
+
return 'TableToolbar';
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @inheritDoc
|
|
35
|
+
*/
|
|
36
|
+
static get isOfficialPlugin() {
|
|
37
|
+
return true;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @inheritDoc
|
|
41
|
+
*/
|
|
42
|
+
afterInit() {
|
|
43
|
+
const editor = this.editor;
|
|
44
|
+
const t = editor.t;
|
|
45
|
+
const widgetToolbarRepository = editor.plugins.get(WidgetToolbarRepository);
|
|
46
|
+
const tableContentToolbarItems = editor.config.get('table.contentToolbar');
|
|
47
|
+
const tableToolbarItems = editor.config.get('table.tableToolbar');
|
|
48
|
+
if (tableContentToolbarItems) {
|
|
49
|
+
widgetToolbarRepository.register('tableContent', {
|
|
50
|
+
ariaLabel: t('Table toolbar'),
|
|
51
|
+
items: tableContentToolbarItems,
|
|
52
|
+
getRelatedElement: getTableWidgetAncestor
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
if (tableToolbarItems) {
|
|
56
|
+
widgetToolbarRepository.register('table', {
|
|
57
|
+
ariaLabel: t('Table toolbar'),
|
|
58
|
+
items: tableToolbarItems,
|
|
59
|
+
getRelatedElement: getSelectedTableWidget
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -1,7 +1,3 @@
|
|
|
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
1
|
/**
|
|
6
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -9,7 +5,7 @@
|
|
|
9
5
|
/**
|
|
10
6
|
* @module table/tableui
|
|
11
7
|
*/
|
|
12
|
-
import { Plugin } from '
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
13
9
|
/**
|
|
14
10
|
* The table UI plugin. It introduces:
|
|
15
11
|
*
|