|
|
@@ -3,13 +3,14 @@
|
|
|
* For licensing, see LICENSE.md.
|
|
|
*/
|
|
|
|
|
|
-/* globals console, window, document */
|
|
|
+/* globals console, window, document, global */
|
|
|
|
|
|
import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
|
|
|
import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
|
|
|
import Table from '../../src/table';
|
|
|
import TableToolbar from '../../src/tabletoolbar';
|
|
|
import TableSelection from '../../src/tableselection';
|
|
|
+import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
|
|
|
|
|
|
ClassicEditor
|
|
|
.create( document.querySelector( '#editor' ), {
|
|
|
@@ -23,7 +24,32 @@ ClassicEditor
|
|
|
} )
|
|
|
.then( editor => {
|
|
|
window.editor = editor;
|
|
|
+ editor.model.document.on( 'change', () => {
|
|
|
+ printModelContents( editor );
|
|
|
+ } );
|
|
|
+
|
|
|
+ printModelContents( editor );
|
|
|
} )
|
|
|
.catch( err => {
|
|
|
console.error( err.stack );
|
|
|
} );
|
|
|
+
|
|
|
+const modelDiv = global.document.querySelector( '#model' );
|
|
|
+
|
|
|
+function printModelContents( editor ) {
|
|
|
+ modelDiv.innerText = formatTable( getData( editor.model ) );
|
|
|
+}
|
|
|
+
|
|
|
+function formatTable( tableString ) {
|
|
|
+ return tableString
|
|
|
+ .replace( /<table>/g, '\n<table>' )
|
|
|
+ .replace( /<tableRow>/g, '\n<tableRow>\n ' )
|
|
|
+ .replace( /<thead>/g, '\n<thead>\n ' )
|
|
|
+ .replace( /<tbody>/g, '\n<tbody>\n ' )
|
|
|
+ .replace( /<tr>/g, '\n<tr>\n ' )
|
|
|
+ .replace( /<\/tableRow>/g, '\n</tableRow>' )
|
|
|
+ .replace( /<\/thead>/g, '\n</thead>' )
|
|
|
+ .replace( /<\/tbody>/g, '\n</tbody>' )
|
|
|
+ .replace( /<\/tr>/g, '\n</tr>' )
|
|
|
+ .replace( /<\/table>/g, '\n</table>' );
|
|
|
+}
|