| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256 |
- /**
- * @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 Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import TableEditing from '../src/tableediting';
- import { assertSelectedCells, modelTable, viewTable } from './_utils/utils';
- import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
- import TableClipboard from '../src/tableclipboard';
- describe( 'table clipboard', () => {
- let editor, model, modelRoot, tableSelection, viewDocument, element;
- describe( 'Clipboard integration - paste (selection scenarios)', () => {
- 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', '03' ],
- [ '10', '11', '12', '13' ],
- [ '20', '21', '22', '23' ],
- [ '30', '31', '32', '33' ]
- ] ) );
- } );
- afterEach( async () => {
- await editor.destroy();
- element.remove();
- } );
- 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 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 ] )
- );
- 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 ] )
- );
- 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 ]
- ] );
- /* 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 ] )
- );
- 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 ]
- ] );
- } );
- // 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 ]
- ] );
- /* 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, 1, 1, 0 ],
- [ 0, 1, 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 ] )
- );
- 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 ]
- ] );
- } );
- } );
- } );
- 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 );
- }
- };
- }
- } );
|