/** * @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, Event */ import View from '@ckeditor/ckeditor5-ui/src/view'; import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; import DecoupledEditorUI from '../src/decouplededitorui'; import EditorUI from '@ckeditor/ckeditor5-core/src/editor/editorui'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import DecoupledEditorUIView from '../src/decouplededitoruiview'; import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard'; import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils'; import { assertBinding } from '@ckeditor/ckeditor5-utils/tests/_utils/utils'; import { isElement } from 'lodash-es'; describe( 'DecoupledEditorUI', () => { let editor, view, ui, viewElement; testUtils.createSinonSandbox(); beforeEach( () => { return VirtualDecoupledTestEditor .create( '', { toolbar: [ 'foo', 'bar' ] } ) .then( newEditor => { editor = newEditor; ui = editor.ui; view = ui.view; viewElement = view.element; } ); } ); afterEach( () => { editor.destroy(); } ); describe( 'constructor()', () => { it( 'extends EditorUI', () => { expect( ui ).to.instanceof( EditorUI ); } ); } ); describe( 'init()', () => { it( 'renders the #view', () => { expect( view.isRendered ).to.be.true; } ); describe( 'editable', () => { it( 'registers view.editable#element in editor focus tracker', () => { ui.focusTracker.isFocused = false; view.editable.element.dispatchEvent( new Event( 'focus' ) ); 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', () => { assertBinding( view.editable, { isFocused: false }, [ [ ui.focusTracker, { isFocused: true } ] ], { isFocused: true } ); } ); it( 'attaches editable UI as view\'s DOM root', () => { expect( editor.editing.view.getDomRoot() ).to.equal( view.editable.element ); } ); } ); describe( 'placeholder', () => { it( 'sets placeholder from editor.config.placeholder', () => { return VirtualDecoupledTestEditor .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 the "placeholder" attribute of a passed