| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 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 Table from '../src/table';
- import TableToolbar from '../src/tabletoolbar';
- import View from '@ckeditor/ckeditor5-ui/src/view';
- describe( 'TableToolbar integration', () => {
- describe( 'with the BalloonToolbar', () => {
- let balloon, balloonToolbar, newEditor, editorElement;
- beforeEach( () => {
- editorElement = global.document.createElement( 'div' );
- global.document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ Table, TableToolbar, BalloonToolbar, Paragraph ]
- } )
- .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 table is selected', () => {
- // When table is selected along with text.
- setModelData( newEditor.model, '<paragraph>fo[o</paragraph><table><tableRow><tableCell></tableCell></tableRow></table>]' );
- balloonToolbar.show();
- // BalloonToolbar should be visible.
- expect( balloon.visibleView ).to.equal( balloonToolbar.toolbarView );
- // When only table is selected.
- setModelData( newEditor.model, '<paragraph>foo</paragraph><table><tableRow><tableCell>[]</tableCell></tableRow></table>' );
- 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 table
- setModelData( newEditor.model, '<paragraph>foo</paragraph><table><tableRow><tableCell>[]</tableCell></tableRow></table>' );
- 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 );
- } );
- } );
- } );
|