/** * @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 BalloonEditorUI from '../src/ballooneditorui'; import EditorUI from '@ckeditor/ckeditor5-core/src/editor/editorui'; import BalloonEditorUIView from '../src/ballooneditoruiview'; import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; import BalloonToolbar from '@ckeditor/ckeditor5-ui/src/toolbar/balloon/balloontoolbar'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard'; import { isElement } from 'lodash-es'; import { assertBinding } from '@ckeditor/ckeditor5-utils/tests/_utils/utils'; import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils'; describe( 'BalloonEditorUI', () => { let editor, view, ui, viewElement; testUtils.createSinonSandbox(); beforeEach( () => { return VirtualBalloonTestEditor .create( 'foo', { plugins: [ BalloonToolbar ] } ) .then( newEditor => { editor = newEditor; ui = editor.ui; view = ui.view; viewElement = view.editable.element; } ); } ); afterEach( () => { editor.destroy(); } ); describe( 'constructor()', () => { it( 'extends EditorUI', () => { expect( ui ).to.instanceof( EditorUI ); } ); } ); describe( 'init()', () => { it( 'initializes the #view', () => { expect( view.isRendered ).to.be.true; } ); it( 'initializes keyboard navigation between view#toolbar and view#editable', () => { const toolbar = editor.plugins.get( 'BalloonToolbar' ); const toolbarFocusSpy = testUtils.sinon.stub( toolbar.toolbarView, 'focus' ).returns( {} ); const toolbarShowSpy = testUtils.sinon.stub( toolbar, 'show' ).returns( {} ); const toolbarHideSpy = testUtils.sinon.stub( toolbar, 'hide' ).returns( {} ); const editingFocusSpy = testUtils.sinon.stub( editor.editing.view, 'focus' ).returns( {} ); ui.focusTracker.isFocused = true; // #show and #hide are mocked so mocking the focus as well. toolbar.toolbarView.focusTracker.isFocused = false; editor.keystrokes.press( { keyCode: keyCodes.f10, altKey: true, preventDefault: sinon.spy(), stopPropagation: sinon.spy() } ); sinon.assert.callOrder( toolbarShowSpy, toolbarFocusSpy ); sinon.assert.notCalled( toolbarHideSpy ); sinon.assert.notCalled( editingFocusSpy ); // #show and #hide are mocked so mocking the focus as well. toolbar.toolbarView.focusTracker.isFocused = true; toolbar.toolbarView.keystrokes.press( { keyCode: keyCodes.esc, preventDefault: sinon.spy(), stopPropagation: sinon.spy() } ); sinon.assert.callOrder( editingFocusSpy, toolbarHideSpy ); } ); describe( 'editable', () => { let editable; beforeEach( () => { editable = editor.editing.view.document.getRoot(); } ); 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', () => { expect( view.editable.name ).to.equal( editable.rootName ); } ); it( 'binds view.editable#isFocused', () => { assertBinding( view.editable, { isFocused: false }, [ [ ui.focusTracker, { isFocused: true } ] ], { isFocused: true } ); } ); } ); describe( 'placeholder', () => { it( 'sets placeholder from editor.config.placeholder', () => { return VirtualBalloonTestEditor .create( 'foo', { extraPlugins: [ BalloonToolbar, 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