| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import Paragraph from '../src/paragraph';
- import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
- import UndoEditing from '@ckeditor/ckeditor5-undo/src/undoediting';
- import HeadingEditing from '@ckeditor/ckeditor5-heading/src/headingediting';
- import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
- import {
- getData as getModelData,
- setData as setModelData
- } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import { parse as parseView } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
- describe( 'Paragraph feature – integration', () => {
- describe( 'with clipboard', () => {
- it( 'pastes h1+h2+p as p+p+p when heading feature is not present', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<h1>foo</h1><h2>bar</h2><p>bom</p>' )
- } );
- expect( getModelData( editor.model ) ).to.equal(
- '<paragraph>foo</paragraph><paragraph>bar</paragraph><paragraph>bom[]</paragraph>'
- );
- } );
- } );
- // Explainer: the heading feature is configured to handle h1-h4 elements, so h5 has no handler.
- it( 'pastes h1+h2+h5+p as h1+h2+p+p when heading feature is present', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard, HeadingEditing ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<h1>foo</h1><h2>bar</h2><h5>baz</h5><p>bom</p>' )
- } );
- expect( getModelData( editor.model ) ).to.equal(
- '<heading1>foo</heading1><heading1>bar</heading1><paragraph>baz</paragraph><paragraph>bom[]</paragraph>'
- );
- } );
- } );
- it( 'pastes ul>li+li as p+p when list feature is not present', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<ul><li>foo</li><li>bar</li></ul>' )
- } );
- expect( getModelData( editor.model ) ).to.equal( '<paragraph>foo</paragraph><paragraph>bar[]</paragraph>' );
- } );
- } );
- // Check whether the paragraph feature doesn't breaking pasting such content by trying to
- // handle the li element.
- it( 'pastes ul>li>h2+h3+p as h2+h3+p when heading feature is present', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard, HeadingEditing ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<ul><li>x</li><li><h2>foo</h2><h3>bar</h3><p>bom</p></li><li>x</li></ul>' )
- } );
- expect( getModelData( editor.model ) ).to.equal(
- '<paragraph>x</paragraph>' +
- '<heading1>foo</heading1><heading2>bar</heading2><paragraph>bom</paragraph>' +
- '<paragraph>x[]</paragraph>'
- );
- } );
- } );
- // See 'should convert ul>li>ul>li+li (in clipboard holder)' in clipboard.js.
- it( 'pastes ul>li>ul>li+li', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<ul><li>a<ul><li>b</li><li>c</li></ul></li></ul>' )
- } );
- expect( getModelData( editor.model ) ).to.equal(
- '<paragraph>a</paragraph>' +
- '<paragraph>b</paragraph>' +
- '<paragraph>c[]</paragraph>'
- );
- } );
- } );
- // See 'should convert ul>li>p,text (in clipboard holder)' in clipboard.js.
- it( 'pastes ul>li>p,text', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, Clipboard ] } )
- .then( newEditor => {
- const editor = newEditor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- setModelData( editor.model, '<paragraph>[]</paragraph>' );
- clipboard.fire( 'inputTransformation', {
- content: parseView( '<ul><li><p>a</p>b</li></ul>' )
- } );
- expect( getModelData( editor.model ) ).to.equal(
- '<paragraph>a</paragraph>' +
- '<paragraph>b[]</paragraph>'
- );
- } );
- } );
- } );
- describe( 'with undo', () => {
- it( 'fixing empty roots should be transparent to undo', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, UndoEditing ] } )
- .then( newEditor => {
- const editor = newEditor;
- const doc = editor.model.document;
- const root = doc.getRoot();
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p> </p>' );
- expect( editor.commands.get( 'undo' ).isEnabled ).to.be.false;
- editor.setData( '<p>Foobar.</p>' );
- editor.model.change( writer => {
- writer.remove( root.getChild( 0 ) );
- } );
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p> </p>' );
- editor.execute( 'undo' );
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p>Foobar.</p>' );
- editor.execute( 'redo' );
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p> </p>' );
- editor.execute( 'undo' );
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p>Foobar.</p>' );
- } );
- } );
- it( 'fixing empty roots should be transparent to undo - multiple roots', () => {
- return VirtualTestEditor
- .create( { plugins: [ Paragraph, UndoEditing ] } )
- .then( newEditor => {
- const editor = newEditor;
- const doc = editor.model.document;
- const root = doc.getRoot();
- const otherRoot = doc.createRoot( '$root', 'otherRoot' );
- editor.data.set( { main: '<p>Foobar.</p>' } );
- editor.data.set( { otherRoot: '<p>Foobar.</p>' } );
- editor.model.change( writer => {
- writer.remove( root.getChild( 0 ) );
- } );
- editor.model.change( writer => {
- writer.remove( otherRoot.getChild( 0 ) );
- } );
- expect( editor.data.get( { rootName: 'main', trim: 'none' } ) ).to.equal( '<p> </p>' );
- expect( editor.data.get( { rootName: 'otherRoot', trim: 'none' } ) ).to.equal( '<p> </p>' );
- editor.execute( 'undo' );
- expect( editor.data.get( { rootName: 'main', trim: 'none' } ) ).to.equal( '<p> </p>' );
- expect( editor.data.get( { rootName: 'otherRoot', trim: 'none' } ) ).to.equal( '<p>Foobar.</p>' );
- editor.execute( 'undo' );
- expect( editor.data.get( { rootName: 'main', trim: 'none' } ) ).to.equal( '<p>Foobar.</p>' );
- expect( editor.data.get( { rootName: 'otherRoot', trim: 'none' } ) ).to.equal( '<p>Foobar.</p>' );
- } );
- } );
- } );
- } );
|