| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /**
- * @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 console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
- import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
- import Table from '@ckeditor/ckeditor5-table/src/table';
- import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
- import EasyImage from '@ckeditor/ckeditor5-easy-image/src/easyimage';
- import FontColor from '@ckeditor/ckeditor5-font/src/fontcolor';
- import FontBackgroundColor from '@ckeditor/ckeditor5-font/src/fontbackgroundcolor';
- import PageBreak from '@ckeditor/ckeditor5-page-break/src/pagebreak';
- import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties';
- import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties';
- import PasteFromOffice from '../../src/pastefromoffice';
- import { stringify as stringifyView } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
- import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
- const htmlDiv = document.querySelector( '#html' );
- const textDiv = document.querySelector( '#text' );
- const dataDiv = document.querySelector( '#data' );
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ ArticlePluginSet, Strikethrough, Underline, Table, TableToolbar, PageBreak,
- TableProperties, TableCellProperties, EasyImage, PasteFromOffice, FontColor, FontBackgroundColor ],
- toolbar: [ 'heading', '|', 'bold', 'italic', 'strikethrough', 'underline', 'link',
- 'bulletedList', 'numberedList', 'blockQuote', 'insertTable', 'pageBreak', 'undo', 'redo' ],
- table: {
- contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableProperties', 'tableCellProperties' ]
- },
- cloudServices: CS_CONFIG
- } )
- .then( editor => {
- window.editor = editor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- editor.editing.view.document.on( 'paste', ( evt, data ) => {
- console.clear();
- console.log( '----- paste -----' );
- console.log( data );
- console.log( 'text/html\n', data.dataTransfer.getData( 'text/html' ) );
- console.log( 'text/plain\n', data.dataTransfer.getData( 'text/plain' ) );
- htmlDiv.innerText = data.dataTransfer.getData( 'text/html' );
- textDiv.innerText = data.dataTransfer.getData( 'text/plain' );
- } );
- clipboard.on( 'inputTransformation', ( evt, data ) => {
- console.log( '----- clipboardInput -----' );
- console.log( 'stringify( data.dataTransfer )\n', stringifyView( data.content ) );
- dataDiv.innerText = stringifyView( data.content );
- } );
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|