| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /**
- * @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 '../src/clipboard';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
- import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
- import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
- import Link from '@ckeditor/ckeditor5-link/src/link';
- import { setData, getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- describe( 'Pasting – integration', () => {
- let element;
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- } );
- afterEach( () => {
- element.remove();
- } );
- describe( 'inline styles', () => {
- // See https://github.com/ckeditor/ckeditor5/issues/477.
- it( 'pastes inline styles and links (no block)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'x <strong>bold</strong> <i>italic</i> <a href="x">link</a> y' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'x <$text bold="true">bold</$text> <$text italic="true">italic</$text> ' +
- '<$text linkHref="x">link</$text> y[]' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- it( 'pastes inline styles and links (inside known block)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<p>x <strong>bold</strong> <i>italic</i> <a href="x">link</a> y</p>' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'x <$text bold="true">bold</$text> <$text italic="true">italic</$text> ' +
- '<$text linkHref="x">link</$text> y[]' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- it( 'pastes inline styles and links (inside unknown block)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<div>x <strong>bold</strong> <i>italic</i> <a href="x">link</a> y</div>' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'x <$text bold="true">bold</$text> <$text italic="true">italic</$text> ' +
- '<$text linkHref="x">link</$text> y[]' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- it( 'pastes inline styles and links (inside known block but on disallowed position)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, BlockQuote, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<blockquote>x <strong>bold</strong> <i>italic</i> <a href="x">link</a> y</blockquote>' );
- expect( getData( editor.model ) ).to.equal(
- '<blockQuote>' +
- '<paragraph>' +
- 'x <$text bold="true">bold</$text> <$text italic="true">italic</$text> ' +
- '<$text linkHref="x">link</$text> y[]' +
- '</paragraph>' +
- '</blockQuote>'
- );
- return editor.destroy();
- } );
- } );
- } );
- describe( 'white spaces', () => {
- // See https://github.com/ckeditor/ckeditor5-clipboard/issues/2#issuecomment-310417731.
- it( 'keeps spaces around inline styles (Chrome)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>x[]y</paragraph>' );
- pasteHtml( editor,
- '<meta charset=\'utf-8\'>' +
- '<span style="color: rgb(0, 0, 0); font-family: Times;">This is the<span>\u00a0</span></span>' +
- '<a href="url" style="font-family: Times; font-size: medium;">third developer preview</a>' +
- '<span style="color: rgb(0, 0, 0); font-family: Times;"><span>\u00a0</span>of<span>\u00a0</span></span>' +
- '<strong style="color: rgb(0, 0, 0); font-family: Times;">CKEditor\u00a05</strong>' +
- '<span style="color: rgb(0, 0, 0); font-family: Times;">.</span>'
- );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'xThis is the ' +
- '<$text linkHref="url">third developer preview</$text> of <$text bold="true">CKEditor\u00a05</$text>' +
- '.[]y' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- // See https://github.com/ckeditor/ckeditor5-clipboard/issues/2#issuecomment-310417731.
- it( 'keeps spaces around inline styles (Safari)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>x[]y</paragraph>' );
- /* eslint-disable max-len */
- pasteHtml( editor,
- '<span style="color: rgb(0, 0, 0); font-family: -webkit-standard;">This is the<span class="Apple-converted-space">\u00a0</span></span>' +
- '<a href="url" style="font-family: -webkit-standard; font-style: normal;">third developer preview</a>' +
- '<span style="color: rgb(0, 0, 0); font-family: -webkit-standard;"><span class="Apple-converted-space">\u00a0</span>of<span class="Apple-converted-space">\u00a0</span></span>' +
- '<strong style="color: rgb(0, 0, 0); font-family: -webkit-standard;">CKEditor\u00a05</strong>' +
- '<span style="color: rgb(0, 0, 0); font-family: -webkit-standard;">.</span>'
- );
- /* eslint-enable max-len */
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'xThis is the ' +
- '<$text linkHref="url">third developer preview</$text> of <$text bold="true">CKEditor\u00a05</$text>' +
- '.[]y' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- it( 'keeps spaces around inline styles (Firefox)', () => {
- return ClassicTestEditor
- .create( element, { plugins: [ Clipboard, Paragraph, Bold, Italic, Link ] } )
- .then( editor => {
- setData( editor.model, '<paragraph>x[]y</paragraph>' );
- // Note, when copying the HTML from Firefox's console you'll see only normal spaces,
- // but when you check it later in the model it's still an nbsp.
- pasteHtml( editor,
- 'This is the <a href="url">third developer preview</a> of <strong>CKEditor\u00a05</strong>.'
- );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>' +
- 'xThis is the ' +
- '<$text linkHref="url">third developer preview</$text> of <$text bold="true">CKEditor\u00a05</$text>' +
- '.[]y' +
- '</paragraph>'
- );
- return editor.destroy();
- } );
- } );
- } );
- } );
- function pasteHtml( editor, html ) {
- editor.editing.view.document.fire( 'paste', {
- dataTransfer: createDataTransfer( { 'text/html': html } ),
- stopPropagation() {},
- preventDefault() {}
- } );
- }
- function createDataTransfer( data ) {
- return {
- getData( type ) {
- return data[ type ];
- }
- };
- }
|