/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
import BalloonToolbar from '@ckeditor/ckeditor5-ui/src/toolbar/balloon/balloontoolbar';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import global from '@ckeditor/ckeditor5-utils/src/dom/global';
import Image from '../src/image';
import ImageToolbar from '../src/imagetoolbar';
import View from '@ckeditor/ckeditor5-ui/src/view';
import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
import ImageTextAlternative from '../src/imagetextalternative';
describe( 'ImageToolbar integration', () => {
describe( 'with the BalloonToolbar', () => {
let balloon, balloonToolbar, newEditor, editorElement;
testUtils.createSinonSandbox();
beforeEach( () => {
editorElement = global.document.createElement( 'div' );
global.document.body.appendChild( editorElement );
return ClassicTestEditor
.create( editorElement, {
plugins: [ Image, ImageTextAlternative, ImageToolbar, BalloonToolbar, Paragraph ],
image: {
toolbar: [ 'imageTextAlternative' ]
}
} )
.then( editor => {
newEditor = editor;
balloon = newEditor.plugins.get( 'ContextualBalloon' );
balloonToolbar = newEditor.plugins.get( 'BalloonToolbar' );
const button = new View();
button.element = global.document.createElement( 'div' );
// There must be at least one toolbar items which is not disabled to show it.
// https://github.com/ckeditor/ckeditor5-ui/issues/269
balloonToolbar.toolbarView.items.add( button );
newEditor.editing.view.isFocused = true;
newEditor.editing.view.getDomRoot().focus();
} );
} );
afterEach( () => {
editorElement.remove();
return newEditor.destroy();
} );
it( 'should prevent the BalloonToolbar from being displayed when an image is selected', () => {
// When image is selected along with text.
setModelData( newEditor.model, 'fo[o]' );
balloonToolbar.show();
// BalloonToolbar should be visible.
expect( balloon.visibleView ).to.equal( balloonToolbar.toolbarView );
// When only image is selected.
setModelData( newEditor.model, 'foo[]' );
balloonToolbar.show();
// BalloonToolbar should not be visible.
expect( balloon.visibleView ).to.be.null;
} );
it( 'should listen to BalloonToolbar#show event with the high priority', () => {
const highestPrioritySpy = sinon.spy();
const highPrioritySpy = sinon.spy();
const normalPrioritySpy = sinon.spy();
// Select an image
setModelData( newEditor.model, 'foo[]' );
newEditor.listenTo( balloonToolbar, 'show', highestPrioritySpy, { priority: 'highest' } );
newEditor.listenTo( balloonToolbar, 'show', highPrioritySpy, { priority: 'high' } );
newEditor.listenTo( balloonToolbar, 'show', normalPrioritySpy, { priority: 'normal' } );
balloonToolbar.show();
sinon.assert.calledOnce( highestPrioritySpy );
sinon.assert.notCalled( highPrioritySpy );
sinon.assert.notCalled( normalPrioritySpy );
} );
} );
} );