| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- /**
- * @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 */
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- 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 { modelTable, viewTable } from './_utils/utils';
- import TableEditing from '../src/tableediting';
- import TableClipboard from '../src/tableclipboard';
- describe( 'table clipboard', () => {
- let editor, model, modelRoot, tableSelection, viewDocument, element;
- beforeEach( async () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- editor = await ClassicTestEditor.create( element, {
- plugins: [ TableEditing, TableClipboard, Paragraph, Clipboard ]
- } );
- model = editor.model;
- modelRoot = model.document.getRoot();
- viewDocument = editor.editing.view.document;
- tableSelection = editor.plugins.get( 'TableSelection' );
- setModelData( model, modelTable( [
- [ '00[]', '01', '02' ],
- [ '10', '11', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- } );
- afterEach( async () => {
- await editor.destroy();
- element.remove();
- } );
- describe( 'Clipboard integration - copy', () => {
- it( 'should do nothing for normal selection in table', () => {
- const dataTransferMock = createDataTransfer();
- const spy = sinon.spy();
- viewDocument.on( 'clipboardOutput', spy );
- viewDocument.fire( 'copy', {
- dataTransfer: dataTransferMock,
- preventDefault: sinon.spy()
- } );
- sinon.assert.calledOnce( spy );
- } );
- it( 'should copy selected table cells as a standalone table', () => {
- const preventDefaultSpy = sinon.spy();
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 2 ] )
- );
- const data = {
- dataTransfer: createDataTransfer(),
- preventDefault: preventDefaultSpy
- };
- viewDocument.fire( 'copy', data );
- sinon.assert.calledOnce( preventDefaultSpy );
- expect( data.dataTransfer.getData( 'text/html' ) ).to.equal( viewTable( [
- [ '01', '02' ],
- [ '11', '12' ]
- ] ) );
- } );
- it( 'should trim selected table to a selection rectangle (inner cell with colspan, no colspan after trim)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01', '02' ],
- [ '10', { contents: '11', colspan: 2 } ],
- [ '20', '21', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 2, 1 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ] ) );
- } );
- it( 'should trim selected table to a selection rectangle (inner cell with colspan, has colspan after trim)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01', '02' ],
- [ { contents: '10', colspan: 3 } ],
- [ '20', '21', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 2, 1 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '00', '01' ],
- [ { contents: '10', colspan: 2 } ],
- [ '20', '21' ]
- ] ) );
- } );
- it( 'should trim selected table to a selection rectangle (inner cell with rowspan, no colspan after trim)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01', '02' ],
- [ '10', { contents: '11', rowspan: 2 }, '12' ],
- [ '20', '21', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 2 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '00', '01', '02' ],
- [ '10', '11', '12' ]
- ] ) );
- } );
- it( 'should trim selected table to a selection rectangle (inner cell with rowspan, has rowspan after trim)', () => {
- setModelData( model, modelTable( [
- [ '00[]', { contents: '01', rowspan: 3 }, '02' ],
- [ '10', '12' ],
- [ '20', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 1 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '00', { contents: '01', rowspan: 2 }, '02' ],
- [ '10', '12' ]
- ] ) );
- } );
- it( 'should prepend spanned columns with empty cells (outside cell with colspan)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01', '02' ],
- [ { contents: '10', colspan: 2 }, '12' ],
- [ '20', '21', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 2, 2 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '01', '02' ],
- [ ' ', '12' ],
- [ '21', '22' ]
- ] ) );
- } );
- it( 'should prepend spanned columns with empty cells (outside cell with rowspan)', () => {
- setModelData( model, modelTable( [
- [ '00', { contents: '01', rowspan: 2 }, '02' ],
- [ '10', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 1, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 2, 2 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '10', ' ', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- } );
- it( 'should output empty tr elements if needed by row-spanned cells', () => {
- // +----+----+----+
- // | 00 | 01 | 02 |
- // +----+----+----+
- // | 10 | 11 | 12 |
- // + + +----+
- // | | | 22 |
- // +----+----+----+
- setModelData( model, modelTable( [
- [ '00', '01', '02' ],
- [ { contents: '10', rowspan: 2 }, { contents: '11', rowspan: 2 }, '12' ],
- [ '22' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 1 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '00', '01' ],
- [ { contents: '10', rowspan: 2 }, { contents: '11', rowspan: 2 } ],
- [] // The empty tr
- ] ) );
- } );
- it( 'should fix selected table to a selection rectangle (hardcore case)', () => {
- // This test check how previous simple rules run together (mixed prepending and trimming).
- // In the example below a selection is set from cell "21" to "77"
- //
- // Input table: Copied table:
- //
- // +----+----+----+----+----+----+----+----+----+
- // | 00 | 01 | 02 | 03 | 04 | 06 | 07 | 08 |
- // +----+----+ +----+ +----+----+----+
- // | 10 | 11 | | 13 | | 16 | 17 | 18 |
- // +----+----+ +----+ +----+----+----+ +----+----+----+----+----+----+----+
- // | 20 | 21 | | 23 | | 26 | | 21 | | 23 | | | 26 |
- // +----+----+ +----+ +----+----+----+ +----+----+----+----+----+----+----+
- // | 30 | 31 | | 33 | | 36 | 37 | | 31 | | 33 | | | 36 | 37 |
- // +----+----+----+----+ +----+----+----+ +----+----+----+----+----+----+----+
- // | 40 | | 46 | 47 | 48 | | | | | | | 46 | 47 |
- // +----+----+----+----+ +----+----+----+ ==> +----+----+----+----+----+----+----+
- // | 50 | 51 | 52 | 53 | | 56 | 57 | 58 | | 51 | 52 | 53 | | | 56 | 57 |
- // +----+----+----+----+ + +----+----+ +----+----+----+----+----+ +----+
- // | 60 | 61 | | | 67 | 68 | | 61 | | | | 67 |
- // +----+----+----+----+----+----+ +----+----+ +----+----+----+----+----+ +----+
- // | 70 | 71 | 72 | 73 | 74 | 75 | | 77 | 78 | | 71 | 72 | 73 | 74 | 75 | | 77 |
- // +----+ +----+----+----+----+ +----+----+ +----+----+----+----+----+----+----+
- // | 80 | | 82 | 83 | 84 | 85 | | 87 | 88 |
- // +----+----+----+----+----+----+----+----+----+
- //
- setModelData( model, modelTable( [
- [ '00', '01', { contents: '02', rowspan: 4 }, '03', { contents: '04', colspan: 2, rowspan: 7 }, '06', '07', '08' ],
- [ '10', '11', '13', '16', '17', '18' ],
- [ '20', '21', '23', { contents: '26', colspan: 3 } ],
- [ '30', '31', '33', '36', { contents: '37', colspan: 2 } ],
- [ { contents: '40', colspan: 4 }, '46', '47', '48' ],
- [ '50', '51', '52', '53', { contents: '56', rowspan: 4 }, '57', '58' ],
- [ '60', { contents: '61', colspan: 3 }, '67', '68' ],
- [ '70', { contents: '71', rowspan: 2 }, '72', '73', '74', '75', '77', '78' ],
- [ '80', '82', '83', '84', '85', '87', '88' ]
- ] ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 2, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 7, 6 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '21', ' ', '23', ' ', ' ', { contents: '26', colspan: 2 } ],
- [ '31', ' ', '33', ' ', ' ', '36', '37' ],
- [ ' ', ' ', ' ', ' ', ' ', '46', '47' ],
- [ '51', '52', '53', ' ', ' ', { contents: '56', rowspan: 3 }, '57' ],
- [ { contents: '61', colspan: 3 }, ' ', ' ', '67' ],
- [ '71', '72', '73', '74', '75', '77' ]
- ] ) );
- } );
- it( 'should update table heading attributes (selection with headings)', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02', '03', '04' ],
- [ '10', '11', '12', '13', '14' ],
- [ '20', '21', '22', '23', '24' ],
- [ '30', '31', '32', '33', '34' ],
- [ '40', '41', '42', '43', '44' ]
- ], { headingRows: 3, headingColumns: 2 } ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 1, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 3, 3 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '11', '12', '13' ],
- [ '21', '22', '23' ],
- [ { contents: '31', isHeading: true }, '32', '33' ] // TODO: bug in viewTable
- ], { headingRows: 2, headingColumns: 1 } ) );
- } );
- it( 'should update table heading attributes (selection without headings)', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02', '03', '04' ],
- [ '10', '11', '12', '13', '14' ],
- [ '20', '21', '22', '23', '24' ],
- [ '30', '31', '32', '33', '34' ],
- [ '40', '41', '42', '43', '44' ]
- ], { headingRows: 3, headingColumns: 2 } ) );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 3, 2 ] ),
- modelRoot.getNodeByPath( [ 0, 4, 4 ] )
- );
- assertClipboardContentOnMethod( 'copy', viewTable( [
- [ '32', '33', '34' ],
- [ '42', '43', '44' ]
- ] ) );
- } );
- } );
- describe( 'Clipboard integration - cut', () => {
- it( 'should not block clipboardOutput if no multi-cell selection', () => {
- setModelData( model, modelTable( [
- [ '[00]', '01', '02' ],
- [ '10', '11', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- const dataTransferMock = createDataTransfer();
- viewDocument.fire( 'cut', {
- dataTransfer: dataTransferMock,
- preventDefault: sinon.spy()
- } );
- expect( dataTransferMock.getData( 'text/html' ) ).to.equal( '00' );
- } );
- it( 'should be preventable', () => {
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 1 ] )
- );
- viewDocument.on( 'clipboardOutput', evt => evt.stop(), { priority: 'high' } );
- viewDocument.fire( 'cut', {
- dataTransfer: createDataTransfer(),
- preventDefault: sinon.spy()
- } );
- assertEqualMarkup( getModelData( model ), modelTable( [
- [ { contents: '00', isSelected: true }, { contents: '01', isSelected: true }, '02' ],
- [ { contents: '10', isSelected: true }, { contents: '11', isSelected: true }, '12' ],
- [ '20', '21', '22' ]
- ] ) );
- } );
- it( 'is clears selected table cells', () => {
- const spy = sinon.spy();
- viewDocument.on( 'clipboardOutput', spy );
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 0 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 1 ] )
- );
- viewDocument.fire( 'cut', {
- dataTransfer: createDataTransfer(),
- preventDefault: sinon.spy()
- } );
- assertEqualMarkup( getModelData( model ), modelTable( [
- [ '', '', '02' ],
- [ '', '[]', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- } );
- it( 'should copy selected table cells as a standalone table', () => {
- const preventDefaultSpy = sinon.spy();
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 2 ] )
- );
- const data = {
- dataTransfer: createDataTransfer(),
- preventDefault: preventDefaultSpy
- };
- viewDocument.fire( 'cut', data );
- sinon.assert.calledOnce( preventDefaultSpy );
- expect( data.dataTransfer.getData( 'text/html' ) ).to.equal( viewTable( [
- [ '01', '02' ],
- [ '11', '12' ]
- ] ) );
- } );
- it( 'should be disabled in a readonly mode', () => {
- const preventDefaultStub = sinon.stub();
- editor.isReadOnly = true;
- tableSelection.setCellSelection(
- modelRoot.getNodeByPath( [ 0, 0, 1 ] ),
- modelRoot.getNodeByPath( [ 0, 1, 2 ] )
- );
- const data = {
- dataTransfer: createDataTransfer(),
- preventDefault: preventDefaultStub
- };
- viewDocument.fire( 'cut', data );
- editor.isReadOnly = false;
- expect( data.dataTransfer.getData( 'text/html' ) ).to.be.undefined;
- assertEqualMarkup( getModelData( model, { withoutSelection: true } ), modelTable( [
- [ '00', '01', '02' ],
- [ '10', '11', '12' ],
- [ '20', '21', '22' ]
- ] ) );
- sinon.assert.calledOnce( preventDefaultStub );
- } );
- } );
- function assertClipboardContentOnMethod( method, expectedViewTable ) {
- const data = {
- dataTransfer: createDataTransfer(),
- preventDefault: sinon.spy()
- };
- viewDocument.fire( method, data );
- expect( data.dataTransfer.getData( 'text/html' ) ).to.equal( expectedViewTable );
- }
- function createDataTransfer() {
- const store = new Map();
- return {
- setData( type, data ) {
- store.set( type, data );
- },
- getData( type ) {
- return store.get( type );
- }
- };
- }
- } );
|