EditPage::newSectionSummary should return a value in all code paths
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.htmlform.js
1 /**
2 * Utility functions for jazzing up HTMLForm elements.
3 *
4 * @class jQuery.plugin.htmlform
5 */
6 ( function ( mw, $ ) {
7
8 var cloneCounter = 0;
9
10 /**
11 * Helper function for hide-if to find the nearby form field.
12 *
13 * Find the closest match for the given name, "closest" being the minimum
14 * level of parents to go to find a form field matching the given name or
15 * ending in array keys matching the given name (e.g. "baz" matches
16 * "foo[bar][baz]").
17 *
18 * @private
19 * @param {jQuery} element
20 * @param {string} name
21 * @return {jQuery|null}
22 */
23 function hideIfGetField( $el, name ) {
24 var $found, $p,
25 suffix = name.replace( /^([^\[]+)/, '[$1]' );
26
27 function nameFilter() {
28 return this.name === name ||
29 ( this.name === ( 'wp' + name ) ) ||
30 this.name.slice( -suffix.length ) === suffix;
31 }
32
33 for ( $p = $el.parent(); $p.length > 0; $p = $p.parent() ) {
34 $found = $p.find( '[name]' ).filter( nameFilter );
35 if ( $found.length ) {
36 return $found;
37 }
38 }
39 return null;
40 }
41
42 /**
43 * Helper function for hide-if to return a test function and list of
44 * dependent fields for a hide-if specification.
45 *
46 * @private
47 * @param {jQuery} element
48 * @param {Array} hide-if spec
49 * @return {Array}
50 * @return {jQuery} return.0 Dependent fields
51 * @return {Function} return.1 Test function
52 */
53 function hideIfParse( $el, spec ) {
54 var op, i, l, v, $field, $fields, fields, func, funcs, getVal;
55
56 op = spec[0];
57 l = spec.length;
58 switch ( op ) {
59 case 'AND':
60 case 'OR':
61 case 'NAND':
62 case 'NOR':
63 funcs = [];
64 fields = [];
65 for ( i = 1; i < l; i++ ) {
66 if ( !$.isArray( spec[i] ) ) {
67 throw new Error( op + ' parameters must be arrays' );
68 }
69 v = hideIfParse( $el, spec[i] );
70 fields = fields.concat( v[0].toArray() );
71 funcs.push( v[1] );
72 }
73 $fields = $( fields );
74
75 l = funcs.length;
76 switch ( op ) {
77 case 'AND':
78 func = function () {
79 var i;
80 for ( i = 0; i < l; i++ ) {
81 if ( !funcs[i]() ) {
82 return false;
83 }
84 }
85 return true;
86 };
87 break;
88
89 case 'OR':
90 func = function () {
91 var i;
92 for ( i = 0; i < l; i++ ) {
93 if ( funcs[i]() ) {
94 return true;
95 }
96 }
97 return false;
98 };
99 break;
100
101 case 'NAND':
102 func = function () {
103 var i;
104 for ( i = 0; i < l; i++ ) {
105 if ( !funcs[i]() ) {
106 return true;
107 }
108 }
109 return false;
110 };
111 break;
112
113 case 'NOR':
114 func = function () {
115 var i;
116 for ( i = 0; i < l; i++ ) {
117 if ( funcs[i]() ) {
118 return false;
119 }
120 }
121 return true;
122 };
123 break;
124 }
125
126 return [ $fields, func ];
127
128 case 'NOT':
129 if ( l !== 2 ) {
130 throw new Error( 'NOT takes exactly one parameter' );
131 }
132 if ( !$.isArray( spec[1] ) ) {
133 throw new Error( 'NOT parameters must be arrays' );
134 }
135 v = hideIfParse( $el, spec[1] );
136 $fields = v[0];
137 func = v[1];
138 return [ $fields, function () {
139 return !func();
140 } ];
141
142 case '===':
143 case '!==':
144 if ( l !== 3 ) {
145 throw new Error( op + ' takes exactly two parameters' );
146 }
147 $field = hideIfGetField( $el, spec[1] );
148 if ( !$field ) {
149 return [ $(), function () {
150 return false;
151 } ];
152 }
153 v = spec[2];
154
155 if ( $field.first().prop( 'type' ) === 'radio' ||
156 $field.first().prop( 'type' ) === 'checkbox'
157 ) {
158 getVal = function () {
159 var $selected = $field.filter( ':checked' );
160 return $selected.length ? $selected.val() : '';
161 };
162 } else {
163 getVal = function () {
164 return $field.val();
165 };
166 }
167
168 switch ( op ) {
169 case '===':
170 func = function () {
171 return getVal() === v;
172 };
173 break;
174 case '!==':
175 func = function () {
176 return getVal() !== v;
177 };
178 break;
179 }
180
181 return [ $field, func ];
182
183 default:
184 throw new Error( 'Unrecognized operation \'' + op + '\'' );
185 }
186 }
187
188 /**
189 * jQuery plugin to fade or snap to visible state.
190 *
191 * @param {boolean} [instantToggle=false]
192 * @return {jQuery}
193 * @chainable
194 */
195 $.fn.goIn = function ( instantToggle ) {
196 if ( instantToggle === true ) {
197 return this.show();
198 }
199 return this.stop( true, true ).fadeIn();
200 };
201
202 /**
203 * jQuery plugin to fade or snap to hiding state.
204 *
205 * @param {boolean} [instantToggle=false]
206 * @return jQuery
207 * @chainable
208 */
209 $.fn.goOut = function ( instantToggle ) {
210 if ( instantToggle === true ) {
211 return this.hide();
212 }
213 return this.stop( true, true ).fadeOut();
214 };
215
216 /**
217 * Bind a function to the jQuery object via live(), and also immediately trigger
218 * the function on the objects with an 'instant' parameter set to true.
219 *
220 * @method liveAndTestAtStart
221 * @deprecated since 1.24 Use .on() and .each() directly.
222 * @param {Function} callback
223 * @param {boolean|jQuery.Event} callback.immediate True when the event is called immediately,
224 * an event object when triggered from an event.
225 * @return jQuery
226 * @chainable
227 */
228 mw.log.deprecate( $.fn, 'liveAndTestAtStart', function ( callback ) {
229 this
230 // Can't really migrate to .on() generically, needs knowledge of
231 // calling code to know the correct selector. Fix callers and
232 // get rid of this .liveAndTestAtStart() hack.
233 .live( 'change', callback )
234 .each( function () {
235 callback.call( this, true );
236 } );
237 } );
238
239 function enhance( $root ) {
240
241 /**
242 * @ignore
243 * @param {boolean|jQuery.Event} instant
244 */
245 function handleSelectOrOther( instant ) {
246 var $other = $root.find( '#' + $( this ).attr( 'id' ) + '-other' );
247 $other = $other.add( $other.siblings( 'br' ) );
248 if ( $( this ).val() === 'other' ) {
249 $other.goIn( instant );
250 } else {
251 $other.goOut( instant );
252 }
253 }
254
255 // Animate the SelectOrOther fields, to only show the text field when
256 // 'other' is selected.
257 $root
258 .on( 'change', '.mw-htmlform-select-or-other', handleSelectOrOther )
259 .each( function () {
260 handleSelectOrOther.call( this, true );
261 } );
262
263 // Set up hide-if elements
264 $root.find( '.mw-htmlform-hide-if' ).each( function () {
265 var v, $fields, test, func,
266 $el = $( this ),
267 spec = $el.data( 'hideIf' );
268
269 if ( !spec ) {
270 return;
271 }
272
273 v = hideIfParse( $el, spec );
274 $fields = v[0];
275 test = v[1];
276 func = function () {
277 if ( test() ) {
278 $el.hide();
279 } else {
280 $el.show();
281 }
282 };
283 $fields.on( 'change', func );
284 func();
285 } );
286
287 function addMulti( $oldContainer, $container ) {
288 var name = $oldContainer.find( 'input:first-child' ).attr( 'name' ),
289 oldClass = ( ' ' + $oldContainer.attr( 'class' ) + ' ' ).replace( /(mw-htmlform-field-HTMLMultiSelectField|mw-chosen)/g, '' ),
290 $select = $( '<select>' ),
291 dataPlaceholder = mw.message( 'htmlform-chosen-placeholder' );
292 oldClass = $.trim( oldClass );
293 $select.attr( {
294 name: name,
295 multiple: 'multiple',
296 'data-placeholder': dataPlaceholder.plain(),
297 'class': 'htmlform-chzn-select mw-input ' + oldClass
298 } );
299 $oldContainer.find( 'input' ).each( function () {
300 var $oldInput = $( this ),
301 checked = $oldInput.prop( 'checked' ),
302 $option = $( '<option>' );
303 $option.prop( 'value', $oldInput.prop( 'value' ) );
304 if ( checked ) {
305 $option.prop( 'selected', true );
306 }
307 $option.text( $oldInput.prop( 'value' ) );
308 $select.append( $option );
309 } );
310 $container.append( $select );
311 }
312
313 function convertCheckboxesToMulti( $oldContainer, type ) {
314 var $fieldLabel = $( '<td>' ),
315 $td = $( '<td>' ),
316 $fieldLabelText = $( '<label>' ),
317 $container;
318 if ( type === 'tr' ) {
319 addMulti( $oldContainer, $td );
320 $container = $( '<tr>' );
321 $container.append( $td );
322 } else if ( type === 'div' ) {
323 $fieldLabel = $( '<div>' );
324 $container = $( '<div>' );
325 addMulti( $oldContainer, $container );
326 }
327 $fieldLabel.attr( 'class', 'mw-label' );
328 $fieldLabelText.text( $oldContainer.find( '.mw-label label' ).text() );
329 $fieldLabel.append( $fieldLabelText );
330 $container.prepend( $fieldLabel );
331 $oldContainer.replaceWith( $container );
332 return $container;
333 }
334
335 if ( $root.find( '.mw-chosen' ).length ) {
336 mw.loader.using( 'jquery.chosen', function () {
337 $root.find( '.mw-chosen' ).each( function () {
338 var type = this.nodeName.toLowerCase(),
339 $converted = convertCheckboxesToMulti( $( this ), type );
340 $converted.find( '.htmlform-chzn-select' ).chosen( { width: 'auto' } );
341 } );
342 } );
343 }
344
345 var $matrixTooltips = $root.find( '.mw-htmlform-matrix .mw-htmlform-tooltip' );
346 if ( $matrixTooltips.length ) {
347 mw.loader.using( 'jquery.tipsy', function () {
348 $matrixTooltips.tipsy( { gravity: 's' } );
349 } );
350 }
351
352 // Add/remove cloner clones without having to resubmit the form
353 $root.find( '.mw-htmlform-cloner-delete-button' ).click( function ( ev ) {
354 ev.preventDefault();
355 $( this ).closest( 'li.mw-htmlform-cloner-li' ).remove();
356 } );
357
358 $root.find( '.mw-htmlform-cloner-create-button' ).click( function ( ev ) {
359 var $ul, $li, html;
360
361 ev.preventDefault();
362
363 $ul = $( this ).prev( 'ul.mw-htmlform-cloner-ul' );
364
365 html = $ul.data( 'template' ).replace(
366 $ul.data( 'uniqueId' ), 'clone' + ( ++cloneCounter ), 'g'
367 );
368
369 $li = $( '<li>' )
370 .addClass( 'mw-htmlform-cloner-li' )
371 .html( html )
372 .appendTo( $ul );
373
374 enhance( $li );
375 } );
376
377 mw.hook( 'htmlform.enhance' ).fire( $root );
378
379 }
380
381 $( function () {
382 enhance( $( document ) );
383 } );
384
385 /**
386 * @class jQuery
387 * @mixins jQuery.plugin.htmlform
388 */
389 }( mediaWiki, jQuery ) );