|
|
@@ -10,11 +10,13 @@ import View from '@ckeditor/ckeditor5-ui/src/view';
|
|
|
import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
|
|
|
import ClassicEditorUI from '../src/classiceditorui';
|
|
|
import EditorUI from '@ckeditor/ckeditor5-core/src/editor/editorui';
|
|
|
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
|
import ClassicEditorUIView from '../src/classiceditoruiview';
|
|
|
|
|
|
import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
|
|
|
import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
|
|
|
import utils from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
|
|
|
+import { isElement } from 'lodash-es';
|
|
|
|
|
|
describe( 'ClassicEditorUI', () => {
|
|
|
let editor, view, ui, viewElement;
|
|
|
@@ -23,7 +25,7 @@ describe( 'ClassicEditorUI', () => {
|
|
|
|
|
|
beforeEach( () => {
|
|
|
return VirtualClassicTestEditor
|
|
|
- .create( {
|
|
|
+ .create( '', {
|
|
|
toolbar: [ 'foo', 'bar' ],
|
|
|
} )
|
|
|
.then( newEditor => {
|
|
|
@@ -69,7 +71,7 @@ describe( 'ClassicEditorUI', () => {
|
|
|
|
|
|
it( 'sets view.stickyPanel#viewportTopOffset, when specified in the config', () => {
|
|
|
return VirtualClassicTestEditor
|
|
|
- .create( {
|
|
|
+ .create( '', {
|
|
|
toolbar: {
|
|
|
viewportTopOffset: 100
|
|
|
}
|
|
|
@@ -90,41 +92,82 @@ describe( 'ClassicEditorUI', () => {
|
|
|
expect( ui.focusTracker.isFocused ).to.true;
|
|
|
} );
|
|
|
|
|
|
- it( 'sets view.editable#name', () => {
|
|
|
- const editable = editor.editing.view.document.getRoot();
|
|
|
-
|
|
|
- expect( view.editable.name ).to.equal( editable.rootName );
|
|
|
- } );
|
|
|
-
|
|
|
it( 'binds view.editable#isFocused', () => {
|
|
|
utils.assertBinding(
|
|
|
view.editable,
|
|
|
{ isFocused: false },
|
|
|
[
|
|
|
- [ editor.editing.view.document, { isFocused: true } ]
|
|
|
+ [ ui.focusTracker, { isFocused: true } ]
|
|
|
],
|
|
|
{ isFocused: true }
|
|
|
);
|
|
|
} );
|
|
|
|
|
|
- it( 'binds view.editable#isReadOnly', () => {
|
|
|
+ it( 'set view.editable#name', () => {
|
|
|
const editable = editor.editing.view.document.getRoot();
|
|
|
|
|
|
- utils.assertBinding(
|
|
|
- view.editable,
|
|
|
- { isReadOnly: false },
|
|
|
- [
|
|
|
- [ editable, { isReadOnly: true } ]
|
|
|
- ],
|
|
|
- { isReadOnly: true }
|
|
|
- );
|
|
|
+ expect( view.editable.name ).to.equal( editable.rootName );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
+ describe( 'placeholder', () => {
|
|
|
+ it( 'sets placeholder from editor.config.placeholder', () => {
|
|
|
+ return VirtualClassicTestEditor
|
|
|
+ .create( 'foo', {
|
|
|
+ extraPlugins: [ Paragraph ],
|
|
|
+ placeholder: 'placeholder-text',
|
|
|
+ } )
|
|
|
+ .then( newEditor => {
|
|
|
+ const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 );
|
|
|
+
|
|
|
+ expect( firstChild.getAttribute( 'data-placeholder' ) ).to.equal( 'placeholder-text' );
|
|
|
+
|
|
|
+ return newEditor.destroy();
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
+ it( 'sets placeholder from "placeholder" attribute of a passed element', () => {
|
|
|
+ const element = document.createElement( 'div' );
|
|
|
+
|
|
|
+ element.setAttribute( 'placeholder', 'placeholder-text' );
|
|
|
+
|
|
|
+ return VirtualClassicTestEditor
|
|
|
+ .create( element, {
|
|
|
+ extraPlugins: [ Paragraph ]
|
|
|
+ } )
|
|
|
+ .then( newEditor => {
|
|
|
+ const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 );
|
|
|
+
|
|
|
+ expect( firstChild.getAttribute( 'data-placeholder' ) ).to.equal( 'placeholder-text' );
|
|
|
+
|
|
|
+ return newEditor.destroy();
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
+ it( 'uses editor.config.placeholder rather than "placeholder" attribute of a passed element', () => {
|
|
|
+ const element = document.createElement( 'div' );
|
|
|
+
|
|
|
+ element.setAttribute( 'placeholder', 'placeholder-text' );
|
|
|
+
|
|
|
+ return VirtualClassicTestEditor
|
|
|
+ .create( element, {
|
|
|
+ placeholder: 'config takes precedence',
|
|
|
+ extraPlugins: [ Paragraph ]
|
|
|
+ } )
|
|
|
+ .then( newEditor => {
|
|
|
+ const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 );
|
|
|
+
|
|
|
+ expect( firstChild.getAttribute( 'data-placeholder' ) ).to.equal( 'config takes precedence' );
|
|
|
+
|
|
|
+ return newEditor.destroy();
|
|
|
+ } );
|
|
|
} );
|
|
|
} );
|
|
|
|
|
|
describe( 'view.toolbar#items', () => {
|
|
|
it( 'are filled with the config.toolbar (specified as an Array)', () => {
|
|
|
return VirtualClassicTestEditor
|
|
|
- .create( {
|
|
|
+ .create( '', {
|
|
|
toolbar: [ 'foo', 'bar' ]
|
|
|
} )
|
|
|
.then( editor => {
|
|
|
@@ -139,7 +182,7 @@ describe( 'ClassicEditorUI', () => {
|
|
|
|
|
|
it( 'are filled with the config.toolbar (specified as an Object)', () => {
|
|
|
return VirtualClassicTestEditor
|
|
|
- .create( {
|
|
|
+ .create( '', {
|
|
|
toolbar: {
|
|
|
items: [ 'foo', 'bar' ],
|
|
|
viewportTopOffset: 100
|
|
|
@@ -157,7 +200,7 @@ describe( 'ClassicEditorUI', () => {
|
|
|
} );
|
|
|
|
|
|
it( 'initializes keyboard navigation between view#toolbar and view#editable', () => {
|
|
|
- return VirtualClassicTestEditor.create()
|
|
|
+ return VirtualClassicTestEditor.create( '' )
|
|
|
.then( editor => {
|
|
|
const ui = editor.ui;
|
|
|
const view = ui.view;
|
|
|
@@ -180,6 +223,47 @@ describe( 'ClassicEditorUI', () => {
|
|
|
} );
|
|
|
} );
|
|
|
|
|
|
+ describe( 'destroy()', () => {
|
|
|
+ it( 'detaches the DOM root then destroys the UI view', () => {
|
|
|
+ return VirtualClassicTestEditor.create( '' )
|
|
|
+ .then( newEditor => {
|
|
|
+ const destroySpy = sinon.spy( newEditor.ui.view, 'destroy' );
|
|
|
+ const detachSpy = sinon.spy( newEditor.editing.view, 'detachDomRoot' );
|
|
|
+
|
|
|
+ return newEditor.destroy()
|
|
|
+ .then( () => {
|
|
|
+ sinon.assert.callOrder( detachSpy, destroySpy );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
+ it( 'restores the editor element back to its original state', () => {
|
|
|
+ const domElement = document.createElement( 'div' );
|
|
|
+
|
|
|
+ domElement.setAttribute( 'foo', 'bar' );
|
|
|
+ domElement.setAttribute( 'data-baz', 'qux' );
|
|
|
+ domElement.classList.add( 'foo-class' );
|
|
|
+
|
|
|
+ return VirtualClassicTestEditor.create( domElement )
|
|
|
+ .then( newEditor => {
|
|
|
+ return newEditor.destroy()
|
|
|
+ .then( () => {
|
|
|
+ const attributes = {};
|
|
|
+
|
|
|
+ for ( const attribute of domElement.attributes ) {
|
|
|
+ attributes[ attribute.name ] = attribute.value;
|
|
|
+ }
|
|
|
+
|
|
|
+ expect( attributes ).to.deep.equal( {
|
|
|
+ foo: 'bar',
|
|
|
+ 'data-baz': 'qux',
|
|
|
+ class: 'foo-class'
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
describe( 'view()', () => {
|
|
|
it( 'returns view instance', () => {
|
|
|
expect( ui.view ).to.equal( view );
|
|
|
@@ -219,10 +303,14 @@ function viewCreator( name ) {
|
|
|
}
|
|
|
|
|
|
class VirtualClassicTestEditor extends VirtualTestEditor {
|
|
|
- constructor( config ) {
|
|
|
+ constructor( sourceElementOrData, config ) {
|
|
|
super( config );
|
|
|
|
|
|
- const view = new ClassicEditorUIView( this.locale );
|
|
|
+ if ( isElement( sourceElementOrData ) ) {
|
|
|
+ this.sourceElement = sourceElementOrData;
|
|
|
+ }
|
|
|
+
|
|
|
+ const view = new ClassicEditorUIView( this.locale, this.editing.view );
|
|
|
this.ui = new ClassicEditorUI( this, view );
|
|
|
|
|
|
this.ui.componentFactory.add( 'foo', viewCreator( 'foo' ) );
|
|
|
@@ -235,14 +323,20 @@ class VirtualClassicTestEditor extends VirtualTestEditor {
|
|
|
return super.destroy();
|
|
|
}
|
|
|
|
|
|
- static create( config ) {
|
|
|
+ static create( sourceElementOrData, config ) {
|
|
|
return new Promise( resolve => {
|
|
|
- const editor = new this( config );
|
|
|
+ const editor = new this( sourceElementOrData, config );
|
|
|
|
|
|
resolve(
|
|
|
editor.initPlugins()
|
|
|
.then( () => {
|
|
|
editor.ui.init();
|
|
|
+
|
|
|
+ const initialData = isElement( sourceElementOrData ) ?
|
|
|
+ sourceElementOrData.innerHTML :
|
|
|
+ sourceElementOrData;
|
|
|
+
|
|
|
+ editor.data.init( initialData );
|
|
|
editor.fire( 'ready' );
|
|
|
} )
|
|
|
.then( () => editor )
|