X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fdialogui%2Fplugin.js;h=6d7aaa3e7c71896ff3fd6b569a1258b95d9a73c4;hb=055b6b0792ce7dc53d47af606b367c04b927c2ab;hp=dbb9bbdb1aeb9eca26adc6b701a940282623793b;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6;p=ckeditor.git diff --git a/_source/plugins/dialogui/plugin.js b/_source/plugins/dialogui/plugin.js index dbb9bbd..6d7aaa3 100644 --- a/_source/plugins/dialogui/plugin.js +++ b/_source/plugins/dialogui/plugin.js @@ -13,6 +13,7 @@ CKEDITOR.plugins.add( 'dialogui' ); { this._ || ( this._ = {} ); this._['default'] = this._.initValue = elementDefinition['default'] || ''; + this._.required = elementDefinition[ 'required' ] || false; var args = [ this._ ]; for ( var i = 1 ; i < arguments.length ; i++ ) args.push( arguments[i] ); @@ -34,6 +35,23 @@ CKEDITOR.plugins.add( 'dialogui' ); return new CKEDITOR.ui.dialog[elementDefinition.type]( dialog, elementDefinition, output ); } }, + containerBuilder = + { + build : function( dialog, elementDefinition, output ) + { + var children = elementDefinition.children, + child, + childHtmlList = [], + childObjList = []; + for ( var i = 0 ; ( i < children.length && ( child = children[i] ) ) ; i++ ) + { + var childHtml = []; + childHtmlList.push( childHtml ); + childObjList.push( CKEDITOR.dialog._.uiElementBuilders[ child.type ].build( dialog, child, childHtml ) ); + } + return new CKEDITOR.ui.dialog[ elementDefinition.type ]( dialog, childObjList, childHtmlList, output, elementDefinition ); + } + }, commonPrototype = { isChanged : function() @@ -69,7 +87,14 @@ CKEDITOR.plugins.add( 'dialogui' ); { dialog.on( 'load', function() { - this.getInputElement().on( 'change', function(){ this.fire( 'change', { value : this.getValue() } ); }, this ); + this.getInputElement().on( 'change', function() + { + // Make sure 'onchange' doesn't get fired after dialog closed. (#5719) + if ( !dialog.parts.dialog.isVisible() ) + return; + + this.fire( 'change', { value : this.getValue() } ); + }, this ); }, this ); this._.domOnChangeRegistered = true; } @@ -127,15 +152,17 @@ CKEDITOR.plugins.add( 'dialogui' ); /** @ignore */ var innerHTML = function() { - var html = []; + var html = [], + requiredClass = elementDefinition.required ? ' cke_required' : '' ; if ( elementDefinition.labelLayout != 'horizontal' ) - html.push( '
', + html.push( '
', - '
', - contentHtml( dialog, elementDefinition ), + '', + '' ); else { @@ -147,14 +174,17 @@ CKEDITOR.plugins.add( 'dialogui' ); [ { type : 'html', - html : '' + CKEDITOR.tools.htmlEncode( elementDefinition.label ) + + html : '' }, { type : 'html', html : '' + - contentHtml( dialog, elementDefinition ) + + contentHtml.call( this, dialog, elementDefinition ) + '' } ] @@ -163,7 +193,7 @@ CKEDITOR.plugins.add( 'dialogui' ); } return html.join( '' ); }; - CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, htmlList, 'div', null, null, innerHTML ); + CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, htmlList, 'div', null, { role : 'presentation' }, innerHTML ); }, /** @@ -207,6 +237,9 @@ CKEDITOR.plugins.add( 'dialogui' ); if ( elementDefinition.size ) attributes.size = elementDefinition.size; + if ( elementDefinition.controlStyle ) + attributes.style = elementDefinition.controlStyle; + // If user presses Enter in a text box, it implies clicking OK for the dialog. var me = this, keyPressedOnMe = false; dialog.on( 'load', function() @@ -236,12 +269,15 @@ CKEDITOR.plugins.add( 'dialogui' ); { // IE BUG: Text input fields in IE at 100% would exceed a or inline // container's width, so need to wrap it inside a
. - var html = [ '' ); @@ -290,7 +326,9 @@ CKEDITOR.plugins.add( 'dialogui' ); /** @ignore */ var innerHTML = function() { - var html = [ '
' ); @@ -334,13 +372,19 @@ CKEDITOR.plugins.add( 'dialogui' ); { id : elementDefinition.id ? elementDefinition.id + '_checkbox' : CKEDITOR.tools.getNextNumber() + '_checkbox' }, true ), - html = [], - attributes = { 'class' : 'cke_dialog_ui_checkbox_input', type : 'checkbox' }; + html = []; + + var labelId = CKEDITOR.tools.getNextNumber() + '_label'; + var attributes = { 'class' : 'cke_dialog_ui_checkbox_input', type : 'checkbox', 'aria-labelledby' : labelId }; cleanInnerDefinition( myDefinition ); if ( elementDefinition[ 'default' ] ) attributes.checked = 'checked'; + + if (typeof myDefinition.controlStyle != 'undefined') + myDefinition.style = myDefinition.controlStyle; + _.checkbox = new CKEDITOR.ui.dialog.uiElement( dialog, myDefinition, html, 'input', null, attributes ); - html.push( '