| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /**
- * @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 Widget from '../../src/widget';
- import { toWidget } from '../../src/utils';
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- function MyPlugin( editor ) {
- editor.model.schema.register( 'div', {
- allowIn: [ '$root' ],
- isObject: true
- } );
- editor.conversion.for( 'downcast' ).elementToElement( {
- model: 'div',
- view: ( modelElement, writer ) => {
- return toWidget( writer.createContainerElement( 'div', {
- class: 'widget'
- } ),
- writer,
- { hasSelectionHandle: true } );
- }
- } );
- editor.conversion.for( 'upcast' ).elementToElement( {
- model: 'div',
- view: 'div'
- } );
- }
- const config = {
- plugins: [ ArticlePluginSet, Widget, MyPlugin ],
- toolbar: [
- 'heading',
- '|',
- 'bold',
- 'italic',
- 'link',
- 'bulletedList',
- 'numberedList',
- 'blockQuote',
- 'insertTable',
- 'mediaEmbed',
- 'undo',
- 'redo'
- ],
- image: {
- toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
- },
- table: {
- contentToolbar: [
- 'tableColumn',
- 'tableRow',
- 'mergeTableCells'
- ]
- }
- };
- ClassicEditor
- .create( document.querySelector( '#editor-ltr' ), config )
- .then( editor => {
- window.editorLtr = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
- ClassicEditor
- .create( document.querySelector( '#editor-rtl' ), Object.assign( {}, config, {
- language: 'ar'
- } ) )
- .then( editor => {
- window.editorRtl = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|