|
@@ -0,0 +1,1715 @@
|
|
|
|
|
+/**
|
|
|
|
|
+ * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
|
|
|
|
|
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+/* globals document console */
|
|
|
|
|
+
|
|
|
|
|
+import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
|
|
|
|
|
+import BlockQuoteEditing from '@ckeditor/ckeditor5-block-quote/src/blockquoteediting';
|
|
|
|
|
+import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
|
|
|
|
|
+import HorizontalLineEditing from '@ckeditor/ckeditor5-horizontal-line/src/horizontallineediting';
|
|
|
|
|
+import ImageCaptionEditing from '@ckeditor/ckeditor5-image/src/imagecaption/imagecaptionediting';
|
|
|
|
|
+import ImageEditing from '@ckeditor/ckeditor5-image/src/image/imageediting';
|
|
|
|
|
+import ListEditing from '@ckeditor/ckeditor5-list/src/listediting';
|
|
|
|
|
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
|
|
|
+import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
|
|
|
|
|
+import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
|
|
|
|
|
+import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
|
|
|
|
|
+import { assertSelectedCells, modelTable, viewTable } from './_utils/utils';
|
|
|
|
|
+
|
|
|
|
|
+import TableEditing from '../src/tableediting';
|
|
|
|
|
+import TableCellPropertiesEditing from '../src/tablecellproperties/tablecellpropertiesediting';
|
|
|
|
|
+import TableWalker from '../src/tablewalker';
|
|
|
|
|
+
|
|
|
|
|
+import TableClipboard from '../src/tableclipboard';
|
|
|
|
|
+
|
|
|
|
|
+describe( 'table clipboard', () => {
|
|
|
|
|
+ let editor, model, modelRoot, tableSelection, viewDocument, element;
|
|
|
|
|
+
|
|
|
|
|
+ testUtils.createSinonSandbox();
|
|
|
|
|
+
|
|
|
|
|
+ beforeEach( () => {
|
|
|
|
|
+ element = document.createElement( 'div' );
|
|
|
|
|
+ document.body.appendChild( element );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ afterEach( async () => {
|
|
|
|
|
+ await editor.destroy();
|
|
|
|
|
+
|
|
|
|
|
+ element.remove();
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'Clipboard integration - paste (selection scenarios)', () => {
|
|
|
|
|
+ beforeEach( async () => {
|
|
|
|
|
+ await createEditor();
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00[]', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should be disabled in a readonly mode', () => {
|
|
|
|
|
+ editor.isReadOnly = true;
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const data = pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ editor.isReadOnly = false;
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ sinon.assert.calledOnce( data.preventDefault );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should allow normal paste if no table cells are selected', () => {
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', '<p>foo</p>' );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ editor.isReadOnly = false;
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model ), modelTable( [
|
|
|
|
|
+ [ '00foo[]', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should not alter model.insertContent if selectable is different from document selection', () => {
|
|
|
|
|
+ model.change( writer => {
|
|
|
|
|
+ writer.setSelection( modelRoot.getNodeByPath( [ 0, 0, 0 ] ), 0 );
|
|
|
|
|
+
|
|
|
|
|
+ const selectedTableCells = model.createSelection( [
|
|
|
|
|
+ model.createRangeOn( modelRoot.getNodeByPath( [ 0, 0, 0 ] ) ),
|
|
|
|
|
+ model.createRangeOn( modelRoot.getNodeByPath( [ 0, 0, 1 ] ) ),
|
|
|
|
|
+ model.createRangeOn( modelRoot.getNodeByPath( [ 0, 1, 0 ] ) ),
|
|
|
|
|
+ model.createRangeOn( modelRoot.getNodeByPath( [ 0, 1, 1 ] ) )
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ const tableToInsert = editor.plugins.get( 'TableUtils' ).createTable( writer, 2, 2 );
|
|
|
|
|
+
|
|
|
|
|
+ for ( const { cell } of new TableWalker( tableToInsert ) ) {
|
|
|
|
|
+ writer.insertText( 'foo', cell.getChild( 0 ), 0 );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ model.insertContent( tableToInsert, selectedTableCells );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '', '', '02', '03' ],
|
|
|
|
|
+ [ '', '', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should not alter model.insertContent if no table pasted', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', '<p>foo</p>' );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'foo', '', '02', '03' ],
|
|
|
|
|
+ [ '', '', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should not alter model.insertContent if mixed content is pasted (table + paragraph)', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const table = viewTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ] ] );
|
|
|
|
|
+
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', `${ table }<p>foo</p>` );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'foo', '', '02', '03' ],
|
|
|
|
|
+ [ '', '', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should not alter model.insertContent if mixed content is pasted (paragraph + table)', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const table = viewTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ] ] );
|
|
|
|
|
+
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', `<p>foo</p>${ table }` );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'foo', '', '02', '03' ],
|
|
|
|
|
+ [ '', '', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should not alter model.insertContent if mixed content is pasted (table + table)', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const table = viewTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ] ] );
|
|
|
|
|
+
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', `${ table }${ table }` );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '', '', '02', '03' ],
|
|
|
|
|
+ [ '', '', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should alter model.insertContent if selectable is a document selection', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ model.change( writer => {
|
|
|
|
|
+ const tableToInsert = editor.plugins.get( 'TableUtils' ).createTable( writer, 2, 2 );
|
|
|
|
|
+
|
|
|
|
|
+ for ( const { cell } of new TableWalker( tableToInsert ) ) {
|
|
|
|
|
+ writer.insertText( 'foo', cell.getChild( 0 ), 0 );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ model.insertContent( tableToInsert, editor.model.document.selection );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'foo', 'foo', '02', '03' ],
|
|
|
|
|
+ [ 'foo', 'foo', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'should block non-rectangular selection', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ { contents: '00', colspan: 3 } ],
|
|
|
|
|
+ [ '10', '11', '12' ],
|
|
|
|
|
+ [ '20', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // Catches the temporary console log in the CK_DEBUG mode.
|
|
|
|
|
+ sinon.stub( console, 'log' );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ { contents: '00', colspan: 3 } ],
|
|
|
|
|
+ [ '10', '11', '12' ],
|
|
|
|
|
+ [ '20', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'single cell selected', () => {
|
|
|
|
|
+ it( 'blocks this case', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '10', '11', '12' ],
|
|
|
|
|
+ [ '20', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // Catches the temporary console log in the CK_DEBUG mode.
|
|
|
|
|
+ sinon.stub( console, 'log' );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '10', '11', '12' ],
|
|
|
|
|
+ [ '20', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'pasted table is equal to the selected area', () => {
|
|
|
|
|
+ describe( 'no spans', () => {
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - at the beginning of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', '02', '03' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - at the end of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', 'aa', 'ab' ],
|
|
|
|
|
+ [ '30', '31', 'ba', 'bb' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 1, 1 ],
|
|
|
|
|
+ [ 0, 0, 1, 1 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', 'ab', '13' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple row paste to a simple row fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', 'ab', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple column paste to a simple column fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa' ],
|
|
|
|
|
+ [ 'ba' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', '12', '13' ],
|
|
|
|
|
+ [ '20', 'ba', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - whole table selected', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'pasted table has spans', () => {
|
|
|
|
|
+ it( 'handles pasting table that has cell with colspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { colspan: 2, contents: 'aa' } ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', { colspan: 2, contents: 'aa' }, '13' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has many cells with various colspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 2, contents: 'ab' } ],
|
|
|
|
|
+ [ { colspan: 3, contents: 'ba' } ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ],
|
|
|
|
|
+ [ { colspan: 2, contents: 'da' }, 'dc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 2, contents: 'ab' }, '03' ],
|
|
|
|
|
+ [ { colspan: 3, contents: 'ba' }, '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ { colspan: 2, contents: 'da' }, 'dc', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has cell with rowspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { rowspan: 2, contents: 'aa' }, 'ab' ],
|
|
|
|
|
+ [ 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', { rowspan: 2, contents: 'aa' }, 'ab', '13' ],
|
|
|
|
|
+ [ '20', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has many cells with various rowspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: 'ba' }, 'bd' ],
|
|
|
|
|
+ [ 'cc', 'cd' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: 'ba' }, 'bd' ],
|
|
|
|
|
+ [ 'cc', 'cd' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting multi-spanned table', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04', '05' ],
|
|
|
|
|
+ [ '10', '11', '12', '13', '14', '15' ],
|
|
|
|
|
+ [ '20', '21', '22', '23', '24', '25' ],
|
|
|
|
|
+ [ '30', '31', '32', '33', '34', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 4 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | aa | ac | ad | ae |
|
|
|
|
|
+ // +----+----+----+----+ +
|
|
|
|
|
+ // | ba | bb | |
|
|
|
|
|
+ // +----+ +----+
|
|
|
|
|
+ // | ca | | ce |
|
|
|
|
|
+ // + +----+----+----+----+
|
|
|
|
|
+ // | | db | dc | dd |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { contents: 'aa', colspan: 2 }, 'ac', 'ad', { contents: 'ae', rowspan: 2 } ],
|
|
|
|
|
+ [ 'ba', { contents: 'bb', colspan: 3, rowspan: 2 } ],
|
|
|
|
|
+ [ { contents: 'ca', rowspan: 2 }, 'ce' ],
|
|
|
|
|
+ [ 'db', 'dc', { contents: 'dd', colspan: 2 } ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | aa | ac | ad | ae | 05 |
|
|
|
|
|
+ // +----+----+----+----+ +----+
|
|
|
|
|
+ // | ba | bb | | 15 |
|
|
|
|
|
+ // +----+ +----+----+
|
|
|
|
|
+ // | ca | | ce | 25 |
|
|
|
|
|
+ // + +----+----+----+----+----+
|
|
|
|
|
+ // | | db | dc | dd | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 | 45 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ { contents: 'aa', colspan: 2 }, 'ac', 'ad', { contents: 'ae', rowspan: 2 }, '05' ],
|
|
|
|
|
+ [ 'ba', { contents: 'bb', colspan: 3, rowspan: 2 }, '15' ],
|
|
|
|
|
+ [ { contents: 'ca', rowspan: 2 }, 'ce', '25' ],
|
|
|
|
|
+ [ 'db', 'dc', { contents: 'dd', colspan: 2 }, '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'content table has spans', () => {
|
|
|
|
|
+ it( 'handles pasting simple table over a table with colspans (no colspan exceeds selection)', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00[]', '01', '02', '03' ],
|
|
|
|
|
+ [ { colspan: 3, contents: '10' }, '13' ],
|
|
|
|
|
+ [ { colspan: 2, contents: '20' }, '22', '23' ],
|
|
|
|
|
+ [ '30', '31', { colspan: 2, contents: '31' } ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', '03' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ '30', '31', { colspan: 2, contents: '31' } ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting simple table over a table with rowspans (no rowspan exceeds selection)', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', { rowspan: 3, contents: '01' }, { rowspan: 2, contents: '02' }, '03' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: '10' }, '13' ],
|
|
|
|
|
+ [ '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 0 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', '03' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting simple table over table with multi-spans (no span exceeds selection)', () => {
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 02 | 03 | 05 |
|
|
|
|
|
+ // + + + +----+
|
|
|
|
|
+ // | | | | 15 |
|
|
|
|
|
+ // +----+----+----+ +----+
|
|
|
|
|
+ // | 20 | 21 | | 25 |
|
|
|
|
|
+ // + +----+----+----+----+----+
|
|
|
|
|
+ // | | 31 | 32 | 34 | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 | 45 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [
|
|
|
|
|
+ { contents: '00', colspan: 2, rowspan: 2 },
|
|
|
|
|
+ { contents: '02', rowspan: 2 },
|
|
|
|
|
+ { contents: '03', colspan: 2, rowspan: 3 },
|
|
|
|
|
+ '05'
|
|
|
|
|
+ ],
|
|
|
|
|
+ [ '15' ],
|
|
|
|
|
+ [ { contents: '20', rowspan: 2 }, { contents: '21', colspan: 2 }, '25' ],
|
|
|
|
|
+ [ '31', { contents: '32', colspan: 2 }, '34', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 2 ] ) // Cell 34.
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad', 'ae' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd', 'be' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd', 'ce' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd', 'de' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad', 'ae', '05' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd', 'be', '15' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd', 'ce', '25' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd', 'de', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting simple table over a table with rowspan (rowspan before selection)', () => {
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 | 04 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 10 | 11 | 12 | 13 | 14 |
|
|
|
|
|
+ // +----+ +----+----+----+
|
|
|
|
|
+ // | 20 | | 22 | 23 | 24 |
|
|
|
|
|
+ // +----+ +----+----+----+
|
|
|
|
|
+ // | 30 | | 32 | 33 | 34 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04' ],
|
|
|
|
|
+ [ '10', { contents: '11', rowspan: 3 }, '12', '13', '14' ],
|
|
|
|
|
+ [ '20', '22', '23', '24' ],
|
|
|
|
|
+ [ '30', '32', '33', '34' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 2 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 2 ] ) // Cell 33.
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ],
|
|
|
|
|
+ [ 'ca', 'cb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 | 04 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 10 | 11 | aa | ab | 14 |
|
|
|
|
|
+ // +----+ +----+----+----+
|
|
|
|
|
+ // | 20 | | ba | bb | 24 |
|
|
|
|
|
+ // +----+ +----+----+----+
|
|
|
|
|
+ // | 30 | | ca | cb | 34 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04' ],
|
|
|
|
|
+ [ '10', { contents: '11', rowspan: 3 }, 'aa', 'ab', '14' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '24' ],
|
|
|
|
|
+ [ '30', 'ca', 'cb', '34' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting simple table over a table with rowspans (rowspan before selection)', () => {
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 | 04 | 05 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 10 | 12 | 13 | 14 | 15 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 20 | 23 | 24 | 25 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 30 | 31 | 32 | 33 | 34 | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04', '05' ],
|
|
|
|
|
+ [ { contents: '10', colspan: 2 }, '12', '13', '14', '15' ],
|
|
|
|
|
+ [ { contents: '20', colspan: 3 }, '23', '24', '25' ],
|
|
|
|
|
+ [ '30', '31', '32', '33', '34', '35' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 2 ] ), // Cell 13.
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] ) // Cell 24.
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 | 04 | 05 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 10 | 12 | aa | ab | 15 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 20 | ba | bb | 25 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 30 | 31 | 32 | 33 | 34 | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04', '05' ],
|
|
|
|
|
+ [ { contents: '10', colspan: 2 }, '12', 'aa', 'ab', '15' ],
|
|
|
|
|
+ [ { contents: '20', colspan: 3 }, 'ba', 'bb', '25' ],
|
|
|
|
|
+ [ '30', '31', '32', '33', '34', '35' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ // TODO: Skipped case - should allow pasting but no tools to compare areas (like in MergeCellsCommand).
|
|
|
|
|
+ it.skip( 'handles pasting table that has cell with colspan (last row in selection is spanned)', () => {
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 10 | 11 | 13 |
|
|
|
|
|
+ // + + +----+
|
|
|
|
|
+ // | | | 23 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 30 | 31 | 32 | 33 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ { contents: '10', rowspan: 2 }, { contents: '11', colspan: 2, rowspan: 2 }, '13' ],
|
|
|
|
|
+ [ '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 2 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 0 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', '03' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'content and paste tables have spans', () => {
|
|
|
|
|
+ it( 'handles pasting colspanned table over table with colspans (no colspan exceeds selection)', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00[]', '01', '02', '03' ],
|
|
|
|
|
+ [ { colspan: 3, contents: '10' }, '13' ],
|
|
|
|
|
+ [ { colspan: 2, contents: '20' }, '22', '23' ],
|
|
|
|
|
+ [ '30', '31', { colspan: 2, contents: '31' } ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 2, contents: 'ab' } ],
|
|
|
|
|
+ [ { colspan: 3, contents: 'ba' } ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 2, contents: 'ab' }, '03' ],
|
|
|
|
|
+ [ { colspan: 3, contents: 'ba' }, '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ '30', '31', { colspan: 2, contents: '31' } ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting rowspanned table over table with rowspans (no rowspan exceeds selection)', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ { rowspan: 3, contents: '00' }, { rowspan: 2, contents: '01' }, '02', '03' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: '12' }, '13' ],
|
|
|
|
|
+ [ '21', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: 'ba' }, 'bd' ],
|
|
|
|
|
+ [ 'cc', 'cd' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: 'ba' }, 'bd' ],
|
|
|
|
|
+ [ 'cc', 'cd' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting multi-spanned table over table with multi-spans (no span exceeds selection)', () => {
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 02 | 03 | 05 |
|
|
|
|
|
+ // + + + +----+
|
|
|
|
|
+ // | | | | 15 |
|
|
|
|
|
+ // +----+----+----+ +----+
|
|
|
|
|
+ // | 20 | 21 | | 25 |
|
|
|
|
|
+ // + +----+----+----+----+----+
|
|
|
|
|
+ // | | 31 | 32 | 34 | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 | 45 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [
|
|
|
|
|
+ { contents: '00', colspan: 2, rowspan: 2 },
|
|
|
|
|
+ { contents: '02', rowspan: 2 },
|
|
|
|
|
+ { contents: '03', colspan: 2, rowspan: 3 },
|
|
|
|
|
+ '05'
|
|
|
|
|
+ ],
|
|
|
|
|
+ [ '15' ],
|
|
|
|
|
+ [ { contents: '20', rowspan: 2 }, { contents: '21', colspan: 2 }, '25' ],
|
|
|
|
|
+ [ '31', { contents: '32', colspan: 2 }, '34', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | aa | ac | ad | ae |
|
|
|
|
|
+ // +----+----+----+----+ +
|
|
|
|
|
+ // | ba | bb | |
|
|
|
|
|
+ // +----+ +----+
|
|
|
|
|
+ // | ca | | ce |
|
|
|
|
|
+ // + +----+----+----+----+
|
|
|
|
|
+ // | | db | dc | dd |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { contents: 'aa', colspan: 2 }, 'ac', 'ad', { contents: 'ae', rowspan: 2 } ],
|
|
|
|
|
+ [ 'ba', { contents: 'bb', colspan: 3, rowspan: 2 } ],
|
|
|
|
|
+ [ { contents: 'ca', rowspan: 2 }, 'ce' ],
|
|
|
|
|
+ [ 'db', 'dc', { contents: 'dd', colspan: 2 } ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | aa | ac | ad | ae | 05 |
|
|
|
|
|
+ // +----+----+----+----+ +----+
|
|
|
|
|
+ // | ba | bb | | 15 |
|
|
|
|
|
+ // +----+ +----+----+
|
|
|
|
|
+ // | ca | | ce | 25 |
|
|
|
|
|
+ // + +----+----+----+----+----+
|
|
|
|
|
+ // | | db | dc | dd | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 | 45 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ { contents: 'aa', colspan: 2 }, 'ac', 'ad', { contents: 'ae', rowspan: 2 }, '05' ],
|
|
|
|
|
+ [ 'ba', { contents: 'bb', colspan: 3, rowspan: 2 }, '15' ],
|
|
|
|
|
+ [ { contents: 'ca', rowspan: 2 }, 'ce', '25' ],
|
|
|
|
|
+ [ 'db', 'dc', { contents: 'dd', colspan: 2 }, '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ // TODO: Skipped case - should allow pasting but no tools to compare areas (like in MergeCellsCommand).
|
|
|
|
|
+ it.skip( 'handles pasting table that has cell with colspan (last row in selection is spanned)', () => {
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 10 | 11 | 13 |
|
|
|
|
|
+ // + + +----+
|
|
|
|
|
+ // | | | 23 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ // | 30 | 31 | 32 | 33 |
|
|
|
|
|
+ // +----+----+----+----+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ { contents: '10', rowspan: 2 }, { contents: '11', colspan: 2, rowspan: 2 }, '13' ],
|
|
|
|
|
+ [ '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 2 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 0 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+
|
|
|
|
|
+ // | aa | ab | ac |
|
|
|
|
|
+ // +----+----+----+
|
|
|
|
|
+ // | ba | bc |
|
|
|
|
|
+ // + +----+
|
|
|
|
|
+ // | | cc |
|
|
|
|
|
+ // +----+----+----+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ { contents: 'ba', colspan: 2, rowspan: 2 }, 'bc' ],
|
|
|
|
|
+ [ 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', { colspan: 2, contents: 'aa' }, '13' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'pasted table is bigger than the selected area', () => {
|
|
|
|
|
+ describe( 'no spans', () => {
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - at the beginning of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', '02', '03' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - at the end of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', 'aa', 'ab' ],
|
|
|
|
|
+ [ '30', '31', 'ba', 'bb' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 1, 1 ],
|
|
|
|
|
+ [ 0, 0, 1, 1 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', 'ab', '13' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles paste to a simple row fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', 'ab', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles paste to a simple column fragment - in the middle of a table', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', 'aa', '12', '13' ],
|
|
|
|
|
+ [ '20', 'ba', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles simple table paste to a simple table fragment - whole table selected', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad', 'ae' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd', 'be' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd', 'ce' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd', 'de' ],
|
|
|
|
|
+ [ 'ea', 'eb', 'ec', 'ed', 'ee' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', 'ac', 'ad' ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc', 'bd' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'pasted table has spans', () => {
|
|
|
|
|
+ it( 'handles pasting table that has cell with colspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { colspan: 3, contents: 'aa' } ],
|
|
|
|
|
+ [ 'ba', 'bb', 'bc' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', { colspan: 2, contents: 'aa' }, '13' ],
|
|
|
|
|
+ [ '20', 'ba', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has many cells with various colspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 3, contents: 'ab' } ],
|
|
|
|
|
+ [ { colspan: 4, contents: 'ba' } ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', 'cd' ],
|
|
|
|
|
+ [ { colspan: 2, contents: 'da' }, 'dc', 'dd' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { colspan: 2, contents: 'ab' }, '03' ],
|
|
|
|
|
+ [ { colspan: 3, contents: 'ba' }, '13' ],
|
|
|
|
|
+ [ 'ca', 'cb', 'cc', '23' ],
|
|
|
|
|
+ [ { colspan: 2, contents: 'da' }, 'dc', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 1, 0 ],
|
|
|
|
|
+ [ 1, 1, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has cell with rowspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 2 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { rowspan: 3, contents: 'aa' }, 'ab' ],
|
|
|
|
|
+ [ 'bb' ],
|
|
|
|
|
+ [ 'cb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', { rowspan: 2, contents: 'aa' }, 'ab', '13' ],
|
|
|
|
|
+ [ '20', 'bb', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0 ],
|
|
|
|
|
+ [ 0, 1, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting table that has many cells with various rowspan', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 2, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad', 'ae' ],
|
|
|
|
|
+ [ { rowspan: 3, contents: 'ba' }, 'bd', 'be' ],
|
|
|
|
|
+ [ 'cc', 'cd', 'ce' ],
|
|
|
|
|
+ [ 'da', 'db', 'dc', 'dd' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', { rowspan: 3, contents: 'ab' }, { rowspan: 2, contents: 'ac' }, 'ad' ],
|
|
|
|
|
+ [ { rowspan: 2, contents: 'ba' }, 'bd' ],
|
|
|
|
|
+ [ 'cc', 'cd' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 1, 1 ],
|
|
|
|
|
+ [ 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles pasting multi-spanned table', () => {
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04', '05' ],
|
|
|
|
|
+ [ '10', '11', '12', '13', '14', '15' ],
|
|
|
|
|
+ [ '20', '21', '22', '23', '24', '25' ],
|
|
|
|
|
+ [ '30', '31', '32', '33', '34', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ // | aa | ac | ad | ae |
|
|
|
|
|
+ // +----+----+----+----+ +
|
|
|
|
|
+ // | ba | bb | |
|
|
|
|
|
+ // +----+ +----+
|
|
|
|
|
+ // | ca | | ce |
|
|
|
|
|
+ // + +----+----+----+----+
|
|
|
|
|
+ // | | db | dc | dd |
|
|
|
|
|
+ // +----+----+----+----+----+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { contents: 'aa', colspan: 2 }, 'ac', 'ad', { contents: 'ae', rowspan: 2 } ],
|
|
|
|
|
+ [ 'ba', { contents: 'bb', colspan: 3, rowspan: 2 } ],
|
|
|
|
|
+ [ { contents: 'ca', rowspan: 2 }, 'ce' ],
|
|
|
|
|
+ [ 'db', 'dc', { contents: 'dd', colspan: 2 } ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 00 | 01 | 02 | 03 | 04 | 05 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 10 | aa | ac | 14 | 15 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 20 | ba | bb | 24 | 25 |
|
|
|
|
|
+ // +----+----+ +----+----+
|
|
|
|
|
+ // | 30 | ca | | 34 | 35 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ // | 40 | 41 | 42 | 43 | 44 | 45 |
|
|
|
|
|
+ // +----+----+----+----+----+----+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03', '04', '05' ],
|
|
|
|
|
+ [ '10', { contents: 'aa', colspan: 2 }, 'ac', '14', '15' ],
|
|
|
|
|
+ [ '20', 'ba', { contents: 'bb', colspan: 2, rowspan: 2 }, '24', '25' ],
|
|
|
|
|
+ [ '30', 'ca', '34', '35' ],
|
|
|
|
|
+ [ '40', '41', '42', '43', '44', '45' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ /* eslint-disable no-multi-spaces */
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 1, 0, 0 ],
|
|
|
|
|
+ [ 0, 0, 0, 0, 0, 0 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ /* eslint-enable no-multi-spaces */
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'pasted table is smaller than the selected area', () => {
|
|
|
|
|
+ it( 'blocks this case', () => {
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 3, 3 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ // Catches the temporary console log in the CK_DEBUG mode.
|
|
|
|
|
+ sinon.stub( console, 'log' );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ 'aa', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '00', '01', '02', '03' ],
|
|
|
|
|
+ [ '10', '11', '12', '13' ],
|
|
|
|
|
+ [ '20', '21', '22', '23' ],
|
|
|
|
|
+ [ '30', '31', '32', '33' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ assertSelectedCells( model, [
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ],
|
|
|
|
|
+ [ 1, 1, 1, 1 ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ describe( 'Clipboard integration - paste (content scenarios)', () => {
|
|
|
|
|
+ it( 'handles multiple paragraphs in table cell', async () => {
|
|
|
|
|
+ await createEditor();
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '01', '11', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ '<p>a</p><p>a</p><p>a</p>', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '<paragraph>a</paragraph><paragraph>a</paragraph><paragraph>a</paragraph>', 'ab', '02' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles image in table cell', async () => {
|
|
|
|
|
+ await createEditor( [ ImageEditing, ImageCaptionEditing ] );
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '01', '11', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ '<img src="/assets/sample.jpg">', 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ '<image src="/assets/sample.jpg"><caption></caption></image>', 'ab', '02' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles mixed nested content in table cell', async () => {
|
|
|
|
|
+ await createEditor( [ ImageEditing, ImageCaptionEditing, BlockQuoteEditing, HorizontalLineEditing, ListEditing ] );
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '01', '11', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const img = '<img src="/assets/sample.jpg">';
|
|
|
|
|
+ const list = '<ul><li>foo</li><li>bar</li></ul>';
|
|
|
|
|
+ const blockquote = `<blockquote><p>baz</p>${ list }</blockquote>`;
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ `${ img }${ list }${ blockquote }`, 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [
|
|
|
|
|
+ '<image src="/assets/sample.jpg"><caption></caption></image>' +
|
|
|
|
|
+ '<listItem listIndent="0" listType="bulleted">foo</listItem>' +
|
|
|
|
|
+ '<listItem listIndent="0" listType="bulleted">bar</listItem>' +
|
|
|
|
|
+ '<blockQuote>' +
|
|
|
|
|
+ '<paragraph>baz</paragraph>' +
|
|
|
|
|
+ '<listItem listIndent="0" listType="bulleted">foo</listItem>' +
|
|
|
|
|
+ '<listItem listIndent="0" listType="bulleted">bar</listItem>' +
|
|
|
|
|
+ '</blockQuote>',
|
|
|
|
|
+ 'ab',
|
|
|
|
|
+ '02' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'handles table cell properties', async () => {
|
|
|
|
|
+ await createEditor( [ TableCellPropertiesEditing ] );
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '01', '11', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ pasteTable( [
|
|
|
|
|
+ [ { contents: 'aa', style: 'border:1px solid #f00;background:#ba7;width:1337px' }, 'ab' ],
|
|
|
|
|
+ [ 'ba', 'bb' ]
|
|
|
|
|
+ ] );
|
|
|
|
|
+
|
|
|
|
|
+ const tableCell = model.document.getRoot().getNodeByPath( [ 0, 0, 0 ] );
|
|
|
|
|
+
|
|
|
|
|
+ expect( tableCell.getAttribute( 'borderColor' ) ).to.deep.equal( {
|
|
|
|
|
+ top: '#f00',
|
|
|
|
|
+ right: '#f00',
|
|
|
|
|
+ bottom: '#f00',
|
|
|
|
|
+ left: '#f00'
|
|
|
|
|
+ } );
|
|
|
|
|
+ expect( tableCell.getAttribute( 'borderStyle' ) ).to.deep.equal( {
|
|
|
|
|
+ top: 'solid',
|
|
|
|
|
+ right: 'solid',
|
|
|
|
|
+ bottom: 'solid',
|
|
|
|
|
+ left: 'solid'
|
|
|
|
|
+ } );
|
|
|
|
|
+ expect( tableCell.getAttribute( 'borderWidth' ) ).to.deep.equal( {
|
|
|
|
|
+ top: '1px',
|
|
|
|
|
+ right: '1px',
|
|
|
|
|
+ bottom: '1px',
|
|
|
|
|
+ left: '1px'
|
|
|
|
|
+ } );
|
|
|
|
|
+ expect( tableCell.getAttribute( 'backgroundColor' ) ).to.equal( '#ba7' );
|
|
|
|
|
+ expect( tableCell.getAttribute( 'width' ) ).to.equal( '1337px' );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ it( 'discards table properties', async () => {
|
|
|
|
|
+ await createEditor( [ TableCellPropertiesEditing ] );
|
|
|
|
|
+
|
|
|
|
|
+ setModelData( model, modelTable( [
|
|
|
|
|
+ [ '00', '01', '02' ],
|
|
|
|
|
+ [ '01', '11', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+
|
|
|
|
|
+ tableSelection.setCellSelection(
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
|
|
|
|
|
+ modelRoot.getNodeByPath( [ 0, 1, 1 ] )
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ const tableStyle = 'border:1px solid #f00;background:#ba7;width:1337px';
|
|
|
|
|
+ const pastedTable = `<table style="${ tableStyle }"><tr><td>aa</td><td>ab</td></tr><tr><td>ba</td><td>bb</td></tr></table>`;
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', pastedTable );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
|
|
|
|
|
+ [ 'aa', 'ab', '02' ],
|
|
|
|
|
+ [ 'ba', 'bb', '12' ],
|
|
|
|
|
+ [ '02', '21', '22' ]
|
|
|
|
|
+ ] ) );
|
|
|
|
|
+ } );
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ async function createEditor( extraPlugins = [] ) {
|
|
|
|
|
+ editor = await ClassicTestEditor.create( element, {
|
|
|
|
|
+ plugins: [ TableEditing, TableClipboard, Paragraph, Clipboard, ...extraPlugins ]
|
|
|
|
|
+ } );
|
|
|
|
|
+
|
|
|
|
|
+ model = editor.model;
|
|
|
|
|
+ modelRoot = model.document.getRoot();
|
|
|
|
|
+ viewDocument = editor.editing.view.document;
|
|
|
|
|
+ tableSelection = editor.plugins.get( 'TableSelection' );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ function pasteTable( tableData ) {
|
|
|
|
|
+ const data = {
|
|
|
|
|
+ dataTransfer: createDataTransfer(),
|
|
|
|
|
+ preventDefault: sinon.spy(),
|
|
|
|
|
+ stopPropagation: sinon.spy()
|
|
|
|
|
+ };
|
|
|
|
|
+ data.dataTransfer.setData( 'text/html', viewTable( tableData ) );
|
|
|
|
|
+ viewDocument.fire( 'paste', data );
|
|
|
|
|
+
|
|
|
|
|
+ return data;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ function createDataTransfer() {
|
|
|
|
|
+ const store = new Map();
|
|
|
|
|
+
|
|
|
|
|
+ return {
|
|
|
|
|
+ setData( type, data ) {
|
|
|
|
|
+ store.set( type, data );
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ getData( type ) {
|
|
|
|
|
+ return store.get( type );
|
|
|
|
|
+ }
|
|
|
|
|
+ };
|
|
|
|
|
+ }
|
|
|
|
|
+} );
|