| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- /**
- * @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 */
- import FontSizeEditing from '../../src/fontsize/fontsizeediting';
- import FontSizeUI from '../../src/fontsize/fontsizeui';
- import fontSizeIcon from '../../theme/icons/font-size.svg';
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import { _clear as clearTranslations, add as addTranslations } from '@ckeditor/ckeditor5-utils/src/translation-service';
- import { normalizeOptions } from '../../src/fontsize/utils';
- describe( 'FontSizeUI', () => {
- let editor, command, element;
- testUtils.createSinonSandbox();
- before( () => {
- addTranslations( 'en', {
- 'Font Size': 'Font Size',
- 'Default': 'Default',
- 'Tiny': 'Tiny',
- 'Small': 'Small',
- 'Big': 'Big',
- 'Huge': 'Huge'
- } );
- addTranslations( 'pl', {
- 'Font Size': 'Rozmiar czcionki',
- 'Default': 'Domyślny',
- 'Tiny': 'Tyci',
- 'Small': 'Mały',
- 'Big': 'Duży',
- 'Huge': 'Ogromny'
- } );
- } );
- after( () => {
- clearTranslations();
- } );
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- return ClassicTestEditor
- .create( element, {
- plugins: [ FontSizeEditing, FontSizeUI ]
- } )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- afterEach( () => {
- element.remove();
- return editor.destroy();
- } );
- describe( 'fontSize Dropdown', () => {
- let dropdown;
- beforeEach( () => {
- command = editor.commands.get( 'fontSize' );
- dropdown = editor.ui.componentFactory.create( 'fontSize' );
- } );
- it( 'button has the base properties', () => {
- const button = dropdown.buttonView;
- expect( button ).to.have.property( 'label', 'Font Size' );
- expect( button ).to.have.property( 'tooltip', true );
- expect( button ).to.have.property( 'icon', fontSizeIcon );
- } );
- it( 'should add custom CSS class to dropdown', () => {
- dropdown.render();
- expect( dropdown.element.classList.contains( 'ck-font-size-dropdown' ) ).to.be.true;
- } );
- it( 'should focus view after command execution', () => {
- const focusSpy = testUtils.sinon.spy( editor.editing.view, 'focus' );
- dropdown.commandName = 'fontSize';
- dropdown.fire( 'execute' );
- sinon.assert.calledOnce( focusSpy );
- } );
- it( 'should activate current option in dropdown', () => {
- const listView = dropdown.listView;
- command.value = undefined;
- // The third item is 'default' font size.
- expect( listView.items.map( item => item.children.first.isOn ) ).to.deep.equal( [ false, false, true, false, false ] );
- command.value = 'tiny';
- // The first item is 'tiny' font size.
- expect( listView.items.map( item => item.children.first.isOn ) ).to.deep.equal( [ true, false, false, false, false ] );
- } );
- describe( 'model to command binding', () => {
- it( 'isEnabled', () => {
- command.isEnabled = false;
- expect( dropdown.buttonView.isEnabled ).to.be.false;
- command.isEnabled = true;
- expect( dropdown.buttonView.isEnabled ).to.be.true;
- } );
- } );
- describe( 'config', () => {
- beforeEach( () => {
- // Each test case in this group creates its own element, so make sure to delete editor created in
- // the main beforeEach in this file, as later element and editor vars are overridden (#6002).
- element.remove();
- return editor.destroy();
- } );
- describe( 'using presets', () => {
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- return ClassicTestEditor
- .create( element, {
- plugins: [ FontSizeEditing, FontSizeUI ],
- fontSize: {
- options: [ 'tiny', 'small', 'default', 'big', 'huge' ]
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- dropdown = editor.ui.componentFactory.create( 'fontSize' );
- } );
- } );
- it( 'adds css class to listView#items in the panel', () => {
- const listView = dropdown.listView;
- expect( listView.items.map( item => item.children.first.class ) ).to.deep.equal( [
- 'ck-fontsize-option text-tiny',
- 'ck-fontsize-option text-small',
- 'ck-fontsize-option',
- 'ck-fontsize-option text-big',
- 'ck-fontsize-option text-huge'
- ] );
- } );
- } );
- describe( 'using numerical values', () => {
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- return ClassicTestEditor
- .create( element, {
- plugins: [ FontSizeEditing, FontSizeUI ],
- fontSize: {
- options: [ 10, 12, 'default', 16, 18 ]
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- dropdown = editor.ui.componentFactory.create( 'fontSize' );
- } );
- } );
- it( 'adds css class to listView#items in the panel', () => {
- const listView = dropdown.listView;
- expect( listView.items.map( item => item.children.first.class ) ).to.deep.equal( [
- 'ck-fontsize-option',
- 'ck-fontsize-option',
- 'ck-fontsize-option',
- 'ck-fontsize-option',
- 'ck-fontsize-option'
- ] );
- } );
- it( 'adds font-size style to listView#items in the panel', () => {
- const listView = dropdown.listView;
- expect( listView.items.map( item => item.children.first.labelStyle ) ).to.deep.equal( [
- 'font-size:10px',
- 'font-size:12px',
- undefined,
- 'font-size:16px',
- 'font-size:18px'
- ] );
- } );
- } );
- } );
- describe( 'localization', () => {
- beforeEach( async () => {
- element.remove();
- await editor.destroy();
- return localizedEditor( [ 'tiny', 'small', 'default', 'big', 'huge' ] );
- } );
- it( 'does not alter normalizeOptions() internals', () => {
- const options = normalizeOptions( [ 'tiny', 'small', 'default', 'big', 'huge' ] );
- expect( options ).to.deep.equal( [
- { title: 'Tiny', model: 'tiny', view: { name: 'span', classes: 'text-tiny', priority: 7 } },
- { title: 'Small', model: 'small', view: { name: 'span', classes: 'text-small', priority: 7 } },
- { title: 'Default', model: undefined },
- { title: 'Big', model: 'big', view: { name: 'span', classes: 'text-big', priority: 7 } },
- { title: 'Huge', model: 'huge', view: { name: 'span', classes: 'text-huge', priority: 7 } }
- ] );
- } );
- it( 'works for the #buttonView', () => {
- const buttonView = dropdown.buttonView;
- expect( buttonView.label ).to.equal( 'Rozmiar czcionki' );
- } );
- it( 'works for the listView#items in the panel', () => {
- const listView = dropdown.listView;
- expect( listView.items.map( item => item.children.first.label ) ).to.deep.equal( [
- 'Tyci',
- 'Mały',
- 'Domyślny',
- 'Duży',
- 'Ogromny'
- ] );
- } );
- function localizedEditor( options ) {
- const editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ FontSizeEditing, FontSizeUI ],
- toolbar: [ 'fontSize' ],
- language: 'pl',
- fontSize: {
- options
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- dropdown = editor.ui.componentFactory.create( 'fontSize' );
- command = editor.commands.get( 'fontSize' );
- editorElement.remove();
- return editor.destroy();
- } );
- }
- } );
- } );
- } );
|