| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global document, Event, console */
- import ToolbarView from '../../src/toolbar/toolbarview';
- import ToolbarSeparatorView from '../../src/toolbar/toolbarseparatorview';
- import KeystrokeHandler from '@ckeditor/ckeditor5-utils/src/keystrokehandler';
- import ComponentFactory from '../../src/componentfactory';
- import FocusTracker from '@ckeditor/ckeditor5-utils/src/focustracker';
- import FocusCycler from '../../src/focuscycler';
- import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
- import ViewCollection from '../../src/viewcollection';
- import global from '@ckeditor/ckeditor5-utils/src/dom/global';
- import View from '../../src/view';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import { add as addTranslations, _clear as clearTranslations } from '@ckeditor/ckeditor5-utils/src/translation-service';
- import Rect from '@ckeditor/ckeditor5-utils/src/dom/rect';
- import Locale from '@ckeditor/ckeditor5-utils/src/locale';
- import ResizeObserver from '@ckeditor/ckeditor5-utils/src/dom/resizeobserver';
- describe( 'ToolbarView', () => {
- let locale, view;
- testUtils.createSinonSandbox();
- before( () => {
- addTranslations( 'pl', {
- 'Editor toolbar': 'Pasek narzędzi edytora'
- } );
- addTranslations( 'en', {
- 'Editor toolbar': 'Editor toolbar'
- } );
- } );
- after( () => {
- clearTranslations();
- } );
- beforeEach( () => {
- locale = new Locale();
- view = new ToolbarView( locale );
- view.render();
- } );
- afterEach( () => {
- sinon.restore();
- view.destroy();
- } );
- describe( 'constructor()', () => {
- it( 'should set view#locale', () => {
- expect( view.locale ).to.equal( locale );
- } );
- it( 'should set view#isCompact', () => {
- expect( view.isCompact ).to.be.false;
- } );
- describe( '#options', () => {
- it( 'should be an empty object if none were passed', () => {
- expect( view.options ).to.deep.equal( {} );
- } );
- it( 'should be an empty object if none were passed', () => {
- const options = {
- foo: 'bar'
- };
- const toolbar = new ToolbarView( locale, options );
- expect( toolbar.options ).to.equal( options );
- toolbar.destroy();
- } );
- } );
- it( 'should create view#items collection', () => {
- expect( view.items ).to.be.instanceOf( ViewCollection );
- } );
- it( 'creates #focusTracker instance', () => {
- expect( view.focusTracker ).to.be.instanceOf( FocusTracker );
- } );
- it( 'creates #keystrokes instance', () => {
- expect( view.keystrokes ).to.be.instanceOf( KeystrokeHandler );
- } );
- it( 'should create view#itemsView', () => {
- expect( view.itemsView ).to.be.instanceOf( View );
- } );
- it( 'should create view#children collection', () => {
- expect( view.children ).to.be.instanceOf( ViewCollection );
- } );
- it( 'creates #_focusCycler instance', () => {
- expect( view._focusCycler ).to.be.instanceOf( FocusCycler );
- } );
- it( 'creates #_behavior', () => {
- expect( view._behavior ).to.be.an( 'object' );
- } );
- } );
- describe( 'template', () => {
- it( 'should create element from template', () => {
- expect( view.element.classList.contains( 'ck' ) ).to.true;
- expect( view.element.classList.contains( 'ck-toolbar' ) ).to.true;
- } );
- it( 'should create #itemsView from template', () => {
- expect( view.element.firstChild ).to.equal( view.itemsView.element );
- expect( view.itemsView.element.classList.contains( 'ck' ) ).to.true;
- expect( view.itemsView.element.classList.contains( 'ck-toolbar__items' ) ).to.true;
- } );
- describe( 'attributes', () => {
- it( 'should be defined', () => {
- expect( view.element.getAttribute( 'role' ) ).to.equal( 'toolbar' );
- expect( view.element.getAttribute( 'aria-label' ) ).to.equal( 'Editor toolbar' );
- } );
- it( 'should allow a custom aria-label', () => {
- const view = new ToolbarView( locale );
- view.ariaLabel = 'Custom label';
- view.render();
- expect( view.element.getAttribute( 'aria-label' ) ).to.equal( 'Custom label' );
- view.destroy();
- } );
- it( 'should allow the aria-label to be translated', () => {
- const view = new ToolbarView( new Locale( { uiLanguage: 'pl' } ) );
- view.render();
- expect( view.element.getAttribute( 'aria-label' ) ).to.equal( 'Pasek narzędzi edytora' );
- view.destroy();
- } );
- } );
- describe( 'event listeners', () => {
- it( 'prevent default on #mousedown', () => {
- const evt = new Event( 'mousedown', { bubbles: true } );
- const spy = sinon.spy( evt, 'preventDefault' );
- view.element.dispatchEvent( evt );
- sinon.assert.calledOnce( spy );
- } );
- } );
- } );
- describe( 'element bindings', () => {
- describe( 'class', () => {
- it( 'reacts on view#class', () => {
- view.class = 'foo';
- expect( view.element.classList.contains( 'foo' ) ).to.be.true;
- view.class = 'bar';
- expect( view.element.classList.contains( 'bar' ) ).to.be.true;
- view.class = false;
- expect( view.element.classList.contains( 'foo' ) ).to.be.false;
- expect( view.element.classList.contains( 'bar' ) ).to.be.false;
- } );
- it( 'reacts on view#isCompact', () => {
- view.isCompact = false;
- expect( view.element.classList.contains( 'ck-toolbar_compact' ) ).to.be.false;
- view.isCompact = true;
- expect( view.element.classList.contains( 'ck-toolbar_compact' ) ).to.be.true;
- } );
- } );
- describe( 'style', () => {
- it( 'reacts on view#maxWidth', () => {
- view.maxWidth = '100px';
- expect( view.element.style.maxWidth ).to.equal( '100px' );
- view.maxWidth = undefined;
- expect( view.element.style.maxWidth ).to.equal( '' );
- view.maxWidth = null;
- expect( view.element.style.maxWidth ).to.equal( '' );
- view.maxWidth = '200px';
- expect( view.element.style.maxWidth ).to.equal( '200px' );
- } );
- } );
- } );
- describe( 'render()', () => {
- it( 'registers #items in #focusTracker', () => {
- const view = new ToolbarView( locale );
- const spyAdd = sinon.spy( view.focusTracker, 'add' );
- const spyRemove = sinon.spy( view.focusTracker, 'remove' );
- view.items.add( focusable() );
- view.items.add( focusable() );
- sinon.assert.notCalled( spyAdd );
- view.render();
- sinon.assert.calledTwice( spyAdd );
- view.items.remove( 1 );
- sinon.assert.calledOnce( spyRemove );
- view.destroy();
- } );
- it( 'starts listening for #keystrokes coming from #element', () => {
- const view = new ToolbarView( new Locale() );
- const spy = sinon.spy( view.keystrokes, 'listenTo' );
- view.render();
- sinon.assert.calledOnce( spy );
- sinon.assert.calledWithExactly( spy, view.element );
- view.destroy();
- } );
- describe( 'activates keyboard navigation for the toolbar', () => {
- it( 'so "arrowup" focuses previous focusable item', () => {
- const keyEvtData = getArrowKeyData( 'arrowup' );
- // No children to focus.
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledOnce( keyEvtData.preventDefault );
- sinon.assert.calledOnce( keyEvtData.stopPropagation );
- view.items.add( nonFocusable() );
- view.items.add( nonFocusable() );
- // No focusable children.
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledTwice( keyEvtData.preventDefault );
- sinon.assert.calledTwice( keyEvtData.stopPropagation );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- // Mock the last item is focused.
- view.focusTracker.isFocused = true;
- view.focusTracker.focusedElement = view.items.get( 4 ).element;
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledThrice( keyEvtData.preventDefault );
- sinon.assert.calledThrice( keyEvtData.stopPropagation );
- sinon.assert.calledOnce( view.items.get( 2 ).focus );
- } );
- it( 'so "arrowleft" focuses previous focusable item', () => {
- const keyEvtData = getArrowKeyData( 'arrowleft' );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- // Mock the last item is focused.
- view.focusTracker.isFocused = true;
- view.focusTracker.focusedElement = view.items.get( 2 ).element;
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledOnce( view.items.get( 0 ).focus );
- } );
- it( 'so "arrowdown" focuses next focusable item', () => {
- const keyEvtData = getArrowKeyData( 'arrowdown' );
- // No children to focus.
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledOnce( keyEvtData.preventDefault );
- sinon.assert.calledOnce( keyEvtData.stopPropagation );
- view.items.add( nonFocusable() );
- view.items.add( nonFocusable() );
- // No focusable children.
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledTwice( keyEvtData.preventDefault );
- sinon.assert.calledTwice( keyEvtData.stopPropagation );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- // Mock the last item is focused.
- view.focusTracker.isFocused = true;
- view.focusTracker.focusedElement = view.items.get( 4 ).element;
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledThrice( keyEvtData.preventDefault );
- sinon.assert.calledThrice( keyEvtData.stopPropagation );
- sinon.assert.calledOnce( view.items.get( 2 ).focus );
- } );
- it( 'so "arrowright" focuses next focusable item', () => {
- const keyEvtData = getArrowKeyData( 'arrowright' );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- // Mock the last item is focused.
- view.focusTracker.isFocused = true;
- view.focusTracker.focusedElement = view.items.get( 0 ).element;
- view.keystrokes.press( keyEvtData );
- sinon.assert.calledOnce( view.items.get( 2 ).focus );
- } );
- } );
- it( 'calls _behavior#render()', () => {
- const view = new ToolbarView( locale );
- sinon.spy( view._behavior, 'render' );
- view.render();
- sinon.assert.calledOnce( view._behavior.render );
- sinon.assert.calledWithExactly( view._behavior.render, view );
- view.destroy();
- } );
- } );
- describe( 'destroy()', () => {
- it( 'destroys the feature', () => {
- sinon.spy( view._behavior, 'destroy' );
- view.destroy();
- sinon.assert.calledOnce( view._behavior.destroy );
- } );
- it( 'calls _behavior#destroy()', () => {
- sinon.spy( view._behavior, 'destroy' );
- view.destroy();
- sinon.assert.calledOnce( view._behavior.destroy );
- } );
- } );
- describe( 'focus()', () => {
- it( 'focuses the first focusable of #items in DOM', () => {
- // No children to focus.
- view.focus();
- // The second child is focusable.
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.focus();
- sinon.assert.calledOnce( view.items.get( 1 ).focus );
- } );
- } );
- describe( 'focusLast()', () => {
- it( 'focuses the last focusable of #items in DOM', () => {
- // No children to focus.
- view.focusLast();
- // The second child is focusable.
- view.items.add( nonFocusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( nonFocusable() );
- view.focusLast();
- sinon.assert.calledOnce( view.items.get( 3 ).focus );
- } );
- } );
- describe( 'fillFromConfig()', () => {
- let factory;
- beforeEach( () => {
- factory = new ComponentFactory( {} );
- factory.add( 'foo', namedFactory( 'foo' ) );
- factory.add( 'bar', namedFactory( 'bar' ) );
- } );
- it( 'expands the config into collection', () => {
- view.fillFromConfig( [ 'foo', 'bar', '|', 'foo' ], factory );
- const items = view.items;
- expect( items ).to.have.length( 4 );
- expect( items.get( 0 ).name ).to.equal( 'foo' );
- expect( items.get( 1 ).name ).to.equal( 'bar' );
- expect( items.get( 2 ) ).to.be.instanceOf( ToolbarSeparatorView );
- expect( items.get( 3 ).name ).to.equal( 'foo' );
- } );
- it( 'warns if there is no such component in the factory', () => {
- const items = view.items;
- const consoleWarnStub = sinon.stub( console, 'warn' );
- view.fillFromConfig( [ 'foo', 'bar', 'baz' ], factory );
- expect( items ).to.have.length( 2 );
- expect( items.get( 0 ).name ).to.equal( 'foo' );
- expect( items.get( 1 ).name ).to.equal( 'bar' );
- sinon.assert.calledOnce( consoleWarnStub );
- sinon.assert.calledWithExactly( consoleWarnStub,
- sinon.match( /^toolbarview-item-unavailable/ ),
- { name: 'baz' }
- );
- } );
- } );
- describe( 'toolbar with static items', () => {
- describe( 'constructor()', () => {
- it( 'should set view#isVertical', () => {
- expect( view.isVertical ).to.be.false;
- } );
- it( 'binds itemsView#children to #items', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- expect( view.itemsView.children.map( i => i ) ).to.have.ordered.members( [ itemA, itemB, itemC ] );
- } );
- it( 'binds #focusables to #items', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- expect( view.focusables.map( i => i ) ).to.have.ordered.members( [ itemA, itemB, itemC ] );
- } );
- } );
- describe( 'element bindings', () => {
- describe( 'class', () => {
- it( 'reacts on view#isVertical', () => {
- view.isVertical = false;
- expect( view.element.classList.contains( 'ck-toolbar_vertical' ) ).to.be.false;
- view.isVertical = true;
- expect( view.element.classList.contains( 'ck-toolbar_vertical' ) ).to.be.true;
- } );
- } );
- } );
- } );
- describe( 'toolbar with a dynamic item grouping', () => {
- let locale, view, groupedItems, ungroupedItems, groupedItemsDropdown;
- let resizeCallback, observeSpy, unobserveSpy;
- beforeEach( () => {
- observeSpy = sinon.spy();
- unobserveSpy = sinon.spy();
- // Make sure other tests of the editor do not affect tests that follow.
- // Without it, if an instance of ResizeObserver already exists somewhere undestroyed
- // in DOM, the following DOM mock will have no effect.
- ResizeObserver._observerInstance = null;
- testUtils.sinon.stub( global.window, 'ResizeObserver' ).callsFake( callback => {
- resizeCallback = callback;
- return {
- observe: observeSpy,
- unobserve: unobserveSpy
- };
- } );
- locale = new Locale();
- view = new ToolbarView( locale, {
- shouldGroupWhenFull: true
- } );
- view.render();
- view.element.style.width = '200px';
- document.body.appendChild( view.element );
- groupedItems = view._behavior.groupedItems;
- ungroupedItems = view._behavior.ungroupedItems;
- groupedItemsDropdown = view._behavior.groupedItemsDropdown;
- } );
- afterEach( () => {
- view.element.remove();
- view.destroy();
- } );
- describe( 'constructor()', () => {
- it( 'extends the template with the CSS class', () => {
- expect( view.element.classList.contains( 'ck-toolbar_grouping' ) ).to.be.true;
- } );
- it( 'updates the UI as new #items are added', () => {
- sinon.spy( view._behavior, '_updateGrouping' );
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.element.style.width = '200px';
- view.items.add( itemA );
- view.items.add( itemB );
- sinon.assert.calledTwice( view._behavior._updateGrouping );
- expect( ungroupedItems ).to.have.length( 2 );
- expect( groupedItems ).to.have.length( 0 );
- view.items.add( itemC );
- // The dropdown took some extra space.
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 2 );
- view.items.add( itemD, 2 );
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 3 );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemD, itemC ] );
- } );
- it( 'updates the UI as #items are removed', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.element.style.width = '200px';
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- view.items.add( itemD );
- sinon.spy( view._behavior, '_updateGrouping' );
- view.items.remove( 2 );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemD ] );
- sinon.assert.calledOnce( view._behavior._updateGrouping );
- view.items.remove( 0 );
- sinon.assert.calledTwice( view._behavior._updateGrouping );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemD ] );
- } );
- } );
- it( 'groups items that overflow into the dropdown', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- view.items.add( itemD );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemC, itemD ] );
- expect( view.children ).to.have.length( 3 );
- expect( view.children.get( 0 ) ).to.equal( view.itemsView );
- expect( view.children.get( 1 ) ).to.be.instanceOf( ToolbarSeparatorView );
- expect( view.children.get( 2 ) ).to.equal( groupedItemsDropdown );
- } );
- it( 'ungroups items if there is enough space to display them (all)', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- view.items.add( itemD );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemC, itemD ] );
- view.element.style.width = '350px';
- // Some grouped items cannot be ungrouped because there is not enough space and they will
- // land back in #_behavior.groupedItems after an attempt was made.
- view._behavior._updateGrouping();
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA, itemB, itemC ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemD ] );
- } );
- it( 'ungroups items if there is enough space to display them (some)', () => {
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA ] );
- expect( groupedItems.map( i => i ) ).to.have.ordered.members( [ itemB, itemC ] );
- view.element.style.width = '350px';
- // All grouped items will be ungrouped because they fit just alright in the main space.
- view._behavior._updateGrouping();
- expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ itemA, itemB, itemC ] );
- expect( groupedItems ).to.have.length( 0 );
- expect( view.children ).to.have.length( 1 );
- expect( view.children.get( 0 ) ).to.equal( view.itemsView );
- } );
- describe( 'render()', () => {
- let view, groupedItems, ungroupedItems;
- beforeEach( () => {
- view = new ToolbarView( locale, {
- shouldGroupWhenFull: true
- } );
- observeSpy.resetHistory();
- unobserveSpy.resetHistory();
- view.render();
- groupedItems = view._behavior.groupedItems;
- ungroupedItems = view._behavior.ungroupedItems;
- document.body.appendChild( view.element );
- } );
- afterEach( () => {
- view.element.remove();
- view.destroy();
- } );
- it( 'starts observing toolbar resize immediatelly after render', () => {
- sinon.assert.calledOnce( observeSpy );
- sinon.assert.calledWithExactly( observeSpy, view.element );
- } );
- it( 'updates the UI when the toolbar is being resized (expanding)', () => {
- view.element.style.width = '200px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 4 );
- view.element.style.width = '500px';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- expect( ungroupedItems ).to.have.length( 5 );
- expect( groupedItems ).to.have.length( 0 );
- } );
- it( 'updates the UI when the toolbar is being resized (narrowing)', () => {
- view.element.style.width = '500px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- expect( ungroupedItems ).to.have.length( 5 );
- expect( groupedItems ).to.have.length( 0 );
- view.element.style.width = '200px';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 4 );
- } );
- it( 'does not react to changes in height', () => {
- view.element.style.width = '500px';
- view.element.style.height = '200px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- sinon.spy( view._behavior, '_updateGrouping' );
- view.element.style.width = '500px';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- sinon.assert.calledOnce( view._behavior._updateGrouping );
- view.element.style.height = '500px';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- sinon.assert.calledOnce( view._behavior._updateGrouping );
- } );
- it( 'updates the state of grouped items upon resize', () => {
- testUtils.sinon.spy( view._behavior, '_updateGrouping' );
- sinon.assert.notCalled( view._behavior._updateGrouping );
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- sinon.assert.calledOnce( view._behavior._updateGrouping );
- } );
- it( 'does not update the state of grouped items if invisible', () => {
- view.element.style.width = '500px';
- view.element.style.height = '200px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( ungroupedItems ).to.have.length( 5 );
- expect( groupedItems ).to.have.length( 0 );
- view.element.style.display = 'none';
- view.maxWidth = '100px';
- expect( ungroupedItems ).to.have.length( 5 );
- expect( groupedItems ).to.have.length( 0 );
- } );
- it( 'should queue the update of the grouped items state when invisible (and execute it when visible again)', () => {
- view.maxWidth = '200px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 4 );
- view.element.style.display = 'none';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- // Response to this change will be queued.
- view.maxWidth = '500px';
- expect( ungroupedItems ).to.have.length( 1 );
- expect( groupedItems ).to.have.length( 4 );
- // The queued items state should happen after that.
- view.element.style.display = 'flex';
- resizeCallback( [ {
- target: view.element,
- contentRect: new Rect( view.element )
- } ] );
- expect( ungroupedItems ).to.have.length( 5 );
- expect( groupedItems ).to.have.length( 0 );
- } );
- } );
- describe( 'destroy()', () => {
- it( 'destroys the #groupedItemsDropdown', () => {
- view.element.style.width = '200px';
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- view.items.add( itemD );
- sinon.spy( groupedItemsDropdown, 'destroy' );
- view.element.style.width = '500px';
- // The dropdown hides; it does not belong to any collection but it still exist.
- view._behavior._updateGrouping();
- view.destroy();
- sinon.assert.calledOnce( groupedItemsDropdown.destroy );
- } );
- it( 'should destroy the #resizeObserver', () => {
- view.element.style.width = '200px';
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- const itemD = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- view.items.add( itemD );
- sinon.spy( view._behavior.resizeObserver, 'destroy' );
- view.destroy();
- sinon.assert.calledOnce( view._behavior.resizeObserver.destroy );
- } );
- } );
- describe( 'dropdown with grouped items', () => {
- it( 'has proper DOM structure', () => {
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( view.children.has( groupedItemsDropdown ) ).to.be.true;
- expect( groupedItemsDropdown.element.classList.contains( 'ck-toolbar__grouped-dropdown' ) );
- expect( groupedItemsDropdown.buttonView.label ).to.equal( 'Show more items' );
- } );
- it( 'shares its toolbarView#items with grouped items', () => {
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( groupedItemsDropdown.toolbarView.items.map( i => i ) )
- .to.have.ordered.members( groupedItems.map( i => i ) );
- } );
- // https://github.com/ckeditor/ckeditor5/issues/5608
- it( 'has the proper position depending on the UI language direction (LTR UI)', () => {
- const locale = new Locale( { uiLanguage: 'en' } );
- const view = new ToolbarView( locale, { shouldGroupWhenFull: true } );
- view.render();
- expect( view._behavior.groupedItemsDropdown.panelPosition ).to.equal( 'sw' );
- view.destroy();
- } );
- // https://github.com/ckeditor/ckeditor5/issues/5608
- it( 'has the proper position depending on the UI language direction (RTL UI)', () => {
- const locale = new Locale( { uiLanguage: 'ar' } );
- const view = new ToolbarView( locale, { shouldGroupWhenFull: true } );
- view.render();
- expect( view._behavior.groupedItemsDropdown.panelPosition ).to.equal( 'se' );
- view.destroy();
- } );
- } );
- describe( 'item overflow checking logic', () => {
- it( 'considers the right padding of the toolbar (LTR UI)', () => {
- view.class = 'ck-reset_all';
- view.element.style.width = '210px';
- view.element.style.paddingLeft = '0px';
- view.element.style.paddingRight = '20px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( view._behavior.groupedItems ).to.have.length( 1 );
- } );
- it( 'considers the left padding of the toolbar (RTL UI)', () => {
- const locale = new Locale( { uiLanguage: 'ar' } );
- const view = new ToolbarView( locale, {
- shouldGroupWhenFull: true
- } );
- view.extendTemplate( {
- attributes: {
- dir: locale.uiLanguageDirection
- }
- } );
- view.render();
- document.body.appendChild( view.element );
- view.class = 'ck-reset_all';
- view.element.style.width = '210px';
- view.element.style.paddingLeft = '20px';
- view.element.style.paddingRight = '0px';
- view.items.add( focusable() );
- view.items.add( focusable() );
- expect( view._behavior.groupedItems ).to.have.length( 1 );
- view.destroy();
- view.element.remove();
- } );
- } );
- describe( 'focus management', () => {
- it( '#focus() focuses the dropdown when it is the only focusable', () => {
- sinon.spy( groupedItemsDropdown, 'focus' );
- view.element.style.width = '10px';
- const itemA = focusable();
- const itemB = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- expect( view.focusables.map( i => i ) ).to.have.ordered.members( [ groupedItemsDropdown ] );
- view.focus();
- sinon.assert.calledOnce( groupedItemsDropdown.focus );
- } );
- it( '#focusLast() focuses the dropdown when present', () => {
- sinon.spy( groupedItemsDropdown, 'focus' );
- view.element.style.width = '200px';
- const itemA = focusable();
- const itemB = focusable();
- const itemC = focusable();
- view.items.add( itemA );
- view.items.add( itemB );
- view.items.add( itemC );
- expect( view.focusables.map( i => i ) ).to.have.ordered.members( [ itemA, groupedItemsDropdown ] );
- view.focusLast();
- sinon.assert.calledOnce( groupedItemsDropdown.focus );
- view.element.remove();
- } );
- } );
- } );
- } );
- function focusable() {
- const view = nonFocusable();
- view.label = 'focusable';
- view.focus = sinon.stub().callsFake( () => {
- view.element.focus();
- } );
- view.extendTemplate( {
- attributes: {
- tabindex: -1
- }
- } );
- return view;
- }
- function nonFocusable() {
- const view = new View();
- view.set( 'label', 'non-focusable' );
- const bind = view.bindTemplate;
- view.setTemplate( {
- tag: 'div',
- attributes: {
- style: {
- padding: '0',
- margin: '0',
- width: '100px',
- height: '100px',
- background: 'rgba(255,0,0,.3)'
- }
- },
- children: [
- {
- text: bind.to( 'label' )
- }
- ]
- } );
- return view;
- }
- function namedFactory( name ) {
- return locale => {
- const view = new View( locale );
- view.name = name;
- view.element = document.createElement( 'a' );
- return view;
- };
- }
- function getArrowKeyData( arrow ) {
- return {
- keyCode: keyCodes[ arrow ],
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- }
|