| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541 |
- /**
- * @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 ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import indexOf from '@ckeditor/ckeditor5-utils/src/dom/indexof';
- import isRange from '@ckeditor/ckeditor5-utils/src/dom/isrange';
- import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
- import LinkEditing from '../src/linkediting';
- import LinkUI from '../src/linkui';
- import LinkFormView from '../src/ui/linkformview';
- import LinkActionsView from '../src/ui/linkactionsview';
- import ContextualBalloon from '@ckeditor/ckeditor5-ui/src/panel/balloon/contextualballoon';
- import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
- import View from '@ckeditor/ckeditor5-ui/src/view';
- import ClickObserver from '@ckeditor/ckeditor5-engine/src/view/observer/clickobserver';
- describe( 'LinkUI', () => {
- let editor, linkUIFeature, linkButton, balloon, formView, actionsView, editorElement;
- testUtils.createSinonSandbox();
- beforeEach( () => {
- editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ LinkEditing, LinkUI, Paragraph, BlockQuote ]
- } )
- .then( newEditor => {
- editor = newEditor;
- linkUIFeature = editor.plugins.get( LinkUI );
- linkButton = editor.ui.componentFactory.create( 'link' );
- balloon = editor.plugins.get( ContextualBalloon );
- formView = linkUIFeature.formView;
- actionsView = linkUIFeature.actionsView;
- // There is no point to execute BalloonPanelView attachTo and pin methods so lets override it.
- testUtils.sinon.stub( balloon.view, 'attachTo' ).returns( {} );
- testUtils.sinon.stub( balloon.view, 'pin' ).returns( {} );
- formView.render();
- } );
- } );
- afterEach( () => {
- editorElement.remove();
- return editor.destroy();
- } );
- it( 'should be named', () => {
- expect( LinkUI.pluginName ).to.equal( 'LinkUI' );
- } );
- it( 'should load ContextualBalloon', () => {
- expect( editor.plugins.get( ContextualBalloon ) ).to.be.instanceOf( ContextualBalloon );
- } );
- describe( 'init', () => {
- it( 'should register click observer', () => {
- expect( editor.editing.view.getObserver( ClickObserver ) ).to.be.instanceOf( ClickObserver );
- } );
- it( 'should create #actionsView', () => {
- expect( actionsView ).to.be.instanceOf( LinkActionsView );
- } );
- it( 'should create #formView', () => {
- expect( formView ).to.be.instanceOf( LinkFormView );
- } );
- describe( 'link toolbar button', () => {
- it( 'should be registered', () => {
- expect( linkButton ).to.be.instanceOf( ButtonView );
- } );
- it( 'should be toggleable button', () => {
- expect( linkButton.isToggleable ).to.be.true;
- } );
- it( 'should be bound to the link command', () => {
- const command = editor.commands.get( 'link' );
- command.isEnabled = true;
- command.value = 'http://ckeditor.com';
- expect( linkButton.isOn ).to.be.true;
- expect( linkButton.isEnabled ).to.be.true;
- command.isEnabled = false;
- command.value = undefined;
- expect( linkButton.isOn ).to.be.false;
- expect( linkButton.isEnabled ).to.be.false;
- } );
- it( 'should call #_showUI upon #execute', () => {
- const spy = testUtils.sinon.stub( linkUIFeature, '_showUI' ).returns( {} );
- linkButton.fire( 'execute' );
- sinon.assert.calledWithExactly( spy, true );
- } );
- } );
- } );
- describe( '_showUI()', () => {
- let balloonAddSpy;
- beforeEach( () => {
- balloonAddSpy = testUtils.sinon.spy( balloon, 'add' );
- editor.editing.view.document.isFocused = true;
- } );
- it( 'should not throw if the UI is already visible', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- linkUIFeature._showUI();
- expect( () => {
- linkUIFeature._showUI();
- } ).to.not.throw();
- } );
- it( 'should add #formView to the balloon and attach the balloon to the selection when text fragment is selected', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- linkUIFeature._showUI();
- const expectedRange = getMarkersRange( editor );
- expect( balloon.visibleView ).to.equal( formView );
- sinon.assert.calledWithExactly( balloonAddSpy, {
- view: formView,
- position: {
- target: sinon.match( isRange )
- }
- } );
- assertDomRange( expectedRange, balloonAddSpy.args[ 0 ][ 0 ].position.target );
- } );
- it( 'should add #formView to the balloon and attach the balloon to the marker element when selection is collapsed', () => {
- // (#7926)
- setModelData( editor.model, '<paragraph>f[]oo</paragraph>' );
- linkUIFeature._showUI();
- const expectedRange = getMarkersRange( editor );
- expect( balloon.visibleView ).to.equal( formView );
- sinon.assert.calledWithExactly( balloonAddSpy, {
- view: formView,
- position: {
- target: sinon.match( isRange )
- }
- } );
- assertDomRange( expectedRange, balloonAddSpy.args[ 0 ][ 0 ].position.target );
- } );
- it( 'should add #actionsView to the balloon and attach the balloon to the link element when collapsed selection is inside ' +
- 'that link',
- () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- const linkElement = editor.editing.view.getDomRoot().querySelector( 'a' );
- linkUIFeature._showUI();
- expect( balloon.visibleView ).to.equal( actionsView );
- sinon.assert.calledWithExactly( balloonAddSpy, {
- view: actionsView,
- position: {
- target: linkElement
- }
- } );
- } );
- // #https://github.com/ckeditor/ckeditor5-link/issues/181
- it( 'should add #formView to the balloon when collapsed selection is inside the link and #actionsView is already visible', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- const linkElement = editor.editing.view.getDomRoot().querySelector( 'a' );
- linkUIFeature._showUI();
- expect( balloon.visibleView ).to.equal( actionsView );
- sinon.assert.calledWithExactly( balloonAddSpy, {
- view: actionsView,
- position: {
- target: linkElement
- }
- } );
- linkUIFeature._showUI();
- expect( balloon.visibleView ).to.equal( formView );
- sinon.assert.calledWithExactly( balloonAddSpy, {
- view: formView,
- position: {
- target: linkElement
- }
- } );
- } );
- it( 'should disable #formView and #actionsView elements when link and unlink commands are disabled', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- linkUIFeature._showUI();
- editor.commands.get( 'link' ).isEnabled = true;
- editor.commands.get( 'unlink' ).isEnabled = true;
- expect( formView.urlInputView.isReadOnly ).to.be.false;
- expect( formView.saveButtonView.isEnabled ).to.be.true;
- expect( formView.cancelButtonView.isEnabled ).to.be.true;
- expect( actionsView.unlinkButtonView.isEnabled ).to.be.true;
- expect( actionsView.editButtonView.isEnabled ).to.be.true;
- editor.commands.get( 'link' ).isEnabled = false;
- editor.commands.get( 'unlink' ).isEnabled = false;
- expect( formView.urlInputView.isReadOnly ).to.be.true;
- expect( formView.saveButtonView.isEnabled ).to.be.false;
- expect( formView.cancelButtonView.isEnabled ).to.be.true;
- expect( actionsView.unlinkButtonView.isEnabled ).to.be.false;
- expect( actionsView.editButtonView.isEnabled ).to.be.false;
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/78
- it( 'should make sure the URL input in the #formView always stays in sync with the value of the command (selected link)', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- // Mock some leftover value **in DOM**, e.g. after previous editing.
- formView.urlInputView.fieldView.element.value = 'leftover';
- linkUIFeature._showUI();
- actionsView.fire( 'edit' );
- expect( formView.urlInputView.fieldView.element.value ).to.equal( 'url' );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/123
- it( 'should make sure the URL input in the #formView always stays in sync with the value of the command (no link selected)', () => {
- setModelData( editor.model, '<paragraph>f[]oo</paragraph>' );
- linkUIFeature._showUI();
- expect( formView.urlInputView.fieldView.element.value ).to.equal( '' );
- } );
- it( 'should optionally force `main` stack to be visible', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- balloon.add( {
- view: new View(),
- stackId: 'secondary'
- } );
- linkUIFeature._showUI( true );
- expect( balloon.visibleView ).to.equal( formView );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/242.
- it( 'should update balloon position when is switched in rotator to a visible panel', () => {
- setModelData( editor.model, '<paragraph>fo<$text linkHref="foo">o[] b</$text>ar</paragraph>' );
- linkUIFeature._showUI();
- const customView = new View();
- const linkViewElement = editor.editing.view.document.getRoot().getChild( 0 ).getChild( 1 );
- const linkDomElement = editor.editing.view.domConverter.mapViewToDom( linkViewElement );
- expect( balloon.visibleView ).to.equal( actionsView );
- expect( balloon.view.pin.lastCall.args[ 0 ].target ).to.equal( linkDomElement );
- balloon.add( {
- stackId: 'custom',
- view: customView,
- position: { target: {} }
- } );
- balloon.showStack( 'custom' );
- expect( balloon.visibleView ).to.equal( customView );
- expect( balloon.hasView( actionsView ) ).to.equal( true );
- editor.execute( 'blockQuote' );
- balloon.showStack( 'main' );
- expect( balloon.visibleView ).to.equal( actionsView );
- expect( balloon.hasView( customView ) ).to.equal( true );
- expect( balloon.view.pin.lastCall.args[ 0 ].target ).to.not.equal( linkDomElement );
- const newLinkViewElement = editor.editing.view.document.getRoot().getChild( 0 ).getChild( 0 ).getChild( 1 );
- const newLinkDomElement = editor.editing.view.domConverter.mapViewToDom( newLinkViewElement );
- expect( balloon.view.pin.lastCall.args[ 0 ].target ).to.equal( newLinkDomElement );
- } );
- describe( 'response to ui#update', () => {
- let view, viewDocument;
- beforeEach( () => {
- view = editor.editing.view;
- viewDocument = view.document;
- } );
- it( 'should not duplicate #update listeners', () => {
- setModelData( editor.model, '<paragraph>f[]oo</paragraph>' );
- const spy = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- linkUIFeature._showUI();
- editor.ui.fire( 'update' );
- linkUIFeature._hideUI();
- linkUIFeature._showUI();
- editor.ui.fire( 'update' );
- sinon.assert.calledTwice( spy );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/113
- it( 'updates the position of the panel – editing a link, then the selection remains in the link', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- linkUIFeature._showUI();
- const spy = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- expect( getViewData( view ) ).to.equal(
- '<p><a class="ck-link_selected" href="url">f{}oo</a></p>'
- );
- const root = viewDocument.getRoot();
- const linkElement = root.getChild( 0 ).getChild( 0 );
- const text = linkElement.getChild( 0 );
- // Move selection to foo[].
- view.change( writer => {
- writer.setSelection( text, 3, true );
- } );
- sinon.assert.calledOnce( spy );
- sinon.assert.calledWithExactly( spy, {
- target: view.domConverter.mapViewToDom( linkElement )
- } );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/113
- it( 'updates the position of the panel – creating a new link, then the selection moved', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- linkUIFeature._showUI();
- const spy = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- const root = viewDocument.getRoot();
- const text = root.getChild( 0 ).getChild( 2 );
- view.change( writer => {
- writer.setSelection( text, 1, true );
- } );
- const expectedRange = getMarkersRange( editor );
- sinon.assert.calledOnce( spy );
- sinon.assert.calledWithExactly( spy, {
- target: sinon.match( isRange )
- } );
- assertDomRange( expectedRange, spy.args[ 0 ][ 0 ].target );
- } );
- it( 'not update the position when is in not visible stack', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- linkUIFeature._showUI();
- const customView = new View();
- balloon.add( {
- stackId: 'custom',
- view: customView,
- position: { target: {} }
- } );
- balloon.showStack( 'custom' );
- expect( balloon.visibleView ).to.equal( customView );
- expect( balloon.hasView( actionsView ) ).to.equal( true );
- const spy = testUtils.sinon.spy( balloon, 'updatePosition' );
- editor.ui.fire( 'update' );
- sinon.assert.notCalled( spy );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/113
- it( 'hides of the panel – editing a link, then the selection moved out of the link', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text>bar</paragraph>' );
- linkUIFeature._showUI();
- const spyUpdate = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- const spyHide = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- const root = viewDocument.getRoot();
- const text = root.getChild( 0 ).getChild( 1 );
- // Move selection to b[]ar.
- view.change( writer => {
- writer.setSelection( text, 1, true );
- } );
- sinon.assert.calledOnce( spyHide );
- sinon.assert.notCalled( spyUpdate );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/113
- it( 'hides the panel – editing a link, then the selection expands', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="url">f[]oo</$text></paragraph>' );
- linkUIFeature._showUI();
- const spyUpdate = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- const spyHide = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- expect( getViewData( view ) ).to.equal( '<p><a class="ck-link_selected" href="url">f{}oo</a></p>' );
- const root = viewDocument.getRoot();
- const text = root.getChild( 0 ).getChild( 0 ).getChild( 0 );
- // Move selection to f[o]o.
- view.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( text, 1 ),
- writer.createPositionAt( text, 2 )
- ), true );
- } );
- sinon.assert.calledOnce( spyHide );
- sinon.assert.notCalled( spyUpdate );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/113
- it( 'hides the panel – creating a new link, then the selection moved to another parent', () => {
- setModelData( editor.model, '<paragraph>f[]oo</paragraph><paragraph>bar</paragraph>' );
- linkUIFeature._showUI();
- const spyUpdate = testUtils.sinon.stub( balloon, 'updatePosition' ).returns( {} );
- const spyHide = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- const root = viewDocument.getRoot();
- const text = root.getChild( 1 ).getChild( 0 );
- // Move selection to f[o]o.
- view.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( text, 1 ),
- writer.createPositionAt( text, 2 )
- ), true );
- } );
- sinon.assert.calledOnce( spyHide );
- sinon.assert.notCalled( spyUpdate );
- } );
- } );
- describe( 'fake visual selection', () => {
- describe( 'non-collapsed', () => {
- it( 'should be displayed when a text fragment is selected', () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const paragraph = editor.model.document.getRoot().getChild( 0 );
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( paragraph, 1 ),
- editor.model.createPositionAt( paragraph, 2 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- expect( getViewData( editor.editing.view ) ).to.equal( '<p>f{<span class="ck-fake-link-selection">o</span>}o</p>' );
- expect( editor.getData() ).to.equal( '<p>foo</p>' );
- } );
- it( 'should display a fake visual selection on the next non-empty text node when selection starts at the end ' +
- 'of the empty block in the multiline selection', () => {
- setModelData( editor.model, '<paragraph>[</paragraph><paragraph>foo]</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const secondParagraph = editor.model.document.getRoot().getChild( 1 );
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( secondParagraph, 0 ),
- editor.model.createPositionAt( secondParagraph, 3 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- expect( getViewData( editor.editing.view ) ).to.equal(
- '<p>[</p>' +
- '<p><span class="ck-fake-link-selection">foo</span>]</p>'
- );
- expect( editor.getData() ).to.equal( '<p> </p><p>foo</p>' );
- } );
- it( 'should display a fake visual selection on the next non-empty text node when selection starts at the end ' +
- 'of the first block in the multiline selection', () => {
- setModelData( editor.model, '<paragraph>foo[</paragraph><paragraph>bar]</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const secondParagraph = editor.model.document.getRoot().getChild( 1 );
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( secondParagraph, 0 ),
- editor.model.createPositionAt( secondParagraph, 3 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- expect( getViewData( editor.editing.view ) ).to.equal(
- '<p>foo{</p>' +
- '<p><span class="ck-fake-link-selection">bar</span>]</p>'
- );
- expect( editor.getData() ).to.equal( '<p>foo</p><p>bar</p>' );
- } );
- it( 'should be displayed on first text node in non-empty element when selection contains few empty elements', () => {
- setModelData( editor.model, '<paragraph>foo[</paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph>bar</paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph>]baz</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const firstNonEmptyElementInTheSelection = editor.model.document.getRoot().getChild( 3 );
- const rangeEnd = editor.model.document.selection.getFirstRange().end;
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( firstNonEmptyElementInTheSelection, 0 ),
- editor.model.createPositionAt( rangeEnd, 0 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- const expectedViewData = '<p>foo{</p>' +
- '<p></p>' +
- '<p></p>' +
- '<p><span class="ck-fake-link-selection">bar</span></p>' +
- '<p></p>' +
- '<p></p>' +
- '<p>}baz</p>';
- expect( getViewData( editor.editing.view ) ).to.equal( expectedViewData );
- expect( editor.getData() ).to.equal(
- '<p>foo</p>' +
- '<p> </p><p> </p>' +
- '<p>bar</p>' +
- '<p> </p><p> </p>' +
- '<p>baz</p>'
- );
- } );
- } );
- describe( 'collapsed', () => {
- it( 'should be displayed on a collapsed selection', () => {
- setModelData( editor.model, '<paragraph>f[]o</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const paragraph = editor.model.document.getRoot().getChild( 0 );
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( paragraph, 1 ),
- editor.model.createPositionAt( paragraph, 1 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- expect( getViewData( editor.editing.view ) ).to.equal(
- '<p>f{}<span class="ck-fake-link-selection ck-fake-link-selection_collapsed"></span>o</p>'
- );
- expect( editor.getData() ).to.equal( '<p>fo</p>' );
- } );
- it( 'should be displayed on selection focus when selection contains only one empty element ' +
- '(selection focus is at the beginning of the first non-empty element)', () => {
- setModelData( editor.model, '<paragraph>foo[</paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph>]bar</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const focus = editor.model.document.selection.focus;
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( focus, 0 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- const expectedViewData = '<p>foo{</p>' +
- '<p></p>' +
- '<p>]<span class="ck-fake-link-selection ck-fake-link-selection_collapsed"></span>bar</p>';
- expect( getViewData( editor.editing.view ) ).to.equal( expectedViewData );
- expect( editor.getData() ).to.equal( '<p>foo</p><p> </p><p>bar</p>' );
- } );
- it( 'should be displayed on selection focus when selection contains few empty elements ' +
- '(selection focus is at the beginning of the first non-empty element)', () => {
- setModelData( editor.model, '<paragraph>foo[</paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph>]bar</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const focus = editor.model.document.selection.focus;
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( focus, 0 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- const expectedViewData = '<p>foo{</p>' +
- '<p></p>' +
- '<p></p>' +
- '<p>]<span class="ck-fake-link-selection ck-fake-link-selection_collapsed"></span>bar</p>';
- expect( getViewData( editor.editing.view ) ).to.equal( expectedViewData );
- expect( editor.getData() ).to.equal( '<p>foo</p><p> </p><p> </p><p>bar</p>' );
- } );
- it( 'should be displayed on selection focus when selection contains few empty elements ' +
- '(selection focus is inside an empty element)', () => {
- setModelData( editor.model, '<paragraph>foo[</paragraph>' +
- '<paragraph></paragraph>' +
- '<paragraph>]</paragraph>' +
- '<paragraph>bar</paragraph>' );
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- const focus = editor.model.document.selection.focus;
- const expectedRange = editor.model.createRange(
- editor.model.createPositionAt( focus, 0 )
- );
- const markerRange = editor.model.markers.get( 'link-ui' ).getRange();
- expect( markerRange.isEqual( expectedRange ) ).to.be.true;
- const expectedViewData = '<p>foo{</p>' +
- '<p></p>' +
- '<p>]<span class="ck-fake-link-selection ck-fake-link-selection_collapsed"></span></p>' +
- '<p>bar</p>';
- expect( getViewData( editor.editing.view ) ).to.equal( expectedViewData );
- expect( editor.getData() ).to.equal( '<p>foo</p><p> </p><p> </p><p>bar</p>' );
- } );
- } );
- } );
- function getMarkersRange( editor ) {
- const markerElements = editor.ui.view.element.querySelectorAll( '.ck-fake-link-selection' );
- const lastMarkerElement = markerElements[ markerElements.length - 1 ];
- const range = document.createRange();
- range.setStart( markerElements[ 0 ].parentElement, indexOf( markerElements[ 0 ] ) );
- range.setEnd( lastMarkerElement.parentElement, indexOf( lastMarkerElement ) + 1 );
- return range;
- }
- function assertDomRange( expected, actual ) {
- expect( actual, 'startContainer' ).to.have.property( 'startContainer', expected.startContainer );
- expect( actual, 'startOffset' ).to.have.property( 'startOffset', expected.startOffset );
- expect( actual, 'endContainer' ).to.have.property( 'endContainer', expected.endContainer );
- expect( actual, 'endOffset' ).to.have.property( 'endOffset', expected.endOffset );
- }
- } );
- describe( '_hideUI()', () => {
- beforeEach( () => {
- linkUIFeature._showUI();
- } );
- it( 'should remove the UI from the balloon', () => {
- expect( balloon.hasView( formView ) ).to.be.true;
- expect( balloon.hasView( actionsView ) ).to.be.true;
- linkUIFeature._hideUI();
- expect( balloon.hasView( formView ) ).to.be.false;
- expect( balloon.hasView( actionsView ) ).to.be.false;
- } );
- it( 'should focus the `editable` by default', () => {
- const spy = testUtils.sinon.spy( editor.editing.view, 'focus' );
- linkUIFeature._hideUI();
- // First call is from _removeFormView.
- sinon.assert.calledTwice( spy );
- } );
- // https://github.com/ckeditor/ckeditor5-link/issues/193
- it( 'should focus the `editable` before before removing elements from the balloon', () => {
- const focusSpy = testUtils.sinon.spy( editor.editing.view, 'focus' );
- const removeSpy = testUtils.sinon.spy( balloon, 'remove' );
- linkUIFeature._hideUI();
- expect( focusSpy.calledBefore( removeSpy ) ).to.equal( true );
- } );
- it( 'should not throw an error when views are not in the `balloon`', () => {
- linkUIFeature._hideUI();
- expect( () => {
- linkUIFeature._hideUI();
- } ).to.not.throw();
- } );
- it( 'should clear ui#update listener from the ViewDocument', () => {
- const spy = sinon.spy();
- linkUIFeature.listenTo( editor.ui, 'update', spy );
- linkUIFeature._hideUI();
- editor.ui.fire( 'update' );
- sinon.assert.notCalled( spy );
- } );
- it( 'should clear the fake visual selection from a selected text fragment', () => {
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- linkUIFeature._hideUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.false;
- } );
- } );
- describe( 'keyboard support', () => {
- it( 'should show the UI on Ctrl+K keystroke', () => {
- const spy = testUtils.sinon.stub( linkUIFeature, '_showUI' ).returns( {} );
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- } );
- sinon.assert.calledWithExactly( spy, true );
- } );
- it( 'should not show the UI on Ctrl+K keystroke on content with LinkCommand disabled', () => {
- const spy = testUtils.sinon.stub( linkUIFeature, '_showUI' ).returns( {} );
- const command = editor.commands.get( 'link' );
- command.isEnabled = false;
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should prevent default action on Ctrl+K keystroke', () => {
- const preventDefaultSpy = sinon.spy();
- const stopPropagationSpy = sinon.spy();
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: preventDefaultSpy,
- stopPropagation: stopPropagationSpy
- } );
- sinon.assert.calledOnce( preventDefaultSpy );
- sinon.assert.calledOnce( stopPropagationSpy );
- } );
- it( 'should make stack with link visible on Ctrl+K keystroke - no link', () => {
- const command = editor.commands.get( 'link' );
- command.isEnabled = true;
- balloon.add( {
- view: new View(),
- stackId: 'custom'
- } );
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- } );
- expect( balloon.visibleView ).to.equal( formView );
- } );
- it( 'should make stack with link visible on Ctrl+K keystroke - link', () => {
- setModelData( editor.model, '<paragraph><$text linkHref="foo.html">f[]oo</$text></paragraph>' );
- const customView = new View();
- balloon.add( {
- view: customView,
- stackId: 'custom'
- } );
- expect( balloon.visibleView ).to.equal( customView );
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- } );
- expect( balloon.visibleView ).to.equal( actionsView );
- editor.keystrokes.press( {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- } );
- expect( balloon.visibleView ).to.equal( formView );
- } );
- it( 'should focus the the #actionsView on `Tab` key press when #actionsView is visible', () => {
- const keyEvtData = {
- keyCode: keyCodes.tab,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- const normalPriorityTabCallbackSpy = sinon.spy();
- const highestPriorityTabCallbackSpy = sinon.spy();
- editor.keystrokes.set( 'Tab', normalPriorityTabCallbackSpy );
- editor.keystrokes.set( 'Tab', highestPriorityTabCallbackSpy, { priority: 'highest' } );
- // Balloon is invisible, form not focused.
- actionsView.focusTracker.isFocused = false;
- const spy = sinon.spy( actionsView, 'focus' );
- editor.keystrokes.press( keyEvtData );
- sinon.assert.notCalled( keyEvtData.preventDefault );
- sinon.assert.notCalled( keyEvtData.stopPropagation );
- sinon.assert.notCalled( spy );
- sinon.assert.calledOnce( normalPriorityTabCallbackSpy );
- sinon.assert.calledOnce( highestPriorityTabCallbackSpy );
- // Balloon is visible, form focused.
- linkUIFeature._showUI();
- testUtils.sinon.stub( linkUIFeature, '_areActionsVisible' ).value( true );
- actionsView.focusTracker.isFocused = true;
- editor.keystrokes.press( keyEvtData );
- sinon.assert.notCalled( keyEvtData.preventDefault );
- sinon.assert.notCalled( keyEvtData.stopPropagation );
- sinon.assert.notCalled( spy );
- sinon.assert.calledTwice( normalPriorityTabCallbackSpy );
- sinon.assert.calledTwice( highestPriorityTabCallbackSpy );
- // Balloon is still visible, form not focused.
- actionsView.focusTracker.isFocused = false;
- editor.keystrokes.press( keyEvtData );
- sinon.assert.calledOnce( keyEvtData.preventDefault );
- sinon.assert.calledOnce( keyEvtData.stopPropagation );
- sinon.assert.calledOnce( spy );
- sinon.assert.calledTwice( normalPriorityTabCallbackSpy );
- sinon.assert.calledThrice( highestPriorityTabCallbackSpy );
- } );
- it( 'should hide the UI after Esc key press (from editor) and not focus the editable', () => {
- const spy = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- const keyEvtData = {
- keyCode: keyCodes.esc,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- // Balloon is visible.
- linkUIFeature._showUI();
- editor.keystrokes.press( keyEvtData );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should not hide the UI after Esc key press (from editor) when UI is open but is not visible', () => {
- const spy = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- const keyEvtData = {
- keyCode: keyCodes.esc,
- preventDefault: () => {},
- stopPropagation: () => {}
- };
- const viewMock = {
- ready: true,
- render: () => {},
- destroy: () => {}
- };
- linkUIFeature._showUI();
- // Some view precedes the link UI in the balloon.
- balloon.add( { view: viewMock } );
- editor.keystrokes.press( keyEvtData );
- sinon.assert.notCalled( spy );
- } );
- } );
- describe( 'mouse support', () => {
- it( 'should hide the UI and not focus editable upon clicking outside the UI', () => {
- const spy = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- linkUIFeature._showUI();
- document.body.dispatchEvent( new Event( 'mousedown', { bubbles: true } ) );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should hide the UI when link is in not currently visible stack', () => {
- const spy = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- balloon.add( {
- view: new View(),
- stackId: 'secondary'
- } );
- linkUIFeature._showUI();
- // Be sure any of link view is not currently visible/
- expect( balloon.visibleView ).to.not.equal( actionsView );
- expect( balloon.visibleView ).to.not.equal( formView );
- document.body.dispatchEvent( new Event( 'mousedown', { bubbles: true } ) );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should not hide the UI upon clicking inside the the UI', () => {
- const spy = testUtils.sinon.spy( linkUIFeature, '_hideUI' );
- linkUIFeature._showUI();
- balloon.view.element.dispatchEvent( new Event( 'mousedown', { bubbles: true } ) );
- sinon.assert.notCalled( spy );
- } );
- describe( 'clicking on editable', () => {
- let observer, spy;
- beforeEach( () => {
- observer = editor.editing.view.getObserver( ClickObserver );
- editor.model.schema.extend( '$text', { allowIn: '$root' } );
- spy = testUtils.sinon.stub( linkUIFeature, '_showUI' ).returns( {} );
- } );
- it( 'should show the UI when collapsed selection is inside link element', () => {
- setModelData( editor.model, '<$text linkHref="url">fo[]o</$text>' );
- observer.fire( 'click', { target: document.body } );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should show the UI when selection exclusively encloses a link element (#1)', () => {
- setModelData( editor.model, '[<$text linkHref="url">foo</$text>]' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should show the UI when selection exclusively encloses a link element (#2)', () => {
- setModelData( editor.model, '<$text linkHref="url">[foo]</$text>' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.calledWithExactly( spy );
- } );
- it( 'should do nothing when selection is not inside link element', () => {
- setModelData( editor.model, '[]' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should do nothing when selection is non-collapsed and doesn\'t enclose a link element (#1)', () => {
- setModelData( editor.model, '<$text linkHref="url">f[o]o</$text>' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should do nothing when selection is non-collapsed and doesn\'t enclose a link element (#2)', () => {
- setModelData( editor.model, '<$text linkHref="url">[fo]o</$text>' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should do nothing when selection is non-collapsed and doesn\'t enclose a link element (#3)', () => {
- setModelData( editor.model, '<$text linkHref="url">f[oo]</$text>' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should do nothing when selection is non-collapsed and doesn\'t enclose a link element (#4)', () => {
- setModelData( editor.model, 'ba[r<$text linkHref="url">foo]</$text>' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- it( 'should do nothing when selection is non-collapsed and doesn\'t enclose a link element (#5)', () => {
- setModelData( editor.model, 'ba[r<$text linkHref="url">foo</$text>]' );
- observer.fire( 'click', { target: {} } );
- sinon.assert.notCalled( spy );
- } );
- } );
- } );
- describe( 'actions view', () => {
- let focusEditableSpy;
- beforeEach( () => {
- focusEditableSpy = testUtils.sinon.spy( editor.editing.view, 'focus' );
- } );
- it( 'should mark the editor UI as focused when the #actionsView is focused', () => {
- linkUIFeature._showUI();
- linkUIFeature._removeFormView();
- expect( balloon.visibleView ).to.equal( actionsView );
- editor.ui.focusTracker.isFocused = false;
- actionsView.element.dispatchEvent( new Event( 'focus' ) );
- expect( editor.ui.focusTracker.isFocused ).to.be.true;
- } );
- describe( 'binding', () => {
- it( 'should show the #formView on #edit event and select the URL input field', () => {
- linkUIFeature._showUI();
- linkUIFeature._removeFormView();
- const selectSpy = testUtils.sinon.spy( formView.urlInputView.fieldView, 'select' );
- actionsView.fire( 'edit' );
- expect( balloon.visibleView ).to.equal( formView );
- sinon.assert.calledOnce( selectSpy );
- } );
- it( 'should execute unlink command on actionsView#unlink event', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- actionsView.fire( 'unlink' );
- expect( executeSpy.calledOnce ).to.be.true;
- expect( executeSpy.calledWithExactly( 'unlink' ) ).to.be.true;
- } );
- it( 'should hide and focus editable on actionsView#unlink event', () => {
- linkUIFeature._showUI();
- linkUIFeature._removeFormView();
- // Removing the form would call the focus spy.
- focusEditableSpy.resetHistory();
- actionsView.fire( 'unlink' );
- expect( balloon.visibleView ).to.be.null;
- expect( focusEditableSpy.calledOnce ).to.be.true;
- } );
- it( 'should hide after Esc key press', () => {
- const keyEvtData = {
- keyCode: keyCodes.esc,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- linkUIFeature._showUI();
- linkUIFeature._removeFormView();
- // Removing the form would call the focus spy.
- focusEditableSpy.resetHistory();
- actionsView.keystrokes.press( keyEvtData );
- expect( balloon.visibleView ).to.equal( null );
- expect( focusEditableSpy.calledOnce ).to.be.true;
- } );
- // #https://github.com/ckeditor/ckeditor5-link/issues/181
- it( 'should add the #formView upon Ctrl+K keystroke press', () => {
- const keyEvtData = {
- keyCode: keyCodes.k,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- linkUIFeature._showUI();
- linkUIFeature._removeFormView();
- expect( balloon.visibleView ).to.equal( actionsView );
- actionsView.keystrokes.press( keyEvtData );
- expect( balloon.visibleView ).to.equal( formView );
- } );
- } );
- } );
- describe( 'link form view', () => {
- let focusEditableSpy;
- const createEditorWithDefaultProtocol = defaultProtocol => {
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ LinkEditing, LinkUI, Paragraph, BlockQuote ],
- link: { defaultProtocol }
- } )
- .then( editor => {
- const linkUIFeature = editor.plugins.get( LinkUI );
- const formView = linkUIFeature.formView;
- formView.render();
- editor.model.schema.extend( '$text', {
- allowIn: '$root',
- allowAttributes: 'linkHref'
- } );
- return { editor, formView };
- } );
- };
- beforeEach( () => {
- focusEditableSpy = testUtils.sinon.spy( editor.editing.view, 'focus' );
- } );
- it( 'should mark the editor UI as focused when the #formView is focused', () => {
- linkUIFeature._showUI();
- expect( balloon.visibleView ).to.equal( formView );
- editor.ui.focusTracker.isFocused = false;
- formView.element.dispatchEvent( new Event( 'focus' ) );
- expect( editor.ui.focusTracker.isFocused ).to.be.true;
- } );
- describe( 'link protocol', () => {
- it( 'should use a default link protocol from the `config.link.defaultProtocol` when provided', () => {
- return ClassicTestEditor
- .create( editorElement, {
- link: {
- defaultProtocol: 'https://'
- }
- } )
- .then( editor => {
- const defaultProtocol = editor.config.get( 'link.defaultProtocol' );
- expect( defaultProtocol ).to.equal( 'https://' );
- return editor.destroy();
- } );
- } );
- it( 'should not add a protocol without the configuration', () => {
- formView.urlInputView.fieldView.value = 'ckeditor.com';
- formView.fire( 'submit' );
- expect( formView.urlInputView.fieldView.value ).to.equal( 'ckeditor.com' );
- } );
- it( 'should not add a protocol to the local links even when `config.link.defaultProtocol` configured', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- const linkCommandSpy = sinon.spy( editor.commands.get( 'link' ), 'execute' );
- formView.urlInputView.fieldView.value = '#test';
- formView.fire( 'submit' );
- sinon.assert.calledWith( linkCommandSpy, '#test', sinon.match.any );
- return editor.destroy();
- } );
- } );
- it( 'should not add a protocol to the relative links even when `config.link.defaultProtocol` configured', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- const linkCommandSpy = sinon.spy( editor.commands.get( 'link' ), 'execute' );
- formView.urlInputView.fieldView.value = '/test.html';
- formView.fire( 'submit' );
- sinon.assert.calledWith( linkCommandSpy, '/test.html', sinon.match.any );
- return editor.destroy();
- } );
- } );
- it( 'should not add a protocol when given provided within the value even when `config.link.defaultProtocol` configured', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- const linkCommandSpy = sinon.spy( editor.commands.get( 'link' ), 'execute' );
- formView.urlInputView.fieldView.value = 'http://example.com';
- formView.fire( 'submit' );
- expect( formView.urlInputView.fieldView.value ).to.equal( 'http://example.com' );
- sinon.assert.calledWith( linkCommandSpy, 'http://example.com', sinon.match.any );
- return editor.destroy();
- } );
- } );
- it( 'should use the "http://" protocol when it\'s configured', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- const linkCommandSpy = sinon.spy( editor.commands.get( 'link' ), 'execute' );
- formView.urlInputView.fieldView.value = 'ckeditor.com';
- formView.fire( 'submit' );
- sinon.assert.calledWith( linkCommandSpy, 'http://ckeditor.com', sinon.match.any );
- return editor.destroy();
- } );
- } );
- it( 'should use the "http://" protocol when it\'s configured and form input value contains "www."', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- const linkCommandSpy = sinon.spy( editor.commands.get( 'link' ), 'execute' );
- formView.urlInputView.fieldView.value = 'www.ckeditor.com';
- formView.fire( 'submit' );
- sinon.assert.calledWith( linkCommandSpy, 'http://www.ckeditor.com', sinon.match.any );
- return editor.destroy();
- } );
- } );
- it( 'should propagate the protocol to the link\'s `linkHref` attribute in model', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- setModelData( editor.model, '[ckeditor.com]' );
- formView.urlInputView.fieldView.value = 'ckeditor.com';
- formView.fire( 'submit' );
- expect( getModelData( editor.model ) ).to.equal(
- '[<$text linkHref="http://ckeditor.com">ckeditor.com</$text>]'
- );
- return editor.destroy();
- } );
- } );
- it( 'should detect an email on submitting the form and add "mailto:" protocol automatically to the provided value', () => {
- return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
- setModelData( editor.model, '[email@example.com]' );
- formView.urlInputView.fieldView.value = 'email@example.com';
- formView.fire( 'submit' );
- expect( formView.urlInputView.fieldView.value ).to.equal( 'mailto:email@example.com' );
- expect( getModelData( editor.model ) ).to.equal(
- '[<$text linkHref="mailto:email@example.com">email@example.com</$text>]'
- );
- return editor.destroy();
- } );
- } );
- it( 'should detect an email on submitting the form and add "mailto:" protocol automatically to the provided value ' +
- 'even when defaultProtocol is undefined', () => {
- setModelData( editor.model, '<paragraph>[email@example.com]</paragraph>' );
- formView.urlInputView.fieldView.value = 'email@example.com';
- formView.fire( 'submit' );
- expect( formView.urlInputView.fieldView.value ).to.equal( 'mailto:email@example.com' );
- expect( getModelData( editor.model ) ).to.equal(
- '<paragraph>[<$text linkHref="mailto:email@example.com">email@example.com</$text>]</paragraph>'
- );
- } );
- it( 'should not add an email protocol when given provided within the value' +
- 'even when `config.link.defaultProtocol` configured', () => {
- return createEditorWithDefaultProtocol( 'mailto:' ).then( ( { editor, formView } ) => {
- formView.urlInputView.fieldView.value = 'mailto:test@example.com';
- formView.fire( 'submit' );
- expect( formView.urlInputView.fieldView.value ).to.equal( 'mailto:test@example.com' );
- return editor.destroy();
- } );
- } );
- } );
- describe( 'binding', () => {
- beforeEach( () => {
- setModelData( editor.model, '<paragraph>f[o]o</paragraph>' );
- } );
- it( 'should bind formView.urlInputView#value to link command value', () => {
- const command = editor.commands.get( 'link' );
- expect( formView.urlInputView.fieldView.value ).to.be.undefined;
- command.value = 'http://cksource.com';
- expect( formView.urlInputView.fieldView.value ).to.equal( 'http://cksource.com' );
- } );
- it( 'should execute link command on formView#submit event', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- formView.urlInputView.fieldView.value = 'http://ckeditor.com';
- expect( formView.urlInputView.fieldView.value ).to.equal( 'http://ckeditor.com' );
- formView.urlInputView.fieldView.value = 'http://cksource.com';
- formView.fire( 'submit' );
- expect( executeSpy.calledOnce ).to.be.true;
- expect( executeSpy.calledWithExactly( 'link', 'http://cksource.com', {} ) ).to.be.true;
- } );
- it( 'should should clear the fake visual selection on formView#submit event', () => {
- linkUIFeature._showUI();
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.true;
- formView.urlInputView.fieldView.value = 'http://cksource.com';
- formView.fire( 'submit' );
- expect( editor.model.markers.has( 'link-ui' ) ).to.be.false;
- } );
- it( 'should hide and reveal the #actionsView on formView#submit event', () => {
- linkUIFeature._showUI();
- formView.fire( 'submit' );
- expect( balloon.visibleView ).to.equal( actionsView );
- expect( focusEditableSpy.calledOnce ).to.be.true;
- } );
- it( 'should hide and reveal the #actionsView on formView#cancel event if link command has a value', () => {
- linkUIFeature._showUI();
- const command = editor.commands.get( 'link' );
- command.value = 'http://foo.com';
- formView.fire( 'cancel' );
- expect( balloon.visibleView ).to.equal( actionsView );
- expect( focusEditableSpy.calledOnce ).to.be.true;
- } );
- it( 'should hide the balloon on formView#cancel if link command does not have a value', () => {
- linkUIFeature._showUI();
- formView.fire( 'cancel' );
- expect( balloon.visibleView ).to.be.null;
- } );
- it( 'should hide and reveal the #actionsView after Esc key press if link command has a value', () => {
- const keyEvtData = {
- keyCode: keyCodes.esc,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- linkUIFeature._showUI();
- const command = editor.commands.get( 'link' );
- command.value = 'http://foo.com';
- formView.keystrokes.press( keyEvtData );
- expect( balloon.visibleView ).to.equal( actionsView );
- expect( focusEditableSpy.calledOnce ).to.be.true;
- } );
- it( 'should hide the balloon after Esc key press if link command does not have a value', () => {
- const keyEvtData = {
- keyCode: keyCodes.esc,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- linkUIFeature._showUI();
- formView.keystrokes.press( keyEvtData );
- expect( balloon.visibleView ).to.be.null;
- } );
- // https://github.com/ckeditor/ckeditor5/issues/1501
- it( 'should blur url input element before hiding the view', () => {
- linkUIFeature._showUI();
- const focusSpy = testUtils.sinon.spy( formView.saveButtonView, 'focus' );
- const removeSpy = testUtils.sinon.spy( balloon, 'remove' );
- formView.fire( 'cancel' );
- expect( focusSpy.calledBefore( removeSpy ) ).to.equal( true );
- } );
- describe( 'support manual decorators', () => {
- let editorElement, editor, model, formView, linkUIFeature;
- beforeEach( () => {
- editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ LinkEditing, LinkUI, Paragraph ],
- link: {
- decorators: {
- isFoo: {
- mode: 'manual',
- label: 'Foo',
- attributes: {
- foo: 'bar'
- }
- }
- }
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- model.schema.extend( '$text', {
- allowIn: '$root',
- allowAttributes: 'linkHref'
- } );
- linkUIFeature = editor.plugins.get( LinkUI );
- const balloon = editor.plugins.get( ContextualBalloon );
- formView = linkUIFeature.formView;
- // There is no point to execute BalloonPanelView attachTo and pin methods so lets override it.
- testUtils.sinon.stub( balloon.view, 'attachTo' ).returns( {} );
- testUtils.sinon.stub( balloon.view, 'pin' ).returns( {} );
- formView.render();
- } );
- } );
- afterEach( () => {
- editorElement.remove();
- return editor.destroy();
- } );
- it( 'should gather information about manual decorators', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- setModelData( model, 'f[<$text linkHref="url" linkIsFoo="true">ooba</$text>]r' );
- expect( formView.urlInputView.fieldView.element.value ).to.equal( 'url' );
- expect( formView.getDecoratorSwitchesState() ).to.deep.equal( { linkIsFoo: true } );
- formView.fire( 'submit' );
- expect( executeSpy.calledOnce ).to.be.true;
- expect( executeSpy.calledWithExactly( 'link', 'url', { linkIsFoo: true } ) ).to.be.true;
- } );
- it( 'should reset switch state when form view is closed', () => {
- setModelData( model, 'f[<$text linkHref="url" linkIsFoo="true">ooba</$text>]r' );
- const manualDecorators = editor.commands.get( 'link' ).manualDecorators;
- const firstDecoratorModel = manualDecorators.first;
- const firstDecoratorSwitch = formView._manualDecoratorSwitches.first;
- expect( firstDecoratorModel.value, 'Initial value should be read from the model (true)' ).to.be.true;
- expect( firstDecoratorSwitch.isOn, 'Initial value should be read from the model (true)' ).to.be.true;
- firstDecoratorSwitch.fire( 'execute' );
- expect( firstDecoratorModel.value, 'Pressing button toggles value' ).to.be.false;
- expect( firstDecoratorSwitch.isOn, 'Pressing button toggles value' ).to.be.false;
- linkUIFeature._closeFormView();
- expect( firstDecoratorModel.value, 'Close form view without submit resets value to initial state' ).to.be.true;
- expect( firstDecoratorSwitch.isOn, 'Close form view without submit resets value to initial state' ).to.be.true;
- } );
- } );
- } );
- } );
- } );
|