Add 3D filetype for STL files
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-core.js
1 /*!
2 * OOjs UI v0.21.0
3 * https://www.mediawiki.org/wiki/OOjs_UI
4 *
5 * Copyright 2011–2017 OOjs UI Team and other contributors.
6 * Released under the MIT license
7 * http://oojs.mit-license.org
8 *
9 * Date: 2017-04-11T22:51:05Z
10 */
11 ( function ( OO ) {
12
13 'use strict';
14
15 /**
16 * Namespace for all classes, static methods and static properties.
17 *
18 * @class
19 * @singleton
20 */
21 OO.ui = {};
22
23 OO.ui.bind = $.proxy;
24
25 /**
26 * @property {Object}
27 */
28 OO.ui.Keys = {
29 UNDEFINED: 0,
30 BACKSPACE: 8,
31 DELETE: 46,
32 LEFT: 37,
33 RIGHT: 39,
34 UP: 38,
35 DOWN: 40,
36 ENTER: 13,
37 END: 35,
38 HOME: 36,
39 TAB: 9,
40 PAGEUP: 33,
41 PAGEDOWN: 34,
42 ESCAPE: 27,
43 SHIFT: 16,
44 SPACE: 32
45 };
46
47 /**
48 * Constants for MouseEvent.which
49 *
50 * @property {Object}
51 */
52 OO.ui.MouseButtons = {
53 LEFT: 1,
54 MIDDLE: 2,
55 RIGHT: 3
56 };
57
58 /**
59 * @property {number}
60 * @private
61 */
62 OO.ui.elementId = 0;
63
64 /**
65 * Generate a unique ID for element
66 *
67 * @return {string} ID
68 */
69 OO.ui.generateElementId = function () {
70 OO.ui.elementId++;
71 return 'oojsui-' + OO.ui.elementId;
72 };
73
74 /**
75 * Check if an element is focusable.
76 * Inspired by :focusable in jQueryUI v1.11.4 - 2015-04-14
77 *
78 * @param {jQuery} $element Element to test
79 * @return {boolean} Element is focusable
80 */
81 OO.ui.isFocusableElement = function ( $element ) {
82 var nodeName,
83 element = $element[ 0 ];
84
85 // Anything disabled is not focusable
86 if ( element.disabled ) {
87 return false;
88 }
89
90 // Check if the element is visible
91 if ( !(
92 // This is quicker than calling $element.is( ':visible' )
93 $.expr.pseudos.visible( element ) &&
94 // Check that all parents are visible
95 !$element.parents().addBack().filter( function () {
96 return $.css( this, 'visibility' ) === 'hidden';
97 } ).length
98 ) ) {
99 return false;
100 }
101
102 // Check if the element is ContentEditable, which is the string 'true'
103 if ( element.contentEditable === 'true' ) {
104 return true;
105 }
106
107 // Anything with a non-negative numeric tabIndex is focusable.
108 // Use .prop to avoid browser bugs
109 if ( $element.prop( 'tabIndex' ) >= 0 ) {
110 return true;
111 }
112
113 // Some element types are naturally focusable
114 // (indexOf is much faster than regex in Chrome and about the
115 // same in FF: https://jsperf.com/regex-vs-indexof-array2)
116 nodeName = element.nodeName.toLowerCase();
117 if ( [ 'input', 'select', 'textarea', 'button', 'object' ].indexOf( nodeName ) !== -1 ) {
118 return true;
119 }
120
121 // Links and areas are focusable if they have an href
122 if ( ( nodeName === 'a' || nodeName === 'area' ) && $element.attr( 'href' ) !== undefined ) {
123 return true;
124 }
125
126 return false;
127 };
128
129 /**
130 * Find a focusable child
131 *
132 * @param {jQuery} $container Container to search in
133 * @param {boolean} [backwards] Search backwards
134 * @return {jQuery} Focusable child, or an empty jQuery object if none found
135 */
136 OO.ui.findFocusable = function ( $container, backwards ) {
137 var $focusable = $( [] ),
138 // $focusableCandidates is a superset of things that
139 // could get matched by isFocusableElement
140 $focusableCandidates = $container
141 .find( 'input, select, textarea, button, object, a, area, [contenteditable], [tabindex]' );
142
143 if ( backwards ) {
144 $focusableCandidates = Array.prototype.reverse.call( $focusableCandidates );
145 }
146
147 $focusableCandidates.each( function () {
148 var $this = $( this );
149 if ( OO.ui.isFocusableElement( $this ) ) {
150 $focusable = $this;
151 return false;
152 }
153 } );
154 return $focusable;
155 };
156
157 /**
158 * Get the user's language and any fallback languages.
159 *
160 * These language codes are used to localize user interface elements in the user's language.
161 *
162 * In environments that provide a localization system, this function should be overridden to
163 * return the user's language(s). The default implementation returns English (en) only.
164 *
165 * @return {string[]} Language codes, in descending order of priority
166 */
167 OO.ui.getUserLanguages = function () {
168 return [ 'en' ];
169 };
170
171 /**
172 * Get a value in an object keyed by language code.
173 *
174 * @param {Object.<string,Mixed>} obj Object keyed by language code
175 * @param {string|null} [lang] Language code, if omitted or null defaults to any user language
176 * @param {string} [fallback] Fallback code, used if no matching language can be found
177 * @return {Mixed} Local value
178 */
179 OO.ui.getLocalValue = function ( obj, lang, fallback ) {
180 var i, len, langs;
181
182 // Requested language
183 if ( obj[ lang ] ) {
184 return obj[ lang ];
185 }
186 // Known user language
187 langs = OO.ui.getUserLanguages();
188 for ( i = 0, len = langs.length; i < len; i++ ) {
189 lang = langs[ i ];
190 if ( obj[ lang ] ) {
191 return obj[ lang ];
192 }
193 }
194 // Fallback language
195 if ( obj[ fallback ] ) {
196 return obj[ fallback ];
197 }
198 // First existing language
199 for ( lang in obj ) {
200 return obj[ lang ];
201 }
202
203 return undefined;
204 };
205
206 /**
207 * Check if a node is contained within another node
208 *
209 * Similar to jQuery#contains except a list of containers can be supplied
210 * and a boolean argument allows you to include the container in the match list
211 *
212 * @param {HTMLElement|HTMLElement[]} containers Container node(s) to search in
213 * @param {HTMLElement} contained Node to find
214 * @param {boolean} [matchContainers] Include the container(s) in the list of nodes to match, otherwise only match descendants
215 * @return {boolean} The node is in the list of target nodes
216 */
217 OO.ui.contains = function ( containers, contained, matchContainers ) {
218 var i;
219 if ( !Array.isArray( containers ) ) {
220 containers = [ containers ];
221 }
222 for ( i = containers.length - 1; i >= 0; i-- ) {
223 if ( ( matchContainers && contained === containers[ i ] ) || $.contains( containers[ i ], contained ) ) {
224 return true;
225 }
226 }
227 return false;
228 };
229
230 /**
231 * Return a function, that, as long as it continues to be invoked, will not
232 * be triggered. The function will be called after it stops being called for
233 * N milliseconds. If `immediate` is passed, trigger the function on the
234 * leading edge, instead of the trailing.
235 *
236 * Ported from: http://underscorejs.org/underscore.js
237 *
238 * @param {Function} func Function to debounce
239 * @param {number} [wait=0] Wait period in milliseconds
240 * @param {boolean} [immediate] Trigger on leading edge
241 * @return {Function} Debounced function
242 */
243 OO.ui.debounce = function ( func, wait, immediate ) {
244 var timeout;
245 return function () {
246 var context = this,
247 args = arguments,
248 later = function () {
249 timeout = null;
250 if ( !immediate ) {
251 func.apply( context, args );
252 }
253 };
254 if ( immediate && !timeout ) {
255 func.apply( context, args );
256 }
257 if ( !timeout || wait ) {
258 clearTimeout( timeout );
259 timeout = setTimeout( later, wait );
260 }
261 };
262 };
263
264 /**
265 * Puts a console warning with provided message.
266 *
267 * @param {string} message Message
268 */
269 OO.ui.warnDeprecation = function ( message ) {
270 if ( OO.getProp( window, 'console', 'warn' ) !== undefined ) {
271 // eslint-disable-next-line no-console
272 console.warn( message );
273 }
274 };
275
276 /**
277 * Returns a function, that, when invoked, will only be triggered at most once
278 * during a given window of time. If called again during that window, it will
279 * wait until the window ends and then trigger itself again.
280 *
281 * As it's not knowable to the caller whether the function will actually run
282 * when the wrapper is called, return values from the function are entirely
283 * discarded.
284 *
285 * @param {Function} func Function to throttle
286 * @param {number} wait Throttle window length, in milliseconds
287 * @return {Function} Throttled function
288 */
289 OO.ui.throttle = function ( func, wait ) {
290 var context, args, timeout,
291 previous = 0,
292 run = function () {
293 timeout = null;
294 previous = OO.ui.now();
295 func.apply( context, args );
296 };
297 return function () {
298 // Check how long it's been since the last time the function was
299 // called, and whether it's more or less than the requested throttle
300 // period. If it's less, run the function immediately. If it's more,
301 // set a timeout for the remaining time -- but don't replace an
302 // existing timeout, since that'd indefinitely prolong the wait.
303 var remaining = wait - ( OO.ui.now() - previous );
304 context = this;
305 args = arguments;
306 if ( remaining <= 0 ) {
307 // Note: unless wait was ridiculously large, this means we'll
308 // automatically run the first time the function was called in a
309 // given period. (If you provide a wait period larger than the
310 // current Unix timestamp, you *deserve* unexpected behavior.)
311 clearTimeout( timeout );
312 run();
313 } else if ( !timeout ) {
314 timeout = setTimeout( run, remaining );
315 }
316 };
317 };
318
319 /**
320 * A (possibly faster) way to get the current timestamp as an integer
321 *
322 * @return {number} Current timestamp, in milliseconds since the Unix epoch
323 */
324 OO.ui.now = Date.now || function () {
325 return new Date().getTime();
326 };
327
328 /**
329 * Reconstitute a JavaScript object corresponding to a widget created by
330 * the PHP implementation.
331 *
332 * This is an alias for `OO.ui.Element.static.infuse()`.
333 *
334 * @param {string|HTMLElement|jQuery} idOrNode
335 * A DOM id (if a string) or node for the widget to infuse.
336 * @return {OO.ui.Element}
337 * The `OO.ui.Element` corresponding to this (infusable) document node.
338 */
339 OO.ui.infuse = function ( idOrNode ) {
340 return OO.ui.Element.static.infuse( idOrNode );
341 };
342
343 ( function () {
344 /**
345 * Message store for the default implementation of OO.ui.msg
346 *
347 * Environments that provide a localization system should not use this, but should override
348 * OO.ui.msg altogether.
349 *
350 * @private
351 */
352 var messages = {
353 // Tool tip for a button that moves items in a list down one place
354 'ooui-outline-control-move-down': 'Move item down',
355 // Tool tip for a button that moves items in a list up one place
356 'ooui-outline-control-move-up': 'Move item up',
357 // Tool tip for a button that removes items from a list
358 'ooui-outline-control-remove': 'Remove item',
359 // Label for the toolbar group that contains a list of all other available tools
360 'ooui-toolbar-more': 'More',
361 // Label for the fake tool that expands the full list of tools in a toolbar group
362 'ooui-toolgroup-expand': 'More',
363 // Label for the fake tool that collapses the full list of tools in a toolbar group
364 'ooui-toolgroup-collapse': 'Fewer',
365 // Default label for the accept button of a confirmation dialog
366 'ooui-dialog-message-accept': 'OK',
367 // Default label for the reject button of a confirmation dialog
368 'ooui-dialog-message-reject': 'Cancel',
369 // Title for process dialog error description
370 'ooui-dialog-process-error': 'Something went wrong',
371 // Label for process dialog dismiss error button, visible when describing errors
372 'ooui-dialog-process-dismiss': 'Dismiss',
373 // Label for process dialog retry action button, visible when describing only recoverable errors
374 'ooui-dialog-process-retry': 'Try again',
375 // Label for process dialog retry action button, visible when describing only warnings
376 'ooui-dialog-process-continue': 'Continue',
377 // Label for the file selection widget's select file button
378 'ooui-selectfile-button-select': 'Select a file',
379 // Label for the file selection widget if file selection is not supported
380 'ooui-selectfile-not-supported': 'File selection is not supported',
381 // Label for the file selection widget when no file is currently selected
382 'ooui-selectfile-placeholder': 'No file is selected',
383 // Label for the file selection widget's drop target
384 'ooui-selectfile-dragdrop-placeholder': 'Drop file here'
385 };
386
387 /**
388 * Get a localized message.
389 *
390 * After the message key, message parameters may optionally be passed. In the default implementation,
391 * any occurrences of $1 are replaced with the first parameter, $2 with the second parameter, etc.
392 * Alternative implementations of OO.ui.msg may use any substitution system they like, as long as
393 * they support unnamed, ordered message parameters.
394 *
395 * In environments that provide a localization system, this function should be overridden to
396 * return the message translated in the user's language. The default implementation always returns
397 * English messages. An example of doing this with [jQuery.i18n](https://github.com/wikimedia/jquery.i18n)
398 * follows.
399 *
400 * @example
401 * var i, iLen, button,
402 * messagePath = 'oojs-ui/dist/i18n/',
403 * languages = [ $.i18n().locale, 'ur', 'en' ],
404 * languageMap = {};
405 *
406 * for ( i = 0, iLen = languages.length; i < iLen; i++ ) {
407 * languageMap[ languages[ i ] ] = messagePath + languages[ i ].toLowerCase() + '.json';
408 * }
409 *
410 * $.i18n().load( languageMap ).done( function() {
411 * // Replace the built-in `msg` only once we've loaded the internationalization.
412 * // OOjs UI uses `OO.ui.deferMsg` for all initially-loaded messages. So long as
413 * // you put off creating any widgets until this promise is complete, no English
414 * // will be displayed.
415 * OO.ui.msg = $.i18n;
416 *
417 * // A button displaying "OK" in the default locale
418 * button = new OO.ui.ButtonWidget( {
419 * label: OO.ui.msg( 'ooui-dialog-message-accept' ),
420 * icon: 'check'
421 * } );
422 * $( 'body' ).append( button.$element );
423 *
424 * // A button displaying "OK" in Urdu
425 * $.i18n().locale = 'ur';
426 * button = new OO.ui.ButtonWidget( {
427 * label: OO.ui.msg( 'ooui-dialog-message-accept' ),
428 * icon: 'check'
429 * } );
430 * $( 'body' ).append( button.$element );
431 * } );
432 *
433 * @param {string} key Message key
434 * @param {...Mixed} [params] Message parameters
435 * @return {string} Translated message with parameters substituted
436 */
437 OO.ui.msg = function ( key ) {
438 var message = messages[ key ],
439 params = Array.prototype.slice.call( arguments, 1 );
440 if ( typeof message === 'string' ) {
441 // Perform $1 substitution
442 message = message.replace( /\$(\d+)/g, function ( unused, n ) {
443 var i = parseInt( n, 10 );
444 return params[ i - 1 ] !== undefined ? params[ i - 1 ] : '$' + n;
445 } );
446 } else {
447 // Return placeholder if message not found
448 message = '[' + key + ']';
449 }
450 return message;
451 };
452 }() );
453
454 /**
455 * Package a message and arguments for deferred resolution.
456 *
457 * Use this when you are statically specifying a message and the message may not yet be present.
458 *
459 * @param {string} key Message key
460 * @param {...Mixed} [params] Message parameters
461 * @return {Function} Function that returns the resolved message when executed
462 */
463 OO.ui.deferMsg = function () {
464 var args = arguments;
465 return function () {
466 return OO.ui.msg.apply( OO.ui, args );
467 };
468 };
469
470 /**
471 * Resolve a message.
472 *
473 * If the message is a function it will be executed, otherwise it will pass through directly.
474 *
475 * @param {Function|string} msg Deferred message, or message text
476 * @return {string} Resolved message
477 */
478 OO.ui.resolveMsg = function ( msg ) {
479 if ( $.isFunction( msg ) ) {
480 return msg();
481 }
482 return msg;
483 };
484
485 /**
486 * @param {string} url
487 * @return {boolean}
488 */
489 OO.ui.isSafeUrl = function ( url ) {
490 // Keep this function in sync with php/Tag.php
491 var i, protocolWhitelist;
492
493 function stringStartsWith( haystack, needle ) {
494 return haystack.substr( 0, needle.length ) === needle;
495 }
496
497 protocolWhitelist = [
498 'bitcoin', 'ftp', 'ftps', 'geo', 'git', 'gopher', 'http', 'https', 'irc', 'ircs',
499 'magnet', 'mailto', 'mms', 'news', 'nntp', 'redis', 'sftp', 'sip', 'sips', 'sms', 'ssh',
500 'svn', 'tel', 'telnet', 'urn', 'worldwind', 'xmpp'
501 ];
502
503 if ( url === '' ) {
504 return true;
505 }
506
507 for ( i = 0; i < protocolWhitelist.length; i++ ) {
508 if ( stringStartsWith( url, protocolWhitelist[ i ] + ':' ) ) {
509 return true;
510 }
511 }
512
513 // This matches '//' too
514 if ( stringStartsWith( url, '/' ) || stringStartsWith( url, './' ) ) {
515 return true;
516 }
517 if ( stringStartsWith( url, '?' ) || stringStartsWith( url, '#' ) ) {
518 return true;
519 }
520
521 return false;
522 };
523
524 /**
525 * Check if the user has a 'mobile' device.
526 *
527 * For our purposes this means the user is primarily using an
528 * on-screen keyboard, touch input instead of a mouse and may
529 * have a physically small display.
530 *
531 * It is left up to implementors to decide how to compute this
532 * so the default implementation always returns false.
533 *
534 * @return {boolean} Use is on a mobile device
535 */
536 OO.ui.isMobile = function () {
537 return false;
538 };
539
540 /*!
541 * Mixin namespace.
542 */
543
544 /**
545 * Namespace for OOjs UI mixins.
546 *
547 * Mixins are named according to the type of object they are intended to
548 * be mixed in to. For example, OO.ui.mixin.GroupElement is intended to be
549 * mixed in to an instance of OO.ui.Element, and OO.ui.mixin.GroupWidget
550 * is intended to be mixed in to an instance of OO.ui.Widget.
551 *
552 * @class
553 * @singleton
554 */
555 OO.ui.mixin = {};
556
557 /**
558 * Each Element represents a rendering in the DOM—a button or an icon, for example, or anything
559 * that is visible to a user. Unlike {@link OO.ui.Widget widgets}, plain elements usually do not have events
560 * connected to them and can't be interacted with.
561 *
562 * @abstract
563 * @class
564 *
565 * @constructor
566 * @param {Object} [config] Configuration options
567 * @cfg {string[]} [classes] The names of the CSS classes to apply to the element. CSS styles are added
568 * to the top level (e.g., the outermost div) of the element. See the [OOjs UI documentation on MediaWiki][2]
569 * for an example.
570 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Buttons_and_Switches#cssExample
571 * @cfg {string} [id] The HTML id attribute used in the rendered tag.
572 * @cfg {string} [text] Text to insert
573 * @cfg {Array} [content] An array of content elements to append (after #text).
574 * Strings will be html-escaped; use an OO.ui.HtmlSnippet to append raw HTML.
575 * Instances of OO.ui.Element will have their $element appended.
576 * @cfg {jQuery} [$content] Content elements to append (after #text).
577 * @cfg {jQuery} [$element] Wrapper element. Defaults to a new element with #getTagName.
578 * @cfg {Mixed} [data] Custom data of any type or combination of types (e.g., string, number, array, object).
579 * Data can also be specified with the #setData method.
580 */
581 OO.ui.Element = function OoUiElement( config ) {
582 // Configuration initialization
583 config = config || {};
584
585 // Properties
586 this.$ = $;
587 this.visible = true;
588 this.data = config.data;
589 this.$element = config.$element ||
590 $( document.createElement( this.getTagName() ) );
591 this.elementGroup = null;
592
593 // Initialization
594 if ( Array.isArray( config.classes ) ) {
595 this.$element.addClass( config.classes.join( ' ' ) );
596 }
597 if ( config.id ) {
598 this.$element.attr( 'id', config.id );
599 }
600 if ( config.text ) {
601 this.$element.text( config.text );
602 }
603 if ( config.content ) {
604 // The `content` property treats plain strings as text; use an
605 // HtmlSnippet to append HTML content. `OO.ui.Element`s get their
606 // appropriate $element appended.
607 this.$element.append( config.content.map( function ( v ) {
608 if ( typeof v === 'string' ) {
609 // Escape string so it is properly represented in HTML.
610 return document.createTextNode( v );
611 } else if ( v instanceof OO.ui.HtmlSnippet ) {
612 // Bypass escaping.
613 return v.toString();
614 } else if ( v instanceof OO.ui.Element ) {
615 return v.$element;
616 }
617 return v;
618 } ) );
619 }
620 if ( config.$content ) {
621 // The `$content` property treats plain strings as HTML.
622 this.$element.append( config.$content );
623 }
624 };
625
626 /* Setup */
627
628 OO.initClass( OO.ui.Element );
629
630 /* Static Properties */
631
632 /**
633 * The name of the HTML tag used by the element.
634 *
635 * The static value may be ignored if the #getTagName method is overridden.
636 *
637 * @static
638 * @inheritable
639 * @property {string}
640 */
641 OO.ui.Element.static.tagName = 'div';
642
643 /* Static Methods */
644
645 /**
646 * Reconstitute a JavaScript object corresponding to a widget created
647 * by the PHP implementation.
648 *
649 * @param {string|HTMLElement|jQuery} idOrNode
650 * A DOM id (if a string) or node for the widget to infuse.
651 * @return {OO.ui.Element}
652 * The `OO.ui.Element` corresponding to this (infusable) document node.
653 * For `Tag` objects emitted on the HTML side (used occasionally for content)
654 * the value returned is a newly-created Element wrapping around the existing
655 * DOM node.
656 */
657 OO.ui.Element.static.infuse = function ( idOrNode ) {
658 var obj = OO.ui.Element.static.unsafeInfuse( idOrNode, false );
659 // Verify that the type matches up.
660 // FIXME: uncomment after T89721 is fixed (see T90929)
661 /*
662 if ( !( obj instanceof this['class'] ) ) {
663 throw new Error( 'Infusion type mismatch!' );
664 }
665 */
666 return obj;
667 };
668
669 /**
670 * Implementation helper for `infuse`; skips the type check and has an
671 * extra property so that only the top-level invocation touches the DOM.
672 *
673 * @private
674 * @param {string|HTMLElement|jQuery} idOrNode
675 * @param {jQuery.Promise|boolean} domPromise A promise that will be resolved
676 * when the top-level widget of this infusion is inserted into DOM,
677 * replacing the original node; or false for top-level invocation.
678 * @return {OO.ui.Element}
679 */
680 OO.ui.Element.static.unsafeInfuse = function ( idOrNode, domPromise ) {
681 // look for a cached result of a previous infusion.
682 var id, $elem, data, cls, parts, parent, obj, top, state, infusedChildren;
683 if ( typeof idOrNode === 'string' ) {
684 id = idOrNode;
685 $elem = $( document.getElementById( id ) );
686 } else {
687 $elem = $( idOrNode );
688 id = $elem.attr( 'id' );
689 }
690 if ( !$elem.length ) {
691 throw new Error( 'Widget not found: ' + id );
692 }
693 if ( $elem[ 0 ].oouiInfused ) {
694 $elem = $elem[ 0 ].oouiInfused;
695 }
696 data = $elem.data( 'ooui-infused' );
697 if ( data ) {
698 // cached!
699 if ( data === true ) {
700 throw new Error( 'Circular dependency! ' + id );
701 }
702 if ( domPromise ) {
703 // pick up dynamic state, like focus, value of form inputs, scroll position, etc.
704 state = data.constructor.static.gatherPreInfuseState( $elem, data );
705 // restore dynamic state after the new element is re-inserted into DOM under infused parent
706 domPromise.done( data.restorePreInfuseState.bind( data, state ) );
707 infusedChildren = $elem.data( 'ooui-infused-children' );
708 if ( infusedChildren && infusedChildren.length ) {
709 infusedChildren.forEach( function ( data ) {
710 var state = data.constructor.static.gatherPreInfuseState( $elem, data );
711 domPromise.done( data.restorePreInfuseState.bind( data, state ) );
712 } );
713 }
714 }
715 return data;
716 }
717 data = $elem.attr( 'data-ooui' );
718 if ( !data ) {
719 throw new Error( 'No infusion data found: ' + id );
720 }
721 try {
722 data = $.parseJSON( data );
723 } catch ( _ ) {
724 data = null;
725 }
726 if ( !( data && data._ ) ) {
727 throw new Error( 'No valid infusion data found: ' + id );
728 }
729 if ( data._ === 'Tag' ) {
730 // Special case: this is a raw Tag; wrap existing node, don't rebuild.
731 return new OO.ui.Element( { $element: $elem } );
732 }
733 parts = data._.split( '.' );
734 cls = OO.getProp.apply( OO, [ window ].concat( parts ) );
735 if ( cls === undefined ) {
736 // The PHP output might be old and not including the "OO.ui" prefix
737 // TODO: Remove this back-compat after next major release
738 cls = OO.getProp.apply( OO, [ OO.ui ].concat( parts ) );
739 if ( cls === undefined ) {
740 throw new Error( 'Unknown widget type: id: ' + id + ', class: ' + data._ );
741 }
742 }
743
744 // Verify that we're creating an OO.ui.Element instance
745 parent = cls.parent;
746
747 while ( parent !== undefined ) {
748 if ( parent === OO.ui.Element ) {
749 // Safe
750 break;
751 }
752
753 parent = parent.parent;
754 }
755
756 if ( parent !== OO.ui.Element ) {
757 throw new Error( 'Unknown widget type: id: ' + id + ', class: ' + data._ );
758 }
759
760 if ( domPromise === false ) {
761 top = $.Deferred();
762 domPromise = top.promise();
763 }
764 $elem.data( 'ooui-infused', true ); // prevent loops
765 data.id = id; // implicit
766 infusedChildren = [];
767 data = OO.copy( data, null, function deserialize( value ) {
768 var infused;
769 if ( OO.isPlainObject( value ) ) {
770 if ( value.tag ) {
771 infused = OO.ui.Element.static.unsafeInfuse( value.tag, domPromise );
772 infusedChildren.push( infused );
773 // Flatten the structure
774 infusedChildren.push.apply( infusedChildren, infused.$element.data( 'ooui-infused-children' ) || [] );
775 infused.$element.removeData( 'ooui-infused-children' );
776 return infused;
777 }
778 if ( value.html !== undefined ) {
779 return new OO.ui.HtmlSnippet( value.html );
780 }
781 }
782 } );
783 // allow widgets to reuse parts of the DOM
784 data = cls.static.reusePreInfuseDOM( $elem[ 0 ], data );
785 // pick up dynamic state, like focus, value of form inputs, scroll position, etc.
786 state = cls.static.gatherPreInfuseState( $elem[ 0 ], data );
787 // rebuild widget
788 // eslint-disable-next-line new-cap
789 obj = new cls( data );
790 // now replace old DOM with this new DOM.
791 if ( top ) {
792 // An efficient constructor might be able to reuse the entire DOM tree of the original element,
793 // so only mutate the DOM if we need to.
794 if ( $elem[ 0 ] !== obj.$element[ 0 ] ) {
795 $elem.replaceWith( obj.$element );
796 // This element is now gone from the DOM, but if anyone is holding a reference to it,
797 // let's allow them to OO.ui.infuse() it and do what they expect (T105828).
798 // Do not use jQuery.data(), as using it on detached nodes leaks memory in 1.x line by design.
799 $elem[ 0 ].oouiInfused = obj.$element;
800 }
801 top.resolve();
802 }
803 obj.$element.data( 'ooui-infused', obj );
804 obj.$element.data( 'ooui-infused-children', infusedChildren );
805 // set the 'data-ooui' attribute so we can identify infused widgets
806 obj.$element.attr( 'data-ooui', '' );
807 // restore dynamic state after the new element is inserted into DOM
808 domPromise.done( obj.restorePreInfuseState.bind( obj, state ) );
809 return obj;
810 };
811
812 /**
813 * Pick out parts of `node`'s DOM to be reused when infusing a widget.
814 *
815 * This method **must not** make any changes to the DOM, only find interesting pieces and add them
816 * to `config` (which should then be returned). Actual DOM juggling should then be done by the
817 * constructor, which will be given the enhanced config.
818 *
819 * @protected
820 * @param {HTMLElement} node
821 * @param {Object} config
822 * @return {Object}
823 */
824 OO.ui.Element.static.reusePreInfuseDOM = function ( node, config ) {
825 return config;
826 };
827
828 /**
829 * Gather the dynamic state (focus, value of form inputs, scroll position, etc.) of an HTML DOM node
830 * (and its children) that represent an Element of the same class and the given configuration,
831 * generated by the PHP implementation.
832 *
833 * This method is called just before `node` is detached from the DOM. The return value of this
834 * function will be passed to #restorePreInfuseState after the newly created widget's #$element
835 * is inserted into DOM to replace `node`.
836 *
837 * @protected
838 * @param {HTMLElement} node
839 * @param {Object} config
840 * @return {Object}
841 */
842 OO.ui.Element.static.gatherPreInfuseState = function () {
843 return {};
844 };
845
846 /**
847 * Get a jQuery function within a specific document.
848 *
849 * @static
850 * @param {jQuery|HTMLElement|HTMLDocument|Window} context Context to bind the function to
851 * @param {jQuery} [$iframe] HTML iframe element that contains the document, omit if document is
852 * not in an iframe
853 * @return {Function} Bound jQuery function
854 */
855 OO.ui.Element.static.getJQuery = function ( context, $iframe ) {
856 function wrapper( selector ) {
857 return $( selector, wrapper.context );
858 }
859
860 wrapper.context = this.getDocument( context );
861
862 if ( $iframe ) {
863 wrapper.$iframe = $iframe;
864 }
865
866 return wrapper;
867 };
868
869 /**
870 * Get the document of an element.
871 *
872 * @static
873 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Object to get the document for
874 * @return {HTMLDocument|null} Document object
875 */
876 OO.ui.Element.static.getDocument = function ( obj ) {
877 // jQuery - selections created "offscreen" won't have a context, so .context isn't reliable
878 return ( obj[ 0 ] && obj[ 0 ].ownerDocument ) ||
879 // Empty jQuery selections might have a context
880 obj.context ||
881 // HTMLElement
882 obj.ownerDocument ||
883 // Window
884 obj.document ||
885 // HTMLDocument
886 ( obj.nodeType === Node.DOCUMENT_NODE && obj ) ||
887 null;
888 };
889
890 /**
891 * Get the window of an element or document.
892 *
893 * @static
894 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Context to get the window for
895 * @return {Window} Window object
896 */
897 OO.ui.Element.static.getWindow = function ( obj ) {
898 var doc = this.getDocument( obj );
899 return doc.defaultView;
900 };
901
902 /**
903 * Get the direction of an element or document.
904 *
905 * @static
906 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Context to get the direction for
907 * @return {string} Text direction, either 'ltr' or 'rtl'
908 */
909 OO.ui.Element.static.getDir = function ( obj ) {
910 var isDoc, isWin;
911
912 if ( obj instanceof jQuery ) {
913 obj = obj[ 0 ];
914 }
915 isDoc = obj.nodeType === Node.DOCUMENT_NODE;
916 isWin = obj.document !== undefined;
917 if ( isDoc || isWin ) {
918 if ( isWin ) {
919 obj = obj.document;
920 }
921 obj = obj.body;
922 }
923 return $( obj ).css( 'direction' );
924 };
925
926 /**
927 * Get the offset between two frames.
928 *
929 * TODO: Make this function not use recursion.
930 *
931 * @static
932 * @param {Window} from Window of the child frame
933 * @param {Window} [to=window] Window of the parent frame
934 * @param {Object} [offset] Offset to start with, used internally
935 * @return {Object} Offset object, containing left and top properties
936 */
937 OO.ui.Element.static.getFrameOffset = function ( from, to, offset ) {
938 var i, len, frames, frame, rect;
939
940 if ( !to ) {
941 to = window;
942 }
943 if ( !offset ) {
944 offset = { top: 0, left: 0 };
945 }
946 if ( from.parent === from ) {
947 return offset;
948 }
949
950 // Get iframe element
951 frames = from.parent.document.getElementsByTagName( 'iframe' );
952 for ( i = 0, len = frames.length; i < len; i++ ) {
953 if ( frames[ i ].contentWindow === from ) {
954 frame = frames[ i ];
955 break;
956 }
957 }
958
959 // Recursively accumulate offset values
960 if ( frame ) {
961 rect = frame.getBoundingClientRect();
962 offset.left += rect.left;
963 offset.top += rect.top;
964 if ( from !== to ) {
965 this.getFrameOffset( from.parent, offset );
966 }
967 }
968 return offset;
969 };
970
971 /**
972 * Get the offset between two elements.
973 *
974 * The two elements may be in a different frame, but in that case the frame $element is in must
975 * be contained in the frame $anchor is in.
976 *
977 * @static
978 * @param {jQuery} $element Element whose position to get
979 * @param {jQuery} $anchor Element to get $element's position relative to
980 * @return {Object} Translated position coordinates, containing top and left properties
981 */
982 OO.ui.Element.static.getRelativePosition = function ( $element, $anchor ) {
983 var iframe, iframePos,
984 pos = $element.offset(),
985 anchorPos = $anchor.offset(),
986 elementDocument = this.getDocument( $element ),
987 anchorDocument = this.getDocument( $anchor );
988
989 // If $element isn't in the same document as $anchor, traverse up
990 while ( elementDocument !== anchorDocument ) {
991 iframe = elementDocument.defaultView.frameElement;
992 if ( !iframe ) {
993 throw new Error( '$element frame is not contained in $anchor frame' );
994 }
995 iframePos = $( iframe ).offset();
996 pos.left += iframePos.left;
997 pos.top += iframePos.top;
998 elementDocument = iframe.ownerDocument;
999 }
1000 pos.left -= anchorPos.left;
1001 pos.top -= anchorPos.top;
1002 return pos;
1003 };
1004
1005 /**
1006 * Get element border sizes.
1007 *
1008 * @static
1009 * @param {HTMLElement} el Element to measure
1010 * @return {Object} Dimensions object with `top`, `left`, `bottom` and `right` properties
1011 */
1012 OO.ui.Element.static.getBorders = function ( el ) {
1013 var doc = el.ownerDocument,
1014 win = doc.defaultView,
1015 style = win.getComputedStyle( el, null ),
1016 $el = $( el ),
1017 top = parseFloat( style ? style.borderTopWidth : $el.css( 'borderTopWidth' ) ) || 0,
1018 left = parseFloat( style ? style.borderLeftWidth : $el.css( 'borderLeftWidth' ) ) || 0,
1019 bottom = parseFloat( style ? style.borderBottomWidth : $el.css( 'borderBottomWidth' ) ) || 0,
1020 right = parseFloat( style ? style.borderRightWidth : $el.css( 'borderRightWidth' ) ) || 0;
1021
1022 return {
1023 top: top,
1024 left: left,
1025 bottom: bottom,
1026 right: right
1027 };
1028 };
1029
1030 /**
1031 * Get dimensions of an element or window.
1032 *
1033 * @static
1034 * @param {HTMLElement|Window} el Element to measure
1035 * @return {Object} Dimensions object with `borders`, `scroll`, `scrollbar` and `rect` properties
1036 */
1037 OO.ui.Element.static.getDimensions = function ( el ) {
1038 var $el, $win,
1039 doc = el.ownerDocument || el.document,
1040 win = doc.defaultView;
1041
1042 if ( win === el || el === doc.documentElement ) {
1043 $win = $( win );
1044 return {
1045 borders: { top: 0, left: 0, bottom: 0, right: 0 },
1046 scroll: {
1047 top: $win.scrollTop(),
1048 left: $win.scrollLeft()
1049 },
1050 scrollbar: { right: 0, bottom: 0 },
1051 rect: {
1052 top: 0,
1053 left: 0,
1054 bottom: $win.innerHeight(),
1055 right: $win.innerWidth()
1056 }
1057 };
1058 } else {
1059 $el = $( el );
1060 return {
1061 borders: this.getBorders( el ),
1062 scroll: {
1063 top: $el.scrollTop(),
1064 left: $el.scrollLeft()
1065 },
1066 scrollbar: {
1067 right: $el.innerWidth() - el.clientWidth,
1068 bottom: $el.innerHeight() - el.clientHeight
1069 },
1070 rect: el.getBoundingClientRect()
1071 };
1072 }
1073 };
1074
1075 /**
1076 * Get the number of pixels that an element's content is scrolled to the left.
1077 *
1078 * Adapted from <https://github.com/othree/jquery.rtl-scroll-type>.
1079 * Original code copyright 2012 Wei-Ko Kao, licensed under the MIT License.
1080 *
1081 * This function smooths out browser inconsistencies (nicely described in the README at
1082 * <https://github.com/othree/jquery.rtl-scroll-type>) and produces a result consistent
1083 * with Firefox's 'scrollLeft', which seems the sanest.
1084 *
1085 * @static
1086 * @method
1087 * @param {HTMLElement|Window} el Element to measure
1088 * @return {number} Scroll position from the left.
1089 * If the element's direction is LTR, this is a positive number between `0` (initial scroll position)
1090 * and `el.scrollWidth - el.clientWidth` (furthest possible scroll position).
1091 * If the element's direction is RTL, this is a negative number between `0` (initial scroll position)
1092 * and `-el.scrollWidth + el.clientWidth` (furthest possible scroll position).
1093 */
1094 OO.ui.Element.static.getScrollLeft = ( function () {
1095 var rtlScrollType = null;
1096
1097 function test() {
1098 var $definer = $( '<div dir="rtl" style="font-size: 14px; width: 1px; height: 1px; position: absolute; top: -1000px; overflow: scroll">A</div>' ),
1099 definer = $definer[ 0 ];
1100
1101 $definer.appendTo( 'body' );
1102 if ( definer.scrollLeft > 0 ) {
1103 // Safari, Chrome
1104 rtlScrollType = 'default';
1105 } else {
1106 definer.scrollLeft = 1;
1107 if ( definer.scrollLeft === 0 ) {
1108 // Firefox, old Opera
1109 rtlScrollType = 'negative';
1110 } else {
1111 // Internet Explorer, Edge
1112 rtlScrollType = 'reverse';
1113 }
1114 }
1115 $definer.remove();
1116 }
1117
1118 return function getScrollLeft( el ) {
1119 var isRoot = el.window === el ||
1120 el === el.ownerDocument.body ||
1121 el === el.ownerDocument.documentElement,
1122 scrollLeft = isRoot ? $( window ).scrollLeft() : el.scrollLeft,
1123 // All browsers use the correct scroll type ('negative') on the root, so don't
1124 // do any fixups when looking at the root element
1125 direction = isRoot ? 'ltr' : $( el ).css( 'direction' );
1126
1127 if ( direction === 'rtl' ) {
1128 if ( rtlScrollType === null ) {
1129 test();
1130 }
1131 if ( rtlScrollType === 'reverse' ) {
1132 scrollLeft = -scrollLeft;
1133 } else if ( rtlScrollType === 'default' ) {
1134 scrollLeft = scrollLeft - el.scrollWidth + el.clientWidth;
1135 }
1136 }
1137
1138 return scrollLeft;
1139 };
1140 }() );
1141
1142 /**
1143 * Get the root scrollable element of given element's document.
1144 *
1145 * On Blink-based browsers (Chrome etc.), `document.documentElement` can't be used to get or set
1146 * the scrollTop property; instead we have to use `document.body`. Changing and testing the value
1147 * lets us use 'body' or 'documentElement' based on what is working.
1148 *
1149 * https://code.google.com/p/chromium/issues/detail?id=303131
1150 *
1151 * @static
1152 * @param {HTMLElement} el Element to find root scrollable parent for
1153 * @return {HTMLElement} Scrollable parent, `document.body` or `document.documentElement`
1154 * depending on browser
1155 */
1156 OO.ui.Element.static.getRootScrollableElement = function ( el ) {
1157 var scrollTop, body;
1158
1159 if ( OO.ui.scrollableElement === undefined ) {
1160 body = el.ownerDocument.body;
1161 scrollTop = body.scrollTop;
1162 body.scrollTop = 1;
1163
1164 if ( body.scrollTop === 1 ) {
1165 body.scrollTop = scrollTop;
1166 OO.ui.scrollableElement = 'body';
1167 } else {
1168 OO.ui.scrollableElement = 'documentElement';
1169 }
1170 }
1171
1172 return el.ownerDocument[ OO.ui.scrollableElement ];
1173 };
1174
1175 /**
1176 * Get closest scrollable container.
1177 *
1178 * Traverses up until either a scrollable element or the root is reached, in which case the root
1179 * scrollable element will be returned (see #getRootScrollableElement).
1180 *
1181 * @static
1182 * @param {HTMLElement} el Element to find scrollable container for
1183 * @param {string} [dimension] Dimension of scrolling to look for; `x`, `y` or omit for either
1184 * @return {HTMLElement} Closest scrollable container
1185 */
1186 OO.ui.Element.static.getClosestScrollableContainer = function ( el, dimension ) {
1187 var i, val,
1188 // Browsers do not correctly return the computed value of 'overflow' when 'overflow-x' and
1189 // 'overflow-y' have different values, so we need to check the separate properties.
1190 props = [ 'overflow-x', 'overflow-y' ],
1191 $parent = $( el ).parent();
1192
1193 if ( dimension === 'x' || dimension === 'y' ) {
1194 props = [ 'overflow-' + dimension ];
1195 }
1196
1197 // Special case for the document root (which doesn't really have any scrollable container, since
1198 // it is the ultimate scrollable container, but this is probably saner than null or exception)
1199 if ( $( el ).is( 'html, body' ) ) {
1200 return this.getRootScrollableElement( el );
1201 }
1202
1203 while ( $parent.length ) {
1204 if ( $parent[ 0 ] === this.getRootScrollableElement( el ) ) {
1205 return $parent[ 0 ];
1206 }
1207 i = props.length;
1208 while ( i-- ) {
1209 val = $parent.css( props[ i ] );
1210 // We assume that elements with 'overflow' (in any direction) set to 'hidden' will never be
1211 // scrolled in that direction, but they can actually be scrolled programatically. The user can
1212 // unintentionally perform a scroll in such case even if the application doesn't scroll
1213 // programatically, e.g. when jumping to an anchor, or when using built-in find functionality.
1214 // This could cause funny issues...
1215 if ( val === 'auto' || val === 'scroll' ) {
1216 return $parent[ 0 ];
1217 }
1218 }
1219 $parent = $parent.parent();
1220 }
1221 // The element is unattached... return something mostly sane
1222 return this.getRootScrollableElement( el );
1223 };
1224
1225 /**
1226 * Scroll element into view.
1227 *
1228 * @static
1229 * @param {HTMLElement} el Element to scroll into view
1230 * @param {Object} [config] Configuration options
1231 * @param {string} [config.duration='fast'] jQuery animation duration value
1232 * @param {string} [config.direction] Scroll in only one direction, e.g. 'x' or 'y', omit
1233 * to scroll in both directions
1234 * @return {jQuery.Promise} Promise which resolves when the scroll is complete
1235 */
1236 OO.ui.Element.static.scrollIntoView = function ( el, config ) {
1237 var position, animations, container, $container, elementDimensions, containerDimensions, $window,
1238 deferred = $.Deferred();
1239
1240 // Configuration initialization
1241 config = config || {};
1242
1243 animations = {};
1244 container = this.getClosestScrollableContainer( el, config.direction );
1245 $container = $( container );
1246 elementDimensions = this.getDimensions( el );
1247 containerDimensions = this.getDimensions( container );
1248 $window = $( this.getWindow( el ) );
1249
1250 // Compute the element's position relative to the container
1251 if ( $container.is( 'html, body' ) ) {
1252 // If the scrollable container is the root, this is easy
1253 position = {
1254 top: elementDimensions.rect.top,
1255 bottom: $window.innerHeight() - elementDimensions.rect.bottom,
1256 left: elementDimensions.rect.left,
1257 right: $window.innerWidth() - elementDimensions.rect.right
1258 };
1259 } else {
1260 // Otherwise, we have to subtract el's coordinates from container's coordinates
1261 position = {
1262 top: elementDimensions.rect.top - ( containerDimensions.rect.top + containerDimensions.borders.top ),
1263 bottom: containerDimensions.rect.bottom - containerDimensions.borders.bottom - containerDimensions.scrollbar.bottom - elementDimensions.rect.bottom,
1264 left: elementDimensions.rect.left - ( containerDimensions.rect.left + containerDimensions.borders.left ),
1265 right: containerDimensions.rect.right - containerDimensions.borders.right - containerDimensions.scrollbar.right - elementDimensions.rect.right
1266 };
1267 }
1268
1269 if ( !config.direction || config.direction === 'y' ) {
1270 if ( position.top < 0 ) {
1271 animations.scrollTop = containerDimensions.scroll.top + position.top;
1272 } else if ( position.top > 0 && position.bottom < 0 ) {
1273 animations.scrollTop = containerDimensions.scroll.top + Math.min( position.top, -position.bottom );
1274 }
1275 }
1276 if ( !config.direction || config.direction === 'x' ) {
1277 if ( position.left < 0 ) {
1278 animations.scrollLeft = containerDimensions.scroll.left + position.left;
1279 } else if ( position.left > 0 && position.right < 0 ) {
1280 animations.scrollLeft = containerDimensions.scroll.left + Math.min( position.left, -position.right );
1281 }
1282 }
1283 if ( !$.isEmptyObject( animations ) ) {
1284 $container.stop( true ).animate( animations, config.duration === undefined ? 'fast' : config.duration );
1285 $container.queue( function ( next ) {
1286 deferred.resolve();
1287 next();
1288 } );
1289 } else {
1290 deferred.resolve();
1291 }
1292 return deferred.promise();
1293 };
1294
1295 /**
1296 * Force the browser to reconsider whether it really needs to render scrollbars inside the element
1297 * and reserve space for them, because it probably doesn't.
1298 *
1299 * Workaround primarily for <https://code.google.com/p/chromium/issues/detail?id=387290>, but also
1300 * similar bugs in other browsers. "Just" forcing a reflow is not sufficient in all cases, we need
1301 * to first actually detach (or hide, but detaching is simpler) all children, *then* force a reflow,
1302 * and then reattach (or show) them back.
1303 *
1304 * @static
1305 * @param {HTMLElement} el Element to reconsider the scrollbars on
1306 */
1307 OO.ui.Element.static.reconsiderScrollbars = function ( el ) {
1308 var i, len, scrollLeft, scrollTop, nodes = [];
1309 // Save scroll position
1310 scrollLeft = el.scrollLeft;
1311 scrollTop = el.scrollTop;
1312 // Detach all children
1313 while ( el.firstChild ) {
1314 nodes.push( el.firstChild );
1315 el.removeChild( el.firstChild );
1316 }
1317 // Force reflow
1318 void el.offsetHeight;
1319 // Reattach all children
1320 for ( i = 0, len = nodes.length; i < len; i++ ) {
1321 el.appendChild( nodes[ i ] );
1322 }
1323 // Restore scroll position (no-op if scrollbars disappeared)
1324 el.scrollLeft = scrollLeft;
1325 el.scrollTop = scrollTop;
1326 };
1327
1328 /* Methods */
1329
1330 /**
1331 * Toggle visibility of an element.
1332 *
1333 * @param {boolean} [show] Make element visible, omit to toggle visibility
1334 * @fires visible
1335 * @chainable
1336 */
1337 OO.ui.Element.prototype.toggle = function ( show ) {
1338 show = show === undefined ? !this.visible : !!show;
1339
1340 if ( show !== this.isVisible() ) {
1341 this.visible = show;
1342 this.$element.toggleClass( 'oo-ui-element-hidden', !this.visible );
1343 this.emit( 'toggle', show );
1344 }
1345
1346 return this;
1347 };
1348
1349 /**
1350 * Check if element is visible.
1351 *
1352 * @return {boolean} element is visible
1353 */
1354 OO.ui.Element.prototype.isVisible = function () {
1355 return this.visible;
1356 };
1357
1358 /**
1359 * Get element data.
1360 *
1361 * @return {Mixed} Element data
1362 */
1363 OO.ui.Element.prototype.getData = function () {
1364 return this.data;
1365 };
1366
1367 /**
1368 * Set element data.
1369 *
1370 * @param {Mixed} data Element data
1371 * @chainable
1372 */
1373 OO.ui.Element.prototype.setData = function ( data ) {
1374 this.data = data;
1375 return this;
1376 };
1377
1378 /**
1379 * Check if element supports one or more methods.
1380 *
1381 * @param {string|string[]} methods Method or list of methods to check
1382 * @return {boolean} All methods are supported
1383 */
1384 OO.ui.Element.prototype.supports = function ( methods ) {
1385 var i, len,
1386 support = 0;
1387
1388 methods = Array.isArray( methods ) ? methods : [ methods ];
1389 for ( i = 0, len = methods.length; i < len; i++ ) {
1390 if ( $.isFunction( this[ methods[ i ] ] ) ) {
1391 support++;
1392 }
1393 }
1394
1395 return methods.length === support;
1396 };
1397
1398 /**
1399 * Update the theme-provided classes.
1400 *
1401 * @localdoc This is called in element mixins and widget classes any time state changes.
1402 * Updating is debounced, minimizing overhead of changing multiple attributes and
1403 * guaranteeing that theme updates do not occur within an element's constructor
1404 */
1405 OO.ui.Element.prototype.updateThemeClasses = function () {
1406 OO.ui.theme.queueUpdateElementClasses( this );
1407 };
1408
1409 /**
1410 * Get the HTML tag name.
1411 *
1412 * Override this method to base the result on instance information.
1413 *
1414 * @return {string} HTML tag name
1415 */
1416 OO.ui.Element.prototype.getTagName = function () {
1417 return this.constructor.static.tagName;
1418 };
1419
1420 /**
1421 * Check if the element is attached to the DOM
1422 *
1423 * @return {boolean} The element is attached to the DOM
1424 */
1425 OO.ui.Element.prototype.isElementAttached = function () {
1426 return $.contains( this.getElementDocument(), this.$element[ 0 ] );
1427 };
1428
1429 /**
1430 * Get the DOM document.
1431 *
1432 * @return {HTMLDocument} Document object
1433 */
1434 OO.ui.Element.prototype.getElementDocument = function () {
1435 // Don't cache this in other ways either because subclasses could can change this.$element
1436 return OO.ui.Element.static.getDocument( this.$element );
1437 };
1438
1439 /**
1440 * Get the DOM window.
1441 *
1442 * @return {Window} Window object
1443 */
1444 OO.ui.Element.prototype.getElementWindow = function () {
1445 return OO.ui.Element.static.getWindow( this.$element );
1446 };
1447
1448 /**
1449 * Get closest scrollable container.
1450 *
1451 * @return {HTMLElement} Closest scrollable container
1452 */
1453 OO.ui.Element.prototype.getClosestScrollableElementContainer = function () {
1454 return OO.ui.Element.static.getClosestScrollableContainer( this.$element[ 0 ] );
1455 };
1456
1457 /**
1458 * Get group element is in.
1459 *
1460 * @return {OO.ui.mixin.GroupElement|null} Group element, null if none
1461 */
1462 OO.ui.Element.prototype.getElementGroup = function () {
1463 return this.elementGroup;
1464 };
1465
1466 /**
1467 * Set group element is in.
1468 *
1469 * @param {OO.ui.mixin.GroupElement|null} group Group element, null if none
1470 * @chainable
1471 */
1472 OO.ui.Element.prototype.setElementGroup = function ( group ) {
1473 this.elementGroup = group;
1474 return this;
1475 };
1476
1477 /**
1478 * Scroll element into view.
1479 *
1480 * @param {Object} [config] Configuration options
1481 * @return {jQuery.Promise} Promise which resolves when the scroll is complete
1482 */
1483 OO.ui.Element.prototype.scrollElementIntoView = function ( config ) {
1484 if (
1485 !this.isElementAttached() ||
1486 !this.isVisible() ||
1487 ( this.getElementGroup() && !this.getElementGroup().isVisible() )
1488 ) {
1489 return $.Deferred().resolve();
1490 }
1491 return OO.ui.Element.static.scrollIntoView( this.$element[ 0 ], config );
1492 };
1493
1494 /**
1495 * Restore the pre-infusion dynamic state for this widget.
1496 *
1497 * This method is called after #$element has been inserted into DOM. The parameter is the return
1498 * value of #gatherPreInfuseState.
1499 *
1500 * @protected
1501 * @param {Object} state
1502 */
1503 OO.ui.Element.prototype.restorePreInfuseState = function () {
1504 };
1505
1506 /**
1507 * Wraps an HTML snippet for use with configuration values which default
1508 * to strings. This bypasses the default html-escaping done to string
1509 * values.
1510 *
1511 * @class
1512 *
1513 * @constructor
1514 * @param {string} [content] HTML content
1515 */
1516 OO.ui.HtmlSnippet = function OoUiHtmlSnippet( content ) {
1517 // Properties
1518 this.content = content;
1519 };
1520
1521 /* Setup */
1522
1523 OO.initClass( OO.ui.HtmlSnippet );
1524
1525 /* Methods */
1526
1527 /**
1528 * Render into HTML.
1529 *
1530 * @return {string} Unchanged HTML snippet.
1531 */
1532 OO.ui.HtmlSnippet.prototype.toString = function () {
1533 return this.content;
1534 };
1535
1536 /**
1537 * Layouts are containers for elements and are used to arrange other widgets of arbitrary type in a way
1538 * that is centrally controlled and can be updated dynamically. Layouts can be, and usually are, combined.
1539 * See {@link OO.ui.FieldsetLayout FieldsetLayout}, {@link OO.ui.FieldLayout FieldLayout}, {@link OO.ui.FormLayout FormLayout},
1540 * {@link OO.ui.PanelLayout PanelLayout}, {@link OO.ui.StackLayout StackLayout}, {@link OO.ui.PageLayout PageLayout},
1541 * {@link OO.ui.HorizontalLayout HorizontalLayout}, and {@link OO.ui.BookletLayout BookletLayout} for more information and examples.
1542 *
1543 * @abstract
1544 * @class
1545 * @extends OO.ui.Element
1546 * @mixins OO.EventEmitter
1547 *
1548 * @constructor
1549 * @param {Object} [config] Configuration options
1550 */
1551 OO.ui.Layout = function OoUiLayout( config ) {
1552 // Configuration initialization
1553 config = config || {};
1554
1555 // Parent constructor
1556 OO.ui.Layout.parent.call( this, config );
1557
1558 // Mixin constructors
1559 OO.EventEmitter.call( this );
1560
1561 // Initialization
1562 this.$element.addClass( 'oo-ui-layout' );
1563 };
1564
1565 /* Setup */
1566
1567 OO.inheritClass( OO.ui.Layout, OO.ui.Element );
1568 OO.mixinClass( OO.ui.Layout, OO.EventEmitter );
1569
1570 /**
1571 * Widgets are compositions of one or more OOjs UI elements that users can both view
1572 * and interact with. All widgets can be configured and modified via a standard API,
1573 * and their state can change dynamically according to a model.
1574 *
1575 * @abstract
1576 * @class
1577 * @extends OO.ui.Element
1578 * @mixins OO.EventEmitter
1579 *
1580 * @constructor
1581 * @param {Object} [config] Configuration options
1582 * @cfg {boolean} [disabled=false] Disable the widget. Disabled widgets cannot be used and their
1583 * appearance reflects this state.
1584 */
1585 OO.ui.Widget = function OoUiWidget( config ) {
1586 // Initialize config
1587 config = $.extend( { disabled: false }, config );
1588
1589 // Parent constructor
1590 OO.ui.Widget.parent.call( this, config );
1591
1592 // Mixin constructors
1593 OO.EventEmitter.call( this );
1594
1595 // Properties
1596 this.disabled = null;
1597 this.wasDisabled = null;
1598
1599 // Initialization
1600 this.$element.addClass( 'oo-ui-widget' );
1601 this.setDisabled( !!config.disabled );
1602 };
1603
1604 /* Setup */
1605
1606 OO.inheritClass( OO.ui.Widget, OO.ui.Element );
1607 OO.mixinClass( OO.ui.Widget, OO.EventEmitter );
1608
1609 /* Static Properties */
1610
1611 /**
1612 * Whether this widget will behave reasonably when wrapped in an HTML `<label>`. If this is true,
1613 * wrappers such as OO.ui.FieldLayout may use a `<label>` instead of implementing own label click
1614 * handling.
1615 *
1616 * @static
1617 * @inheritable
1618 * @property {boolean}
1619 */
1620 OO.ui.Widget.static.supportsSimpleLabel = false;
1621
1622 /* Events */
1623
1624 /**
1625 * @event disable
1626 *
1627 * A 'disable' event is emitted when the disabled state of the widget changes
1628 * (i.e. on disable **and** enable).
1629 *
1630 * @param {boolean} disabled Widget is disabled
1631 */
1632
1633 /**
1634 * @event toggle
1635 *
1636 * A 'toggle' event is emitted when the visibility of the widget changes.
1637 *
1638 * @param {boolean} visible Widget is visible
1639 */
1640
1641 /* Methods */
1642
1643 /**
1644 * Check if the widget is disabled.
1645 *
1646 * @return {boolean} Widget is disabled
1647 */
1648 OO.ui.Widget.prototype.isDisabled = function () {
1649 return this.disabled;
1650 };
1651
1652 /**
1653 * Set the 'disabled' state of the widget.
1654 *
1655 * When a widget is disabled, it cannot be used and its appearance is updated to reflect this state.
1656 *
1657 * @param {boolean} disabled Disable widget
1658 * @chainable
1659 */
1660 OO.ui.Widget.prototype.setDisabled = function ( disabled ) {
1661 var isDisabled;
1662
1663 this.disabled = !!disabled;
1664 isDisabled = this.isDisabled();
1665 if ( isDisabled !== this.wasDisabled ) {
1666 this.$element.toggleClass( 'oo-ui-widget-disabled', isDisabled );
1667 this.$element.toggleClass( 'oo-ui-widget-enabled', !isDisabled );
1668 this.$element.attr( 'aria-disabled', isDisabled.toString() );
1669 this.emit( 'disable', isDisabled );
1670 this.updateThemeClasses();
1671 }
1672 this.wasDisabled = isDisabled;
1673
1674 return this;
1675 };
1676
1677 /**
1678 * Update the disabled state, in case of changes in parent widget.
1679 *
1680 * @chainable
1681 */
1682 OO.ui.Widget.prototype.updateDisabled = function () {
1683 this.setDisabled( this.disabled );
1684 return this;
1685 };
1686
1687 /**
1688 * Theme logic.
1689 *
1690 * @abstract
1691 * @class
1692 *
1693 * @constructor
1694 */
1695 OO.ui.Theme = function OoUiTheme() {
1696 this.elementClassesQueue = [];
1697 this.debouncedUpdateQueuedElementClasses = OO.ui.debounce( this.updateQueuedElementClasses );
1698 };
1699
1700 /* Setup */
1701
1702 OO.initClass( OO.ui.Theme );
1703
1704 /* Methods */
1705
1706 /**
1707 * Get a list of classes to be applied to a widget.
1708 *
1709 * The 'on' and 'off' lists combined MUST contain keys for all classes the theme adds or removes,
1710 * otherwise state transitions will not work properly.
1711 *
1712 * @param {OO.ui.Element} element Element for which to get classes
1713 * @return {Object.<string,string[]>} Categorized class names with `on` and `off` lists
1714 */
1715 OO.ui.Theme.prototype.getElementClasses = function () {
1716 return { on: [], off: [] };
1717 };
1718
1719 /**
1720 * Update CSS classes provided by the theme.
1721 *
1722 * For elements with theme logic hooks, this should be called any time there's a state change.
1723 *
1724 * @param {OO.ui.Element} element Element for which to update classes
1725 */
1726 OO.ui.Theme.prototype.updateElementClasses = function ( element ) {
1727 var $elements = $( [] ),
1728 classes = this.getElementClasses( element );
1729
1730 if ( element.$icon ) {
1731 $elements = $elements.add( element.$icon );
1732 }
1733 if ( element.$indicator ) {
1734 $elements = $elements.add( element.$indicator );
1735 }
1736
1737 $elements
1738 .removeClass( classes.off.join( ' ' ) )
1739 .addClass( classes.on.join( ' ' ) );
1740 };
1741
1742 /**
1743 * @private
1744 */
1745 OO.ui.Theme.prototype.updateQueuedElementClasses = function () {
1746 var i;
1747 for ( i = 0; i < this.elementClassesQueue.length; i++ ) {
1748 this.updateElementClasses( this.elementClassesQueue[ i ] );
1749 }
1750 // Clear the queue
1751 this.elementClassesQueue = [];
1752 };
1753
1754 /**
1755 * Queue #updateElementClasses to be called for this element.
1756 *
1757 * @localdoc QUnit tests override this method to directly call #queueUpdateElementClasses,
1758 * to make them synchronous.
1759 *
1760 * @param {OO.ui.Element} element Element for which to update classes
1761 */
1762 OO.ui.Theme.prototype.queueUpdateElementClasses = function ( element ) {
1763 // Keep items in the queue unique. Use lastIndexOf to start checking from the end because that's
1764 // the most common case (this method is often called repeatedly for the same element).
1765 if ( this.elementClassesQueue.lastIndexOf( element ) !== -1 ) {
1766 return;
1767 }
1768 this.elementClassesQueue.push( element );
1769 this.debouncedUpdateQueuedElementClasses();
1770 };
1771
1772 /**
1773 * Get the transition duration in milliseconds for dialogs opening/closing
1774 *
1775 * The dialog should be fully rendered this many milliseconds after the
1776 * ready process has executed.
1777 *
1778 * @return {number} Transition duration in milliseconds
1779 */
1780 OO.ui.Theme.prototype.getDialogTransitionDuration = function () {
1781 return 0;
1782 };
1783
1784 /**
1785 * The TabIndexedElement class is an attribute mixin used to add additional functionality to an
1786 * element created by another class. The mixin provides a ‘tabIndex’ property, which specifies the
1787 * order in which users will navigate through the focusable elements via the "tab" key.
1788 *
1789 * @example
1790 * // TabIndexedElement is mixed into the ButtonWidget class
1791 * // to provide a tabIndex property.
1792 * var button1 = new OO.ui.ButtonWidget( {
1793 * label: 'fourth',
1794 * tabIndex: 4
1795 * } );
1796 * var button2 = new OO.ui.ButtonWidget( {
1797 * label: 'second',
1798 * tabIndex: 2
1799 * } );
1800 * var button3 = new OO.ui.ButtonWidget( {
1801 * label: 'third',
1802 * tabIndex: 3
1803 * } );
1804 * var button4 = new OO.ui.ButtonWidget( {
1805 * label: 'first',
1806 * tabIndex: 1
1807 * } );
1808 * $( 'body' ).append( button1.$element, button2.$element, button3.$element, button4.$element );
1809 *
1810 * @abstract
1811 * @class
1812 *
1813 * @constructor
1814 * @param {Object} [config] Configuration options
1815 * @cfg {jQuery} [$tabIndexed] The element that should use the tabindex functionality. By default,
1816 * the functionality is applied to the element created by the class ($element). If a different element is specified, the tabindex
1817 * functionality will be applied to it instead.
1818 * @cfg {number|null} [tabIndex=0] Number that specifies the element’s position in the tab-navigation
1819 * order (e.g., 1 for the first focusable element). Use 0 to use the default navigation order; use -1
1820 * to remove the element from the tab-navigation flow.
1821 */
1822 OO.ui.mixin.TabIndexedElement = function OoUiMixinTabIndexedElement( config ) {
1823 // Configuration initialization
1824 config = $.extend( { tabIndex: 0 }, config );
1825
1826 // Properties
1827 this.$tabIndexed = null;
1828 this.tabIndex = null;
1829
1830 // Events
1831 this.connect( this, { disable: 'onTabIndexedElementDisable' } );
1832
1833 // Initialization
1834 this.setTabIndex( config.tabIndex );
1835 this.setTabIndexedElement( config.$tabIndexed || this.$element );
1836 };
1837
1838 /* Setup */
1839
1840 OO.initClass( OO.ui.mixin.TabIndexedElement );
1841
1842 /* Methods */
1843
1844 /**
1845 * Set the element that should use the tabindex functionality.
1846 *
1847 * This method is used to retarget a tabindex mixin so that its functionality applies
1848 * to the specified element. If an element is currently using the functionality, the mixin’s
1849 * effect on that element is removed before the new element is set up.
1850 *
1851 * @param {jQuery} $tabIndexed Element that should use the tabindex functionality
1852 * @chainable
1853 */
1854 OO.ui.mixin.TabIndexedElement.prototype.setTabIndexedElement = function ( $tabIndexed ) {
1855 var tabIndex = this.tabIndex;
1856 // Remove attributes from old $tabIndexed
1857 this.setTabIndex( null );
1858 // Force update of new $tabIndexed
1859 this.$tabIndexed = $tabIndexed;
1860 this.tabIndex = tabIndex;
1861 return this.updateTabIndex();
1862 };
1863
1864 /**
1865 * Set the value of the tabindex.
1866 *
1867 * @param {number|null} tabIndex Tabindex value, or `null` for no tabindex
1868 * @chainable
1869 */
1870 OO.ui.mixin.TabIndexedElement.prototype.setTabIndex = function ( tabIndex ) {
1871 tabIndex = typeof tabIndex === 'number' ? tabIndex : null;
1872
1873 if ( this.tabIndex !== tabIndex ) {
1874 this.tabIndex = tabIndex;
1875 this.updateTabIndex();
1876 }
1877
1878 return this;
1879 };
1880
1881 /**
1882 * Update the `tabindex` attribute, in case of changes to tab index or
1883 * disabled state.
1884 *
1885 * @private
1886 * @chainable
1887 */
1888 OO.ui.mixin.TabIndexedElement.prototype.updateTabIndex = function () {
1889 if ( this.$tabIndexed ) {
1890 if ( this.tabIndex !== null ) {
1891 // Do not index over disabled elements
1892 this.$tabIndexed.attr( {
1893 tabindex: this.isDisabled() ? -1 : this.tabIndex,
1894 // Support: ChromeVox and NVDA
1895 // These do not seem to inherit aria-disabled from parent elements
1896 'aria-disabled': this.isDisabled().toString()
1897 } );
1898 } else {
1899 this.$tabIndexed.removeAttr( 'tabindex aria-disabled' );
1900 }
1901 }
1902 return this;
1903 };
1904
1905 /**
1906 * Handle disable events.
1907 *
1908 * @private
1909 * @param {boolean} disabled Element is disabled
1910 */
1911 OO.ui.mixin.TabIndexedElement.prototype.onTabIndexedElementDisable = function () {
1912 this.updateTabIndex();
1913 };
1914
1915 /**
1916 * Get the value of the tabindex.
1917 *
1918 * @return {number|null} Tabindex value
1919 */
1920 OO.ui.mixin.TabIndexedElement.prototype.getTabIndex = function () {
1921 return this.tabIndex;
1922 };
1923
1924 /**
1925 * ButtonElement is often mixed into other classes to generate a button, which is a clickable
1926 * interface element that can be configured with access keys for accessibility.
1927 * See the [OOjs UI documentation on MediaWiki] [1] for examples.
1928 *
1929 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Buttons_and_Switches#Buttons
1930 *
1931 * @abstract
1932 * @class
1933 *
1934 * @constructor
1935 * @param {Object} [config] Configuration options
1936 * @cfg {jQuery} [$button] The button element created by the class.
1937 * If this configuration is omitted, the button element will use a generated `<a>`.
1938 * @cfg {boolean} [framed=true] Render the button with a frame
1939 */
1940 OO.ui.mixin.ButtonElement = function OoUiMixinButtonElement( config ) {
1941 // Configuration initialization
1942 config = config || {};
1943
1944 // Properties
1945 this.$button = null;
1946 this.framed = null;
1947 this.active = config.active !== undefined && config.active;
1948 this.onMouseUpHandler = this.onMouseUp.bind( this );
1949 this.onMouseDownHandler = this.onMouseDown.bind( this );
1950 this.onKeyDownHandler = this.onKeyDown.bind( this );
1951 this.onKeyUpHandler = this.onKeyUp.bind( this );
1952 this.onClickHandler = this.onClick.bind( this );
1953 this.onKeyPressHandler = this.onKeyPress.bind( this );
1954
1955 // Initialization
1956 this.$element.addClass( 'oo-ui-buttonElement' );
1957 this.toggleFramed( config.framed === undefined || config.framed );
1958 this.setButtonElement( config.$button || $( '<a>' ) );
1959 };
1960
1961 /* Setup */
1962
1963 OO.initClass( OO.ui.mixin.ButtonElement );
1964
1965 /* Static Properties */
1966
1967 /**
1968 * Cancel mouse down events.
1969 *
1970 * This property is usually set to `true` to prevent the focus from changing when the button is clicked.
1971 * Classes such as {@link OO.ui.mixin.DraggableElement DraggableElement} and {@link OO.ui.ButtonOptionWidget ButtonOptionWidget}
1972 * use a value of `false` so that dragging behavior is possible and mousedown events can be handled by a
1973 * parent widget.
1974 *
1975 * @static
1976 * @inheritable
1977 * @property {boolean}
1978 */
1979 OO.ui.mixin.ButtonElement.static.cancelButtonMouseDownEvents = true;
1980
1981 /* Events */
1982
1983 /**
1984 * A 'click' event is emitted when the button element is clicked.
1985 *
1986 * @event click
1987 */
1988
1989 /* Methods */
1990
1991 /**
1992 * Set the button element.
1993 *
1994 * This method is used to retarget a button mixin so that its functionality applies to
1995 * the specified button element instead of the one created by the class. If a button element
1996 * is already set, the method will remove the mixin’s effect on that element.
1997 *
1998 * @param {jQuery} $button Element to use as button
1999 */
2000 OO.ui.mixin.ButtonElement.prototype.setButtonElement = function ( $button ) {
2001 if ( this.$button ) {
2002 this.$button
2003 .removeClass( 'oo-ui-buttonElement-button' )
2004 .removeAttr( 'role accesskey' )
2005 .off( {
2006 mousedown: this.onMouseDownHandler,
2007 keydown: this.onKeyDownHandler,
2008 click: this.onClickHandler,
2009 keypress: this.onKeyPressHandler
2010 } );
2011 }
2012
2013 this.$button = $button
2014 .addClass( 'oo-ui-buttonElement-button' )
2015 .on( {
2016 mousedown: this.onMouseDownHandler,
2017 keydown: this.onKeyDownHandler,
2018 click: this.onClickHandler,
2019 keypress: this.onKeyPressHandler
2020 } );
2021
2022 // Add `role="button"` on `<a>` elements, where it's needed
2023 // `toUppercase()` is added for XHTML documents
2024 if ( this.$button.prop( 'tagName' ).toUpperCase() === 'A' ) {
2025 this.$button.attr( 'role', 'button' );
2026 }
2027 };
2028
2029 /**
2030 * Handles mouse down events.
2031 *
2032 * @protected
2033 * @param {jQuery.Event} e Mouse down event
2034 */
2035 OO.ui.mixin.ButtonElement.prototype.onMouseDown = function ( e ) {
2036 if ( this.isDisabled() || e.which !== OO.ui.MouseButtons.LEFT ) {
2037 return;
2038 }
2039 this.$element.addClass( 'oo-ui-buttonElement-pressed' );
2040 // Run the mouseup handler no matter where the mouse is when the button is let go, so we can
2041 // reliably remove the pressed class
2042 this.getElementDocument().addEventListener( 'mouseup', this.onMouseUpHandler, true );
2043 // Prevent change of focus unless specifically configured otherwise
2044 if ( this.constructor.static.cancelButtonMouseDownEvents ) {
2045 return false;
2046 }
2047 };
2048
2049 /**
2050 * Handles mouse up events.
2051 *
2052 * @protected
2053 * @param {MouseEvent} e Mouse up event
2054 */
2055 OO.ui.mixin.ButtonElement.prototype.onMouseUp = function ( e ) {
2056 if ( this.isDisabled() || e.which !== OO.ui.MouseButtons.LEFT ) {
2057 return;
2058 }
2059 this.$element.removeClass( 'oo-ui-buttonElement-pressed' );
2060 // Stop listening for mouseup, since we only needed this once
2061 this.getElementDocument().removeEventListener( 'mouseup', this.onMouseUpHandler, true );
2062 };
2063
2064 /**
2065 * Handles mouse click events.
2066 *
2067 * @protected
2068 * @param {jQuery.Event} e Mouse click event
2069 * @fires click
2070 */
2071 OO.ui.mixin.ButtonElement.prototype.onClick = function ( e ) {
2072 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
2073 if ( this.emit( 'click' ) ) {
2074 return false;
2075 }
2076 }
2077 };
2078
2079 /**
2080 * Handles key down events.
2081 *
2082 * @protected
2083 * @param {jQuery.Event} e Key down event
2084 */
2085 OO.ui.mixin.ButtonElement.prototype.onKeyDown = function ( e ) {
2086 if ( this.isDisabled() || ( e.which !== OO.ui.Keys.SPACE && e.which !== OO.ui.Keys.ENTER ) ) {
2087 return;
2088 }
2089 this.$element.addClass( 'oo-ui-buttonElement-pressed' );
2090 // Run the keyup handler no matter where the key is when the button is let go, so we can
2091 // reliably remove the pressed class
2092 this.getElementDocument().addEventListener( 'keyup', this.onKeyUpHandler, true );
2093 };
2094
2095 /**
2096 * Handles key up events.
2097 *
2098 * @protected
2099 * @param {KeyboardEvent} e Key up event
2100 */
2101 OO.ui.mixin.ButtonElement.prototype.onKeyUp = function ( e ) {
2102 if ( this.isDisabled() || ( e.which !== OO.ui.Keys.SPACE && e.which !== OO.ui.Keys.ENTER ) ) {
2103 return;
2104 }
2105 this.$element.removeClass( 'oo-ui-buttonElement-pressed' );
2106 // Stop listening for keyup, since we only needed this once
2107 this.getElementDocument().removeEventListener( 'keyup', this.onKeyUpHandler, true );
2108 };
2109
2110 /**
2111 * Handles key press events.
2112 *
2113 * @protected
2114 * @param {jQuery.Event} e Key press event
2115 * @fires click
2116 */
2117 OO.ui.mixin.ButtonElement.prototype.onKeyPress = function ( e ) {
2118 if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
2119 if ( this.emit( 'click' ) ) {
2120 return false;
2121 }
2122 }
2123 };
2124
2125 /**
2126 * Check if button has a frame.
2127 *
2128 * @return {boolean} Button is framed
2129 */
2130 OO.ui.mixin.ButtonElement.prototype.isFramed = function () {
2131 return this.framed;
2132 };
2133
2134 /**
2135 * Render the button with or without a frame. Omit the `framed` parameter to toggle the button frame on and off.
2136 *
2137 * @param {boolean} [framed] Make button framed, omit to toggle
2138 * @chainable
2139 */
2140 OO.ui.mixin.ButtonElement.prototype.toggleFramed = function ( framed ) {
2141 framed = framed === undefined ? !this.framed : !!framed;
2142 if ( framed !== this.framed ) {
2143 this.framed = framed;
2144 this.$element
2145 .toggleClass( 'oo-ui-buttonElement-frameless', !framed )
2146 .toggleClass( 'oo-ui-buttonElement-framed', framed );
2147 this.updateThemeClasses();
2148 }
2149
2150 return this;
2151 };
2152
2153 /**
2154 * Set the button's active state.
2155 *
2156 * The active state can be set on:
2157 *
2158 * - {@link OO.ui.ButtonOptionWidget ButtonOptionWidget} when it is selected
2159 * - {@link OO.ui.ToggleButtonWidget ToggleButtonWidget} when it is toggle on
2160 * - {@link OO.ui.ButtonWidget ButtonWidget} when clicking the button would only refresh the page
2161 *
2162 * @protected
2163 * @param {boolean} value Make button active
2164 * @chainable
2165 */
2166 OO.ui.mixin.ButtonElement.prototype.setActive = function ( value ) {
2167 this.active = !!value;
2168 this.$element.toggleClass( 'oo-ui-buttonElement-active', this.active );
2169 this.updateThemeClasses();
2170 return this;
2171 };
2172
2173 /**
2174 * Check if the button is active
2175 *
2176 * @protected
2177 * @return {boolean} The button is active
2178 */
2179 OO.ui.mixin.ButtonElement.prototype.isActive = function () {
2180 return this.active;
2181 };
2182
2183 /**
2184 * Any OOjs UI widget that contains other widgets (such as {@link OO.ui.ButtonWidget buttons} or
2185 * {@link OO.ui.OptionWidget options}) mixes in GroupElement. Adding, removing, and clearing
2186 * items from the group is done through the interface the class provides.
2187 * For more information, please see the [OOjs UI documentation on MediaWiki] [1].
2188 *
2189 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Elements/Groups
2190 *
2191 * @abstract
2192 * @mixins OO.EmitterList
2193 * @class
2194 *
2195 * @constructor
2196 * @param {Object} [config] Configuration options
2197 * @cfg {jQuery} [$group] The container element created by the class. If this configuration
2198 * is omitted, the group element will use a generated `<div>`.
2199 */
2200 OO.ui.mixin.GroupElement = function OoUiMixinGroupElement( config ) {
2201 // Configuration initialization
2202 config = config || {};
2203
2204 // Mixin constructors
2205 OO.EmitterList.call( this, config );
2206
2207 // Properties
2208 this.$group = null;
2209
2210 // Initialization
2211 this.setGroupElement( config.$group || $( '<div>' ) );
2212 };
2213
2214 /* Setup */
2215
2216 OO.mixinClass( OO.ui.mixin.GroupElement, OO.EmitterList );
2217
2218 /* Events */
2219
2220 /**
2221 * @event change
2222 *
2223 * A change event is emitted when the set of selected items changes.
2224 *
2225 * @param {OO.ui.Element[]} items Items currently in the group
2226 */
2227
2228 /* Methods */
2229
2230 /**
2231 * Set the group element.
2232 *
2233 * If an element is already set, items will be moved to the new element.
2234 *
2235 * @param {jQuery} $group Element to use as group
2236 */
2237 OO.ui.mixin.GroupElement.prototype.setGroupElement = function ( $group ) {
2238 var i, len;
2239
2240 this.$group = $group;
2241 for ( i = 0, len = this.items.length; i < len; i++ ) {
2242 this.$group.append( this.items[ i ].$element );
2243 }
2244 };
2245
2246 /**
2247 * Get an item by its data.
2248 *
2249 * Only the first item with matching data will be returned. To return all matching items,
2250 * use the #getItemsFromData method.
2251 *
2252 * @param {Object} data Item data to search for
2253 * @return {OO.ui.Element|null} Item with equivalent data, `null` if none exists
2254 */
2255 OO.ui.mixin.GroupElement.prototype.getItemFromData = function ( data ) {
2256 var i, len, item,
2257 hash = OO.getHash( data );
2258
2259 for ( i = 0, len = this.items.length; i < len; i++ ) {
2260 item = this.items[ i ];
2261 if ( hash === OO.getHash( item.getData() ) ) {
2262 return item;
2263 }
2264 }
2265
2266 return null;
2267 };
2268
2269 /**
2270 * Get items by their data.
2271 *
2272 * All items with matching data will be returned. To return only the first match, use the #getItemFromData method instead.
2273 *
2274 * @param {Object} data Item data to search for
2275 * @return {OO.ui.Element[]} Items with equivalent data
2276 */
2277 OO.ui.mixin.GroupElement.prototype.getItemsFromData = function ( data ) {
2278 var i, len, item,
2279 hash = OO.getHash( data ),
2280 items = [];
2281
2282 for ( i = 0, len = this.items.length; i < len; i++ ) {
2283 item = this.items[ i ];
2284 if ( hash === OO.getHash( item.getData() ) ) {
2285 items.push( item );
2286 }
2287 }
2288
2289 return items;
2290 };
2291
2292 /**
2293 * Add items to the group.
2294 *
2295 * Items will be added to the end of the group array unless the optional `index` parameter specifies
2296 * a different insertion point. Adding an existing item will move it to the end of the array or the point specified by the `index`.
2297 *
2298 * @param {OO.ui.Element[]} items An array of items to add to the group
2299 * @param {number} [index] Index of the insertion point
2300 * @chainable
2301 */
2302 OO.ui.mixin.GroupElement.prototype.addItems = function ( items, index ) {
2303 // Mixin method
2304 OO.EmitterList.prototype.addItems.call( this, items, index );
2305
2306 this.emit( 'change', this.getItems() );
2307 return this;
2308 };
2309
2310 /**
2311 * @inheritdoc
2312 */
2313 OO.ui.mixin.GroupElement.prototype.moveItem = function ( items, newIndex ) {
2314 // insertItemElements expects this.items to not have been modified yet, so call before the mixin
2315 this.insertItemElements( items, newIndex );
2316
2317 // Mixin method
2318 newIndex = OO.EmitterList.prototype.moveItem.call( this, items, newIndex );
2319
2320 return newIndex;
2321 };
2322
2323 /**
2324 * @inheritdoc
2325 */
2326 OO.ui.mixin.GroupElement.prototype.insertItem = function ( item, index ) {
2327 item.setElementGroup( this );
2328 this.insertItemElements( item, index );
2329
2330 // Mixin method
2331 index = OO.EmitterList.prototype.insertItem.call( this, item, index );
2332
2333 return index;
2334 };
2335
2336 /**
2337 * Insert elements into the group
2338 *
2339 * @private
2340 * @param {OO.ui.Element} itemWidget Item to insert
2341 * @param {number} index Insertion index
2342 */
2343 OO.ui.mixin.GroupElement.prototype.insertItemElements = function ( itemWidget, index ) {
2344 if ( index === undefined || index < 0 || index >= this.items.length ) {
2345 this.$group.append( itemWidget.$element );
2346 } else if ( index === 0 ) {
2347 this.$group.prepend( itemWidget.$element );
2348 } else {
2349 this.items[ index ].$element.before( itemWidget.$element );
2350 }
2351 };
2352
2353 /**
2354 * Remove the specified items from a group.
2355 *
2356 * Removed items are detached (not removed) from the DOM so that they may be reused.
2357 * To remove all items from a group, you may wish to use the #clearItems method instead.
2358 *
2359 * @param {OO.ui.Element[]} items An array of items to remove
2360 * @chainable
2361 */
2362 OO.ui.mixin.GroupElement.prototype.removeItems = function ( items ) {
2363 var i, len, item, index;
2364
2365 // Remove specific items elements
2366 for ( i = 0, len = items.length; i < len; i++ ) {
2367 item = items[ i ];
2368 index = this.items.indexOf( item );
2369 if ( index !== -1 ) {
2370 item.setElementGroup( null );
2371 item.$element.detach();
2372 }
2373 }
2374
2375 // Mixin method
2376 OO.EmitterList.prototype.removeItems.call( this, items );
2377
2378 this.emit( 'change', this.getItems() );
2379 return this;
2380 };
2381
2382 /**
2383 * Clear all items from the group.
2384 *
2385 * Cleared items are detached from the DOM, not removed, so that they may be reused.
2386 * To remove only a subset of items from a group, use the #removeItems method.
2387 *
2388 * @chainable
2389 */
2390 OO.ui.mixin.GroupElement.prototype.clearItems = function () {
2391 var i, len;
2392
2393 // Remove all item elements
2394 for ( i = 0, len = this.items.length; i < len; i++ ) {
2395 this.items[ i ].setElementGroup( null );
2396 this.items[ i ].$element.detach();
2397 }
2398
2399 // Mixin method
2400 OO.EmitterList.prototype.clearItems.call( this );
2401
2402 this.emit( 'change', this.getItems() );
2403 return this;
2404 };
2405
2406 /**
2407 * IconElement is often mixed into other classes to generate an icon.
2408 * Icons are graphics, about the size of normal text. They are used to aid the user
2409 * in locating a control or to convey information in a space-efficient way. See the
2410 * [OOjs UI documentation on MediaWiki] [1] for a list of icons
2411 * included in the library.
2412 *
2413 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Icons
2414 *
2415 * @abstract
2416 * @class
2417 *
2418 * @constructor
2419 * @param {Object} [config] Configuration options
2420 * @cfg {jQuery} [$icon] The icon element created by the class. If this configuration is omitted,
2421 * the icon element will use a generated `<span>`. To use a different HTML tag, or to specify that
2422 * the icon element be set to an existing icon instead of the one generated by this class, set a
2423 * value using a jQuery selection. For example:
2424 *
2425 * // Use a <div> tag instead of a <span>
2426 * $icon: $("<div>")
2427 * // Use an existing icon element instead of the one generated by the class
2428 * $icon: this.$element
2429 * // Use an icon element from a child widget
2430 * $icon: this.childwidget.$element
2431 * @cfg {Object|string} [icon=''] The symbolic name of the icon (e.g., ‘remove’ or ‘menu’), or a map of
2432 * symbolic names. A map is used for i18n purposes and contains a `default` icon
2433 * name and additional names keyed by language code. The `default` name is used when no icon is keyed
2434 * by the user's language.
2435 *
2436 * Example of an i18n map:
2437 *
2438 * { default: 'bold-a', en: 'bold-b', de: 'bold-f' }
2439 * See the [OOjs UI documentation on MediaWiki] [2] for a list of icons included in the library.
2440 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Icons
2441 * @cfg {string|Function} [iconTitle] A text string used as the icon title, or a function that returns title
2442 * text. The icon title is displayed when users move the mouse over the icon.
2443 */
2444 OO.ui.mixin.IconElement = function OoUiMixinIconElement( config ) {
2445 // Configuration initialization
2446 config = config || {};
2447
2448 // Properties
2449 this.$icon = null;
2450 this.icon = null;
2451 this.iconTitle = null;
2452
2453 // Initialization
2454 this.setIcon( config.icon || this.constructor.static.icon );
2455 this.setIconTitle( config.iconTitle || this.constructor.static.iconTitle );
2456 this.setIconElement( config.$icon || $( '<span>' ) );
2457 };
2458
2459 /* Setup */
2460
2461 OO.initClass( OO.ui.mixin.IconElement );
2462
2463 /* Static Properties */
2464
2465 /**
2466 * The symbolic name of the icon (e.g., ‘remove’ or ‘menu’), or a map of symbolic names. A map is used
2467 * for i18n purposes and contains a `default` icon name and additional names keyed by
2468 * language code. The `default` name is used when no icon is keyed by the user's language.
2469 *
2470 * Example of an i18n map:
2471 *
2472 * { default: 'bold-a', en: 'bold-b', de: 'bold-f' }
2473 *
2474 * Note: the static property will be overridden if the #icon configuration is used.
2475 *
2476 * @static
2477 * @inheritable
2478 * @property {Object|string}
2479 */
2480 OO.ui.mixin.IconElement.static.icon = null;
2481
2482 /**
2483 * The icon title, displayed when users move the mouse over the icon. The value can be text, a
2484 * function that returns title text, or `null` for no title.
2485 *
2486 * The static property will be overridden if the #iconTitle configuration is used.
2487 *
2488 * @static
2489 * @inheritable
2490 * @property {string|Function|null}
2491 */
2492 OO.ui.mixin.IconElement.static.iconTitle = null;
2493
2494 /* Methods */
2495
2496 /**
2497 * Set the icon element. This method is used to retarget an icon mixin so that its functionality
2498 * applies to the specified icon element instead of the one created by the class. If an icon
2499 * element is already set, the mixin’s effect on that element is removed. Generated CSS classes
2500 * and mixin methods will no longer affect the element.
2501 *
2502 * @param {jQuery} $icon Element to use as icon
2503 */
2504 OO.ui.mixin.IconElement.prototype.setIconElement = function ( $icon ) {
2505 if ( this.$icon ) {
2506 this.$icon
2507 .removeClass( 'oo-ui-iconElement-icon oo-ui-icon-' + this.icon )
2508 .removeAttr( 'title' );
2509 }
2510
2511 this.$icon = $icon
2512 .addClass( 'oo-ui-iconElement-icon' )
2513 .toggleClass( 'oo-ui-icon-' + this.icon, !!this.icon );
2514 if ( this.iconTitle !== null ) {
2515 this.$icon.attr( 'title', this.iconTitle );
2516 }
2517
2518 this.updateThemeClasses();
2519 };
2520
2521 /**
2522 * Set icon by symbolic name (e.g., ‘remove’ or ‘menu’). Use `null` to remove an icon.
2523 * The icon parameter can also be set to a map of icon names. See the #icon config setting
2524 * for an example.
2525 *
2526 * @param {Object|string|null} icon A symbolic icon name, a {@link #icon map of icon names} keyed
2527 * by language code, or `null` to remove the icon.
2528 * @chainable
2529 */
2530 OO.ui.mixin.IconElement.prototype.setIcon = function ( icon ) {
2531 icon = OO.isPlainObject( icon ) ? OO.ui.getLocalValue( icon, null, 'default' ) : icon;
2532 icon = typeof icon === 'string' && icon.trim().length ? icon.trim() : null;
2533
2534 if ( this.icon !== icon ) {
2535 if ( this.$icon ) {
2536 if ( this.icon !== null ) {
2537 this.$icon.removeClass( 'oo-ui-icon-' + this.icon );
2538 }
2539 if ( icon !== null ) {
2540 this.$icon.addClass( 'oo-ui-icon-' + icon );
2541 }
2542 }
2543 this.icon = icon;
2544 }
2545
2546 this.$element.toggleClass( 'oo-ui-iconElement', !!this.icon );
2547 this.updateThemeClasses();
2548
2549 return this;
2550 };
2551
2552 /**
2553 * Set the icon title. Use `null` to remove the title.
2554 *
2555 * @param {string|Function|null} iconTitle A text string used as the icon title,
2556 * a function that returns title text, or `null` for no title.
2557 * @chainable
2558 */
2559 OO.ui.mixin.IconElement.prototype.setIconTitle = function ( iconTitle ) {
2560 iconTitle = typeof iconTitle === 'function' ||
2561 ( typeof iconTitle === 'string' && iconTitle.length ) ?
2562 OO.ui.resolveMsg( iconTitle ) : null;
2563
2564 if ( this.iconTitle !== iconTitle ) {
2565 this.iconTitle = iconTitle;
2566 if ( this.$icon ) {
2567 if ( this.iconTitle !== null ) {
2568 this.$icon.attr( 'title', iconTitle );
2569 } else {
2570 this.$icon.removeAttr( 'title' );
2571 }
2572 }
2573 }
2574
2575 return this;
2576 };
2577
2578 /**
2579 * Get the symbolic name of the icon.
2580 *
2581 * @return {string} Icon name
2582 */
2583 OO.ui.mixin.IconElement.prototype.getIcon = function () {
2584 return this.icon;
2585 };
2586
2587 /**
2588 * Get the icon title. The title text is displayed when a user moves the mouse over the icon.
2589 *
2590 * @return {string} Icon title text
2591 */
2592 OO.ui.mixin.IconElement.prototype.getIconTitle = function () {
2593 return this.iconTitle;
2594 };
2595
2596 /**
2597 * IndicatorElement is often mixed into other classes to generate an indicator.
2598 * Indicators are small graphics that are generally used in two ways:
2599 *
2600 * - To draw attention to the status of an item. For example, an indicator might be
2601 * used to show that an item in a list has errors that need to be resolved.
2602 * - To clarify the function of a control that acts in an exceptional way (a button
2603 * that opens a menu instead of performing an action directly, for example).
2604 *
2605 * For a list of indicators included in the library, please see the
2606 * [OOjs UI documentation on MediaWiki] [1].
2607 *
2608 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Indicators
2609 *
2610 * @abstract
2611 * @class
2612 *
2613 * @constructor
2614 * @param {Object} [config] Configuration options
2615 * @cfg {jQuery} [$indicator] The indicator element created by the class. If this
2616 * configuration is omitted, the indicator element will use a generated `<span>`.
2617 * @cfg {string} [indicator] Symbolic name of the indicator (e.g., ‘alert’ or ‘down’).
2618 * See the [OOjs UI documentation on MediaWiki][2] for a list of indicators included
2619 * in the library.
2620 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Indicators
2621 * @cfg {string|Function} [indicatorTitle] A text string used as the indicator title,
2622 * or a function that returns title text. The indicator title is displayed when users move
2623 * the mouse over the indicator.
2624 */
2625 OO.ui.mixin.IndicatorElement = function OoUiMixinIndicatorElement( config ) {
2626 // Configuration initialization
2627 config = config || {};
2628
2629 // Properties
2630 this.$indicator = null;
2631 this.indicator = null;
2632 this.indicatorTitle = null;
2633
2634 // Initialization
2635 this.setIndicator( config.indicator || this.constructor.static.indicator );
2636 this.setIndicatorTitle( config.indicatorTitle || this.constructor.static.indicatorTitle );
2637 this.setIndicatorElement( config.$indicator || $( '<span>' ) );
2638 };
2639
2640 /* Setup */
2641
2642 OO.initClass( OO.ui.mixin.IndicatorElement );
2643
2644 /* Static Properties */
2645
2646 /**
2647 * Symbolic name of the indicator (e.g., ‘alert’ or ‘down’).
2648 * The static property will be overridden if the #indicator configuration is used.
2649 *
2650 * @static
2651 * @inheritable
2652 * @property {string|null}
2653 */
2654 OO.ui.mixin.IndicatorElement.static.indicator = null;
2655
2656 /**
2657 * A text string used as the indicator title, a function that returns title text, or `null`
2658 * for no title. The static property will be overridden if the #indicatorTitle configuration is used.
2659 *
2660 * @static
2661 * @inheritable
2662 * @property {string|Function|null}
2663 */
2664 OO.ui.mixin.IndicatorElement.static.indicatorTitle = null;
2665
2666 /* Methods */
2667
2668 /**
2669 * Set the indicator element.
2670 *
2671 * If an element is already set, it will be cleaned up before setting up the new element.
2672 *
2673 * @param {jQuery} $indicator Element to use as indicator
2674 */
2675 OO.ui.mixin.IndicatorElement.prototype.setIndicatorElement = function ( $indicator ) {
2676 if ( this.$indicator ) {
2677 this.$indicator
2678 .removeClass( 'oo-ui-indicatorElement-indicator oo-ui-indicator-' + this.indicator )
2679 .removeAttr( 'title' );
2680 }
2681
2682 this.$indicator = $indicator
2683 .addClass( 'oo-ui-indicatorElement-indicator' )
2684 .toggleClass( 'oo-ui-indicator-' + this.indicator, !!this.indicator );
2685 if ( this.indicatorTitle !== null ) {
2686 this.$indicator.attr( 'title', this.indicatorTitle );
2687 }
2688
2689 this.updateThemeClasses();
2690 };
2691
2692 /**
2693 * Set the indicator by its symbolic name: ‘alert’, ‘down’, ‘next’, ‘previous’, ‘required’, ‘up’. Use `null` to remove the indicator.
2694 *
2695 * @param {string|null} indicator Symbolic name of indicator, or `null` for no indicator
2696 * @chainable
2697 */
2698 OO.ui.mixin.IndicatorElement.prototype.setIndicator = function ( indicator ) {
2699 indicator = typeof indicator === 'string' && indicator.length ? indicator.trim() : null;
2700
2701 if ( this.indicator !== indicator ) {
2702 if ( this.$indicator ) {
2703 if ( this.indicator !== null ) {
2704 this.$indicator.removeClass( 'oo-ui-indicator-' + this.indicator );
2705 }
2706 if ( indicator !== null ) {
2707 this.$indicator.addClass( 'oo-ui-indicator-' + indicator );
2708 }
2709 }
2710 this.indicator = indicator;
2711 }
2712
2713 this.$element.toggleClass( 'oo-ui-indicatorElement', !!this.indicator );
2714 this.updateThemeClasses();
2715
2716 return this;
2717 };
2718
2719 /**
2720 * Set the indicator title.
2721 *
2722 * The title is displayed when a user moves the mouse over the indicator.
2723 *
2724 * @param {string|Function|null} indicatorTitle Indicator title text, a function that returns text, or
2725 * `null` for no indicator title
2726 * @chainable
2727 */
2728 OO.ui.mixin.IndicatorElement.prototype.setIndicatorTitle = function ( indicatorTitle ) {
2729 indicatorTitle = typeof indicatorTitle === 'function' ||
2730 ( typeof indicatorTitle === 'string' && indicatorTitle.length ) ?
2731 OO.ui.resolveMsg( indicatorTitle ) : null;
2732
2733 if ( this.indicatorTitle !== indicatorTitle ) {
2734 this.indicatorTitle = indicatorTitle;
2735 if ( this.$indicator ) {
2736 if ( this.indicatorTitle !== null ) {
2737 this.$indicator.attr( 'title', indicatorTitle );
2738 } else {
2739 this.$indicator.removeAttr( 'title' );
2740 }
2741 }
2742 }
2743
2744 return this;
2745 };
2746
2747 /**
2748 * Get the symbolic name of the indicator (e.g., ‘alert’ or ‘down’).
2749 *
2750 * @return {string} Symbolic name of indicator
2751 */
2752 OO.ui.mixin.IndicatorElement.prototype.getIndicator = function () {
2753 return this.indicator;
2754 };
2755
2756 /**
2757 * Get the indicator title.
2758 *
2759 * The title is displayed when a user moves the mouse over the indicator.
2760 *
2761 * @return {string} Indicator title text
2762 */
2763 OO.ui.mixin.IndicatorElement.prototype.getIndicatorTitle = function () {
2764 return this.indicatorTitle;
2765 };
2766
2767 /**
2768 * LabelElement is often mixed into other classes to generate a label, which
2769 * helps identify the function of an interface element.
2770 * See the [OOjs UI documentation on MediaWiki] [1] for more information.
2771 *
2772 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Labels
2773 *
2774 * @abstract
2775 * @class
2776 *
2777 * @constructor
2778 * @param {Object} [config] Configuration options
2779 * @cfg {jQuery} [$label] The label element created by the class. If this
2780 * configuration is omitted, the label element will use a generated `<span>`.
2781 * @cfg {jQuery|string|Function|OO.ui.HtmlSnippet} [label] The label text. The label can be specified
2782 * as a plaintext string, a jQuery selection of elements, or a function that will produce a string
2783 * in the future. See the [OOjs UI documentation on MediaWiki] [2] for examples.
2784 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Labels
2785 */
2786 OO.ui.mixin.LabelElement = function OoUiMixinLabelElement( config ) {
2787 // Configuration initialization
2788 config = config || {};
2789
2790 // Properties
2791 this.$label = null;
2792 this.label = null;
2793
2794 // Initialization
2795 this.setLabel( config.label || this.constructor.static.label );
2796 this.setLabelElement( config.$label || $( '<span>' ) );
2797 };
2798
2799 /* Setup */
2800
2801 OO.initClass( OO.ui.mixin.LabelElement );
2802
2803 /* Events */
2804
2805 /**
2806 * @event labelChange
2807 * @param {string} value
2808 */
2809
2810 /* Static Properties */
2811
2812 /**
2813 * The label text. The label can be specified as a plaintext string, a function that will
2814 * produce a string in the future, or `null` for no label. The static value will
2815 * be overridden if a label is specified with the #label config option.
2816 *
2817 * @static
2818 * @inheritable
2819 * @property {string|Function|null}
2820 */
2821 OO.ui.mixin.LabelElement.static.label = null;
2822
2823 /* Static methods */
2824
2825 /**
2826 * Highlight the first occurrence of the query in the given text
2827 *
2828 * @param {string} text Text
2829 * @param {string} query Query to find
2830 * @return {jQuery} Text with the first match of the query
2831 * sub-string wrapped in highlighted span
2832 */
2833 OO.ui.mixin.LabelElement.static.highlightQuery = function ( text, query ) {
2834 var $result = $( '<span>' ),
2835 offset = text.toLowerCase().indexOf( query.toLowerCase() );
2836
2837 if ( !query.length || offset === -1 ) {
2838 return $result.text( text );
2839 }
2840 $result.append(
2841 document.createTextNode( text.slice( 0, offset ) ),
2842 $( '<span>' )
2843 .addClass( 'oo-ui-labelElement-label-highlight' )
2844 .text( text.slice( offset, offset + query.length ) ),
2845 document.createTextNode( text.slice( offset + query.length ) )
2846 );
2847 return $result.contents();
2848 };
2849
2850 /* Methods */
2851
2852 /**
2853 * Set the label element.
2854 *
2855 * If an element is already set, it will be cleaned up before setting up the new element.
2856 *
2857 * @param {jQuery} $label Element to use as label
2858 */
2859 OO.ui.mixin.LabelElement.prototype.setLabelElement = function ( $label ) {
2860 if ( this.$label ) {
2861 this.$label.removeClass( 'oo-ui-labelElement-label' ).empty();
2862 }
2863
2864 this.$label = $label.addClass( 'oo-ui-labelElement-label' );
2865 this.setLabelContent( this.label );
2866 };
2867
2868 /**
2869 * Set the label.
2870 *
2871 * An empty string will result in the label being hidden. A string containing only whitespace will
2872 * be converted to a single `&nbsp;`.
2873 *
2874 * @param {jQuery|string|OO.ui.HtmlSnippet|Function|null} label Label nodes; text; a function that returns nodes or
2875 * text; or null for no label
2876 * @chainable
2877 */
2878 OO.ui.mixin.LabelElement.prototype.setLabel = function ( label ) {
2879 label = typeof label === 'function' ? OO.ui.resolveMsg( label ) : label;
2880 label = ( ( typeof label === 'string' || label instanceof jQuery ) && label.length ) || ( label instanceof OO.ui.HtmlSnippet && label.toString().length ) ? label : null;
2881
2882 if ( this.label !== label ) {
2883 if ( this.$label ) {
2884 this.setLabelContent( label );
2885 }
2886 this.label = label;
2887 this.emit( 'labelChange' );
2888 }
2889
2890 this.$element.toggleClass( 'oo-ui-labelElement', !!this.label );
2891
2892 return this;
2893 };
2894
2895 /**
2896 * Set the label as plain text with a highlighted query
2897 *
2898 * @param {string} text Text label to set
2899 * @param {string} query Substring of text to highlight
2900 * @chainable
2901 */
2902 OO.ui.mixin.LabelElement.prototype.setHighlightedQuery = function ( text, query ) {
2903 return this.setLabel( this.constructor.static.highlightQuery( text, query ) );
2904 };
2905
2906 /**
2907 * Get the label.
2908 *
2909 * @return {jQuery|string|Function|null} Label nodes; text; a function that returns nodes or
2910 * text; or null for no label
2911 */
2912 OO.ui.mixin.LabelElement.prototype.getLabel = function () {
2913 return this.label;
2914 };
2915
2916 /**
2917 * Set the content of the label.
2918 *
2919 * Do not call this method until after the label element has been set by #setLabelElement.
2920 *
2921 * @private
2922 * @param {jQuery|string|Function|null} label Label nodes; text; a function that returns nodes or
2923 * text; or null for no label
2924 */
2925 OO.ui.mixin.LabelElement.prototype.setLabelContent = function ( label ) {
2926 if ( typeof label === 'string' ) {
2927 if ( label.match( /^\s*$/ ) ) {
2928 // Convert whitespace only string to a single non-breaking space
2929 this.$label.html( '&nbsp;' );
2930 } else {
2931 this.$label.text( label );
2932 }
2933 } else if ( label instanceof OO.ui.HtmlSnippet ) {
2934 this.$label.html( label.toString() );
2935 } else if ( label instanceof jQuery ) {
2936 this.$label.empty().append( label );
2937 } else {
2938 this.$label.empty();
2939 }
2940 };
2941
2942 /**
2943 * The FlaggedElement class is an attribute mixin, meaning that it is used to add
2944 * additional functionality to an element created by another class. The class provides
2945 * a ‘flags’ property assigned the name (or an array of names) of styling flags,
2946 * which are used to customize the look and feel of a widget to better describe its
2947 * importance and functionality.
2948 *
2949 * The library currently contains the following styling flags for general use:
2950 *
2951 * - **progressive**: Progressive styling is applied to convey that the widget will move the user forward in a process.
2952 * - **destructive**: Destructive styling is applied to convey that the widget will remove something.
2953 * - **constructive**: Constructive styling is applied to convey that the widget will create something.
2954 *
2955 * The flags affect the appearance of the buttons:
2956 *
2957 * @example
2958 * // FlaggedElement is mixed into ButtonWidget to provide styling flags
2959 * var button1 = new OO.ui.ButtonWidget( {
2960 * label: 'Constructive',
2961 * flags: 'constructive'
2962 * } );
2963 * var button2 = new OO.ui.ButtonWidget( {
2964 * label: 'Destructive',
2965 * flags: 'destructive'
2966 * } );
2967 * var button3 = new OO.ui.ButtonWidget( {
2968 * label: 'Progressive',
2969 * flags: 'progressive'
2970 * } );
2971 * $( 'body' ).append( button1.$element, button2.$element, button3.$element );
2972 *
2973 * {@link OO.ui.ActionWidget ActionWidgets}, which are a special kind of button that execute an action, use these flags: **primary** and **safe**.
2974 * Please see the [OOjs UI documentation on MediaWiki] [1] for more information.
2975 *
2976 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Elements/Flagged
2977 *
2978 * @abstract
2979 * @class
2980 *
2981 * @constructor
2982 * @param {Object} [config] Configuration options
2983 * @cfg {string|string[]} [flags] The name or names of the flags (e.g., 'constructive' or 'primary') to apply.
2984 * Please see the [OOjs UI documentation on MediaWiki] [2] for more information about available flags.
2985 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Elements/Flagged
2986 * @cfg {jQuery} [$flagged] The flagged element. By default,
2987 * the flagged functionality is applied to the element created by the class ($element).
2988 * If a different element is specified, the flagged functionality will be applied to it instead.
2989 */
2990 OO.ui.mixin.FlaggedElement = function OoUiMixinFlaggedElement( config ) {
2991 // Configuration initialization
2992 config = config || {};
2993
2994 // Properties
2995 this.flags = {};
2996 this.$flagged = null;
2997
2998 // Initialization
2999 this.setFlags( config.flags );
3000 this.setFlaggedElement( config.$flagged || this.$element );
3001 };
3002
3003 /* Events */
3004
3005 /**
3006 * @event flag
3007 * A flag event is emitted when the #clearFlags or #setFlags methods are used. The `changes`
3008 * parameter contains the name of each modified flag and indicates whether it was
3009 * added or removed.
3010 *
3011 * @param {Object.<string,boolean>} changes Object keyed by flag name. A Boolean `true` indicates
3012 * that the flag was added, `false` that the flag was removed.
3013 */
3014
3015 /* Methods */
3016
3017 /**
3018 * Set the flagged element.
3019 *
3020 * This method is used to retarget a flagged mixin so that its functionality applies to the specified element.
3021 * If an element is already set, the method will remove the mixin’s effect on that element.
3022 *
3023 * @param {jQuery} $flagged Element that should be flagged
3024 */
3025 OO.ui.mixin.FlaggedElement.prototype.setFlaggedElement = function ( $flagged ) {
3026 var classNames = Object.keys( this.flags ).map( function ( flag ) {
3027 return 'oo-ui-flaggedElement-' + flag;
3028 } ).join( ' ' );
3029
3030 if ( this.$flagged ) {
3031 this.$flagged.removeClass( classNames );
3032 }
3033
3034 this.$flagged = $flagged.addClass( classNames );
3035 };
3036
3037 /**
3038 * Check if the specified flag is set.
3039 *
3040 * @param {string} flag Name of flag
3041 * @return {boolean} The flag is set
3042 */
3043 OO.ui.mixin.FlaggedElement.prototype.hasFlag = function ( flag ) {
3044 // This may be called before the constructor, thus before this.flags is set
3045 return this.flags && ( flag in this.flags );
3046 };
3047
3048 /**
3049 * Get the names of all flags set.
3050 *
3051 * @return {string[]} Flag names
3052 */
3053 OO.ui.mixin.FlaggedElement.prototype.getFlags = function () {
3054 // This may be called before the constructor, thus before this.flags is set
3055 return Object.keys( this.flags || {} );
3056 };
3057
3058 /**
3059 * Clear all flags.
3060 *
3061 * @chainable
3062 * @fires flag
3063 */
3064 OO.ui.mixin.FlaggedElement.prototype.clearFlags = function () {
3065 var flag, className,
3066 changes = {},
3067 remove = [],
3068 classPrefix = 'oo-ui-flaggedElement-';
3069
3070 for ( flag in this.flags ) {
3071 className = classPrefix + flag;
3072 changes[ flag ] = false;
3073 delete this.flags[ flag ];
3074 remove.push( className );
3075 }
3076
3077 if ( this.$flagged ) {
3078 this.$flagged.removeClass( remove.join( ' ' ) );
3079 }
3080
3081 this.updateThemeClasses();
3082 this.emit( 'flag', changes );
3083
3084 return this;
3085 };
3086
3087 /**
3088 * Add one or more flags.
3089 *
3090 * @param {string|string[]|Object.<string, boolean>} flags A flag name, an array of flag names,
3091 * or an object keyed by flag name with a boolean value that indicates whether the flag should
3092 * be added (`true`) or removed (`false`).
3093 * @chainable
3094 * @fires flag
3095 */
3096 OO.ui.mixin.FlaggedElement.prototype.setFlags = function ( flags ) {
3097 var i, len, flag, className,
3098 changes = {},
3099 add = [],
3100 remove = [],
3101 classPrefix = 'oo-ui-flaggedElement-';
3102
3103 if ( typeof flags === 'string' ) {
3104 className = classPrefix + flags;
3105 // Set
3106 if ( !this.flags[ flags ] ) {
3107 this.flags[ flags ] = true;
3108 add.push( className );
3109 }
3110 } else if ( Array.isArray( flags ) ) {
3111 for ( i = 0, len = flags.length; i < len; i++ ) {
3112 flag = flags[ i ];
3113 className = classPrefix + flag;
3114 // Set
3115 if ( !this.flags[ flag ] ) {
3116 changes[ flag ] = true;
3117 this.flags[ flag ] = true;
3118 add.push( className );
3119 }
3120 }
3121 } else if ( OO.isPlainObject( flags ) ) {
3122 for ( flag in flags ) {
3123 className = classPrefix + flag;
3124 if ( flags[ flag ] ) {
3125 // Set
3126 if ( !this.flags[ flag ] ) {
3127 changes[ flag ] = true;
3128 this.flags[ flag ] = true;
3129 add.push( className );
3130 }
3131 } else {
3132 // Remove
3133 if ( this.flags[ flag ] ) {
3134 changes[ flag ] = false;
3135 delete this.flags[ flag ];
3136 remove.push( className );
3137 }
3138 }
3139 }
3140 }
3141
3142 if ( this.$flagged ) {
3143 this.$flagged
3144 .addClass( add.join( ' ' ) )
3145 .removeClass( remove.join( ' ' ) );
3146 }
3147
3148 this.updateThemeClasses();
3149 this.emit( 'flag', changes );
3150
3151 return this;
3152 };
3153
3154 /**
3155 * TitledElement is mixed into other classes to provide a `title` attribute.
3156 * Titles are rendered by the browser and are made visible when the user moves
3157 * the mouse over the element. Titles are not visible on touch devices.
3158 *
3159 * @example
3160 * // TitledElement provides a 'title' attribute to the
3161 * // ButtonWidget class
3162 * var button = new OO.ui.ButtonWidget( {
3163 * label: 'Button with Title',
3164 * title: 'I am a button'
3165 * } );
3166 * $( 'body' ).append( button.$element );
3167 *
3168 * @abstract
3169 * @class
3170 *
3171 * @constructor
3172 * @param {Object} [config] Configuration options
3173 * @cfg {jQuery} [$titled] The element to which the `title` attribute is applied.
3174 * If this config is omitted, the title functionality is applied to $element, the
3175 * element created by the class.
3176 * @cfg {string|Function} [title] The title text or a function that returns text. If
3177 * this config is omitted, the value of the {@link #static-title static title} property is used.
3178 */
3179 OO.ui.mixin.TitledElement = function OoUiMixinTitledElement( config ) {
3180 // Configuration initialization
3181 config = config || {};
3182
3183 // Properties
3184 this.$titled = null;
3185 this.title = null;
3186
3187 // Initialization
3188 this.setTitle( config.title !== undefined ? config.title : this.constructor.static.title );
3189 this.setTitledElement( config.$titled || this.$element );
3190 };
3191
3192 /* Setup */
3193
3194 OO.initClass( OO.ui.mixin.TitledElement );
3195
3196 /* Static Properties */
3197
3198 /**
3199 * The title text, a function that returns text, or `null` for no title. The value of the static property
3200 * is overridden if the #title config option is used.
3201 *
3202 * @static
3203 * @inheritable
3204 * @property {string|Function|null}
3205 */
3206 OO.ui.mixin.TitledElement.static.title = null;
3207
3208 /* Methods */
3209
3210 /**
3211 * Set the titled element.
3212 *
3213 * This method is used to retarget a titledElement mixin so that its functionality applies to the specified element.
3214 * If an element is already set, the mixin’s effect on that element is removed before the new element is set up.
3215 *
3216 * @param {jQuery} $titled Element that should use the 'titled' functionality
3217 */
3218 OO.ui.mixin.TitledElement.prototype.setTitledElement = function ( $titled ) {
3219 if ( this.$titled ) {
3220 this.$titled.removeAttr( 'title' );
3221 }
3222
3223 this.$titled = $titled;
3224 if ( this.title ) {
3225 this.$titled.attr( 'title', this.title );
3226 }
3227 };
3228
3229 /**
3230 * Set title.
3231 *
3232 * @param {string|Function|null} title Title text, a function that returns text, or `null` for no title
3233 * @chainable
3234 */
3235 OO.ui.mixin.TitledElement.prototype.setTitle = function ( title ) {
3236 title = typeof title === 'function' ? OO.ui.resolveMsg( title ) : title;
3237 title = ( typeof title === 'string' && title.length ) ? title : null;
3238
3239 if ( this.title !== title ) {
3240 if ( this.$titled ) {
3241 if ( title !== null ) {
3242 this.$titled.attr( 'title', title );
3243 } else {
3244 this.$titled.removeAttr( 'title' );
3245 }
3246 }
3247 this.title = title;
3248 }
3249
3250 return this;
3251 };
3252
3253 /**
3254 * Get title.
3255 *
3256 * @return {string} Title string
3257 */
3258 OO.ui.mixin.TitledElement.prototype.getTitle = function () {
3259 return this.title;
3260 };
3261
3262 /**
3263 * AccessKeyedElement is mixed into other classes to provide an `accesskey` attribute.
3264 * Accesskeys allow an user to go to a specific element by using
3265 * a shortcut combination of a browser specific keys + the key
3266 * set to the field.
3267 *
3268 * @example
3269 * // AccessKeyedElement provides an 'accesskey' attribute to the
3270 * // ButtonWidget class
3271 * var button = new OO.ui.ButtonWidget( {
3272 * label: 'Button with Accesskey',
3273 * accessKey: 'k'
3274 * } );
3275 * $( 'body' ).append( button.$element );
3276 *
3277 * @abstract
3278 * @class
3279 *
3280 * @constructor
3281 * @param {Object} [config] Configuration options
3282 * @cfg {jQuery} [$accessKeyed] The element to which the `accesskey` attribute is applied.
3283 * If this config is omitted, the accesskey functionality is applied to $element, the
3284 * element created by the class.
3285 * @cfg {string|Function} [accessKey] The key or a function that returns the key. If
3286 * this config is omitted, no accesskey will be added.
3287 */
3288 OO.ui.mixin.AccessKeyedElement = function OoUiMixinAccessKeyedElement( config ) {
3289 // Configuration initialization
3290 config = config || {};
3291
3292 // Properties
3293 this.$accessKeyed = null;
3294 this.accessKey = null;
3295
3296 // Initialization
3297 this.setAccessKey( config.accessKey || null );
3298 this.setAccessKeyedElement( config.$accessKeyed || this.$element );
3299 };
3300
3301 /* Setup */
3302
3303 OO.initClass( OO.ui.mixin.AccessKeyedElement );
3304
3305 /* Static Properties */
3306
3307 /**
3308 * The access key, a function that returns a key, or `null` for no accesskey.
3309 *
3310 * @static
3311 * @inheritable
3312 * @property {string|Function|null}
3313 */
3314 OO.ui.mixin.AccessKeyedElement.static.accessKey = null;
3315
3316 /* Methods */
3317
3318 /**
3319 * Set the accesskeyed element.
3320 *
3321 * This method is used to retarget a AccessKeyedElement mixin so that its functionality applies to the specified element.
3322 * If an element is already set, the mixin's effect on that element is removed before the new element is set up.
3323 *
3324 * @param {jQuery} $accessKeyed Element that should use the 'accesskeyes' functionality
3325 */
3326 OO.ui.mixin.AccessKeyedElement.prototype.setAccessKeyedElement = function ( $accessKeyed ) {
3327 if ( this.$accessKeyed ) {
3328 this.$accessKeyed.removeAttr( 'accesskey' );
3329 }
3330
3331 this.$accessKeyed = $accessKeyed;
3332 if ( this.accessKey ) {
3333 this.$accessKeyed.attr( 'accesskey', this.accessKey );
3334 }
3335 };
3336
3337 /**
3338 * Set accesskey.
3339 *
3340 * @param {string|Function|null} accessKey Key, a function that returns a key, or `null` for no accesskey
3341 * @chainable
3342 */
3343 OO.ui.mixin.AccessKeyedElement.prototype.setAccessKey = function ( accessKey ) {
3344 accessKey = typeof accessKey === 'string' ? OO.ui.resolveMsg( accessKey ) : null;
3345
3346 if ( this.accessKey !== accessKey ) {
3347 if ( this.$accessKeyed ) {
3348 if ( accessKey !== null ) {
3349 this.$accessKeyed.attr( 'accesskey', accessKey );
3350 } else {
3351 this.$accessKeyed.removeAttr( 'accesskey' );
3352 }
3353 }
3354 this.accessKey = accessKey;
3355 }
3356
3357 return this;
3358 };
3359
3360 /**
3361 * Get accesskey.
3362 *
3363 * @return {string} accessKey string
3364 */
3365 OO.ui.mixin.AccessKeyedElement.prototype.getAccessKey = function () {
3366 return this.accessKey;
3367 };
3368
3369 /**
3370 * ButtonWidget is a generic widget for buttons. A wide variety of looks,
3371 * feels, and functionality can be customized via the class’s configuration options
3372 * and methods. Please see the [OOjs UI documentation on MediaWiki] [1] for more information
3373 * and examples.
3374 *
3375 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Buttons_and_Switches
3376 *
3377 * @example
3378 * // A button widget
3379 * var button = new OO.ui.ButtonWidget( {
3380 * label: 'Button with Icon',
3381 * icon: 'remove',
3382 * iconTitle: 'Remove'
3383 * } );
3384 * $( 'body' ).append( button.$element );
3385 *
3386 * NOTE: HTML form buttons should use the OO.ui.ButtonInputWidget class.
3387 *
3388 * @class
3389 * @extends OO.ui.Widget
3390 * @mixins OO.ui.mixin.ButtonElement
3391 * @mixins OO.ui.mixin.IconElement
3392 * @mixins OO.ui.mixin.IndicatorElement
3393 * @mixins OO.ui.mixin.LabelElement
3394 * @mixins OO.ui.mixin.TitledElement
3395 * @mixins OO.ui.mixin.FlaggedElement
3396 * @mixins OO.ui.mixin.TabIndexedElement
3397 * @mixins OO.ui.mixin.AccessKeyedElement
3398 *
3399 * @constructor
3400 * @param {Object} [config] Configuration options
3401 * @cfg {boolean} [active=false] Whether button should be shown as active
3402 * @cfg {string} [href] Hyperlink to visit when the button is clicked.
3403 * @cfg {string} [target] The frame or window in which to open the hyperlink.
3404 * @cfg {boolean} [noFollow] Search engine traversal hint (default: true)
3405 */
3406 OO.ui.ButtonWidget = function OoUiButtonWidget( config ) {
3407 // Configuration initialization
3408 config = config || {};
3409
3410 // Parent constructor
3411 OO.ui.ButtonWidget.parent.call( this, config );
3412
3413 // Mixin constructors
3414 OO.ui.mixin.ButtonElement.call( this, config );
3415 OO.ui.mixin.IconElement.call( this, config );
3416 OO.ui.mixin.IndicatorElement.call( this, config );
3417 OO.ui.mixin.LabelElement.call( this, config );
3418 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
3419 OO.ui.mixin.FlaggedElement.call( this, config );
3420 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$button } ) );
3421 OO.ui.mixin.AccessKeyedElement.call( this, $.extend( {}, config, { $accessKeyed: this.$button } ) );
3422
3423 // Properties
3424 this.href = null;
3425 this.target = null;
3426 this.noFollow = false;
3427
3428 // Events
3429 this.connect( this, { disable: 'onDisable' } );
3430
3431 // Initialization
3432 this.$button.append( this.$icon, this.$label, this.$indicator );
3433 this.$element
3434 .addClass( 'oo-ui-buttonWidget' )
3435 .append( this.$button );
3436 this.setActive( config.active );
3437 this.setHref( config.href );
3438 this.setTarget( config.target );
3439 this.setNoFollow( config.noFollow );
3440 };
3441
3442 /* Setup */
3443
3444 OO.inheritClass( OO.ui.ButtonWidget, OO.ui.Widget );
3445 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.ButtonElement );
3446 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.IconElement );
3447 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.IndicatorElement );
3448 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.LabelElement );
3449 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.TitledElement );
3450 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.FlaggedElement );
3451 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.TabIndexedElement );
3452 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.mixin.AccessKeyedElement );
3453
3454 /* Static Properties */
3455
3456 /**
3457 * @static
3458 * @inheritdoc
3459 */
3460 OO.ui.ButtonWidget.static.cancelButtonMouseDownEvents = false;
3461
3462 /**
3463 * @static
3464 * @inheritdoc
3465 */
3466 OO.ui.ButtonWidget.static.tagName = 'span';
3467
3468 /* Methods */
3469
3470 /**
3471 * Get hyperlink location.
3472 *
3473 * @return {string} Hyperlink location
3474 */
3475 OO.ui.ButtonWidget.prototype.getHref = function () {
3476 return this.href;
3477 };
3478
3479 /**
3480 * Get hyperlink target.
3481 *
3482 * @return {string} Hyperlink target
3483 */
3484 OO.ui.ButtonWidget.prototype.getTarget = function () {
3485 return this.target;
3486 };
3487
3488 /**
3489 * Get search engine traversal hint.
3490 *
3491 * @return {boolean} Whether search engines should avoid traversing this hyperlink
3492 */
3493 OO.ui.ButtonWidget.prototype.getNoFollow = function () {
3494 return this.noFollow;
3495 };
3496
3497 /**
3498 * Set hyperlink location.
3499 *
3500 * @param {string|null} href Hyperlink location, null to remove
3501 */
3502 OO.ui.ButtonWidget.prototype.setHref = function ( href ) {
3503 href = typeof href === 'string' ? href : null;
3504 if ( href !== null && !OO.ui.isSafeUrl( href ) ) {
3505 href = './' + href;
3506 }
3507
3508 if ( href !== this.href ) {
3509 this.href = href;
3510 this.updateHref();
3511 }
3512
3513 return this;
3514 };
3515
3516 /**
3517 * Update the `href` attribute, in case of changes to href or
3518 * disabled state.
3519 *
3520 * @private
3521 * @chainable
3522 */
3523 OO.ui.ButtonWidget.prototype.updateHref = function () {
3524 if ( this.href !== null && !this.isDisabled() ) {
3525 this.$button.attr( 'href', this.href );
3526 } else {
3527 this.$button.removeAttr( 'href' );
3528 }
3529
3530 return this;
3531 };
3532
3533 /**
3534 * Handle disable events.
3535 *
3536 * @private
3537 * @param {boolean} disabled Element is disabled
3538 */
3539 OO.ui.ButtonWidget.prototype.onDisable = function () {
3540 this.updateHref();
3541 };
3542
3543 /**
3544 * Set hyperlink target.
3545 *
3546 * @param {string|null} target Hyperlink target, null to remove
3547 */
3548 OO.ui.ButtonWidget.prototype.setTarget = function ( target ) {
3549 target = typeof target === 'string' ? target : null;
3550
3551 if ( target !== this.target ) {
3552 this.target = target;
3553 if ( target !== null ) {
3554 this.$button.attr( 'target', target );
3555 } else {
3556 this.$button.removeAttr( 'target' );
3557 }
3558 }
3559
3560 return this;
3561 };
3562
3563 /**
3564 * Set search engine traversal hint.
3565 *
3566 * @param {boolean} noFollow True if search engines should avoid traversing this hyperlink
3567 */
3568 OO.ui.ButtonWidget.prototype.setNoFollow = function ( noFollow ) {
3569 noFollow = typeof noFollow === 'boolean' ? noFollow : true;
3570
3571 if ( noFollow !== this.noFollow ) {
3572 this.noFollow = noFollow;
3573 if ( noFollow ) {
3574 this.$button.attr( 'rel', 'nofollow' );
3575 } else {
3576 this.$button.removeAttr( 'rel' );
3577 }
3578 }
3579
3580 return this;
3581 };
3582
3583 // Override method visibility hints from ButtonElement
3584 /**
3585 * @method setActive
3586 * @inheritdoc
3587 */
3588 /**
3589 * @method isActive
3590 * @inheritdoc
3591 */
3592
3593 /**
3594 * A ButtonGroupWidget groups related buttons and is used together with OO.ui.ButtonWidget and
3595 * its subclasses. Each button in a group is addressed by a unique reference. Buttons can be added,
3596 * removed, and cleared from the group.
3597 *
3598 * @example
3599 * // Example: A ButtonGroupWidget with two buttons
3600 * var button1 = new OO.ui.PopupButtonWidget( {
3601 * label: 'Select a category',
3602 * icon: 'menu',
3603 * popup: {
3604 * $content: $( '<p>List of categories...</p>' ),
3605 * padded: true,
3606 * align: 'left'
3607 * }
3608 * } );
3609 * var button2 = new OO.ui.ButtonWidget( {
3610 * label: 'Add item'
3611 * });
3612 * var buttonGroup = new OO.ui.ButtonGroupWidget( {
3613 * items: [button1, button2]
3614 * } );
3615 * $( 'body' ).append( buttonGroup.$element );
3616 *
3617 * @class
3618 * @extends OO.ui.Widget
3619 * @mixins OO.ui.mixin.GroupElement
3620 *
3621 * @constructor
3622 * @param {Object} [config] Configuration options
3623 * @cfg {OO.ui.ButtonWidget[]} [items] Buttons to add
3624 */
3625 OO.ui.ButtonGroupWidget = function OoUiButtonGroupWidget( config ) {
3626 // Configuration initialization
3627 config = config || {};
3628
3629 // Parent constructor
3630 OO.ui.ButtonGroupWidget.parent.call( this, config );
3631
3632 // Mixin constructors
3633 OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
3634
3635 // Initialization
3636 this.$element.addClass( 'oo-ui-buttonGroupWidget' );
3637 if ( Array.isArray( config.items ) ) {
3638 this.addItems( config.items );
3639 }
3640 };
3641
3642 /* Setup */
3643
3644 OO.inheritClass( OO.ui.ButtonGroupWidget, OO.ui.Widget );
3645 OO.mixinClass( OO.ui.ButtonGroupWidget, OO.ui.mixin.GroupElement );
3646
3647 /* Static Properties */
3648
3649 /**
3650 * @static
3651 * @inheritdoc
3652 */
3653 OO.ui.ButtonGroupWidget.static.tagName = 'span';
3654
3655 /**
3656 * IconWidget is a generic widget for {@link OO.ui.mixin.IconElement icons}. In general, IconWidgets should be used with OO.ui.LabelWidget,
3657 * which creates a label that identifies the icon’s function. See the [OOjs UI documentation on MediaWiki] [1]
3658 * for a list of icons included in the library.
3659 *
3660 * @example
3661 * // An icon widget with a label
3662 * var myIcon = new OO.ui.IconWidget( {
3663 * icon: 'help',
3664 * iconTitle: 'Help'
3665 * } );
3666 * // Create a label.
3667 * var iconLabel = new OO.ui.LabelWidget( {
3668 * label: 'Help'
3669 * } );
3670 * $( 'body' ).append( myIcon.$element, iconLabel.$element );
3671 *
3672 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Icons
3673 *
3674 * @class
3675 * @extends OO.ui.Widget
3676 * @mixins OO.ui.mixin.IconElement
3677 * @mixins OO.ui.mixin.TitledElement
3678 * @mixins OO.ui.mixin.FlaggedElement
3679 *
3680 * @constructor
3681 * @param {Object} [config] Configuration options
3682 */
3683 OO.ui.IconWidget = function OoUiIconWidget( config ) {
3684 // Configuration initialization
3685 config = config || {};
3686
3687 // Parent constructor
3688 OO.ui.IconWidget.parent.call( this, config );
3689
3690 // Mixin constructors
3691 OO.ui.mixin.IconElement.call( this, $.extend( {}, config, { $icon: this.$element } ) );
3692 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$element } ) );
3693 OO.ui.mixin.FlaggedElement.call( this, $.extend( {}, config, { $flagged: this.$element } ) );
3694
3695 // Initialization
3696 this.$element.addClass( 'oo-ui-iconWidget' );
3697 };
3698
3699 /* Setup */
3700
3701 OO.inheritClass( OO.ui.IconWidget, OO.ui.Widget );
3702 OO.mixinClass( OO.ui.IconWidget, OO.ui.mixin.IconElement );
3703 OO.mixinClass( OO.ui.IconWidget, OO.ui.mixin.TitledElement );
3704 OO.mixinClass( OO.ui.IconWidget, OO.ui.mixin.FlaggedElement );
3705
3706 /* Static Properties */
3707
3708 /**
3709 * @static
3710 * @inheritdoc
3711 */
3712 OO.ui.IconWidget.static.tagName = 'span';
3713
3714 /**
3715 * IndicatorWidgets create indicators, which are small graphics that are generally used to draw
3716 * attention to the status of an item or to clarify the function of a control. For a list of
3717 * indicators included in the library, please see the [OOjs UI documentation on MediaWiki][1].
3718 *
3719 * @example
3720 * // Example of an indicator widget
3721 * var indicator1 = new OO.ui.IndicatorWidget( {
3722 * indicator: 'alert'
3723 * } );
3724 *
3725 * // Create a fieldset layout to add a label
3726 * var fieldset = new OO.ui.FieldsetLayout();
3727 * fieldset.addItems( [
3728 * new OO.ui.FieldLayout( indicator1, { label: 'An alert indicator:' } )
3729 * ] );
3730 * $( 'body' ).append( fieldset.$element );
3731 *
3732 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Icons,_Indicators,_and_Labels#Indicators
3733 *
3734 * @class
3735 * @extends OO.ui.Widget
3736 * @mixins OO.ui.mixin.IndicatorElement
3737 * @mixins OO.ui.mixin.TitledElement
3738 *
3739 * @constructor
3740 * @param {Object} [config] Configuration options
3741 */
3742 OO.ui.IndicatorWidget = function OoUiIndicatorWidget( config ) {
3743 // Configuration initialization
3744 config = config || {};
3745
3746 // Parent constructor
3747 OO.ui.IndicatorWidget.parent.call( this, config );
3748
3749 // Mixin constructors
3750 OO.ui.mixin.IndicatorElement.call( this, $.extend( {}, config, { $indicator: this.$element } ) );
3751 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$element } ) );
3752
3753 // Initialization
3754 this.$element.addClass( 'oo-ui-indicatorWidget' );
3755 };
3756
3757 /* Setup */
3758
3759 OO.inheritClass( OO.ui.IndicatorWidget, OO.ui.Widget );
3760 OO.mixinClass( OO.ui.IndicatorWidget, OO.ui.mixin.IndicatorElement );
3761 OO.mixinClass( OO.ui.IndicatorWidget, OO.ui.mixin.TitledElement );
3762
3763 /* Static Properties */
3764
3765 /**
3766 * @static
3767 * @inheritdoc
3768 */
3769 OO.ui.IndicatorWidget.static.tagName = 'span';
3770
3771 /**
3772 * LabelWidgets help identify the function of interface elements. Each LabelWidget can
3773 * be configured with a `label` option that is set to a string, a label node, or a function:
3774 *
3775 * - String: a plaintext string
3776 * - jQuery selection: a jQuery selection, used for anything other than a plaintext label, e.g., a
3777 * label that includes a link or special styling, such as a gray color or additional graphical elements.
3778 * - Function: a function that will produce a string in the future. Functions are used
3779 * in cases where the value of the label is not currently defined.
3780 *
3781 * In addition, the LabelWidget can be associated with an {@link OO.ui.InputWidget input widget}, which
3782 * will come into focus when the label is clicked.
3783 *
3784 * @example
3785 * // Examples of LabelWidgets
3786 * var label1 = new OO.ui.LabelWidget( {
3787 * label: 'plaintext label'
3788 * } );
3789 * var label2 = new OO.ui.LabelWidget( {
3790 * label: $( '<a href="default.html">jQuery label</a>' )
3791 * } );
3792 * // Create a fieldset layout with fields for each example
3793 * var fieldset = new OO.ui.FieldsetLayout();
3794 * fieldset.addItems( [
3795 * new OO.ui.FieldLayout( label1 ),
3796 * new OO.ui.FieldLayout( label2 )
3797 * ] );
3798 * $( 'body' ).append( fieldset.$element );
3799 *
3800 * @class
3801 * @extends OO.ui.Widget
3802 * @mixins OO.ui.mixin.LabelElement
3803 * @mixins OO.ui.mixin.TitledElement
3804 *
3805 * @constructor
3806 * @param {Object} [config] Configuration options
3807 * @cfg {OO.ui.InputWidget} [input] {@link OO.ui.InputWidget Input widget} that uses the label.
3808 * Clicking the label will focus the specified input field.
3809 */
3810 OO.ui.LabelWidget = function OoUiLabelWidget( config ) {
3811 // Configuration initialization
3812 config = config || {};
3813
3814 // Parent constructor
3815 OO.ui.LabelWidget.parent.call( this, config );
3816
3817 // Mixin constructors
3818 OO.ui.mixin.LabelElement.call( this, $.extend( {}, config, { $label: this.$element } ) );
3819 OO.ui.mixin.TitledElement.call( this, config );
3820
3821 // Properties
3822 this.input = config.input;
3823
3824 // Initialization
3825 if ( this.input instanceof OO.ui.InputWidget ) {
3826 if ( this.input.getInputId() ) {
3827 this.$element.attr( 'for', this.input.getInputId() );
3828 } else {
3829 this.$label.on( 'click', function () {
3830 this.fieldWidget.focus();
3831 return false;
3832 }.bind( this ) );
3833 }
3834 }
3835 this.$element.addClass( 'oo-ui-labelWidget' );
3836 };
3837
3838 /* Setup */
3839
3840 OO.inheritClass( OO.ui.LabelWidget, OO.ui.Widget );
3841 OO.mixinClass( OO.ui.LabelWidget, OO.ui.mixin.LabelElement );
3842 OO.mixinClass( OO.ui.LabelWidget, OO.ui.mixin.TitledElement );
3843
3844 /* Static Properties */
3845
3846 /**
3847 * @static
3848 * @inheritdoc
3849 */
3850 OO.ui.LabelWidget.static.tagName = 'label';
3851
3852 /**
3853 * PendingElement is a mixin that is used to create elements that notify users that something is happening
3854 * and that they should wait before proceeding. The pending state is visually represented with a pending
3855 * texture that appears in the head of a pending {@link OO.ui.ProcessDialog process dialog} or in the input
3856 * field of a {@link OO.ui.TextInputWidget text input widget}.
3857 *
3858 * Currently, {@link OO.ui.ActionWidget Action widgets}, which mix in this class, can also be marked as pending, but only when
3859 * used in {@link OO.ui.MessageDialog message dialogs}. The behavior is not currently supported for action widgets used
3860 * in process dialogs.
3861 *
3862 * @example
3863 * function MessageDialog( config ) {
3864 * MessageDialog.parent.call( this, config );
3865 * }
3866 * OO.inheritClass( MessageDialog, OO.ui.MessageDialog );
3867 *
3868 * MessageDialog.static.name = 'myMessageDialog';
3869 * MessageDialog.static.actions = [
3870 * { action: 'save', label: 'Done', flags: 'primary' },
3871 * { label: 'Cancel', flags: 'safe' }
3872 * ];
3873 *
3874 * MessageDialog.prototype.initialize = function () {
3875 * MessageDialog.parent.prototype.initialize.apply( this, arguments );
3876 * this.content = new OO.ui.PanelLayout( { $: this.$, padded: true } );
3877 * this.content.$element.append( '<p>Click the \'Done\' action widget to see its pending state. Note that action widgets can be marked pending in message dialogs but not process dialogs.</p>' );
3878 * this.$body.append( this.content.$element );
3879 * };
3880 * MessageDialog.prototype.getBodyHeight = function () {
3881 * return 100;
3882 * }
3883 * MessageDialog.prototype.getActionProcess = function ( action ) {
3884 * var dialog = this;
3885 * if ( action === 'save' ) {
3886 * dialog.getActions().get({actions: 'save'})[0].pushPending();
3887 * return new OO.ui.Process()
3888 * .next( 1000 )
3889 * .next( function () {
3890 * dialog.getActions().get({actions: 'save'})[0].popPending();
3891 * } );
3892 * }
3893 * return MessageDialog.parent.prototype.getActionProcess.call( this, action );
3894 * };
3895 *
3896 * var windowManager = new OO.ui.WindowManager();
3897 * $( 'body' ).append( windowManager.$element );
3898 *
3899 * var dialog = new MessageDialog();
3900 * windowManager.addWindows( [ dialog ] );
3901 * windowManager.openWindow( dialog );
3902 *
3903 * @abstract
3904 * @class
3905 *
3906 * @constructor
3907 * @param {Object} [config] Configuration options
3908 * @cfg {jQuery} [$pending] Element to mark as pending, defaults to this.$element
3909 */
3910 OO.ui.mixin.PendingElement = function OoUiMixinPendingElement( config ) {
3911 // Configuration initialization
3912 config = config || {};
3913
3914 // Properties
3915 this.pending = 0;
3916 this.$pending = null;
3917
3918 // Initialisation
3919 this.setPendingElement( config.$pending || this.$element );
3920 };
3921
3922 /* Setup */
3923
3924 OO.initClass( OO.ui.mixin.PendingElement );
3925
3926 /* Methods */
3927
3928 /**
3929 * Set the pending element (and clean up any existing one).
3930 *
3931 * @param {jQuery} $pending The element to set to pending.
3932 */
3933 OO.ui.mixin.PendingElement.prototype.setPendingElement = function ( $pending ) {
3934 if ( this.$pending ) {
3935 this.$pending.removeClass( 'oo-ui-pendingElement-pending' );
3936 }
3937
3938 this.$pending = $pending;
3939 if ( this.pending > 0 ) {
3940 this.$pending.addClass( 'oo-ui-pendingElement-pending' );
3941 }
3942 };
3943
3944 /**
3945 * Check if an element is pending.
3946 *
3947 * @return {boolean} Element is pending
3948 */
3949 OO.ui.mixin.PendingElement.prototype.isPending = function () {
3950 return !!this.pending;
3951 };
3952
3953 /**
3954 * Increase the pending counter. The pending state will remain active until the counter is zero
3955 * (i.e., the number of calls to #pushPending and #popPending is the same).
3956 *
3957 * @chainable
3958 */
3959 OO.ui.mixin.PendingElement.prototype.pushPending = function () {
3960 if ( this.pending === 0 ) {
3961 this.$pending.addClass( 'oo-ui-pendingElement-pending' );
3962 this.updateThemeClasses();
3963 }
3964 this.pending++;
3965
3966 return this;
3967 };
3968
3969 /**
3970 * Decrease the pending counter. The pending state will remain active until the counter is zero
3971 * (i.e., the number of calls to #pushPending and #popPending is the same).
3972 *
3973 * @chainable
3974 */
3975 OO.ui.mixin.PendingElement.prototype.popPending = function () {
3976 if ( this.pending === 1 ) {
3977 this.$pending.removeClass( 'oo-ui-pendingElement-pending' );
3978 this.updateThemeClasses();
3979 }
3980 this.pending = Math.max( 0, this.pending - 1 );
3981
3982 return this;
3983 };
3984
3985 /**
3986 * Element that will stick adjacent to a specified container, even when it is inserted elsewhere
3987 * in the document (for example, in an OO.ui.Window's $overlay).
3988 *
3989 * The elements's position is automatically calculated and maintained when window is resized or the
3990 * page is scrolled. If you reposition the container manually, you have to call #position to make
3991 * sure the element is still placed correctly.
3992 *
3993 * As positioning is only possible when both the element and the container are attached to the DOM
3994 * and visible, it's only done after you call #togglePositioning. You might want to do this inside
3995 * the #toggle method to display a floating popup, for example.
3996 *
3997 * @abstract
3998 * @class
3999 *
4000 * @constructor
4001 * @param {Object} [config] Configuration options
4002 * @cfg {jQuery} [$floatable] Node to position, assigned to #$floatable, omit to use #$element
4003 * @cfg {jQuery} [$floatableContainer] Node to position adjacent to
4004 * @cfg {string} [verticalPosition='below'] Where to position $floatable vertically:
4005 * 'below': Directly below $floatableContainer, aligning f's top edge with fC's bottom edge
4006 * 'above': Directly above $floatableContainer, aligning f's bottom edge with fC's top edge
4007 * 'top': Align the top edge with $floatableContainer's top edge
4008 * 'bottom': Align the bottom edge with $floatableContainer's bottom edge
4009 * 'center': Vertically align the center with $floatableContainer's center
4010 * @cfg {string} [horizontalPosition='start'] Where to position $floatable horizontally:
4011 * 'before': Directly before $floatableContainer, aligning f's end edge with fC's start edge
4012 * 'after': Directly after $floatableContainer, algining f's start edge with fC's end edge
4013 * 'start': Align the start (left in LTR, right in RTL) edge with $floatableContainer's start edge
4014 * 'end': Align the end (right in LTR, left in RTL) edge with $floatableContainer's end edge
4015 * 'center': Horizontally align the center with $floatableContainer's center
4016 * @cfg {boolean} [hideWhenOutOfView=true] Whether to hide the floatable element if the container
4017 * is out of view
4018 */
4019 OO.ui.mixin.FloatableElement = function OoUiMixinFloatableElement( config ) {
4020 // Configuration initialization
4021 config = config || {};
4022
4023 // Properties
4024 this.$floatable = null;
4025 this.$floatableContainer = null;
4026 this.$floatableWindow = null;
4027 this.$floatableClosestScrollable = null;
4028 this.onFloatableScrollHandler = this.position.bind( this );
4029 this.onFloatableWindowResizeHandler = this.position.bind( this );
4030
4031 // Initialization
4032 this.setFloatableContainer( config.$floatableContainer );
4033 this.setFloatableElement( config.$floatable || this.$element );
4034 this.setVerticalPosition( config.verticalPosition || 'below' );
4035 this.setHorizontalPosition( config.horizontalPosition || 'start' );
4036 this.hideWhenOutOfView = config.hideWhenOutOfView === undefined ? true : !!config.hideWhenOutOfView;
4037 };
4038
4039 /* Methods */
4040
4041 /**
4042 * Set floatable element.
4043 *
4044 * If an element is already set, it will be cleaned up before setting up the new element.
4045 *
4046 * @param {jQuery} $floatable Element to make floatable
4047 */
4048 OO.ui.mixin.FloatableElement.prototype.setFloatableElement = function ( $floatable ) {
4049 if ( this.$floatable ) {
4050 this.$floatable.removeClass( 'oo-ui-floatableElement-floatable' );
4051 this.$floatable.css( { left: '', top: '' } );
4052 }
4053
4054 this.$floatable = $floatable.addClass( 'oo-ui-floatableElement-floatable' );
4055 this.position();
4056 };
4057
4058 /**
4059 * Set floatable container.
4060 *
4061 * The element will be positioned relative to the specified container.
4062 *
4063 * @param {jQuery|null} $floatableContainer Container to keep visible, or null to unset
4064 */
4065 OO.ui.mixin.FloatableElement.prototype.setFloatableContainer = function ( $floatableContainer ) {
4066 this.$floatableContainer = $floatableContainer;
4067 if ( this.$floatable ) {
4068 this.position();
4069 }
4070 };
4071
4072 /**
4073 * Change how the element is positioned vertically.
4074 *
4075 * @param {string} position 'below', 'above', 'top', 'bottom' or 'center'
4076 */
4077 OO.ui.mixin.FloatableElement.prototype.setVerticalPosition = function ( position ) {
4078 if ( [ 'below', 'above', 'top', 'bottom', 'center' ].indexOf( position ) === -1 ) {
4079 throw new Error( 'Invalid value for vertical position: ' + position );
4080 }
4081 if ( this.verticalPosition !== position ) {
4082 this.verticalPosition = position;
4083 if ( this.$floatable ) {
4084 this.position();
4085 }
4086 }
4087 };
4088
4089 /**
4090 * Change how the element is positioned horizontally.
4091 *
4092 * @param {string} position 'before', 'after', 'start', 'end' or 'center'
4093 */
4094 OO.ui.mixin.FloatableElement.prototype.setHorizontalPosition = function ( position ) {
4095 if ( [ 'before', 'after', 'start', 'end', 'center' ].indexOf( position ) === -1 ) {
4096 throw new Error( 'Invalid value for horizontal position: ' + position );
4097 }
4098 if ( this.horizontalPosition !== position ) {
4099 this.horizontalPosition = position;
4100 if ( this.$floatable ) {
4101 this.position();
4102 }
4103 }
4104 };
4105
4106 /**
4107 * Toggle positioning.
4108 *
4109 * Do not turn positioning on until after the element is attached to the DOM and visible.
4110 *
4111 * @param {boolean} [positioning] Enable positioning, omit to toggle
4112 * @chainable
4113 */
4114 OO.ui.mixin.FloatableElement.prototype.togglePositioning = function ( positioning ) {
4115 var closestScrollableOfContainer;
4116
4117 if ( !this.$floatable || !this.$floatableContainer ) {
4118 return this;
4119 }
4120
4121 positioning = positioning === undefined ? !this.positioning : !!positioning;
4122
4123 if ( positioning && !this.warnedUnattached && !this.isElementAttached() ) {
4124 OO.ui.warnDeprecation( 'FloatableElement#togglePositioning: Before calling this method, the element must be attached to the DOM.' );
4125 this.warnedUnattached = true;
4126 }
4127
4128 if ( this.positioning !== positioning ) {
4129 this.positioning = positioning;
4130
4131 this.needsCustomPosition =
4132 this.verticalPostion !== 'below' ||
4133 this.horizontalPosition !== 'start' ||
4134 !OO.ui.contains( this.$floatableContainer[ 0 ], this.$floatable[ 0 ] );
4135
4136 closestScrollableOfContainer = OO.ui.Element.static.getClosestScrollableContainer( this.$floatableContainer[ 0 ] );
4137 // If the scrollable is the root, we have to listen to scroll events
4138 // on the window because of browser inconsistencies.
4139 if ( $( closestScrollableOfContainer ).is( 'html, body' ) ) {
4140 closestScrollableOfContainer = OO.ui.Element.static.getWindow( closestScrollableOfContainer );
4141 }
4142
4143 if ( positioning ) {
4144 this.$floatableWindow = $( this.getElementWindow() );
4145 this.$floatableWindow.on( 'resize', this.onFloatableWindowResizeHandler );
4146
4147 this.$floatableClosestScrollable = $( closestScrollableOfContainer );
4148 this.$floatableClosestScrollable.on( 'scroll', this.onFloatableScrollHandler );
4149
4150 // Initial position after visible
4151 this.position();
4152 } else {
4153 if ( this.$floatableWindow ) {
4154 this.$floatableWindow.off( 'resize', this.onFloatableWindowResizeHandler );
4155 this.$floatableWindow = null;
4156 }
4157
4158 if ( this.$floatableClosestScrollable ) {
4159 this.$floatableClosestScrollable.off( 'scroll', this.onFloatableScrollHandler );
4160 this.$floatableClosestScrollable = null;
4161 }
4162
4163 this.$floatable.css( { left: '', right: '', top: '' } );
4164 }
4165 }
4166
4167 return this;
4168 };
4169
4170 /**
4171 * Check whether the bottom edge of the given element is within the viewport of the given container.
4172 *
4173 * @private
4174 * @param {jQuery} $element
4175 * @param {jQuery} $container
4176 * @return {boolean}
4177 */
4178 OO.ui.mixin.FloatableElement.prototype.isElementInViewport = function ( $element, $container ) {
4179 var elemRect, contRect, topEdgeInBounds, bottomEdgeInBounds, leftEdgeInBounds, rightEdgeInBounds,
4180 startEdgeInBounds, endEdgeInBounds,
4181 direction = $element.css( 'direction' );
4182
4183 elemRect = $element[ 0 ].getBoundingClientRect();
4184 if ( $container[ 0 ] === window ) {
4185 contRect = {
4186 top: 0,
4187 left: 0,
4188 right: document.documentElement.clientWidth,
4189 bottom: document.documentElement.clientHeight
4190 };
4191 } else {
4192 contRect = $container[ 0 ].getBoundingClientRect();
4193 }
4194
4195 topEdgeInBounds = elemRect.top >= contRect.top && elemRect.top <= contRect.bottom;
4196 bottomEdgeInBounds = elemRect.bottom >= contRect.top && elemRect.bottom <= contRect.bottom;
4197 leftEdgeInBounds = elemRect.left >= contRect.left && elemRect.left <= contRect.right;
4198 rightEdgeInBounds = elemRect.right >= contRect.left && elemRect.right <= contRect.right;
4199 if ( direction === 'rtl' ) {
4200 startEdgeInBounds = rightEdgeInBounds;
4201 endEdgeInBounds = leftEdgeInBounds;
4202 } else {
4203 startEdgeInBounds = leftEdgeInBounds;
4204 endEdgeInBounds = rightEdgeInBounds;
4205 }
4206
4207 if ( this.verticalPosition === 'below' && !bottomEdgeInBounds ) {
4208 return false;
4209 }
4210 if ( this.verticalPosition === 'above' && !topEdgeInBounds ) {
4211 return false;
4212 }
4213 if ( this.horizontalPosition === 'before' && !startEdgeInBounds ) {
4214 return false;
4215 }
4216 if ( this.horizontalPosition === 'after' && !endEdgeInBounds ) {
4217 return false;
4218 }
4219
4220 // The other positioning values are all about being inside the container,
4221 // so in those cases all we care about is that any part of the container is visible.
4222 return elemRect.top <= contRect.bottom && elemRect.bottom >= contRect.top &&
4223 elemRect.left <= contRect.right && elemRect.right >= contRect.left;
4224 };
4225
4226 /**
4227 * Position the floatable below its container.
4228 *
4229 * This should only be done when both of them are attached to the DOM and visible.
4230 *
4231 * @chainable
4232 */
4233 OO.ui.mixin.FloatableElement.prototype.position = function () {
4234 if ( !this.positioning ) {
4235 return this;
4236 }
4237
4238 if ( !(
4239 // To continue, some things need to be true:
4240 // The element must actually be in the DOM
4241 this.isElementAttached() && (
4242 // The closest scrollable is the current window
4243 this.$floatableClosestScrollable[ 0 ] === this.getElementWindow() ||
4244 // OR is an element in the element's DOM
4245 $.contains( this.getElementDocument(), this.$floatableClosestScrollable[ 0 ] )
4246 )
4247 ) ) {
4248 // Abort early if important parts of the widget are no longer attached to the DOM
4249 return this;
4250 }
4251
4252 if ( this.hideWhenOutOfView && !this.isElementInViewport( this.$floatableContainer, this.$floatableClosestScrollable ) ) {
4253 this.$floatable.addClass( 'oo-ui-element-hidden' );
4254 return this;
4255 } else {
4256 this.$floatable.removeClass( 'oo-ui-element-hidden' );
4257 }
4258
4259 if ( !this.needsCustomPosition ) {
4260 return this;
4261 }
4262
4263 this.$floatable.css( this.computePosition() );
4264
4265 // We updated the position, so re-evaluate the clipping state.
4266 // (ClippableElement does not listen to 'scroll' events on $floatableContainer's parent, and so
4267 // will not notice the need to update itself.)
4268 // TODO: This is terrible, we shouldn't need to know about ClippableElement at all here. Why does
4269 // it not listen to the right events in the right places?
4270 if ( this.clip ) {
4271 this.clip();
4272 }
4273
4274 return this;
4275 };
4276
4277 /**
4278 * Compute how #$floatable should be positioned based on the position of #$floatableContainer
4279 * and the positioning settings. This is a helper for #position that shouldn't be called directly,
4280 * but may be overridden by subclasses if they want to change or add to the positioning logic.
4281 *
4282 * @return {Object} New position to apply with .css(). Keys are 'top', 'left', 'bottom' and 'right'.
4283 */
4284 OO.ui.mixin.FloatableElement.prototype.computePosition = function () {
4285 var isBody, scrollableX, scrollableY, containerPos,
4286 horizScrollbarHeight, vertScrollbarWidth, scrollTop, scrollLeft,
4287 newPos = { top: '', left: '', bottom: '', right: '' },
4288 direction = this.$floatableContainer.css( 'direction' ),
4289 $offsetParent = this.$floatable.offsetParent();
4290
4291 if ( $offsetParent.is( 'html' ) ) {
4292 // The innerHeight/Width and clientHeight/Width calculations don't work well on the
4293 // <html> element, but they do work on the <body>
4294 $offsetParent = $( $offsetParent[ 0 ].ownerDocument.body );
4295 }
4296 isBody = $offsetParent.is( 'body' );
4297 scrollableX = $offsetParent.css( 'overflow-x' ) === 'scroll' || $offsetParent.css( 'overflow-x' ) === 'auto';
4298 scrollableY = $offsetParent.css( 'overflow-y' ) === 'scroll' || $offsetParent.css( 'overflow-y' ) === 'auto';
4299
4300 vertScrollbarWidth = $offsetParent.innerWidth() - $offsetParent.prop( 'clientWidth' );
4301 horizScrollbarHeight = $offsetParent.innerHeight() - $offsetParent.prop( 'clientHeight' );
4302 // We don't need to compute and add scrollTop and scrollLeft if the scrollable container is the body,
4303 // or if it isn't scrollable
4304 scrollTop = scrollableY && !isBody ? $offsetParent.scrollTop() : 0;
4305 scrollLeft = scrollableX && !isBody ? OO.ui.Element.static.getScrollLeft( $offsetParent[ 0 ] ) : 0;
4306
4307 // Avoid passing the <body> to getRelativePosition(), because it won't return what we expect
4308 // if the <body> has a margin
4309 containerPos = isBody ?
4310 this.$floatableContainer.offset() :
4311 OO.ui.Element.static.getRelativePosition( this.$floatableContainer, $offsetParent );
4312 containerPos.bottom = containerPos.top + this.$floatableContainer.outerHeight();
4313 containerPos.right = containerPos.left + this.$floatableContainer.outerWidth();
4314 containerPos.start = direction === 'rtl' ? containerPos.right : containerPos.left;
4315 containerPos.end = direction === 'rtl' ? containerPos.left : containerPos.right;
4316
4317 if ( this.verticalPosition === 'below' ) {
4318 newPos.top = containerPos.bottom;
4319 } else if ( this.verticalPosition === 'above' ) {
4320 newPos.bottom = $offsetParent.outerHeight() - containerPos.top;
4321 } else if ( this.verticalPosition === 'top' ) {
4322 newPos.top = containerPos.top;
4323 } else if ( this.verticalPosition === 'bottom' ) {
4324 newPos.bottom = $offsetParent.outerHeight() - containerPos.bottom;
4325 } else if ( this.verticalPosition === 'center' ) {
4326 newPos.top = containerPos.top +
4327 ( this.$floatableContainer.height() - this.$floatable.height() ) / 2;
4328 }
4329
4330 if ( this.horizontalPosition === 'before' ) {
4331 newPos.end = containerPos.start;
4332 } else if ( this.horizontalPosition === 'after' ) {
4333 newPos.start = containerPos.end;
4334 } else if ( this.horizontalPosition === 'start' ) {
4335 newPos.start = containerPos.start;
4336 } else if ( this.horizontalPosition === 'end' ) {
4337 newPos.end = containerPos.end;
4338 } else if ( this.horizontalPosition === 'center' ) {
4339 newPos.left = containerPos.left +
4340 ( this.$floatableContainer.width() - this.$floatable.width() ) / 2;
4341 }
4342
4343 if ( newPos.start !== undefined ) {
4344 if ( direction === 'rtl' ) {
4345 newPos.right = ( isBody ? $( $offsetParent[ 0 ].ownerDocument.documentElement ) : $offsetParent ).outerWidth() - newPos.start;
4346 } else {
4347 newPos.left = newPos.start;
4348 }
4349 delete newPos.start;
4350 }
4351 if ( newPos.end !== undefined ) {
4352 if ( direction === 'rtl' ) {
4353 newPos.left = newPos.end;
4354 } else {
4355 newPos.right = ( isBody ? $( $offsetParent[ 0 ].ownerDocument.documentElement ) : $offsetParent ).outerWidth() - newPos.end;
4356 }
4357 delete newPos.end;
4358 }
4359
4360 // Account for scroll position
4361 if ( newPos.top !== '' ) {
4362 newPos.top += scrollTop;
4363 }
4364 if ( newPos.bottom !== '' ) {
4365 newPos.bottom -= scrollTop;
4366 }
4367 if ( newPos.left !== '' ) {
4368 newPos.left += scrollLeft;
4369 }
4370 if ( newPos.right !== '' ) {
4371 newPos.right -= scrollLeft;
4372 }
4373
4374 // Account for scrollbar gutter
4375 if ( newPos.bottom !== '' ) {
4376 newPos.bottom -= horizScrollbarHeight;
4377 }
4378 if ( direction === 'rtl' ) {
4379 if ( newPos.left !== '' ) {
4380 newPos.left -= vertScrollbarWidth;
4381 }
4382 } else {
4383 if ( newPos.right !== '' ) {
4384 newPos.right -= vertScrollbarWidth;
4385 }
4386 }
4387
4388 return newPos;
4389 };
4390
4391 /**
4392 * Element that can be automatically clipped to visible boundaries.
4393 *
4394 * Whenever the element's natural height changes, you have to call
4395 * {@link OO.ui.mixin.ClippableElement#clip} to make sure it's still
4396 * clipping correctly.
4397 *
4398 * The dimensions of #$clippableContainer will be compared to the boundaries of the
4399 * nearest scrollable container. If #$clippableContainer is too tall and/or too wide,
4400 * then #$clippable will be given a fixed reduced height and/or width and will be made
4401 * scrollable. By default, #$clippable and #$clippableContainer are the same element,
4402 * but you can build a static footer by setting #$clippableContainer to an element that contains
4403 * #$clippable and the footer.
4404 *
4405 * @abstract
4406 * @class
4407 *
4408 * @constructor
4409 * @param {Object} [config] Configuration options
4410 * @cfg {jQuery} [$clippable] Node to clip, assigned to #$clippable, omit to use #$element
4411 * @cfg {jQuery} [$clippableContainer] Node to keep visible, assigned to #$clippableContainer,
4412 * omit to use #$clippable
4413 */
4414 OO.ui.mixin.ClippableElement = function OoUiMixinClippableElement( config ) {
4415 // Configuration initialization
4416 config = config || {};
4417
4418 // Properties
4419 this.$clippable = null;
4420 this.$clippableContainer = null;
4421 this.clipping = false;
4422 this.clippedHorizontally = false;
4423 this.clippedVertically = false;
4424 this.$clippableScrollableContainer = null;
4425 this.$clippableScroller = null;
4426 this.$clippableWindow = null;
4427 this.idealWidth = null;
4428 this.idealHeight = null;
4429 this.onClippableScrollHandler = this.clip.bind( this );
4430 this.onClippableWindowResizeHandler = this.clip.bind( this );
4431
4432 // Initialization
4433 if ( config.$clippableContainer ) {
4434 this.setClippableContainer( config.$clippableContainer );
4435 }
4436 this.setClippableElement( config.$clippable || this.$element );
4437 };
4438
4439 /* Methods */
4440
4441 /**
4442 * Set clippable element.
4443 *
4444 * If an element is already set, it will be cleaned up before setting up the new element.
4445 *
4446 * @param {jQuery} $clippable Element to make clippable
4447 */
4448 OO.ui.mixin.ClippableElement.prototype.setClippableElement = function ( $clippable ) {
4449 if ( this.$clippable ) {
4450 this.$clippable.removeClass( 'oo-ui-clippableElement-clippable' );
4451 this.$clippable.css( { width: '', height: '', overflowX: '', overflowY: '' } );
4452 OO.ui.Element.static.reconsiderScrollbars( this.$clippable[ 0 ] );
4453 }
4454
4455 this.$clippable = $clippable.addClass( 'oo-ui-clippableElement-clippable' );
4456 this.clip();
4457 };
4458
4459 /**
4460 * Set clippable container.
4461 *
4462 * This is the container that will be measured when deciding whether to clip. When clipping,
4463 * #$clippable will be resized in order to keep the clippable container fully visible.
4464 *
4465 * If the clippable container is unset, #$clippable will be used.
4466 *
4467 * @param {jQuery|null} $clippableContainer Container to keep visible, or null to unset
4468 */
4469 OO.ui.mixin.ClippableElement.prototype.setClippableContainer = function ( $clippableContainer ) {
4470 this.$clippableContainer = $clippableContainer;
4471 if ( this.$clippable ) {
4472 this.clip();
4473 }
4474 };
4475
4476 /**
4477 * Toggle clipping.
4478 *
4479 * Do not turn clipping on until after the element is attached to the DOM and visible.
4480 *
4481 * @param {boolean} [clipping] Enable clipping, omit to toggle
4482 * @chainable
4483 */
4484 OO.ui.mixin.ClippableElement.prototype.toggleClipping = function ( clipping ) {
4485 clipping = clipping === undefined ? !this.clipping : !!clipping;
4486
4487 if ( clipping && !this.warnedUnattached && !this.isElementAttached() ) {
4488 OO.ui.warnDeprecation( 'ClippableElement#toggleClipping: Before calling this method, the element must be attached to the DOM.' );
4489 this.warnedUnattached = true;
4490 }
4491
4492 if ( this.clipping !== clipping ) {
4493 this.clipping = clipping;
4494 if ( clipping ) {
4495 this.$clippableScrollableContainer = $( this.getClosestScrollableElementContainer() );
4496 // If the clippable container is the root, we have to listen to scroll events and check
4497 // jQuery.scrollTop on the window because of browser inconsistencies
4498 this.$clippableScroller = this.$clippableScrollableContainer.is( 'html, body' ) ?
4499 $( OO.ui.Element.static.getWindow( this.$clippableScrollableContainer ) ) :
4500 this.$clippableScrollableContainer;
4501 this.$clippableScroller.on( 'scroll', this.onClippableScrollHandler );
4502 this.$clippableWindow = $( this.getElementWindow() )
4503 .on( 'resize', this.onClippableWindowResizeHandler );
4504 // Initial clip after visible
4505 this.clip();
4506 } else {
4507 this.$clippable.css( {
4508 width: '',
4509 height: '',
4510 maxWidth: '',
4511 maxHeight: '',
4512 overflowX: '',
4513 overflowY: ''
4514 } );
4515 OO.ui.Element.static.reconsiderScrollbars( this.$clippable[ 0 ] );
4516
4517 this.$clippableScrollableContainer = null;
4518 this.$clippableScroller.off( 'scroll', this.onClippableScrollHandler );
4519 this.$clippableScroller = null;
4520 this.$clippableWindow.off( 'resize', this.onClippableWindowResizeHandler );
4521 this.$clippableWindow = null;
4522 }
4523 }
4524
4525 return this;
4526 };
4527
4528 /**
4529 * Check if the element will be clipped to fit the visible area of the nearest scrollable container.
4530 *
4531 * @return {boolean} Element will be clipped to the visible area
4532 */
4533 OO.ui.mixin.ClippableElement.prototype.isClipping = function () {
4534 return this.clipping;
4535 };
4536
4537 /**
4538 * Check if the bottom or right of the element is being clipped by the nearest scrollable container.
4539 *
4540 * @return {boolean} Part of the element is being clipped
4541 */
4542 OO.ui.mixin.ClippableElement.prototype.isClipped = function () {
4543 return this.clippedHorizontally || this.clippedVertically;
4544 };
4545
4546 /**
4547 * Check if the right of the element is being clipped by the nearest scrollable container.
4548 *
4549 * @return {boolean} Part of the element is being clipped
4550 */
4551 OO.ui.mixin.ClippableElement.prototype.isClippedHorizontally = function () {
4552 return this.clippedHorizontally;
4553 };
4554
4555 /**
4556 * Check if the bottom of the element is being clipped by the nearest scrollable container.
4557 *
4558 * @return {boolean} Part of the element is being clipped
4559 */
4560 OO.ui.mixin.ClippableElement.prototype.isClippedVertically = function () {
4561 return this.clippedVertically;
4562 };
4563
4564 /**
4565 * Set the ideal size. These are the dimensions #$clippable will have when it's not being clipped.
4566 *
4567 * @param {number|string} [width] Width as a number of pixels or CSS string with unit suffix
4568 * @param {number|string} [height] Height as a number of pixels or CSS string with unit suffix
4569 */
4570 OO.ui.mixin.ClippableElement.prototype.setIdealSize = function ( width, height ) {
4571 this.idealWidth = width;
4572 this.idealHeight = height;
4573
4574 if ( !this.clipping ) {
4575 // Update dimensions
4576 this.$clippable.css( { width: width, height: height } );
4577 }
4578 // While clipping, idealWidth and idealHeight are not considered
4579 };
4580
4581 /**
4582 * Clip element to visible boundaries and allow scrolling when needed. You should call this method
4583 * when the element's natural height changes.
4584 *
4585 * Element will be clipped the bottom or right of the element is within 10px of the edge of, or
4586 * overlapped by, the visible area of the nearest scrollable container.
4587 *
4588 * Because calling clip() when the natural height changes isn't always possible, we also set
4589 * max-height when the element isn't being clipped. This means that if the element tries to grow
4590 * beyond the edge, something reasonable will happen before clip() is called.
4591 *
4592 * @chainable
4593 */
4594 OO.ui.mixin.ClippableElement.prototype.clip = function () {
4595 var $container, extraHeight, extraWidth, ccOffset,
4596 $scrollableContainer, scOffset, scHeight, scWidth,
4597 ccWidth, scrollerIsWindow, scrollTop, scrollLeft,
4598 desiredWidth, desiredHeight, allotedWidth, allotedHeight,
4599 naturalWidth, naturalHeight, clipWidth, clipHeight,
4600 buffer = 7; // Chosen by fair dice roll
4601
4602 if ( !this.clipping ) {
4603 // this.$clippableScrollableContainer and this.$clippableWindow are null, so the below will fail
4604 return this;
4605 }
4606
4607 $container = this.$clippableContainer || this.$clippable;
4608 extraHeight = $container.outerHeight() - this.$clippable.outerHeight();
4609 extraWidth = $container.outerWidth() - this.$clippable.outerWidth();
4610 ccOffset = $container.offset();
4611 if ( this.$clippableScrollableContainer.is( 'html, body' ) ) {
4612 $scrollableContainer = this.$clippableWindow;
4613 scOffset = { top: 0, left: 0 };
4614 } else {
4615 $scrollableContainer = this.$clippableScrollableContainer;
4616 scOffset = $scrollableContainer.offset();
4617 }
4618 scHeight = $scrollableContainer.innerHeight() - buffer;
4619 scWidth = $scrollableContainer.innerWidth() - buffer;
4620 ccWidth = $container.outerWidth() + buffer;
4621 scrollerIsWindow = this.$clippableScroller[ 0 ] === this.$clippableWindow[ 0 ];
4622 scrollTop = scrollerIsWindow ? this.$clippableScroller.scrollTop() : 0;
4623 scrollLeft = scrollerIsWindow ? this.$clippableScroller.scrollLeft() : 0;
4624 desiredWidth = ccOffset.left < 0 ?
4625 ccWidth + ccOffset.left :
4626 ( scOffset.left + scrollLeft + scWidth ) - ccOffset.left;
4627 desiredHeight = ( scOffset.top + scrollTop + scHeight ) - ccOffset.top;
4628 // It should never be desirable to exceed the dimensions of the browser viewport... right?
4629 desiredWidth = Math.min( desiredWidth, document.documentElement.clientWidth );
4630 desiredHeight = Math.min( desiredHeight, document.documentElement.clientHeight );
4631 allotedWidth = Math.ceil( desiredWidth - extraWidth );
4632 allotedHeight = Math.ceil( desiredHeight - extraHeight );
4633 naturalWidth = this.$clippable.prop( 'scrollWidth' );
4634 naturalHeight = this.$clippable.prop( 'scrollHeight' );
4635 clipWidth = allotedWidth < naturalWidth;
4636 clipHeight = allotedHeight < naturalHeight;
4637
4638 if ( clipWidth ) {
4639 // The order matters here. If overflow is not set first, Chrome displays bogus scrollbars. (T157672)
4640 // Forcing a reflow is a smaller workaround than calling reconsiderScrollbars() for this case.
4641 this.$clippable.css( 'overflowX', 'scroll' );
4642 void this.$clippable[ 0 ].offsetHeight; // Force reflow
4643 this.$clippable.css( {
4644 width: Math.max( 0, allotedWidth ),
4645 maxWidth: ''
4646 } );
4647 } else {
4648 this.$clippable.css( {
4649 overflowX: '',
4650 width: this.idealWidth || '',
4651 maxWidth: Math.max( 0, allotedWidth )
4652 } );
4653 }
4654 if ( clipHeight ) {
4655 // The order matters here. If overflow is not set first, Chrome displays bogus scrollbars. (T157672)
4656 // Forcing a reflow is a smaller workaround than calling reconsiderScrollbars() for this case.
4657 this.$clippable.css( 'overflowY', 'scroll' );
4658 void this.$clippable[ 0 ].offsetHeight; // Force reflow
4659 this.$clippable.css( {
4660 height: Math.max( 0, allotedHeight ),
4661 maxHeight: ''
4662 } );
4663 } else {
4664 this.$clippable.css( {
4665 overflowY: '',
4666 height: this.idealHeight || '',
4667 maxHeight: Math.max( 0, allotedHeight )
4668 } );
4669 }
4670
4671 // If we stopped clipping in at least one of the dimensions
4672 if ( ( this.clippedHorizontally && !clipWidth ) || ( this.clippedVertically && !clipHeight ) ) {
4673 OO.ui.Element.static.reconsiderScrollbars( this.$clippable[ 0 ] );
4674 }
4675
4676 this.clippedHorizontally = clipWidth;
4677 this.clippedVertically = clipHeight;
4678
4679 return this;
4680 };
4681
4682 /**
4683 * PopupWidget is a container for content. The popup is overlaid and positioned absolutely.
4684 * By default, each popup has an anchor that points toward its origin.
4685 * Please see the [OOjs UI documentation on Mediawiki] [1] for more information and examples.
4686 *
4687 * Unlike most widgets, PopupWidget is initially hidden and must be shown by calling #toggle.
4688 *
4689 * @example
4690 * // A popup widget.
4691 * var popup = new OO.ui.PopupWidget( {
4692 * $content: $( '<p>Hi there!</p>' ),
4693 * padded: true,
4694 * width: 300
4695 * } );
4696 *
4697 * $( 'body' ).append( popup.$element );
4698 * // To display the popup, toggle the visibility to 'true'.
4699 * popup.toggle( true );
4700 *
4701 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Popups
4702 *
4703 * @class
4704 * @extends OO.ui.Widget
4705 * @mixins OO.ui.mixin.LabelElement
4706 * @mixins OO.ui.mixin.ClippableElement
4707 * @mixins OO.ui.mixin.FloatableElement
4708 *
4709 * @constructor
4710 * @param {Object} [config] Configuration options
4711 * @cfg {number} [width=320] Width of popup in pixels
4712 * @cfg {number} [height] Height of popup in pixels. Omit to use the automatic height.
4713 * @cfg {boolean} [anchor=true] Show anchor pointing to origin of popup
4714 * @cfg {string} [position='below'] Where to position the popup relative to $floatableContainer
4715 * 'above': Put popup above $floatableContainer; anchor points down to the horizontal center
4716 * of $floatableContainer
4717 * 'below': Put popup below $floatableContainer; anchor points up to the horizontal center
4718 * of $floatableContainer
4719 * 'before': Put popup to the left (LTR) / right (RTL) of $floatableContainer; anchor points
4720 * endwards (right/left) to the vertical center of $floatableContainer
4721 * 'after': Put popup to the right (LTR) / left (RTL) of $floatableContainer; anchor points
4722 * startwards (left/right) to the vertical center of $floatableContainer
4723 * @cfg {string} [align='center'] How to align the popup to $floatableContainer
4724 * 'forwards': If position is above/below, move the popup as far endwards (right in LTR, left in RTL)
4725 * as possible while still keeping the anchor within the popup;
4726 * if position is before/after, move the popup as far downwards as possible.
4727 * 'backwards': If position is above/below, move the popup as far startwards (left in LTR, right in RTL)
4728 * as possible while still keeping the anchor within the popup;
4729 * if position in before/after, move the popup as far upwards as possible.
4730 * 'center': Horizontally (if position is above/below) or vertically (before/after) align the center
4731 * of the popup with the center of $floatableContainer.
4732 * 'force-left': Alias for 'forwards' in LTR and 'backwards' in RTL
4733 * 'force-right': Alias for 'backwards' in RTL and 'forwards' in LTR
4734 * @cfg {jQuery} [$container] Constrain the popup to the boundaries of the specified container.
4735 * See the [OOjs UI docs on MediaWiki][3] for an example.
4736 * [3]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Popups#containerExample
4737 * @cfg {number} [containerPadding=10] Padding between the popup and its container, specified as a number of pixels.
4738 * @cfg {jQuery} [$content] Content to append to the popup's body
4739 * @cfg {jQuery} [$footer] Content to append to the popup's footer
4740 * @cfg {boolean} [autoClose=false] Automatically close the popup when it loses focus.
4741 * @cfg {jQuery} [$autoCloseIgnore] Elements that will not close the popup when clicked.
4742 * This config option is only relevant if #autoClose is set to `true`. See the [OOjs UI docs on MediaWiki][2]
4743 * for an example.
4744 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Popups#autocloseExample
4745 * @cfg {boolean} [head=false] Show a popup header that contains a #label (if specified) and close
4746 * button.
4747 * @cfg {boolean} [padded=false] Add padding to the popup's body
4748 */
4749 OO.ui.PopupWidget = function OoUiPopupWidget( config ) {
4750 // Configuration initialization
4751 config = config || {};
4752
4753 // Parent constructor
4754 OO.ui.PopupWidget.parent.call( this, config );
4755
4756 // Properties (must be set before ClippableElement constructor call)
4757 this.$body = $( '<div>' );
4758 this.$popup = $( '<div>' );
4759
4760 // Mixin constructors
4761 OO.ui.mixin.LabelElement.call( this, config );
4762 OO.ui.mixin.ClippableElement.call( this, $.extend( {}, config, {
4763 $clippable: this.$body,
4764 $clippableContainer: this.$popup
4765 } ) );
4766 OO.ui.mixin.FloatableElement.call( this, config );
4767
4768 // Properties
4769 this.$anchor = $( '<div>' );
4770 // If undefined, will be computed lazily in updateDimensions()
4771 this.$container = config.$container;
4772 this.containerPadding = config.containerPadding !== undefined ? config.containerPadding : 10;
4773 this.autoClose = !!config.autoClose;
4774 this.$autoCloseIgnore = config.$autoCloseIgnore;
4775 this.transitionTimeout = null;
4776 this.anchored = false;
4777 this.width = config.width !== undefined ? config.width : 320;
4778 this.height = config.height !== undefined ? config.height : null;
4779 this.onMouseDownHandler = this.onMouseDown.bind( this );
4780 this.onDocumentKeyDownHandler = this.onDocumentKeyDown.bind( this );
4781
4782 // Initialization
4783 this.toggleAnchor( config.anchor === undefined || config.anchor );
4784 this.setAlignment( config.align || 'center' );
4785 this.setPosition( config.position || 'below' );
4786 this.$body.addClass( 'oo-ui-popupWidget-body' );
4787 this.$anchor.addClass( 'oo-ui-popupWidget-anchor' );
4788 this.$popup
4789 .addClass( 'oo-ui-popupWidget-popup' )
4790 .append( this.$body );
4791 this.$element
4792 .addClass( 'oo-ui-popupWidget' )
4793 .append( this.$popup, this.$anchor );
4794 // Move content, which was added to #$element by OO.ui.Widget, to the body
4795 // FIXME This is gross, we should use '$body' or something for the config
4796 if ( config.$content instanceof jQuery ) {
4797 this.$body.append( config.$content );
4798 }
4799
4800 if ( config.padded ) {
4801 this.$body.addClass( 'oo-ui-popupWidget-body-padded' );
4802 }
4803
4804 if ( config.head ) {
4805 this.closeButton = new OO.ui.ButtonWidget( { framed: false, icon: 'close' } );
4806 this.closeButton.connect( this, { click: 'onCloseButtonClick' } );
4807 this.$head = $( '<div>' )
4808 .addClass( 'oo-ui-popupWidget-head' )
4809 .append( this.$label, this.closeButton.$element );
4810 this.$popup.prepend( this.$head );
4811 }
4812
4813 if ( config.$footer ) {
4814 this.$footer = $( '<div>' )
4815 .addClass( 'oo-ui-popupWidget-footer' )
4816 .append( config.$footer );
4817 this.$popup.append( this.$footer );
4818 }
4819
4820 // Initially hidden - using #toggle may cause errors if subclasses override toggle with methods
4821 // that reference properties not initialized at that time of parent class construction
4822 // TODO: Find a better way to handle post-constructor setup
4823 this.visible = false;
4824 this.$element.addClass( 'oo-ui-element-hidden' );
4825 };
4826
4827 /* Setup */
4828
4829 OO.inheritClass( OO.ui.PopupWidget, OO.ui.Widget );
4830 OO.mixinClass( OO.ui.PopupWidget, OO.ui.mixin.LabelElement );
4831 OO.mixinClass( OO.ui.PopupWidget, OO.ui.mixin.ClippableElement );
4832 OO.mixinClass( OO.ui.PopupWidget, OO.ui.mixin.FloatableElement );
4833
4834 /* Events */
4835
4836 /**
4837 * @event ready
4838 *
4839 * The popup is ready: it is visible and has been positioned and clipped.
4840 */
4841
4842 /* Methods */
4843
4844 /**
4845 * Handles mouse down events.
4846 *
4847 * @private
4848 * @param {MouseEvent} e Mouse down event
4849 */
4850 OO.ui.PopupWidget.prototype.onMouseDown = function ( e ) {
4851 if (
4852 this.isVisible() &&
4853 !OO.ui.contains( this.$element.add( this.$autoCloseIgnore ).get(), e.target, true )
4854 ) {
4855 this.toggle( false );
4856 }
4857 };
4858
4859 /**
4860 * Bind mouse down listener.
4861 *
4862 * @private
4863 */
4864 OO.ui.PopupWidget.prototype.bindMouseDownListener = function () {
4865 // Capture clicks outside popup
4866 this.getElementWindow().addEventListener( 'mousedown', this.onMouseDownHandler, true );
4867 };
4868
4869 /**
4870 * Handles close button click events.
4871 *
4872 * @private
4873 */
4874 OO.ui.PopupWidget.prototype.onCloseButtonClick = function () {
4875 if ( this.isVisible() ) {
4876 this.toggle( false );
4877 }
4878 };
4879
4880 /**
4881 * Unbind mouse down listener.
4882 *
4883 * @private
4884 */
4885 OO.ui.PopupWidget.prototype.unbindMouseDownListener = function () {
4886 this.getElementWindow().removeEventListener( 'mousedown', this.onMouseDownHandler, true );
4887 };
4888
4889 /**
4890 * Handles key down events.
4891 *
4892 * @private
4893 * @param {KeyboardEvent} e Key down event
4894 */
4895 OO.ui.PopupWidget.prototype.onDocumentKeyDown = function ( e ) {
4896 if (
4897 e.which === OO.ui.Keys.ESCAPE &&
4898 this.isVisible()
4899 ) {
4900 this.toggle( false );
4901 e.preventDefault();
4902 e.stopPropagation();
4903 }
4904 };
4905
4906 /**
4907 * Bind key down listener.
4908 *
4909 * @private
4910 */
4911 OO.ui.PopupWidget.prototype.bindKeyDownListener = function () {
4912 this.getElementWindow().addEventListener( 'keydown', this.onDocumentKeyDownHandler, true );
4913 };
4914
4915 /**
4916 * Unbind key down listener.
4917 *
4918 * @private
4919 */
4920 OO.ui.PopupWidget.prototype.unbindKeyDownListener = function () {
4921 this.getElementWindow().removeEventListener( 'keydown', this.onDocumentKeyDownHandler, true );
4922 };
4923
4924 /**
4925 * Show, hide, or toggle the visibility of the anchor.
4926 *
4927 * @param {boolean} [show] Show anchor, omit to toggle
4928 */
4929 OO.ui.PopupWidget.prototype.toggleAnchor = function ( show ) {
4930 show = show === undefined ? !this.anchored : !!show;
4931
4932 if ( this.anchored !== show ) {
4933 if ( show ) {
4934 this.$element.addClass( 'oo-ui-popupWidget-anchored' );
4935 } else {
4936 this.$element.removeClass( 'oo-ui-popupWidget-anchored' );
4937 }
4938 this.anchored = show;
4939 }
4940 };
4941 /**
4942 * Change which edge the anchor appears on.
4943 *
4944 * @param {string} edge 'top', 'bottom', 'start' or 'end'
4945 */
4946 OO.ui.PopupWidget.prototype.setAnchorEdge = function ( edge ) {
4947 if ( [ 'top', 'bottom', 'start', 'end' ].indexOf( edge ) === -1 ) {
4948 throw new Error( 'Invalid value for edge: ' + edge );
4949 }
4950 if ( this.anchorEdge !== null ) {
4951 this.$element.removeClass( 'oo-ui-popupWidget-anchored-' + this.anchorEdge );
4952 }
4953 this.anchorEdge = edge;
4954 this.$element.addClass( 'oo-ui-popupWidget-anchored-' + edge );
4955 };
4956
4957 /**
4958 * Check if the anchor is visible.
4959 *
4960 * @return {boolean} Anchor is visible
4961 */
4962 OO.ui.PopupWidget.prototype.hasAnchor = function () {
4963 return this.anchored;
4964 };
4965
4966 /**
4967 * Toggle visibility of the popup. The popup is initially hidden and must be shown by calling
4968 * `.toggle( true )` after its #$element is attached to the DOM.
4969 *
4970 * Do not show the popup while it is not attached to the DOM. The calculations required to display
4971 * it in the right place and with the right dimensions only work correctly while it is attached.
4972 * Side-effects may include broken interface and exceptions being thrown. This wasn't always
4973 * strictly enforced, so currently it only generates a warning in the browser console.
4974 *
4975 * @fires ready
4976 * @inheritdoc
4977 */
4978 OO.ui.PopupWidget.prototype.toggle = function ( show ) {
4979 var change;
4980 show = show === undefined ? !this.isVisible() : !!show;
4981
4982 change = show !== this.isVisible();
4983
4984 if ( show && !this.warnedUnattached && !this.isElementAttached() ) {
4985 OO.ui.warnDeprecation( 'PopupWidget#toggle: Before calling this method, the popup must be attached to the DOM.' );
4986 this.warnedUnattached = true;
4987 }
4988 if ( show && !this.$floatableContainer && this.isElementAttached() ) {
4989 // Fall back to the parent node if the floatableContainer is not set
4990 this.setFloatableContainer( this.$element.parent() );
4991 }
4992
4993 // Parent method
4994 OO.ui.PopupWidget.parent.prototype.toggle.call( this, show );
4995
4996 if ( change ) {
4997 this.togglePositioning( show && !!this.$floatableContainer );
4998
4999 if ( show ) {
5000 if ( this.autoClose ) {
5001 this.bindMouseDownListener();
5002 this.bindKeyDownListener();
5003 }
5004 this.updateDimensions();
5005 this.toggleClipping( true );
5006 this.emit( 'ready' );
5007 } else {
5008 this.toggleClipping( false );
5009 if ( this.autoClose ) {
5010 this.unbindMouseDownListener();
5011 this.unbindKeyDownListener();
5012 }
5013 }
5014 }
5015
5016 return this;
5017 };
5018
5019 /**
5020 * Set the size of the popup.
5021 *
5022 * Changing the size may also change the popup's position depending on the alignment.
5023 *
5024 * @param {number} width Width in pixels
5025 * @param {number} height Height in pixels
5026 * @param {boolean} [transition=false] Use a smooth transition
5027 * @chainable
5028 */
5029 OO.ui.PopupWidget.prototype.setSize = function ( width, height, transition ) {
5030 this.width = width;
5031 this.height = height !== undefined ? height : null;
5032 if ( this.isVisible() ) {
5033 this.updateDimensions( transition );
5034 }
5035 };
5036
5037 /**
5038 * Update the size and position.
5039 *
5040 * Only use this to keep the popup properly anchored. Use #setSize to change the size, and this will
5041 * be called automatically.
5042 *
5043 * @param {boolean} [transition=false] Use a smooth transition
5044 * @chainable
5045 */
5046 OO.ui.PopupWidget.prototype.updateDimensions = function ( transition ) {
5047 var widget = this;
5048
5049 // Prevent transition from being interrupted
5050 clearTimeout( this.transitionTimeout );
5051 if ( transition ) {
5052 // Enable transition
5053 this.$element.addClass( 'oo-ui-popupWidget-transitioning' );
5054 }
5055
5056 this.position();
5057
5058 if ( transition ) {
5059 // Prevent transitioning after transition is complete
5060 this.transitionTimeout = setTimeout( function () {
5061 widget.$element.removeClass( 'oo-ui-popupWidget-transitioning' );
5062 }, 200 );
5063 } else {
5064 // Prevent transitioning immediately
5065 this.$element.removeClass( 'oo-ui-popupWidget-transitioning' );
5066 }
5067 };
5068
5069 /**
5070 * @inheritdoc
5071 */
5072 OO.ui.PopupWidget.prototype.computePosition = function () {
5073 var direction, align, vertical, start, end, near, far, sizeProp, popupSize, anchorSize, anchorPos,
5074 anchorOffset, anchorMargin, parentPosition, positionProp, positionAdjustment, floatablePos,
5075 offsetParentPos, containerPos,
5076 popupPos = {},
5077 anchorCss = { left: '', right: '', top: '', bottom: '' },
5078 alignMap = {
5079 ltr: {
5080 'force-left': 'backwards',
5081 'force-right': 'forwards'
5082 },
5083 rtl: {
5084 'force-left': 'forwards',
5085 'force-right': 'backwards'
5086 }
5087 },
5088 anchorEdgeMap = {
5089 above: 'bottom',
5090 below: 'top',
5091 before: 'end',
5092 after: 'start'
5093 },
5094 hPosMap = {
5095 forwards: 'start',
5096 center: 'center',
5097 backwards: 'before'
5098 },
5099 vPosMap = {
5100 forwards: 'top',
5101 center: 'center',
5102 backwards: 'bottom'
5103 };
5104
5105 if ( !this.$container ) {
5106 // Lazy-initialize $container if not specified in constructor
5107 this.$container = $( this.getClosestScrollableElementContainer() );
5108 }
5109 direction = this.$container.css( 'direction' );
5110
5111 // Set height and width before we do anything else, since it might cause our measurements
5112 // to change (e.g. due to scrollbars appearing or disappearing), and it also affects centering
5113 this.$popup.css( {
5114 width: this.width,
5115 height: this.height !== null ? this.height : 'auto'
5116 } );
5117
5118 align = alignMap[ direction ][ this.align ] || this.align;
5119 // If the popup is positioned before or after, then the anchor positioning is vertical, otherwise horizontal
5120 vertical = this.popupPosition === 'before' || this.popupPosition === 'after';
5121 start = vertical ? 'top' : ( direction === 'rtl' ? 'right' : 'left' );
5122 end = vertical ? 'bottom' : ( direction === 'rtl' ? 'left' : 'right' );
5123 near = vertical ? 'top' : 'left';
5124 far = vertical ? 'bottom' : 'right';
5125 sizeProp = vertical ? 'Height' : 'Width';
5126 popupSize = vertical ? ( this.height || this.$popup.height() ) : this.width;
5127
5128 this.setAnchorEdge( anchorEdgeMap[ this.popupPosition ] );
5129 this.horizontalPosition = vertical ? this.popupPosition : hPosMap[ align ];
5130 this.verticalPosition = vertical ? vPosMap[ align ] : this.popupPosition;
5131
5132 // Parent method
5133 parentPosition = OO.ui.mixin.FloatableElement.prototype.computePosition.call( this );
5134 // Find out which property FloatableElement used for positioning, and adjust that value
5135 positionProp = vertical ?
5136 ( parentPosition.top !== '' ? 'top' : 'bottom' ) :
5137 ( parentPosition.left !== '' ? 'left' : 'right' );
5138
5139 // Figure out where the near and far edges of the popup and $floatableContainer are
5140 floatablePos = this.$floatableContainer.offset();
5141 floatablePos[ far ] = floatablePos[ near ] + this.$floatableContainer[ 'outer' + sizeProp ]();
5142 // Measure where the offsetParent is and compute our position based on that and parentPosition
5143 offsetParentPos = this.$element.offsetParent().offset();
5144
5145 if ( positionProp === near ) {
5146 popupPos[ near ] = offsetParentPos[ near ] + parentPosition[ near ];
5147 popupPos[ far ] = popupPos[ near ] + popupSize;
5148 } else {
5149 popupPos[ far ] = offsetParentPos[ near ] +
5150 this.$element.offsetParent()[ 'inner' + sizeProp ]() - parentPosition[ far ];
5151 popupPos[ near ] = popupPos[ far ] - popupSize;
5152 }
5153
5154 // Position the anchor (which is positioned relative to the popup) to point to $floatableContainer
5155 anchorPos = ( floatablePos[ start ] + floatablePos[ end ] ) / 2;
5156 anchorOffset = ( start === far ? -1 : 1 ) * ( anchorPos - popupPos[ start ] );
5157
5158 // If the anchor is less than 2*anchorSize from either edge, move the popup to make more space
5159 // this.$anchor.width()/height() returns 0 because of the CSS trickery we use, so use scrollWidth/Height
5160 anchorSize = this.$anchor[ 0 ][ 'scroll' + sizeProp ];
5161 anchorMargin = parseFloat( this.$anchor.css( 'margin-' + start ) );
5162 if ( anchorOffset + anchorMargin < 2 * anchorSize ) {
5163 // Not enough space for the anchor on the start side; pull the popup startwards
5164 positionAdjustment = ( positionProp === start ? -1 : 1 ) *
5165 ( 2 * anchorSize - ( anchorOffset + anchorMargin ) );
5166 } else if ( anchorOffset + anchorMargin > popupSize - 2 * anchorSize ) {
5167 // Not enough space for the anchor on the end side; pull the popup endwards
5168 positionAdjustment = ( positionProp === end ? -1 : 1 ) *
5169 ( anchorOffset + anchorMargin - ( popupSize - 2 * anchorSize ) );
5170 } else {
5171 positionAdjustment = 0;
5172 }
5173
5174 // Check if the popup will go beyond the edge of this.$container
5175 containerPos = this.$container.offset();
5176 containerPos[ far ] = containerPos[ near ] + this.$container[ 'inner' + sizeProp ]();
5177 // Take into account how much the popup will move because of the adjustments we're going to make
5178 popupPos[ near ] += ( positionProp === near ? 1 : -1 ) * positionAdjustment;
5179 popupPos[ far ] += ( positionProp === near ? 1 : -1 ) * positionAdjustment;
5180 if ( containerPos[ near ] + this.containerPadding > popupPos[ near ] ) {
5181 // Popup goes beyond the near (left/top) edge, move it to the right/bottom
5182 positionAdjustment += ( positionProp === near ? 1 : -1 ) *
5183 ( containerPos[ near ] + this.containerPadding - popupPos[ near ] );
5184 } else if ( containerPos[ far ] - this.containerPadding < popupPos[ far ] ) {
5185 // Popup goes beyond the far (right/bottom) edge, move it to the left/top
5186 positionAdjustment += ( positionProp === far ? 1 : -1 ) *
5187 ( popupPos[ far ] - ( containerPos[ far ] - this.containerPadding ) );
5188 }
5189
5190 // Adjust anchorOffset for positionAdjustment
5191 anchorOffset += ( positionProp === start ? -1 : 1 ) * positionAdjustment;
5192
5193 // Position the anchor
5194 anchorCss[ start ] = anchorOffset;
5195 this.$anchor.css( anchorCss );
5196 // Move the popup if needed
5197 parentPosition[ positionProp ] += positionAdjustment;
5198
5199 return parentPosition;
5200 };
5201
5202 /**
5203 * Set popup alignment
5204 *
5205 * @param {string} [align=center] Alignment of the popup, `center`, `force-left`, `force-right`,
5206 * `backwards` or `forwards`.
5207 */
5208 OO.ui.PopupWidget.prototype.setAlignment = function ( align ) {
5209 // Validate alignment
5210 if ( [ 'force-left', 'force-right', 'backwards', 'forwards', 'center' ].indexOf( align ) > -1 ) {
5211 this.align = align;
5212 } else {
5213 this.align = 'center';
5214 }
5215 this.position();
5216 };
5217
5218 /**
5219 * Get popup alignment
5220 *
5221 * @return {string} Alignment of the popup, `center`, `force-left`, `force-right`,
5222 * `backwards` or `forwards`.
5223 */
5224 OO.ui.PopupWidget.prototype.getAlignment = function () {
5225 return this.align;
5226 };
5227
5228 /**
5229 * Change the positioning of the popup.
5230 *
5231 * @param {string} position 'above', 'below', 'before' or 'after'
5232 */
5233 OO.ui.PopupWidget.prototype.setPosition = function ( position ) {
5234 if ( [ 'above', 'below', 'before', 'after' ].indexOf( position ) === -1 ) {
5235 position = 'below';
5236 }
5237 this.popupPosition = position;
5238 this.position();
5239 };
5240
5241 /**
5242 * Get popup positioning.
5243 *
5244 * @return {string} 'above', 'below', 'before' or 'after'
5245 */
5246 OO.ui.PopupWidget.prototype.getPosition = function () {
5247 return this.popupPosition;
5248 };
5249
5250 /**
5251 * PopupElement is mixed into other classes to generate a {@link OO.ui.PopupWidget popup widget}.
5252 * A popup is a container for content. It is overlaid and positioned absolutely. By default, each
5253 * popup has an anchor, which is an arrow-like protrusion that points toward the popup’s origin.
5254 * See {@link OO.ui.PopupWidget PopupWidget} for an example.
5255 *
5256 * @abstract
5257 * @class
5258 *
5259 * @constructor
5260 * @param {Object} [config] Configuration options
5261 * @cfg {Object} [popup] Configuration to pass to popup
5262 * @cfg {boolean} [popup.autoClose=true] Popup auto-closes when it loses focus
5263 */
5264 OO.ui.mixin.PopupElement = function OoUiMixinPopupElement( config ) {
5265 // Configuration initialization
5266 config = config || {};
5267
5268 // Properties
5269 this.popup = new OO.ui.PopupWidget( $.extend(
5270 {
5271 autoClose: true,
5272 $floatableContainer: this.$element
5273 },
5274 config.popup,
5275 {
5276 $autoCloseIgnore: this.$element.add( config.popup && config.popup.$autoCloseIgnore )
5277 }
5278 ) );
5279 };
5280
5281 /* Methods */
5282
5283 /**
5284 * Get popup.
5285 *
5286 * @return {OO.ui.PopupWidget} Popup widget
5287 */
5288 OO.ui.mixin.PopupElement.prototype.getPopup = function () {
5289 return this.popup;
5290 };
5291
5292 /**
5293 * PopupButtonWidgets toggle the visibility of a contained {@link OO.ui.PopupWidget PopupWidget},
5294 * which is used to display additional information or options.
5295 *
5296 * @example
5297 * // Example of a popup button.
5298 * var popupButton = new OO.ui.PopupButtonWidget( {
5299 * label: 'Popup button with options',
5300 * icon: 'menu',
5301 * popup: {
5302 * $content: $( '<p>Additional options here.</p>' ),
5303 * padded: true,
5304 * align: 'force-left'
5305 * }
5306 * } );
5307 * // Append the button to the DOM.
5308 * $( 'body' ).append( popupButton.$element );
5309 *
5310 * @class
5311 * @extends OO.ui.ButtonWidget
5312 * @mixins OO.ui.mixin.PopupElement
5313 *
5314 * @constructor
5315 * @param {Object} [config] Configuration options
5316 * @cfg {jQuery} [$overlay] Render the popup into a separate layer. This configuration is useful in cases where
5317 * the expanded popup is larger than its containing `<div>`. The specified overlay layer is usually on top of the
5318 * containing `<div>` and has a larger area. By default, the popup uses relative positioning.
5319 */
5320 OO.ui.PopupButtonWidget = function OoUiPopupButtonWidget( config ) {
5321 // Parent constructor
5322 OO.ui.PopupButtonWidget.parent.call( this, config );
5323
5324 // Mixin constructors
5325 OO.ui.mixin.PopupElement.call( this, config );
5326
5327 // Properties
5328 this.$overlay = config.$overlay || this.$element;
5329
5330 // Events
5331 this.connect( this, { click: 'onAction' } );
5332
5333 // Initialization
5334 this.$element
5335 .addClass( 'oo-ui-popupButtonWidget' )
5336 .attr( 'aria-haspopup', 'true' );
5337 this.popup.$element
5338 .addClass( 'oo-ui-popupButtonWidget-popup' )
5339 .toggleClass( 'oo-ui-popupButtonWidget-framed-popup', this.isFramed() )
5340 .toggleClass( 'oo-ui-popupButtonWidget-frameless-popup', !this.isFramed() );
5341 this.$overlay.append( this.popup.$element );
5342 };
5343
5344 /* Setup */
5345
5346 OO.inheritClass( OO.ui.PopupButtonWidget, OO.ui.ButtonWidget );
5347 OO.mixinClass( OO.ui.PopupButtonWidget, OO.ui.mixin.PopupElement );
5348
5349 /* Methods */
5350
5351 /**
5352 * Handle the button action being triggered.
5353 *
5354 * @private
5355 */
5356 OO.ui.PopupButtonWidget.prototype.onAction = function () {
5357 this.popup.toggle();
5358 };
5359
5360 /**
5361 * Mixin for OO.ui.Widget subclasses to provide OO.ui.mixin.GroupElement.
5362 *
5363 * Use together with OO.ui.mixin.ItemWidget to make disabled state inheritable.
5364 *
5365 * @private
5366 * @abstract
5367 * @class
5368 * @mixins OO.ui.mixin.GroupElement
5369 *
5370 * @constructor
5371 * @param {Object} [config] Configuration options
5372 */
5373 OO.ui.mixin.GroupWidget = function OoUiMixinGroupWidget( config ) {
5374 // Mixin constructors
5375 OO.ui.mixin.GroupElement.call( this, config );
5376 };
5377
5378 /* Setup */
5379
5380 OO.mixinClass( OO.ui.mixin.GroupWidget, OO.ui.mixin.GroupElement );
5381
5382 /* Methods */
5383
5384 /**
5385 * Set the disabled state of the widget.
5386 *
5387 * This will also update the disabled state of child widgets.
5388 *
5389 * @param {boolean} disabled Disable widget
5390 * @chainable
5391 */
5392 OO.ui.mixin.GroupWidget.prototype.setDisabled = function ( disabled ) {
5393 var i, len;
5394
5395 // Parent method
5396 // Note: Calling #setDisabled this way assumes this is mixed into an OO.ui.Widget
5397 OO.ui.Widget.prototype.setDisabled.call( this, disabled );
5398
5399 // During construction, #setDisabled is called before the OO.ui.mixin.GroupElement constructor
5400 if ( this.items ) {
5401 for ( i = 0, len = this.items.length; i < len; i++ ) {
5402 this.items[ i ].updateDisabled();
5403 }
5404 }
5405
5406 return this;
5407 };
5408
5409 /**
5410 * Mixin for widgets used as items in widgets that mix in OO.ui.mixin.GroupWidget.
5411 *
5412 * Item widgets have a reference to a OO.ui.mixin.GroupWidget while they are attached to the group. This
5413 * allows bidirectional communication.
5414 *
5415 * Use together with OO.ui.mixin.GroupWidget to make disabled state inheritable.
5416 *
5417 * @private
5418 * @abstract
5419 * @class
5420 *
5421 * @constructor
5422 */
5423 OO.ui.mixin.ItemWidget = function OoUiMixinItemWidget() {
5424 //
5425 };
5426
5427 /* Methods */
5428
5429 /**
5430 * Check if widget is disabled.
5431 *
5432 * Checks parent if present, making disabled state inheritable.
5433 *
5434 * @return {boolean} Widget is disabled
5435 */
5436 OO.ui.mixin.ItemWidget.prototype.isDisabled = function () {
5437 return this.disabled ||
5438 ( this.elementGroup instanceof OO.ui.Widget && this.elementGroup.isDisabled() );
5439 };
5440
5441 /**
5442 * Set group element is in.
5443 *
5444 * @param {OO.ui.mixin.GroupElement|null} group Group element, null if none
5445 * @chainable
5446 */
5447 OO.ui.mixin.ItemWidget.prototype.setElementGroup = function ( group ) {
5448 // Parent method
5449 // Note: Calling #setElementGroup this way assumes this is mixed into an OO.ui.Element
5450 OO.ui.Element.prototype.setElementGroup.call( this, group );
5451
5452 // Initialize item disabled states
5453 this.updateDisabled();
5454
5455 return this;
5456 };
5457
5458 /**
5459 * OptionWidgets are special elements that can be selected and configured with data. The
5460 * data is often unique for each option, but it does not have to be. OptionWidgets are used
5461 * with OO.ui.SelectWidget to create a selection of mutually exclusive options. For more information
5462 * and examples, please see the [OOjs UI documentation on MediaWiki][1].
5463 *
5464 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
5465 *
5466 * @class
5467 * @extends OO.ui.Widget
5468 * @mixins OO.ui.mixin.ItemWidget
5469 * @mixins OO.ui.mixin.LabelElement
5470 * @mixins OO.ui.mixin.FlaggedElement
5471 * @mixins OO.ui.mixin.AccessKeyedElement
5472 *
5473 * @constructor
5474 * @param {Object} [config] Configuration options
5475 */
5476 OO.ui.OptionWidget = function OoUiOptionWidget( config ) {
5477 // Configuration initialization
5478 config = config || {};
5479
5480 // Parent constructor
5481 OO.ui.OptionWidget.parent.call( this, config );
5482
5483 // Mixin constructors
5484 OO.ui.mixin.ItemWidget.call( this );
5485 OO.ui.mixin.LabelElement.call( this, config );
5486 OO.ui.mixin.FlaggedElement.call( this, config );
5487 OO.ui.mixin.AccessKeyedElement.call( this, config );
5488
5489 // Properties
5490 this.selected = false;
5491 this.highlighted = false;
5492 this.pressed = false;
5493
5494 // Initialization
5495 this.$element
5496 .data( 'oo-ui-optionWidget', this )
5497 // Allow programmatic focussing (and by accesskey), but not tabbing
5498 .attr( 'tabindex', '-1' )
5499 .attr( 'role', 'option' )
5500 .attr( 'aria-selected', 'false' )
5501 .addClass( 'oo-ui-optionWidget' )
5502 .append( this.$label );
5503 };
5504
5505 /* Setup */
5506
5507 OO.inheritClass( OO.ui.OptionWidget, OO.ui.Widget );
5508 OO.mixinClass( OO.ui.OptionWidget, OO.ui.mixin.ItemWidget );
5509 OO.mixinClass( OO.ui.OptionWidget, OO.ui.mixin.LabelElement );
5510 OO.mixinClass( OO.ui.OptionWidget, OO.ui.mixin.FlaggedElement );
5511 OO.mixinClass( OO.ui.OptionWidget, OO.ui.mixin.AccessKeyedElement );
5512
5513 /* Static Properties */
5514
5515 /**
5516 * Whether this option can be selected. See #setSelected.
5517 *
5518 * @static
5519 * @inheritable
5520 * @property {boolean}
5521 */
5522 OO.ui.OptionWidget.static.selectable = true;
5523
5524 /**
5525 * Whether this option can be highlighted. See #setHighlighted.
5526 *
5527 * @static
5528 * @inheritable
5529 * @property {boolean}
5530 */
5531 OO.ui.OptionWidget.static.highlightable = true;
5532
5533 /**
5534 * Whether this option can be pressed. See #setPressed.
5535 *
5536 * @static
5537 * @inheritable
5538 * @property {boolean}
5539 */
5540 OO.ui.OptionWidget.static.pressable = true;
5541
5542 /**
5543 * Whether this option will be scrolled into view when it is selected.
5544 *
5545 * @static
5546 * @inheritable
5547 * @property {boolean}
5548 */
5549 OO.ui.OptionWidget.static.scrollIntoViewOnSelect = false;
5550
5551 /* Methods */
5552
5553 /**
5554 * Check if the option can be selected.
5555 *
5556 * @return {boolean} Item is selectable
5557 */
5558 OO.ui.OptionWidget.prototype.isSelectable = function () {
5559 return this.constructor.static.selectable && !this.isDisabled() && this.isVisible();
5560 };
5561
5562 /**
5563 * Check if the option can be highlighted. A highlight indicates that the option
5564 * may be selected when a user presses enter or clicks. Disabled items cannot
5565 * be highlighted.
5566 *
5567 * @return {boolean} Item is highlightable
5568 */
5569 OO.ui.OptionWidget.prototype.isHighlightable = function () {
5570 return this.constructor.static.highlightable && !this.isDisabled() && this.isVisible();
5571 };
5572
5573 /**
5574 * Check if the option can be pressed. The pressed state occurs when a user mouses
5575 * down on an item, but has not yet let go of the mouse.
5576 *
5577 * @return {boolean} Item is pressable
5578 */
5579 OO.ui.OptionWidget.prototype.isPressable = function () {
5580 return this.constructor.static.pressable && !this.isDisabled() && this.isVisible();
5581 };
5582
5583 /**
5584 * Check if the option is selected.
5585 *
5586 * @return {boolean} Item is selected
5587 */
5588 OO.ui.OptionWidget.prototype.isSelected = function () {
5589 return this.selected;
5590 };
5591
5592 /**
5593 * Check if the option is highlighted. A highlight indicates that the
5594 * item may be selected when a user presses enter or clicks.
5595 *
5596 * @return {boolean} Item is highlighted
5597 */
5598 OO.ui.OptionWidget.prototype.isHighlighted = function () {
5599 return this.highlighted;
5600 };
5601
5602 /**
5603 * Check if the option is pressed. The pressed state occurs when a user mouses
5604 * down on an item, but has not yet let go of the mouse. The item may appear
5605 * selected, but it will not be selected until the user releases the mouse.
5606 *
5607 * @return {boolean} Item is pressed
5608 */
5609 OO.ui.OptionWidget.prototype.isPressed = function () {
5610 return this.pressed;
5611 };
5612
5613 /**
5614 * Set the option’s selected state. In general, all modifications to the selection
5615 * should be handled by the SelectWidget’s {@link OO.ui.SelectWidget#selectItem selectItem( [item] )}
5616 * method instead of this method.
5617 *
5618 * @param {boolean} [state=false] Select option
5619 * @chainable
5620 */
5621 OO.ui.OptionWidget.prototype.setSelected = function ( state ) {
5622 if ( this.constructor.static.selectable ) {
5623 this.selected = !!state;
5624 this.$element
5625 .toggleClass( 'oo-ui-optionWidget-selected', state )
5626 .attr( 'aria-selected', state.toString() );
5627 if ( state && this.constructor.static.scrollIntoViewOnSelect ) {
5628 this.scrollElementIntoView();
5629 }
5630 this.updateThemeClasses();
5631 }
5632 return this;
5633 };
5634
5635 /**
5636 * Set the option’s highlighted state. In general, all programmatic
5637 * modifications to the highlight should be handled by the
5638 * SelectWidget’s {@link OO.ui.SelectWidget#highlightItem highlightItem( [item] )}
5639 * method instead of this method.
5640 *
5641 * @param {boolean} [state=false] Highlight option
5642 * @chainable
5643 */
5644 OO.ui.OptionWidget.prototype.setHighlighted = function ( state ) {
5645 if ( this.constructor.static.highlightable ) {
5646 this.highlighted = !!state;
5647 this.$element.toggleClass( 'oo-ui-optionWidget-highlighted', state );
5648 this.updateThemeClasses();
5649 }
5650 return this;
5651 };
5652
5653 /**
5654 * Set the option’s pressed state. In general, all
5655 * programmatic modifications to the pressed state should be handled by the
5656 * SelectWidget’s {@link OO.ui.SelectWidget#pressItem pressItem( [item] )}
5657 * method instead of this method.
5658 *
5659 * @param {boolean} [state=false] Press option
5660 * @chainable
5661 */
5662 OO.ui.OptionWidget.prototype.setPressed = function ( state ) {
5663 if ( this.constructor.static.pressable ) {
5664 this.pressed = !!state;
5665 this.$element.toggleClass( 'oo-ui-optionWidget-pressed', state );
5666 this.updateThemeClasses();
5667 }
5668 return this;
5669 };
5670
5671 /**
5672 * Get text to match search strings against.
5673 *
5674 * The default implementation returns the label text, but subclasses
5675 * can override this to provide more complex behavior.
5676 *
5677 * @return {string|boolean} String to match search string against
5678 */
5679 OO.ui.OptionWidget.prototype.getMatchText = function () {
5680 var label = this.getLabel();
5681 return typeof label === 'string' ? label : this.$label.text();
5682 };
5683
5684 /**
5685 * A SelectWidget is of a generic selection of options. The OOjs UI library contains several types of
5686 * select widgets, including {@link OO.ui.ButtonSelectWidget button selects},
5687 * {@link OO.ui.RadioSelectWidget radio selects}, and {@link OO.ui.MenuSelectWidget
5688 * menu selects}.
5689 *
5690 * This class should be used together with OO.ui.OptionWidget or OO.ui.DecoratedOptionWidget. For more
5691 * information, please see the [OOjs UI documentation on MediaWiki][1].
5692 *
5693 * @example
5694 * // Example of a select widget with three options
5695 * var select = new OO.ui.SelectWidget( {
5696 * items: [
5697 * new OO.ui.OptionWidget( {
5698 * data: 'a',
5699 * label: 'Option One',
5700 * } ),
5701 * new OO.ui.OptionWidget( {
5702 * data: 'b',
5703 * label: 'Option Two',
5704 * } ),
5705 * new OO.ui.OptionWidget( {
5706 * data: 'c',
5707 * label: 'Option Three',
5708 * } )
5709 * ]
5710 * } );
5711 * $( 'body' ).append( select.$element );
5712 *
5713 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
5714 *
5715 * @abstract
5716 * @class
5717 * @extends OO.ui.Widget
5718 * @mixins OO.ui.mixin.GroupWidget
5719 *
5720 * @constructor
5721 * @param {Object} [config] Configuration options
5722 * @cfg {OO.ui.OptionWidget[]} [items] An array of options to add to the select.
5723 * Options are created with {@link OO.ui.OptionWidget OptionWidget} classes. See
5724 * the [OOjs UI documentation on MediaWiki] [2] for examples.
5725 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
5726 */
5727 OO.ui.SelectWidget = function OoUiSelectWidget( config ) {
5728 // Configuration initialization
5729 config = config || {};
5730
5731 // Parent constructor
5732 OO.ui.SelectWidget.parent.call( this, config );
5733
5734 // Mixin constructors
5735 OO.ui.mixin.GroupWidget.call( this, $.extend( {}, config, { $group: this.$element } ) );
5736
5737 // Properties
5738 this.pressed = false;
5739 this.selecting = null;
5740 this.onMouseUpHandler = this.onMouseUp.bind( this );
5741 this.onMouseMoveHandler = this.onMouseMove.bind( this );
5742 this.onKeyDownHandler = this.onKeyDown.bind( this );
5743 this.onKeyPressHandler = this.onKeyPress.bind( this );
5744 this.keyPressBuffer = '';
5745 this.keyPressBufferTimer = null;
5746 this.blockMouseOverEvents = 0;
5747
5748 // Events
5749 this.connect( this, {
5750 toggle: 'onToggle'
5751 } );
5752 this.$element.on( {
5753 focusin: this.onFocus.bind( this ),
5754 mousedown: this.onMouseDown.bind( this ),
5755 mouseover: this.onMouseOver.bind( this ),
5756 mouseleave: this.onMouseLeave.bind( this )
5757 } );
5758
5759 // Initialization
5760 this.$element
5761 .addClass( 'oo-ui-selectWidget oo-ui-selectWidget-depressed' )
5762 .attr( 'role', 'listbox' );
5763 if ( Array.isArray( config.items ) ) {
5764 this.addItems( config.items );
5765 }
5766 };
5767
5768 /* Setup */
5769
5770 OO.inheritClass( OO.ui.SelectWidget, OO.ui.Widget );
5771 OO.mixinClass( OO.ui.SelectWidget, OO.ui.mixin.GroupWidget );
5772
5773 /* Events */
5774
5775 /**
5776 * @event highlight
5777 *
5778 * A `highlight` event is emitted when the highlight is changed with the #highlightItem method.
5779 *
5780 * @param {OO.ui.OptionWidget|null} item Highlighted item
5781 */
5782
5783 /**
5784 * @event press
5785 *
5786 * A `press` event is emitted when the #pressItem method is used to programmatically modify the
5787 * pressed state of an option.
5788 *
5789 * @param {OO.ui.OptionWidget|null} item Pressed item
5790 */
5791
5792 /**
5793 * @event select
5794 *
5795 * A `select` event is emitted when the selection is modified programmatically with the #selectItem method.
5796 *
5797 * @param {OO.ui.OptionWidget|null} item Selected item
5798 */
5799
5800 /**
5801 * @event choose
5802 * A `choose` event is emitted when an item is chosen with the #chooseItem method.
5803 * @param {OO.ui.OptionWidget} item Chosen item
5804 */
5805
5806 /**
5807 * @event add
5808 *
5809 * An `add` event is emitted when options are added to the select with the #addItems method.
5810 *
5811 * @param {OO.ui.OptionWidget[]} items Added items
5812 * @param {number} index Index of insertion point
5813 */
5814
5815 /**
5816 * @event remove
5817 *
5818 * A `remove` event is emitted when options are removed from the select with the #clearItems
5819 * or #removeItems methods.
5820 *
5821 * @param {OO.ui.OptionWidget[]} items Removed items
5822 */
5823
5824 /* Methods */
5825
5826 /**
5827 * Handle focus events
5828 *
5829 * @private
5830 * @param {jQuery.Event} event
5831 */
5832 OO.ui.SelectWidget.prototype.onFocus = function ( event ) {
5833 var item;
5834 if ( event.target === this.$element[ 0 ] ) {
5835 // This widget was focussed, e.g. by the user tabbing to it.
5836 // The styles for focus state depend on one of the items being selected.
5837 if ( !this.getSelectedItem() ) {
5838 item = this.getFirstSelectableItem();
5839 }
5840 } else {
5841 // One of the options got focussed (and the event bubbled up here).
5842 // They can't be tabbed to, but they can be activated using accesskeys.
5843 item = this.getTargetItem( event );
5844 }
5845
5846 if ( item ) {
5847 if ( item.constructor.static.highlightable ) {
5848 this.highlightItem( item );
5849 } else {
5850 this.selectItem( item );
5851 }
5852 }
5853
5854 if ( event.target !== this.$element[ 0 ] ) {
5855 this.$element.focus();
5856 }
5857 };
5858
5859 /**
5860 * Handle mouse down events.
5861 *
5862 * @private
5863 * @param {jQuery.Event} e Mouse down event
5864 */
5865 OO.ui.SelectWidget.prototype.onMouseDown = function ( e ) {
5866 var item;
5867
5868 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
5869 this.togglePressed( true );
5870 item = this.getTargetItem( e );
5871 if ( item && item.isSelectable() ) {
5872 this.pressItem( item );
5873 this.selecting = item;
5874 this.getElementDocument().addEventListener( 'mouseup', this.onMouseUpHandler, true );
5875 this.getElementDocument().addEventListener( 'mousemove', this.onMouseMoveHandler, true );
5876 }
5877 }
5878 return false;
5879 };
5880
5881 /**
5882 * Handle mouse up events.
5883 *
5884 * @private
5885 * @param {MouseEvent} e Mouse up event
5886 */
5887 OO.ui.SelectWidget.prototype.onMouseUp = function ( e ) {
5888 var item;
5889
5890 this.togglePressed( false );
5891 if ( !this.selecting ) {
5892 item = this.getTargetItem( e );
5893 if ( item && item.isSelectable() ) {
5894 this.selecting = item;
5895 }
5896 }
5897 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT && this.selecting ) {
5898 this.pressItem( null );
5899 this.chooseItem( this.selecting );
5900 this.selecting = null;
5901 }
5902
5903 this.getElementDocument().removeEventListener( 'mouseup', this.onMouseUpHandler, true );
5904 this.getElementDocument().removeEventListener( 'mousemove', this.onMouseMoveHandler, true );
5905
5906 return false;
5907 };
5908
5909 /**
5910 * Handle mouse move events.
5911 *
5912 * @private
5913 * @param {MouseEvent} e Mouse move event
5914 */
5915 OO.ui.SelectWidget.prototype.onMouseMove = function ( e ) {
5916 var item;
5917
5918 if ( !this.isDisabled() && this.pressed ) {
5919 item = this.getTargetItem( e );
5920 if ( item && item !== this.selecting && item.isSelectable() ) {
5921 this.pressItem( item );
5922 this.selecting = item;
5923 }
5924 }
5925 };
5926
5927 /**
5928 * Handle mouse over events.
5929 *
5930 * @private
5931 * @param {jQuery.Event} e Mouse over event
5932 */
5933 OO.ui.SelectWidget.prototype.onMouseOver = function ( e ) {
5934 var item;
5935 if ( this.blockMouseOverEvents ) {
5936 return;
5937 }
5938 if ( !this.isDisabled() ) {
5939 item = this.getTargetItem( e );
5940 this.highlightItem( item && item.isHighlightable() ? item : null );
5941 }
5942 return false;
5943 };
5944
5945 /**
5946 * Handle mouse leave events.
5947 *
5948 * @private
5949 * @param {jQuery.Event} e Mouse over event
5950 */
5951 OO.ui.SelectWidget.prototype.onMouseLeave = function () {
5952 if ( !this.isDisabled() ) {
5953 this.highlightItem( null );
5954 }
5955 return false;
5956 };
5957
5958 /**
5959 * Handle key down events.
5960 *
5961 * @protected
5962 * @param {KeyboardEvent} e Key down event
5963 */
5964 OO.ui.SelectWidget.prototype.onKeyDown = function ( e ) {
5965 var nextItem,
5966 handled = false,
5967 currentItem = this.getHighlightedItem() || this.getSelectedItem();
5968
5969 if ( !this.isDisabled() && this.isVisible() ) {
5970 switch ( e.keyCode ) {
5971 case OO.ui.Keys.ENTER:
5972 if ( currentItem && currentItem.constructor.static.highlightable ) {
5973 // Was only highlighted, now let's select it. No-op if already selected.
5974 this.chooseItem( currentItem );
5975 handled = true;
5976 }
5977 break;
5978 case OO.ui.Keys.UP:
5979 case OO.ui.Keys.LEFT:
5980 this.clearKeyPressBuffer();
5981 nextItem = this.getRelativeSelectableItem( currentItem, -1 );
5982 handled = true;
5983 break;
5984 case OO.ui.Keys.DOWN:
5985 case OO.ui.Keys.RIGHT:
5986 this.clearKeyPressBuffer();
5987 nextItem = this.getRelativeSelectableItem( currentItem, 1 );
5988 handled = true;
5989 break;
5990 case OO.ui.Keys.ESCAPE:
5991 case OO.ui.Keys.TAB:
5992 if ( currentItem && currentItem.constructor.static.highlightable ) {
5993 currentItem.setHighlighted( false );
5994 }
5995 this.unbindKeyDownListener();
5996 this.unbindKeyPressListener();
5997 // Don't prevent tabbing away / defocusing
5998 handled = false;
5999 break;
6000 }
6001
6002 if ( nextItem ) {
6003 if ( nextItem.constructor.static.highlightable ) {
6004 this.highlightItem( nextItem );
6005 } else {
6006 this.chooseItem( nextItem );
6007 }
6008 this.scrollItemIntoView( nextItem );
6009 }
6010
6011 if ( handled ) {
6012 e.preventDefault();
6013 e.stopPropagation();
6014 }
6015 }
6016 };
6017
6018 /**
6019 * Bind key down listener.
6020 *
6021 * @protected
6022 */
6023 OO.ui.SelectWidget.prototype.bindKeyDownListener = function () {
6024 this.getElementWindow().addEventListener( 'keydown', this.onKeyDownHandler, true );
6025 };
6026
6027 /**
6028 * Unbind key down listener.
6029 *
6030 * @protected
6031 */
6032 OO.ui.SelectWidget.prototype.unbindKeyDownListener = function () {
6033 this.getElementWindow().removeEventListener( 'keydown', this.onKeyDownHandler, true );
6034 };
6035
6036 /**
6037 * Scroll item into view, preventing spurious mouse highlight actions from happening.
6038 *
6039 * @param {OO.ui.OptionWidget} item Item to scroll into view
6040 */
6041 OO.ui.SelectWidget.prototype.scrollItemIntoView = function ( item ) {
6042 var widget = this;
6043 // Chromium's Blink engine will generate spurious 'mouseover' events during programmatic scrolling
6044 // and around 100-150 ms after it is finished.
6045 this.blockMouseOverEvents++;
6046 item.scrollElementIntoView().done( function () {
6047 setTimeout( function () {
6048 widget.blockMouseOverEvents--;
6049 }, 200 );
6050 } );
6051 };
6052
6053 /**
6054 * Clear the key-press buffer
6055 *
6056 * @protected
6057 */
6058 OO.ui.SelectWidget.prototype.clearKeyPressBuffer = function () {
6059 if ( this.keyPressBufferTimer ) {
6060 clearTimeout( this.keyPressBufferTimer );
6061 this.keyPressBufferTimer = null;
6062 }
6063 this.keyPressBuffer = '';
6064 };
6065
6066 /**
6067 * Handle key press events.
6068 *
6069 * @protected
6070 * @param {KeyboardEvent} e Key press event
6071 */
6072 OO.ui.SelectWidget.prototype.onKeyPress = function ( e ) {
6073 var c, filter, item;
6074
6075 if ( !e.charCode ) {
6076 if ( e.keyCode === OO.ui.Keys.BACKSPACE && this.keyPressBuffer !== '' ) {
6077 this.keyPressBuffer = this.keyPressBuffer.substr( 0, this.keyPressBuffer.length - 1 );
6078 return false;
6079 }
6080 return;
6081 }
6082 if ( String.fromCodePoint ) {
6083 c = String.fromCodePoint( e.charCode );
6084 } else {
6085 c = String.fromCharCode( e.charCode );
6086 }
6087
6088 if ( this.keyPressBufferTimer ) {
6089 clearTimeout( this.keyPressBufferTimer );
6090 }
6091 this.keyPressBufferTimer = setTimeout( this.clearKeyPressBuffer.bind( this ), 1500 );
6092
6093 item = this.getHighlightedItem() || this.getSelectedItem();
6094
6095 if ( this.keyPressBuffer === c ) {
6096 // Common (if weird) special case: typing "xxxx" will cycle through all
6097 // the items beginning with "x".
6098 if ( item ) {
6099 item = this.getRelativeSelectableItem( item, 1 );
6100 }
6101 } else {
6102 this.keyPressBuffer += c;
6103 }
6104
6105 filter = this.getItemMatcher( this.keyPressBuffer, false );
6106 if ( !item || !filter( item ) ) {
6107 item = this.getRelativeSelectableItem( item, 1, filter );
6108 }
6109 if ( item ) {
6110 if ( this.isVisible() && item.constructor.static.highlightable ) {
6111 this.highlightItem( item );
6112 } else {
6113 this.chooseItem( item );
6114 }
6115 this.scrollItemIntoView( item );
6116 }
6117
6118 e.preventDefault();
6119 e.stopPropagation();
6120 };
6121
6122 /**
6123 * Get a matcher for the specific string
6124 *
6125 * @protected
6126 * @param {string} s String to match against items
6127 * @param {boolean} [exact=false] Only accept exact matches
6128 * @return {Function} function ( OO.ui.OptionWidget ) => boolean
6129 */
6130 OO.ui.SelectWidget.prototype.getItemMatcher = function ( s, exact ) {
6131 var re;
6132
6133 if ( s.normalize ) {
6134 s = s.normalize();
6135 }
6136 s = exact ? s.trim() : s.replace( /^\s+/, '' );
6137 re = '^\\s*' + s.replace( /([\\{}()|.?*+\-\^$\[\]])/g, '\\$1' ).replace( /\s+/g, '\\s+' );
6138 if ( exact ) {
6139 re += '\\s*$';
6140 }
6141 re = new RegExp( re, 'i' );
6142 return function ( item ) {
6143 var matchText = item.getMatchText();
6144 if ( matchText.normalize ) {
6145 matchText = matchText.normalize();
6146 }
6147 return re.test( matchText );
6148 };
6149 };
6150
6151 /**
6152 * Bind key press listener.
6153 *
6154 * @protected
6155 */
6156 OO.ui.SelectWidget.prototype.bindKeyPressListener = function () {
6157 this.getElementWindow().addEventListener( 'keypress', this.onKeyPressHandler, true );
6158 };
6159
6160 /**
6161 * Unbind key down listener.
6162 *
6163 * If you override this, be sure to call this.clearKeyPressBuffer() from your
6164 * implementation.
6165 *
6166 * @protected
6167 */
6168 OO.ui.SelectWidget.prototype.unbindKeyPressListener = function () {
6169 this.getElementWindow().removeEventListener( 'keypress', this.onKeyPressHandler, true );
6170 this.clearKeyPressBuffer();
6171 };
6172
6173 /**
6174 * Visibility change handler
6175 *
6176 * @protected
6177 * @param {boolean} visible
6178 */
6179 OO.ui.SelectWidget.prototype.onToggle = function ( visible ) {
6180 if ( !visible ) {
6181 this.clearKeyPressBuffer();
6182 }
6183 };
6184
6185 /**
6186 * Get the closest item to a jQuery.Event.
6187 *
6188 * @private
6189 * @param {jQuery.Event} e
6190 * @return {OO.ui.OptionWidget|null} Outline item widget, `null` if none was found
6191 */
6192 OO.ui.SelectWidget.prototype.getTargetItem = function ( e ) {
6193 return $( e.target ).closest( '.oo-ui-optionWidget' ).data( 'oo-ui-optionWidget' ) || null;
6194 };
6195
6196 /**
6197 * Get selected item.
6198 *
6199 * @return {OO.ui.OptionWidget|null} Selected item, `null` if no item is selected
6200 */
6201 OO.ui.SelectWidget.prototype.getSelectedItem = function () {
6202 var i, len;
6203
6204 for ( i = 0, len = this.items.length; i < len; i++ ) {
6205 if ( this.items[ i ].isSelected() ) {
6206 return this.items[ i ];
6207 }
6208 }
6209 return null;
6210 };
6211
6212 /**
6213 * Get highlighted item.
6214 *
6215 * @return {OO.ui.OptionWidget|null} Highlighted item, `null` if no item is highlighted
6216 */
6217 OO.ui.SelectWidget.prototype.getHighlightedItem = function () {
6218 var i, len;
6219
6220 for ( i = 0, len = this.items.length; i < len; i++ ) {
6221 if ( this.items[ i ].isHighlighted() ) {
6222 return this.items[ i ];
6223 }
6224 }
6225 return null;
6226 };
6227
6228 /**
6229 * Toggle pressed state.
6230 *
6231 * Press is a state that occurs when a user mouses down on an item, but
6232 * has not yet let go of the mouse. The item may appear selected, but it will not be selected
6233 * until the user releases the mouse.
6234 *
6235 * @param {boolean} pressed An option is being pressed
6236 */
6237 OO.ui.SelectWidget.prototype.togglePressed = function ( pressed ) {
6238 if ( pressed === undefined ) {
6239 pressed = !this.pressed;
6240 }
6241 if ( pressed !== this.pressed ) {
6242 this.$element
6243 .toggleClass( 'oo-ui-selectWidget-pressed', pressed )
6244 .toggleClass( 'oo-ui-selectWidget-depressed', !pressed );
6245 this.pressed = pressed;
6246 }
6247 };
6248
6249 /**
6250 * Highlight an option. If the `item` param is omitted, no options will be highlighted
6251 * and any existing highlight will be removed. The highlight is mutually exclusive.
6252 *
6253 * @param {OO.ui.OptionWidget} [item] Item to highlight, omit for no highlight
6254 * @fires highlight
6255 * @chainable
6256 */
6257 OO.ui.SelectWidget.prototype.highlightItem = function ( item ) {
6258 var i, len, highlighted,
6259 changed = false;
6260
6261 for ( i = 0, len = this.items.length; i < len; i++ ) {
6262 highlighted = this.items[ i ] === item;
6263 if ( this.items[ i ].isHighlighted() !== highlighted ) {
6264 this.items[ i ].setHighlighted( highlighted );
6265 changed = true;
6266 }
6267 }
6268 if ( changed ) {
6269 this.emit( 'highlight', item );
6270 }
6271
6272 return this;
6273 };
6274
6275 /**
6276 * Fetch an item by its label.
6277 *
6278 * @param {string} label Label of the item to select.
6279 * @param {boolean} [prefix=false] Allow a prefix match, if only a single item matches
6280 * @return {OO.ui.Element|null} Item with equivalent label, `null` if none exists
6281 */
6282 OO.ui.SelectWidget.prototype.getItemFromLabel = function ( label, prefix ) {
6283 var i, item, found,
6284 len = this.items.length,
6285 filter = this.getItemMatcher( label, true );
6286
6287 for ( i = 0; i < len; i++ ) {
6288 item = this.items[ i ];
6289 if ( item instanceof OO.ui.OptionWidget && item.isSelectable() && filter( item ) ) {
6290 return item;
6291 }
6292 }
6293
6294 if ( prefix ) {
6295 found = null;
6296 filter = this.getItemMatcher( label, false );
6297 for ( i = 0; i < len; i++ ) {
6298 item = this.items[ i ];
6299 if ( item instanceof OO.ui.OptionWidget && item.isSelectable() && filter( item ) ) {
6300 if ( found ) {
6301 return null;
6302 }
6303 found = item;
6304 }
6305 }
6306 if ( found ) {
6307 return found;
6308 }
6309 }
6310
6311 return null;
6312 };
6313
6314 /**
6315 * Programmatically select an option by its label. If the item does not exist,
6316 * all options will be deselected.
6317 *
6318 * @param {string} [label] Label of the item to select.
6319 * @param {boolean} [prefix=false] Allow a prefix match, if only a single item matches
6320 * @fires select
6321 * @chainable
6322 */
6323 OO.ui.SelectWidget.prototype.selectItemByLabel = function ( label, prefix ) {
6324 var itemFromLabel = this.getItemFromLabel( label, !!prefix );
6325 if ( label === undefined || !itemFromLabel ) {
6326 return this.selectItem();
6327 }
6328 return this.selectItem( itemFromLabel );
6329 };
6330
6331 /**
6332 * Programmatically select an option by its data. If the `data` parameter is omitted,
6333 * or if the item does not exist, all options will be deselected.
6334 *
6335 * @param {Object|string} [data] Value of the item to select, omit to deselect all
6336 * @fires select
6337 * @chainable
6338 */
6339 OO.ui.SelectWidget.prototype.selectItemByData = function ( data ) {
6340 var itemFromData = this.getItemFromData( data );
6341 if ( data === undefined || !itemFromData ) {
6342 return this.selectItem();
6343 }
6344 return this.selectItem( itemFromData );
6345 };
6346
6347 /**
6348 * Programmatically select an option by its reference. If the `item` parameter is omitted,
6349 * all options will be deselected.
6350 *
6351 * @param {OO.ui.OptionWidget} [item] Item to select, omit to deselect all
6352 * @fires select
6353 * @chainable
6354 */
6355 OO.ui.SelectWidget.prototype.selectItem = function ( item ) {
6356 var i, len, selected,
6357 changed = false;
6358
6359 for ( i = 0, len = this.items.length; i < len; i++ ) {
6360 selected = this.items[ i ] === item;
6361 if ( this.items[ i ].isSelected() !== selected ) {
6362 this.items[ i ].setSelected( selected );
6363 changed = true;
6364 }
6365 }
6366 if ( changed ) {
6367 this.emit( 'select', item );
6368 }
6369
6370 return this;
6371 };
6372
6373 /**
6374 * Press an item.
6375 *
6376 * Press is a state that occurs when a user mouses down on an item, but has not
6377 * yet let go of the mouse. The item may appear selected, but it will not be selected until the user
6378 * releases the mouse.
6379 *
6380 * @param {OO.ui.OptionWidget} [item] Item to press, omit to depress all
6381 * @fires press
6382 * @chainable
6383 */
6384 OO.ui.SelectWidget.prototype.pressItem = function ( item ) {
6385 var i, len, pressed,
6386 changed = false;
6387
6388 for ( i = 0, len = this.items.length; i < len; i++ ) {
6389 pressed = this.items[ i ] === item;
6390 if ( this.items[ i ].isPressed() !== pressed ) {
6391 this.items[ i ].setPressed( pressed );
6392 changed = true;
6393 }
6394 }
6395 if ( changed ) {
6396 this.emit( 'press', item );
6397 }
6398
6399 return this;
6400 };
6401
6402 /**
6403 * Choose an item.
6404 *
6405 * Note that ‘choose’ should never be modified programmatically. A user can choose
6406 * an option with the keyboard or mouse and it becomes selected. To select an item programmatically,
6407 * use the #selectItem method.
6408 *
6409 * This method is identical to #selectItem, but may vary in subclasses that take additional action
6410 * when users choose an item with the keyboard or mouse.
6411 *
6412 * @param {OO.ui.OptionWidget} item Item to choose
6413 * @fires choose
6414 * @chainable
6415 */
6416 OO.ui.SelectWidget.prototype.chooseItem = function ( item ) {
6417 if ( item ) {
6418 this.selectItem( item );
6419 this.emit( 'choose', item );
6420 }
6421
6422 return this;
6423 };
6424
6425 /**
6426 * Get an option by its position relative to the specified item (or to the start of the option array,
6427 * if item is `null`). The direction in which to search through the option array is specified with a
6428 * number: -1 for reverse (the default) or 1 for forward. The method will return an option, or
6429 * `null` if there are no options in the array.
6430 *
6431 * @param {OO.ui.OptionWidget|null} item Item to describe the start position, or `null` to start at the beginning of the array.
6432 * @param {number} direction Direction to move in: -1 to move backward, 1 to move forward
6433 * @param {Function} [filter] Only consider items for which this function returns
6434 * true. Function takes an OO.ui.OptionWidget and returns a boolean.
6435 * @return {OO.ui.OptionWidget|null} Item at position, `null` if there are no items in the select
6436 */
6437 OO.ui.SelectWidget.prototype.getRelativeSelectableItem = function ( item, direction, filter ) {
6438 var currentIndex, nextIndex, i,
6439 increase = direction > 0 ? 1 : -1,
6440 len = this.items.length;
6441
6442 if ( item instanceof OO.ui.OptionWidget ) {
6443 currentIndex = this.items.indexOf( item );
6444 nextIndex = ( currentIndex + increase + len ) % len;
6445 } else {
6446 // If no item is selected and moving forward, start at the beginning.
6447 // If moving backward, start at the end.
6448 nextIndex = direction > 0 ? 0 : len - 1;
6449 }
6450
6451 for ( i = 0; i < len; i++ ) {
6452 item = this.items[ nextIndex ];
6453 if (
6454 item instanceof OO.ui.OptionWidget && item.isSelectable() &&
6455 ( !filter || filter( item ) )
6456 ) {
6457 return item;
6458 }
6459 nextIndex = ( nextIndex + increase + len ) % len;
6460 }
6461 return null;
6462 };
6463
6464 /**
6465 * Get the next selectable item or `null` if there are no selectable items.
6466 * Disabled options and menu-section markers and breaks are not selectable.
6467 *
6468 * @return {OO.ui.OptionWidget|null} Item, `null` if there aren't any selectable items
6469 */
6470 OO.ui.SelectWidget.prototype.getFirstSelectableItem = function () {
6471 return this.getRelativeSelectableItem( null, 1 );
6472 };
6473
6474 /**
6475 * Add an array of options to the select. Optionally, an index number can be used to
6476 * specify an insertion point.
6477 *
6478 * @param {OO.ui.OptionWidget[]} items Items to add
6479 * @param {number} [index] Index to insert items after
6480 * @fires add
6481 * @chainable
6482 */
6483 OO.ui.SelectWidget.prototype.addItems = function ( items, index ) {
6484 // Mixin method
6485 OO.ui.mixin.GroupWidget.prototype.addItems.call( this, items, index );
6486
6487 // Always provide an index, even if it was omitted
6488 this.emit( 'add', items, index === undefined ? this.items.length - items.length - 1 : index );
6489
6490 return this;
6491 };
6492
6493 /**
6494 * Remove the specified array of options from the select. Options will be detached
6495 * from the DOM, not removed, so they can be reused later. To remove all options from
6496 * the select, you may wish to use the #clearItems method instead.
6497 *
6498 * @param {OO.ui.OptionWidget[]} items Items to remove
6499 * @fires remove
6500 * @chainable
6501 */
6502 OO.ui.SelectWidget.prototype.removeItems = function ( items ) {
6503 var i, len, item;
6504
6505 // Deselect items being removed
6506 for ( i = 0, len = items.length; i < len; i++ ) {
6507 item = items[ i ];
6508 if ( item.isSelected() ) {
6509 this.selectItem( null );
6510 }
6511 }
6512
6513 // Mixin method
6514 OO.ui.mixin.GroupWidget.prototype.removeItems.call( this, items );
6515
6516 this.emit( 'remove', items );
6517
6518 return this;
6519 };
6520
6521 /**
6522 * Clear all options from the select. Options will be detached from the DOM, not removed,
6523 * so that they can be reused later. To remove a subset of options from the select, use
6524 * the #removeItems method.
6525 *
6526 * @fires remove
6527 * @chainable
6528 */
6529 OO.ui.SelectWidget.prototype.clearItems = function () {
6530 var items = this.items.slice();
6531
6532 // Mixin method
6533 OO.ui.mixin.GroupWidget.prototype.clearItems.call( this );
6534
6535 // Clear selection
6536 this.selectItem( null );
6537
6538 this.emit( 'remove', items );
6539
6540 return this;
6541 };
6542
6543 /**
6544 * DecoratedOptionWidgets are {@link OO.ui.OptionWidget options} that can be configured
6545 * with an {@link OO.ui.mixin.IconElement icon} and/or {@link OO.ui.mixin.IndicatorElement indicator}.
6546 * This class is used with OO.ui.SelectWidget to create a selection of mutually exclusive
6547 * options. For more information about options and selects, please see the
6548 * [OOjs UI documentation on MediaWiki][1].
6549 *
6550 * @example
6551 * // Decorated options in a select widget
6552 * var select = new OO.ui.SelectWidget( {
6553 * items: [
6554 * new OO.ui.DecoratedOptionWidget( {
6555 * data: 'a',
6556 * label: 'Option with icon',
6557 * icon: 'help'
6558 * } ),
6559 * new OO.ui.DecoratedOptionWidget( {
6560 * data: 'b',
6561 * label: 'Option with indicator',
6562 * indicator: 'next'
6563 * } )
6564 * ]
6565 * } );
6566 * $( 'body' ).append( select.$element );
6567 *
6568 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
6569 *
6570 * @class
6571 * @extends OO.ui.OptionWidget
6572 * @mixins OO.ui.mixin.IconElement
6573 * @mixins OO.ui.mixin.IndicatorElement
6574 *
6575 * @constructor
6576 * @param {Object} [config] Configuration options
6577 */
6578 OO.ui.DecoratedOptionWidget = function OoUiDecoratedOptionWidget( config ) {
6579 // Parent constructor
6580 OO.ui.DecoratedOptionWidget.parent.call( this, config );
6581
6582 // Mixin constructors
6583 OO.ui.mixin.IconElement.call( this, config );
6584 OO.ui.mixin.IndicatorElement.call( this, config );
6585
6586 // Initialization
6587 this.$element
6588 .addClass( 'oo-ui-decoratedOptionWidget' )
6589 .prepend( this.$icon )
6590 .append( this.$indicator );
6591 };
6592
6593 /* Setup */
6594
6595 OO.inheritClass( OO.ui.DecoratedOptionWidget, OO.ui.OptionWidget );
6596 OO.mixinClass( OO.ui.DecoratedOptionWidget, OO.ui.mixin.IconElement );
6597 OO.mixinClass( OO.ui.DecoratedOptionWidget, OO.ui.mixin.IndicatorElement );
6598
6599 /**
6600 * MenuOptionWidget is an option widget that looks like a menu item. The class is used with
6601 * OO.ui.MenuSelectWidget to create a menu of mutually exclusive options. Please see
6602 * the [OOjs UI documentation on MediaWiki] [1] for more information.
6603 *
6604 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
6605 *
6606 * @class
6607 * @extends OO.ui.DecoratedOptionWidget
6608 *
6609 * @constructor
6610 * @param {Object} [config] Configuration options
6611 */
6612 OO.ui.MenuOptionWidget = function OoUiMenuOptionWidget( config ) {
6613 // Configuration initialization
6614 config = $.extend( { icon: 'check' }, config );
6615
6616 // Parent constructor
6617 OO.ui.MenuOptionWidget.parent.call( this, config );
6618
6619 // Initialization
6620 this.$element
6621 .attr( 'role', 'menuitem' )
6622 .addClass( 'oo-ui-menuOptionWidget' );
6623 };
6624
6625 /* Setup */
6626
6627 OO.inheritClass( OO.ui.MenuOptionWidget, OO.ui.DecoratedOptionWidget );
6628
6629 /* Static Properties */
6630
6631 /**
6632 * @static
6633 * @inheritdoc
6634 */
6635 OO.ui.MenuOptionWidget.static.scrollIntoViewOnSelect = true;
6636
6637 /**
6638 * MenuSectionOptionWidgets are used inside {@link OO.ui.MenuSelectWidget menu select widgets} to group one or more related
6639 * {@link OO.ui.MenuOptionWidget menu options}. MenuSectionOptionWidgets cannot be highlighted or selected.
6640 *
6641 * @example
6642 * var myDropdown = new OO.ui.DropdownWidget( {
6643 * menu: {
6644 * items: [
6645 * new OO.ui.MenuSectionOptionWidget( {
6646 * label: 'Dogs'
6647 * } ),
6648 * new OO.ui.MenuOptionWidget( {
6649 * data: 'corgi',
6650 * label: 'Welsh Corgi'
6651 * } ),
6652 * new OO.ui.MenuOptionWidget( {
6653 * data: 'poodle',
6654 * label: 'Standard Poodle'
6655 * } ),
6656 * new OO.ui.MenuSectionOptionWidget( {
6657 * label: 'Cats'
6658 * } ),
6659 * new OO.ui.MenuOptionWidget( {
6660 * data: 'lion',
6661 * label: 'Lion'
6662 * } )
6663 * ]
6664 * }
6665 * } );
6666 * $( 'body' ).append( myDropdown.$element );
6667 *
6668 * @class
6669 * @extends OO.ui.DecoratedOptionWidget
6670 *
6671 * @constructor
6672 * @param {Object} [config] Configuration options
6673 */
6674 OO.ui.MenuSectionOptionWidget = function OoUiMenuSectionOptionWidget( config ) {
6675 // Parent constructor
6676 OO.ui.MenuSectionOptionWidget.parent.call( this, config );
6677
6678 // Initialization
6679 this.$element.addClass( 'oo-ui-menuSectionOptionWidget' )
6680 .attr( 'role', '' );
6681 };
6682
6683 /* Setup */
6684
6685 OO.inheritClass( OO.ui.MenuSectionOptionWidget, OO.ui.DecoratedOptionWidget );
6686
6687 /* Static Properties */
6688
6689 /**
6690 * @static
6691 * @inheritdoc
6692 */
6693 OO.ui.MenuSectionOptionWidget.static.selectable = false;
6694
6695 /**
6696 * @static
6697 * @inheritdoc
6698 */
6699 OO.ui.MenuSectionOptionWidget.static.highlightable = false;
6700
6701 /**
6702 * MenuSelectWidget is a {@link OO.ui.SelectWidget select widget} that contains options and
6703 * is used together with OO.ui.MenuOptionWidget. It is designed be used as part of another widget.
6704 * See {@link OO.ui.DropdownWidget DropdownWidget}, {@link OO.ui.ComboBoxInputWidget ComboBoxInputWidget},
6705 * and {@link OO.ui.mixin.LookupElement LookupElement} for examples of widgets that contain menus.
6706 * MenuSelectWidgets themselves are not instantiated directly, rather subclassed
6707 * and customized to be opened, closed, and displayed as needed.
6708 *
6709 * By default, menus are clipped to the visible viewport and are not visible when a user presses the
6710 * mouse outside the menu.
6711 *
6712 * Menus also have support for keyboard interaction:
6713 *
6714 * - Enter/Return key: choose and select a menu option
6715 * - Up-arrow key: highlight the previous menu option
6716 * - Down-arrow key: highlight the next menu option
6717 * - Esc key: hide the menu
6718 *
6719 * Unlike most widgets, MenuSelectWidget is initially hidden and must be shown by calling #toggle.
6720 *
6721 * Please see the [OOjs UI documentation on MediaWiki][1] for more information.
6722 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
6723 *
6724 * @class
6725 * @extends OO.ui.SelectWidget
6726 * @mixins OO.ui.mixin.ClippableElement
6727 *
6728 * @constructor
6729 * @param {Object} [config] Configuration options
6730 * @cfg {OO.ui.TextInputWidget} [input] Text input used to implement option highlighting for menu items that match
6731 * the text the user types. This config is used by {@link OO.ui.ComboBoxInputWidget ComboBoxInputWidget}
6732 * and {@link OO.ui.mixin.LookupElement LookupElement}
6733 * @cfg {jQuery} [$input] Text input used to implement option highlighting for menu items that match
6734 * the text the user types. This config is used by {@link OO.ui.CapsuleMultiselectWidget CapsuleMultiselectWidget}
6735 * @cfg {OO.ui.Widget} [widget] Widget associated with the menu's active state. If the user clicks the mouse
6736 * anywhere on the page outside of this widget, the menu is hidden. For example, if there is a button
6737 * that toggles the menu's visibility on click, the menu will be hidden then re-shown when the user clicks
6738 * that button, unless the button (or its parent widget) is passed in here.
6739 * @cfg {boolean} [autoHide=true] Hide the menu when the mouse is pressed outside the menu.
6740 * @cfg {jQuery} [$autoCloseIgnore] If these elements are clicked, don't auto-hide the menu.
6741 * @cfg {boolean} [hideOnChoose=true] Hide the menu when the user chooses an option.
6742 * @cfg {boolean} [filterFromInput=false] Filter the displayed options from the input
6743 * @cfg {boolean} [highlightOnFilter] Highlight the first result when filtering
6744 */
6745 OO.ui.MenuSelectWidget = function OoUiMenuSelectWidget( config ) {
6746 // Configuration initialization
6747 config = config || {};
6748
6749 // Parent constructor
6750 OO.ui.MenuSelectWidget.parent.call( this, config );
6751
6752 // Mixin constructors
6753 OO.ui.mixin.ClippableElement.call( this, $.extend( {}, config, { $clippable: this.$group } ) );
6754
6755 // Properties
6756 this.autoHide = config.autoHide === undefined || !!config.autoHide;
6757 this.hideOnChoose = config.hideOnChoose === undefined || !!config.hideOnChoose;
6758 this.filterFromInput = !!config.filterFromInput;
6759 this.$input = config.$input ? config.$input : config.input ? config.input.$input : null;
6760 this.$widget = config.widget ? config.widget.$element : null;
6761 this.$autoCloseIgnore = config.$autoCloseIgnore || $( [] );
6762 this.onDocumentMouseDownHandler = this.onDocumentMouseDown.bind( this );
6763 this.onInputEditHandler = OO.ui.debounce( this.updateItemVisibility.bind( this ), 100 );
6764 this.highlightOnFilter = !!config.highlightOnFilter;
6765
6766 // Initialization
6767 this.$element
6768 .addClass( 'oo-ui-menuSelectWidget' )
6769 .attr( 'role', 'menu' );
6770
6771 // Initially hidden - using #toggle may cause errors if subclasses override toggle with methods
6772 // that reference properties not initialized at that time of parent class construction
6773 // TODO: Find a better way to handle post-constructor setup
6774 this.visible = false;
6775 this.$element.addClass( 'oo-ui-element-hidden' );
6776 };
6777
6778 /* Setup */
6779
6780 OO.inheritClass( OO.ui.MenuSelectWidget, OO.ui.SelectWidget );
6781 OO.mixinClass( OO.ui.MenuSelectWidget, OO.ui.mixin.ClippableElement );
6782
6783 /* Methods */
6784
6785 /**
6786 * Handles document mouse down events.
6787 *
6788 * @protected
6789 * @param {MouseEvent} e Mouse down event
6790 */
6791 OO.ui.MenuSelectWidget.prototype.onDocumentMouseDown = function ( e ) {
6792 if (
6793 this.isVisible() &&
6794 !OO.ui.contains(
6795 this.$element.add( this.$widget ).add( this.$autoCloseIgnore ).get(),
6796 e.target,
6797 true
6798 )
6799 ) {
6800 this.toggle( false );
6801 }
6802 };
6803
6804 /**
6805 * @inheritdoc
6806 */
6807 OO.ui.MenuSelectWidget.prototype.onKeyDown = function ( e ) {
6808 var currentItem = this.getHighlightedItem() || this.getSelectedItem();
6809
6810 if ( !this.isDisabled() && this.isVisible() ) {
6811 switch ( e.keyCode ) {
6812 case OO.ui.Keys.LEFT:
6813 case OO.ui.Keys.RIGHT:
6814 // Do nothing if a text field is associated, arrow keys will be handled natively
6815 if ( !this.$input ) {
6816 OO.ui.MenuSelectWidget.parent.prototype.onKeyDown.call( this, e );
6817 }
6818 break;
6819 case OO.ui.Keys.ESCAPE:
6820 case OO.ui.Keys.TAB:
6821 if ( currentItem ) {
6822 currentItem.setHighlighted( false );
6823 }
6824 this.toggle( false );
6825 // Don't prevent tabbing away, prevent defocusing
6826 if ( e.keyCode === OO.ui.Keys.ESCAPE ) {
6827 e.preventDefault();
6828 e.stopPropagation();
6829 }
6830 break;
6831 default:
6832 OO.ui.MenuSelectWidget.parent.prototype.onKeyDown.call( this, e );
6833 return;
6834 }
6835 }
6836 };
6837
6838 /**
6839 * Update menu item visibility after input changes.
6840 *
6841 * @protected
6842 */
6843 OO.ui.MenuSelectWidget.prototype.updateItemVisibility = function () {
6844 var i, item, visible, section, sectionEmpty,
6845 firstItemFound = false,
6846 anyVisible = false,
6847 len = this.items.length,
6848 showAll = !this.isVisible(),
6849 filter = showAll ? null : this.getItemMatcher( this.$input.val() );
6850
6851 // Hide non-matching options, and also hide section headers if all options
6852 // in their section are hidden.
6853 for ( i = 0; i < len; i++ ) {
6854 item = this.items[ i ];
6855 if ( item instanceof OO.ui.MenuSectionOptionWidget ) {
6856 if ( section ) {
6857 // If the previous section was empty, hide its header
6858 section.toggle( showAll || !sectionEmpty );
6859 }
6860 section = item;
6861 sectionEmpty = true;
6862 } else if ( item instanceof OO.ui.OptionWidget ) {
6863 visible = showAll || filter( item );
6864 anyVisible = anyVisible || visible;
6865 sectionEmpty = sectionEmpty && !visible;
6866 item.toggle( visible );
6867 if ( this.highlightOnFilter && visible && !firstItemFound ) {
6868 // Highlight the first item in the list
6869 this.highlightItem( item );
6870 firstItemFound = true;
6871 }
6872 }
6873 }
6874 // Process the final section
6875 if ( section ) {
6876 section.toggle( showAll || !sectionEmpty );
6877 }
6878
6879 this.$element.toggleClass( 'oo-ui-menuSelectWidget-invisible', !anyVisible );
6880
6881 // Reevaluate clipping
6882 this.clip();
6883 };
6884
6885 /**
6886 * @inheritdoc
6887 */
6888 OO.ui.MenuSelectWidget.prototype.bindKeyDownListener = function () {
6889 if ( this.$input ) {
6890 this.$input.on( 'keydown', this.onKeyDownHandler );
6891 } else {
6892 OO.ui.MenuSelectWidget.parent.prototype.bindKeyDownListener.call( this );
6893 }
6894 };
6895
6896 /**
6897 * @inheritdoc
6898 */
6899 OO.ui.MenuSelectWidget.prototype.unbindKeyDownListener = function () {
6900 if ( this.$input ) {
6901 this.$input.off( 'keydown', this.onKeyDownHandler );
6902 } else {
6903 OO.ui.MenuSelectWidget.parent.prototype.unbindKeyDownListener.call( this );
6904 }
6905 };
6906
6907 /**
6908 * @inheritdoc
6909 */
6910 OO.ui.MenuSelectWidget.prototype.bindKeyPressListener = function () {
6911 if ( this.$input ) {
6912 if ( this.filterFromInput ) {
6913 this.$input.on( 'keydown mouseup cut paste change input select', this.onInputEditHandler );
6914 }
6915 } else {
6916 OO.ui.MenuSelectWidget.parent.prototype.bindKeyPressListener.call( this );
6917 }
6918 };
6919
6920 /**
6921 * @inheritdoc
6922 */
6923 OO.ui.MenuSelectWidget.prototype.unbindKeyPressListener = function () {
6924 if ( this.$input ) {
6925 if ( this.filterFromInput ) {
6926 this.$input.off( 'keydown mouseup cut paste change input select', this.onInputEditHandler );
6927 this.updateItemVisibility();
6928 }
6929 } else {
6930 OO.ui.MenuSelectWidget.parent.prototype.unbindKeyPressListener.call( this );
6931 }
6932 };
6933
6934 /**
6935 * Choose an item.
6936 *
6937 * When a user chooses an item, the menu is closed, unless the hideOnChoose config option is set to false.
6938 *
6939 * Note that ‘choose’ should never be modified programmatically. A user can choose an option with the keyboard
6940 * or mouse and it becomes selected. To select an item programmatically, use the #selectItem method.
6941 *
6942 * @param {OO.ui.OptionWidget} item Item to choose
6943 * @chainable
6944 */
6945 OO.ui.MenuSelectWidget.prototype.chooseItem = function ( item ) {
6946 OO.ui.MenuSelectWidget.parent.prototype.chooseItem.call( this, item );
6947 if ( this.hideOnChoose ) {
6948 this.toggle( false );
6949 }
6950 return this;
6951 };
6952
6953 /**
6954 * @inheritdoc
6955 */
6956 OO.ui.MenuSelectWidget.prototype.addItems = function ( items, index ) {
6957 // Parent method
6958 OO.ui.MenuSelectWidget.parent.prototype.addItems.call( this, items, index );
6959
6960 // Reevaluate clipping
6961 this.clip();
6962
6963 return this;
6964 };
6965
6966 /**
6967 * @inheritdoc
6968 */
6969 OO.ui.MenuSelectWidget.prototype.removeItems = function ( items ) {
6970 // Parent method
6971 OO.ui.MenuSelectWidget.parent.prototype.removeItems.call( this, items );
6972
6973 // Reevaluate clipping
6974 this.clip();
6975
6976 return this;
6977 };
6978
6979 /**
6980 * @inheritdoc
6981 */
6982 OO.ui.MenuSelectWidget.prototype.clearItems = function () {
6983 // Parent method
6984 OO.ui.MenuSelectWidget.parent.prototype.clearItems.call( this );
6985
6986 // Reevaluate clipping
6987 this.clip();
6988
6989 return this;
6990 };
6991
6992 /**
6993 * Toggle visibility of the menu. The menu is initially hidden and must be shown by calling
6994 * `.toggle( true )` after its #$element is attached to the DOM.
6995 *
6996 * Do not show the menu while it is not attached to the DOM. The calculations required to display
6997 * it in the right place and with the right dimensions only work correctly while it is attached.
6998 * Side-effects may include broken interface and exceptions being thrown. This wasn't always
6999 * strictly enforced, so currently it only generates a warning in the browser console.
7000 *
7001 * @inheritdoc
7002 */
7003 OO.ui.MenuSelectWidget.prototype.toggle = function ( visible ) {
7004 var change;
7005
7006 visible = ( visible === undefined ? !this.visible : !!visible ) && !!this.items.length;
7007 change = visible !== this.isVisible();
7008
7009 if ( visible && !this.warnedUnattached && !this.isElementAttached() ) {
7010 OO.ui.warnDeprecation( 'MenuSelectWidget#toggle: Before calling this method, the menu must be attached to the DOM.' );
7011 this.warnedUnattached = true;
7012 }
7013
7014 // Parent method
7015 OO.ui.MenuSelectWidget.parent.prototype.toggle.call( this, visible );
7016
7017 if ( change ) {
7018 if ( visible ) {
7019 this.bindKeyDownListener();
7020 this.bindKeyPressListener();
7021
7022 this.toggleClipping( true );
7023
7024 if ( this.getSelectedItem() ) {
7025 this.getSelectedItem().scrollElementIntoView( { duration: 0 } );
7026 }
7027
7028 // Auto-hide
7029 if ( this.autoHide ) {
7030 this.getElementDocument().addEventListener( 'mousedown', this.onDocumentMouseDownHandler, true );
7031 }
7032 } else {
7033 this.unbindKeyDownListener();
7034 this.unbindKeyPressListener();
7035 this.getElementDocument().removeEventListener( 'mousedown', this.onDocumentMouseDownHandler, true );
7036 this.toggleClipping( false );
7037 }
7038 }
7039
7040 return this;
7041 };
7042
7043 /**
7044 * DropdownWidgets are not menus themselves, rather they contain a menu of options created with
7045 * OO.ui.MenuOptionWidget. The DropdownWidget takes care of opening and displaying the menu so that
7046 * users can interact with it.
7047 *
7048 * If you want to use this within an HTML form, such as a OO.ui.FormLayout, use
7049 * OO.ui.DropdownInputWidget instead.
7050 *
7051 * @example
7052 * // Example: A DropdownWidget with a menu that contains three options
7053 * var dropDown = new OO.ui.DropdownWidget( {
7054 * label: 'Dropdown menu: Select a menu option',
7055 * menu: {
7056 * items: [
7057 * new OO.ui.MenuOptionWidget( {
7058 * data: 'a',
7059 * label: 'First'
7060 * } ),
7061 * new OO.ui.MenuOptionWidget( {
7062 * data: 'b',
7063 * label: 'Second'
7064 * } ),
7065 * new OO.ui.MenuOptionWidget( {
7066 * data: 'c',
7067 * label: 'Third'
7068 * } )
7069 * ]
7070 * }
7071 * } );
7072 *
7073 * $( 'body' ).append( dropDown.$element );
7074 *
7075 * dropDown.getMenu().selectItemByData( 'b' );
7076 *
7077 * dropDown.getMenu().getSelectedItem().getData(); // returns 'b'
7078 *
7079 * For more information, please see the [OOjs UI documentation on MediaWiki] [1].
7080 *
7081 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
7082 *
7083 * @class
7084 * @extends OO.ui.Widget
7085 * @mixins OO.ui.mixin.IconElement
7086 * @mixins OO.ui.mixin.IndicatorElement
7087 * @mixins OO.ui.mixin.LabelElement
7088 * @mixins OO.ui.mixin.TitledElement
7089 * @mixins OO.ui.mixin.TabIndexedElement
7090 *
7091 * @constructor
7092 * @param {Object} [config] Configuration options
7093 * @cfg {Object} [menu] Configuration options to pass to {@link OO.ui.FloatingMenuSelectWidget menu select widget}
7094 * @cfg {jQuery} [$overlay] Render the menu into a separate layer. This configuration is useful in cases where
7095 * the expanded menu is larger than its containing `<div>`. The specified overlay layer is usually on top of the
7096 * containing `<div>` and has a larger area. By default, the menu uses relative positioning.
7097 */
7098 OO.ui.DropdownWidget = function OoUiDropdownWidget( config ) {
7099 // Configuration initialization
7100 config = $.extend( { indicator: 'down' }, config );
7101
7102 // Parent constructor
7103 OO.ui.DropdownWidget.parent.call( this, config );
7104
7105 // Properties (must be set before TabIndexedElement constructor call)
7106 this.$handle = this.$( '<span>' );
7107 this.$overlay = config.$overlay || this.$element;
7108
7109 // Mixin constructors
7110 OO.ui.mixin.IconElement.call( this, config );
7111 OO.ui.mixin.IndicatorElement.call( this, config );
7112 OO.ui.mixin.LabelElement.call( this, config );
7113 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$label } ) );
7114 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$handle } ) );
7115
7116 // Properties
7117 this.menu = new OO.ui.FloatingMenuSelectWidget( $.extend( {
7118 widget: this,
7119 $container: this.$element
7120 }, config.menu ) );
7121
7122 // Events
7123 this.$handle.on( {
7124 click: this.onClick.bind( this ),
7125 keydown: this.onKeyDown.bind( this ),
7126 // Hack? Handle type-to-search when menu is not expanded and not handling its own events
7127 keypress: this.menu.onKeyPressHandler,
7128 blur: this.menu.clearKeyPressBuffer.bind( this.menu )
7129 } );
7130 this.menu.connect( this, {
7131 select: 'onMenuSelect',
7132 toggle: 'onMenuToggle'
7133 } );
7134
7135 // Initialization
7136 this.$handle
7137 .addClass( 'oo-ui-dropdownWidget-handle' )
7138 .append( this.$icon, this.$label, this.$indicator );
7139 this.$element
7140 .addClass( 'oo-ui-dropdownWidget' )
7141 .append( this.$handle );
7142 this.$overlay.append( this.menu.$element );
7143 };
7144
7145 /* Setup */
7146
7147 OO.inheritClass( OO.ui.DropdownWidget, OO.ui.Widget );
7148 OO.mixinClass( OO.ui.DropdownWidget, OO.ui.mixin.IconElement );
7149 OO.mixinClass( OO.ui.DropdownWidget, OO.ui.mixin.IndicatorElement );
7150 OO.mixinClass( OO.ui.DropdownWidget, OO.ui.mixin.LabelElement );
7151 OO.mixinClass( OO.ui.DropdownWidget, OO.ui.mixin.TitledElement );
7152 OO.mixinClass( OO.ui.DropdownWidget, OO.ui.mixin.TabIndexedElement );
7153
7154 /* Methods */
7155
7156 /**
7157 * Get the menu.
7158 *
7159 * @return {OO.ui.MenuSelectWidget} Menu of widget
7160 */
7161 OO.ui.DropdownWidget.prototype.getMenu = function () {
7162 return this.menu;
7163 };
7164
7165 /**
7166 * Handles menu select events.
7167 *
7168 * @private
7169 * @param {OO.ui.MenuOptionWidget} item Selected menu item
7170 */
7171 OO.ui.DropdownWidget.prototype.onMenuSelect = function ( item ) {
7172 var selectedLabel;
7173
7174 if ( !item ) {
7175 this.setLabel( null );
7176 return;
7177 }
7178
7179 selectedLabel = item.getLabel();
7180
7181 // If the label is a DOM element, clone it, because setLabel will append() it
7182 if ( selectedLabel instanceof jQuery ) {
7183 selectedLabel = selectedLabel.clone();
7184 }
7185
7186 this.setLabel( selectedLabel );
7187 };
7188
7189 /**
7190 * Handle menu toggle events.
7191 *
7192 * @private
7193 * @param {boolean} isVisible Menu toggle event
7194 */
7195 OO.ui.DropdownWidget.prototype.onMenuToggle = function ( isVisible ) {
7196 this.$element.toggleClass( 'oo-ui-dropdownWidget-open', isVisible );
7197 };
7198
7199 /**
7200 * Handle mouse click events.
7201 *
7202 * @private
7203 * @param {jQuery.Event} e Mouse click event
7204 */
7205 OO.ui.DropdownWidget.prototype.onClick = function ( e ) {
7206 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
7207 this.menu.toggle();
7208 }
7209 return false;
7210 };
7211
7212 /**
7213 * Handle key down events.
7214 *
7215 * @private
7216 * @param {jQuery.Event} e Key down event
7217 */
7218 OO.ui.DropdownWidget.prototype.onKeyDown = function ( e ) {
7219 if (
7220 !this.isDisabled() &&
7221 (
7222 e.which === OO.ui.Keys.ENTER ||
7223 (
7224 !this.menu.isVisible() &&
7225 (
7226 e.which === OO.ui.Keys.SPACE ||
7227 e.which === OO.ui.Keys.UP ||
7228 e.which === OO.ui.Keys.DOWN
7229 )
7230 )
7231 )
7232 ) {
7233 this.menu.toggle();
7234 return false;
7235 }
7236 };
7237
7238 /**
7239 * RadioOptionWidget is an option widget that looks like a radio button.
7240 * The class is used with OO.ui.RadioSelectWidget to create a selection of radio options.
7241 * Please see the [OOjs UI documentation on MediaWiki] [1] for more information.
7242 *
7243 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Button_selects_and_option
7244 *
7245 * @class
7246 * @extends OO.ui.OptionWidget
7247 *
7248 * @constructor
7249 * @param {Object} [config] Configuration options
7250 */
7251 OO.ui.RadioOptionWidget = function OoUiRadioOptionWidget( config ) {
7252 // Configuration initialization
7253 config = config || {};
7254
7255 // Properties (must be done before parent constructor which calls #setDisabled)
7256 this.radio = new OO.ui.RadioInputWidget( { value: config.data, tabIndex: -1 } );
7257
7258 // Parent constructor
7259 OO.ui.RadioOptionWidget.parent.call( this, config );
7260
7261 // Initialization
7262 // Remove implicit role, we're handling it ourselves
7263 this.radio.$input.attr( 'role', 'presentation' );
7264 this.$element
7265 .addClass( 'oo-ui-radioOptionWidget' )
7266 .attr( 'role', 'radio' )
7267 .attr( 'aria-checked', 'false' )
7268 .removeAttr( 'aria-selected' )
7269 .prepend( this.radio.$element );
7270 };
7271
7272 /* Setup */
7273
7274 OO.inheritClass( OO.ui.RadioOptionWidget, OO.ui.OptionWidget );
7275
7276 /* Static Properties */
7277
7278 /**
7279 * @static
7280 * @inheritdoc
7281 */
7282 OO.ui.RadioOptionWidget.static.highlightable = false;
7283
7284 /**
7285 * @static
7286 * @inheritdoc
7287 */
7288 OO.ui.RadioOptionWidget.static.scrollIntoViewOnSelect = true;
7289
7290 /**
7291 * @static
7292 * @inheritdoc
7293 */
7294 OO.ui.RadioOptionWidget.static.pressable = false;
7295
7296 /**
7297 * @static
7298 * @inheritdoc
7299 */
7300 OO.ui.RadioOptionWidget.static.tagName = 'label';
7301
7302 /* Methods */
7303
7304 /**
7305 * @inheritdoc
7306 */
7307 OO.ui.RadioOptionWidget.prototype.setSelected = function ( state ) {
7308 OO.ui.RadioOptionWidget.parent.prototype.setSelected.call( this, state );
7309
7310 this.radio.setSelected( state );
7311 this.$element
7312 .attr( 'aria-checked', state.toString() )
7313 .removeAttr( 'aria-selected' );
7314
7315 return this;
7316 };
7317
7318 /**
7319 * @inheritdoc
7320 */
7321 OO.ui.RadioOptionWidget.prototype.setDisabled = function ( disabled ) {
7322 OO.ui.RadioOptionWidget.parent.prototype.setDisabled.call( this, disabled );
7323
7324 this.radio.setDisabled( this.isDisabled() );
7325
7326 return this;
7327 };
7328
7329 /**
7330 * RadioSelectWidget is a {@link OO.ui.SelectWidget select widget} that contains radio
7331 * options and is used together with OO.ui.RadioOptionWidget. The RadioSelectWidget provides
7332 * an interface for adding, removing and selecting options.
7333 * Please see the [OOjs UI documentation on MediaWiki][1] for more information.
7334 *
7335 * If you want to use this within an HTML form, such as a OO.ui.FormLayout, use
7336 * OO.ui.RadioSelectInputWidget instead.
7337 *
7338 * @example
7339 * // A RadioSelectWidget with RadioOptions.
7340 * var option1 = new OO.ui.RadioOptionWidget( {
7341 * data: 'a',
7342 * label: 'Selected radio option'
7343 * } );
7344 *
7345 * var option2 = new OO.ui.RadioOptionWidget( {
7346 * data: 'b',
7347 * label: 'Unselected radio option'
7348 * } );
7349 *
7350 * var radioSelect=new OO.ui.RadioSelectWidget( {
7351 * items: [ option1, option2 ]
7352 * } );
7353 *
7354 * // Select 'option 1' using the RadioSelectWidget's selectItem() method.
7355 * radioSelect.selectItem( option1 );
7356 *
7357 * $( 'body' ).append( radioSelect.$element );
7358 *
7359 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
7360
7361 *
7362 * @class
7363 * @extends OO.ui.SelectWidget
7364 * @mixins OO.ui.mixin.TabIndexedElement
7365 *
7366 * @constructor
7367 * @param {Object} [config] Configuration options
7368 */
7369 OO.ui.RadioSelectWidget = function OoUiRadioSelectWidget( config ) {
7370 // Parent constructor
7371 OO.ui.RadioSelectWidget.parent.call( this, config );
7372
7373 // Mixin constructors
7374 OO.ui.mixin.TabIndexedElement.call( this, config );
7375
7376 // Events
7377 this.$element.on( {
7378 focus: this.bindKeyDownListener.bind( this ),
7379 blur: this.unbindKeyDownListener.bind( this )
7380 } );
7381
7382 // Initialization
7383 this.$element
7384 .addClass( 'oo-ui-radioSelectWidget' )
7385 .attr( 'role', 'radiogroup' );
7386 };
7387
7388 /* Setup */
7389
7390 OO.inheritClass( OO.ui.RadioSelectWidget, OO.ui.SelectWidget );
7391 OO.mixinClass( OO.ui.RadioSelectWidget, OO.ui.mixin.TabIndexedElement );
7392
7393 /**
7394 * MultioptionWidgets are special elements that can be selected and configured with data. The
7395 * data is often unique for each option, but it does not have to be. MultioptionWidgets are used
7396 * with OO.ui.SelectWidget to create a selection of mutually exclusive options. For more information
7397 * and examples, please see the [OOjs UI documentation on MediaWiki][1].
7398 *
7399 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Multioptions
7400 *
7401 * @class
7402 * @extends OO.ui.Widget
7403 * @mixins OO.ui.mixin.ItemWidget
7404 * @mixins OO.ui.mixin.LabelElement
7405 *
7406 * @constructor
7407 * @param {Object} [config] Configuration options
7408 * @cfg {boolean} [selected=false] Whether the option is initially selected
7409 */
7410 OO.ui.MultioptionWidget = function OoUiMultioptionWidget( config ) {
7411 // Configuration initialization
7412 config = config || {};
7413
7414 // Parent constructor
7415 OO.ui.MultioptionWidget.parent.call( this, config );
7416
7417 // Mixin constructors
7418 OO.ui.mixin.ItemWidget.call( this );
7419 OO.ui.mixin.LabelElement.call( this, config );
7420
7421 // Properties
7422 this.selected = null;
7423
7424 // Initialization
7425 this.$element
7426 .addClass( 'oo-ui-multioptionWidget' )
7427 .append( this.$label );
7428 this.setSelected( config.selected );
7429 };
7430
7431 /* Setup */
7432
7433 OO.inheritClass( OO.ui.MultioptionWidget, OO.ui.Widget );
7434 OO.mixinClass( OO.ui.MultioptionWidget, OO.ui.mixin.ItemWidget );
7435 OO.mixinClass( OO.ui.MultioptionWidget, OO.ui.mixin.LabelElement );
7436
7437 /* Events */
7438
7439 /**
7440 * @event change
7441 *
7442 * A change event is emitted when the selected state of the option changes.
7443 *
7444 * @param {boolean} selected Whether the option is now selected
7445 */
7446
7447 /* Methods */
7448
7449 /**
7450 * Check if the option is selected.
7451 *
7452 * @return {boolean} Item is selected
7453 */
7454 OO.ui.MultioptionWidget.prototype.isSelected = function () {
7455 return this.selected;
7456 };
7457
7458 /**
7459 * Set the option’s selected state. In general, all modifications to the selection
7460 * should be handled by the SelectWidget’s {@link OO.ui.SelectWidget#selectItem selectItem( [item] )}
7461 * method instead of this method.
7462 *
7463 * @param {boolean} [state=false] Select option
7464 * @chainable
7465 */
7466 OO.ui.MultioptionWidget.prototype.setSelected = function ( state ) {
7467 state = !!state;
7468 if ( this.selected !== state ) {
7469 this.selected = state;
7470 this.emit( 'change', state );
7471 this.$element.toggleClass( 'oo-ui-multioptionWidget-selected', state );
7472 }
7473 return this;
7474 };
7475
7476 /**
7477 * MultiselectWidget allows selecting multiple options from a list.
7478 *
7479 * For more information about menus and options, please see the [OOjs UI documentation on MediaWiki][1].
7480 *
7481 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
7482 *
7483 * @class
7484 * @abstract
7485 * @extends OO.ui.Widget
7486 * @mixins OO.ui.mixin.GroupWidget
7487 *
7488 * @constructor
7489 * @param {Object} [config] Configuration options
7490 * @cfg {OO.ui.MultioptionWidget[]} [items] An array of options to add to the multiselect.
7491 */
7492 OO.ui.MultiselectWidget = function OoUiMultiselectWidget( config ) {
7493 // Parent constructor
7494 OO.ui.MultiselectWidget.parent.call( this, config );
7495
7496 // Configuration initialization
7497 config = config || {};
7498
7499 // Mixin constructors
7500 OO.ui.mixin.GroupWidget.call( this, config );
7501
7502 // Events
7503 this.aggregate( { change: 'select' } );
7504 // This is mostly for compatibility with CapsuleMultiselectWidget... normally, 'change' is emitted
7505 // by GroupElement only when items are added/removed
7506 this.connect( this, { select: [ 'emit', 'change' ] } );
7507
7508 // Initialization
7509 if ( config.items ) {
7510 this.addItems( config.items );
7511 }
7512 this.$group.addClass( 'oo-ui-multiselectWidget-group' );
7513 this.$element.addClass( 'oo-ui-multiselectWidget' )
7514 .append( this.$group );
7515 };
7516
7517 /* Setup */
7518
7519 OO.inheritClass( OO.ui.MultiselectWidget, OO.ui.Widget );
7520 OO.mixinClass( OO.ui.MultiselectWidget, OO.ui.mixin.GroupWidget );
7521
7522 /* Events */
7523
7524 /**
7525 * @event change
7526 *
7527 * A change event is emitted when the set of items changes, or an item is selected or deselected.
7528 */
7529
7530 /**
7531 * @event select
7532 *
7533 * A select event is emitted when an item is selected or deselected.
7534 */
7535
7536 /* Methods */
7537
7538 /**
7539 * Get options that are selected.
7540 *
7541 * @return {OO.ui.MultioptionWidget[]} Selected options
7542 */
7543 OO.ui.MultiselectWidget.prototype.getSelectedItems = function () {
7544 return this.items.filter( function ( item ) {
7545 return item.isSelected();
7546 } );
7547 };
7548
7549 /**
7550 * Get the data of options that are selected.
7551 *
7552 * @return {Object[]|string[]} Values of selected options
7553 */
7554 OO.ui.MultiselectWidget.prototype.getSelectedItemsData = function () {
7555 return this.getSelectedItems().map( function ( item ) {
7556 return item.data;
7557 } );
7558 };
7559
7560 /**
7561 * Select options by reference. Options not mentioned in the `items` array will be deselected.
7562 *
7563 * @param {OO.ui.MultioptionWidget[]} items Items to select
7564 * @chainable
7565 */
7566 OO.ui.MultiselectWidget.prototype.selectItems = function ( items ) {
7567 this.items.forEach( function ( item ) {
7568 var selected = items.indexOf( item ) !== -1;
7569 item.setSelected( selected );
7570 } );
7571 return this;
7572 };
7573
7574 /**
7575 * Select items by their data. Options not mentioned in the `datas` array will be deselected.
7576 *
7577 * @param {Object[]|string[]} datas Values of items to select
7578 * @chainable
7579 */
7580 OO.ui.MultiselectWidget.prototype.selectItemsByData = function ( datas ) {
7581 var items,
7582 widget = this;
7583 items = datas.map( function ( data ) {
7584 return widget.getItemFromData( data );
7585 } );
7586 this.selectItems( items );
7587 return this;
7588 };
7589
7590 /**
7591 * CheckboxMultioptionWidget is an option widget that looks like a checkbox.
7592 * The class is used with OO.ui.CheckboxMultiselectWidget to create a selection of checkbox options.
7593 * Please see the [OOjs UI documentation on MediaWiki] [1] for more information.
7594 *
7595 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Button_selects_and_option
7596 *
7597 * @class
7598 * @extends OO.ui.MultioptionWidget
7599 *
7600 * @constructor
7601 * @param {Object} [config] Configuration options
7602 */
7603 OO.ui.CheckboxMultioptionWidget = function OoUiCheckboxMultioptionWidget( config ) {
7604 // Configuration initialization
7605 config = config || {};
7606
7607 // Properties (must be done before parent constructor which calls #setDisabled)
7608 this.checkbox = new OO.ui.CheckboxInputWidget();
7609
7610 // Parent constructor
7611 OO.ui.CheckboxMultioptionWidget.parent.call( this, config );
7612
7613 // Events
7614 this.checkbox.on( 'change', this.onCheckboxChange.bind( this ) );
7615 this.$element.on( 'keydown', this.onKeyDown.bind( this ) );
7616
7617 // Initialization
7618 this.$element
7619 .addClass( 'oo-ui-checkboxMultioptionWidget' )
7620 .prepend( this.checkbox.$element );
7621 };
7622
7623 /* Setup */
7624
7625 OO.inheritClass( OO.ui.CheckboxMultioptionWidget, OO.ui.MultioptionWidget );
7626
7627 /* Static Properties */
7628
7629 /**
7630 * @static
7631 * @inheritdoc
7632 */
7633 OO.ui.CheckboxMultioptionWidget.static.tagName = 'label';
7634
7635 /* Methods */
7636
7637 /**
7638 * Handle checkbox selected state change.
7639 *
7640 * @private
7641 */
7642 OO.ui.CheckboxMultioptionWidget.prototype.onCheckboxChange = function () {
7643 this.setSelected( this.checkbox.isSelected() );
7644 };
7645
7646 /**
7647 * @inheritdoc
7648 */
7649 OO.ui.CheckboxMultioptionWidget.prototype.setSelected = function ( state ) {
7650 OO.ui.CheckboxMultioptionWidget.parent.prototype.setSelected.call( this, state );
7651 this.checkbox.setSelected( state );
7652 return this;
7653 };
7654
7655 /**
7656 * @inheritdoc
7657 */
7658 OO.ui.CheckboxMultioptionWidget.prototype.setDisabled = function ( disabled ) {
7659 OO.ui.CheckboxMultioptionWidget.parent.prototype.setDisabled.call( this, disabled );
7660 this.checkbox.setDisabled( this.isDisabled() );
7661 return this;
7662 };
7663
7664 /**
7665 * Focus the widget.
7666 */
7667 OO.ui.CheckboxMultioptionWidget.prototype.focus = function () {
7668 this.checkbox.focus();
7669 };
7670
7671 /**
7672 * Handle key down events.
7673 *
7674 * @protected
7675 * @param {jQuery.Event} e
7676 */
7677 OO.ui.CheckboxMultioptionWidget.prototype.onKeyDown = function ( e ) {
7678 var
7679 element = this.getElementGroup(),
7680 nextItem;
7681
7682 if ( e.keyCode === OO.ui.Keys.LEFT || e.keyCode === OO.ui.Keys.UP ) {
7683 nextItem = element.getRelativeFocusableItem( this, -1 );
7684 } else if ( e.keyCode === OO.ui.Keys.RIGHT || e.keyCode === OO.ui.Keys.DOWN ) {
7685 nextItem = element.getRelativeFocusableItem( this, 1 );
7686 }
7687
7688 if ( nextItem ) {
7689 e.preventDefault();
7690 nextItem.focus();
7691 }
7692 };
7693
7694 /**
7695 * CheckboxMultiselectWidget is a {@link OO.ui.MultiselectWidget multiselect widget} that contains
7696 * checkboxes and is used together with OO.ui.CheckboxMultioptionWidget. The
7697 * CheckboxMultiselectWidget provides an interface for adding, removing and selecting options.
7698 * Please see the [OOjs UI documentation on MediaWiki][1] for more information.
7699 *
7700 * If you want to use this within an HTML form, such as a OO.ui.FormLayout, use
7701 * OO.ui.CheckboxMultiselectInputWidget instead.
7702 *
7703 * @example
7704 * // A CheckboxMultiselectWidget with CheckboxMultioptions.
7705 * var option1 = new OO.ui.CheckboxMultioptionWidget( {
7706 * data: 'a',
7707 * selected: true,
7708 * label: 'Selected checkbox'
7709 * } );
7710 *
7711 * var option2 = new OO.ui.CheckboxMultioptionWidget( {
7712 * data: 'b',
7713 * label: 'Unselected checkbox'
7714 * } );
7715 *
7716 * var multiselect=new OO.ui.CheckboxMultiselectWidget( {
7717 * items: [ option1, option2 ]
7718 * } );
7719 *
7720 * $( 'body' ).append( multiselect.$element );
7721 *
7722 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
7723 *
7724 * @class
7725 * @extends OO.ui.MultiselectWidget
7726 *
7727 * @constructor
7728 * @param {Object} [config] Configuration options
7729 */
7730 OO.ui.CheckboxMultiselectWidget = function OoUiCheckboxMultiselectWidget( config ) {
7731 // Parent constructor
7732 OO.ui.CheckboxMultiselectWidget.parent.call( this, config );
7733
7734 // Properties
7735 this.$lastClicked = null;
7736
7737 // Events
7738 this.$group.on( 'click', this.onClick.bind( this ) );
7739
7740 // Initialization
7741 this.$element
7742 .addClass( 'oo-ui-checkboxMultiselectWidget' );
7743 };
7744
7745 /* Setup */
7746
7747 OO.inheritClass( OO.ui.CheckboxMultiselectWidget, OO.ui.MultiselectWidget );
7748
7749 /* Methods */
7750
7751 /**
7752 * Get an option by its position relative to the specified item (or to the start of the option array,
7753 * if item is `null`). The direction in which to search through the option array is specified with a
7754 * number: -1 for reverse (the default) or 1 for forward. The method will return an option, or
7755 * `null` if there are no options in the array.
7756 *
7757 * @param {OO.ui.CheckboxMultioptionWidget|null} item Item to describe the start position, or `null` to start at the beginning of the array.
7758 * @param {number} direction Direction to move in: -1 to move backward, 1 to move forward
7759 * @return {OO.ui.CheckboxMultioptionWidget|null} Item at position, `null` if there are no items in the select
7760 */
7761 OO.ui.CheckboxMultiselectWidget.prototype.getRelativeFocusableItem = function ( item, direction ) {
7762 var currentIndex, nextIndex, i,
7763 increase = direction > 0 ? 1 : -1,
7764 len = this.items.length;
7765
7766 if ( item ) {
7767 currentIndex = this.items.indexOf( item );
7768 nextIndex = ( currentIndex + increase + len ) % len;
7769 } else {
7770 // If no item is selected and moving forward, start at the beginning.
7771 // If moving backward, start at the end.
7772 nextIndex = direction > 0 ? 0 : len - 1;
7773 }
7774
7775 for ( i = 0; i < len; i++ ) {
7776 item = this.items[ nextIndex ];
7777 if ( item && !item.isDisabled() ) {
7778 return item;
7779 }
7780 nextIndex = ( nextIndex + increase + len ) % len;
7781 }
7782 return null;
7783 };
7784
7785 /**
7786 * Handle click events on checkboxes.
7787 *
7788 * @param {jQuery.Event} e
7789 */
7790 OO.ui.CheckboxMultiselectWidget.prototype.onClick = function ( e ) {
7791 var $options, lastClickedIndex, nowClickedIndex, i, direction, wasSelected, items,
7792 $lastClicked = this.$lastClicked,
7793 $nowClicked = $( e.target ).closest( '.oo-ui-checkboxMultioptionWidget' )
7794 .not( '.oo-ui-widget-disabled' );
7795
7796 // Allow selecting multiple options at once by Shift-clicking them
7797 if ( $lastClicked && $nowClicked.length && e.shiftKey ) {
7798 $options = this.$group.find( '.oo-ui-checkboxMultioptionWidget' );
7799 lastClickedIndex = $options.index( $lastClicked );
7800 nowClickedIndex = $options.index( $nowClicked );
7801 // If it's the same item, either the user is being silly, or it's a fake event generated by the
7802 // browser. In either case we don't need custom handling.
7803 if ( nowClickedIndex !== lastClickedIndex ) {
7804 items = this.items;
7805 wasSelected = items[ nowClickedIndex ].isSelected();
7806 direction = nowClickedIndex > lastClickedIndex ? 1 : -1;
7807
7808 // This depends on the DOM order of the items and the order of the .items array being the same.
7809 for ( i = lastClickedIndex; i !== nowClickedIndex; i += direction ) {
7810 if ( !items[ i ].isDisabled() ) {
7811 items[ i ].setSelected( !wasSelected );
7812 }
7813 }
7814 // For the now-clicked element, use immediate timeout to allow the browser to do its own
7815 // handling first, then set our value. The order in which events happen is different for
7816 // clicks on the <input> and on the <label> and there are additional fake clicks fired for
7817 // non-click actions that change the checkboxes.
7818 e.preventDefault();
7819 setTimeout( function () {
7820 if ( !items[ nowClickedIndex ].isDisabled() ) {
7821 items[ nowClickedIndex ].setSelected( !wasSelected );
7822 }
7823 } );
7824 }
7825 }
7826
7827 if ( $nowClicked.length ) {
7828 this.$lastClicked = $nowClicked;
7829 }
7830 };
7831
7832 /**
7833 * FloatingMenuSelectWidget is a menu that will stick under a specified
7834 * container, even when it is inserted elsewhere in the document (for example,
7835 * in a OO.ui.Window's $overlay). This is sometimes necessary to prevent the
7836 * menu from being clipped too aggresively.
7837 *
7838 * The menu's position is automatically calculated and maintained when the menu
7839 * is toggled or the window is resized.
7840 *
7841 * See OO.ui.ComboBoxInputWidget for an example of a widget that uses this class.
7842 *
7843 * @class
7844 * @extends OO.ui.MenuSelectWidget
7845 * @mixins OO.ui.mixin.FloatableElement
7846 *
7847 * @constructor
7848 * @param {OO.ui.Widget} [inputWidget] Widget to provide the menu for.
7849 * Deprecated, omit this parameter and specify `$container` instead.
7850 * @param {Object} [config] Configuration options
7851 * @cfg {jQuery} [$container=inputWidget.$element] Element to render menu under
7852 * @cfg {number} [width] Width of the menu
7853 */
7854 OO.ui.FloatingMenuSelectWidget = function OoUiFloatingMenuSelectWidget( inputWidget, config ) {
7855 // Allow 'inputWidget' parameter and config for backwards compatibility
7856 if ( OO.isPlainObject( inputWidget ) && config === undefined ) {
7857 config = inputWidget;
7858 inputWidget = config.inputWidget;
7859 }
7860
7861 // Configuration initialization
7862 config = config || {};
7863
7864 this.width = config.width;
7865
7866 // Parent constructor
7867 OO.ui.FloatingMenuSelectWidget.parent.call( this, config );
7868
7869 // Properties (must be set before mixin constructors)
7870 this.inputWidget = inputWidget; // For backwards compatibility
7871 this.$container = config.$container || this.inputWidget.$element;
7872
7873 // Mixins constructors
7874 OO.ui.mixin.FloatableElement.call( this, $.extend( {}, config, { $floatableContainer: this.$container } ) );
7875
7876 // Initialization
7877 this.$element.addClass( 'oo-ui-floatingMenuSelectWidget' );
7878 // For backwards compatibility
7879 this.$element.addClass( 'oo-ui-textInputMenuSelectWidget' );
7880 };
7881
7882 /* Setup */
7883
7884 OO.inheritClass( OO.ui.FloatingMenuSelectWidget, OO.ui.MenuSelectWidget );
7885 OO.mixinClass( OO.ui.FloatingMenuSelectWidget, OO.ui.mixin.FloatableElement );
7886
7887 /* Methods */
7888
7889 /**
7890 * @inheritdoc
7891 */
7892 OO.ui.FloatingMenuSelectWidget.prototype.toggle = function ( visible ) {
7893 var change;
7894 visible = visible === undefined ? !this.isVisible() : !!visible;
7895 change = visible !== this.isVisible();
7896
7897 if ( change && visible ) {
7898 // Make sure the width is set before the parent method runs.
7899 this.setIdealSize( this.width || this.$container.width() );
7900 }
7901
7902 // Parent method
7903 // This will call this.clip(), which is nonsensical since we're not positioned yet...
7904 OO.ui.FloatingMenuSelectWidget.parent.prototype.toggle.call( this, visible );
7905
7906 if ( change ) {
7907 this.togglePositioning( this.isVisible() );
7908 }
7909
7910 return this;
7911 };
7912
7913 /**
7914 * Progress bars visually display the status of an operation, such as a download,
7915 * and can be either determinate or indeterminate:
7916 *
7917 * - **determinate** process bars show the percent of an operation that is complete.
7918 *
7919 * - **indeterminate** process bars use a visual display of motion to indicate that an operation
7920 * is taking place. Because the extent of an indeterminate operation is unknown, the bar does
7921 * not use percentages.
7922 *
7923 * The value of the `progress` configuration determines whether the bar is determinate or indeterminate.
7924 *
7925 * @example
7926 * // Examples of determinate and indeterminate progress bars.
7927 * var progressBar1 = new OO.ui.ProgressBarWidget( {
7928 * progress: 33
7929 * } );
7930 * var progressBar2 = new OO.ui.ProgressBarWidget();
7931 *
7932 * // Create a FieldsetLayout to layout progress bars
7933 * var fieldset = new OO.ui.FieldsetLayout;
7934 * fieldset.addItems( [
7935 * new OO.ui.FieldLayout( progressBar1, {label: 'Determinate', align: 'top'}),
7936 * new OO.ui.FieldLayout( progressBar2, {label: 'Indeterminate', align: 'top'})
7937 * ] );
7938 * $( 'body' ).append( fieldset.$element );
7939 *
7940 * @class
7941 * @extends OO.ui.Widget
7942 *
7943 * @constructor
7944 * @param {Object} [config] Configuration options
7945 * @cfg {number|boolean} [progress=false] The type of progress bar (determinate or indeterminate).
7946 * To create a determinate progress bar, specify a number that reflects the initial percent complete.
7947 * By default, the progress bar is indeterminate.
7948 */
7949 OO.ui.ProgressBarWidget = function OoUiProgressBarWidget( config ) {
7950 // Configuration initialization
7951 config = config || {};
7952
7953 // Parent constructor
7954 OO.ui.ProgressBarWidget.parent.call( this, config );
7955
7956 // Properties
7957 this.$bar = $( '<div>' );
7958 this.progress = null;
7959
7960 // Initialization
7961 this.setProgress( config.progress !== undefined ? config.progress : false );
7962 this.$bar.addClass( 'oo-ui-progressBarWidget-bar' );
7963 this.$element
7964 .attr( {
7965 role: 'progressbar',
7966 'aria-valuemin': 0,
7967 'aria-valuemax': 100
7968 } )
7969 .addClass( 'oo-ui-progressBarWidget' )
7970 .append( this.$bar );
7971 };
7972
7973 /* Setup */
7974
7975 OO.inheritClass( OO.ui.ProgressBarWidget, OO.ui.Widget );
7976
7977 /* Static Properties */
7978
7979 /**
7980 * @static
7981 * @inheritdoc
7982 */
7983 OO.ui.ProgressBarWidget.static.tagName = 'div';
7984
7985 /* Methods */
7986
7987 /**
7988 * Get the percent of the progress that has been completed. Indeterminate progresses will return `false`.
7989 *
7990 * @return {number|boolean} Progress percent
7991 */
7992 OO.ui.ProgressBarWidget.prototype.getProgress = function () {
7993 return this.progress;
7994 };
7995
7996 /**
7997 * Set the percent of the process completed or `false` for an indeterminate process.
7998 *
7999 * @param {number|boolean} progress Progress percent or `false` for indeterminate
8000 */
8001 OO.ui.ProgressBarWidget.prototype.setProgress = function ( progress ) {
8002 this.progress = progress;
8003
8004 if ( progress !== false ) {
8005 this.$bar.css( 'width', this.progress + '%' );
8006 this.$element.attr( 'aria-valuenow', this.progress );
8007 } else {
8008 this.$bar.css( 'width', '' );
8009 this.$element.removeAttr( 'aria-valuenow' );
8010 }
8011 this.$element.toggleClass( 'oo-ui-progressBarWidget-indeterminate', progress === false );
8012 };
8013
8014 /**
8015 * InputWidget is the base class for all input widgets, which
8016 * include {@link OO.ui.TextInputWidget text inputs}, {@link OO.ui.CheckboxInputWidget checkbox inputs},
8017 * {@link OO.ui.RadioInputWidget radio inputs}, and {@link OO.ui.ButtonInputWidget button inputs}.
8018 * See the [OOjs UI documentation on MediaWiki] [1] for more information and examples.
8019 *
8020 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
8021 *
8022 * @abstract
8023 * @class
8024 * @extends OO.ui.Widget
8025 * @mixins OO.ui.mixin.FlaggedElement
8026 * @mixins OO.ui.mixin.TabIndexedElement
8027 * @mixins OO.ui.mixin.TitledElement
8028 * @mixins OO.ui.mixin.AccessKeyedElement
8029 *
8030 * @constructor
8031 * @param {Object} [config] Configuration options
8032 * @cfg {string} [name=''] The value of the input’s HTML `name` attribute.
8033 * @cfg {string} [value=''] The value of the input.
8034 * @cfg {string} [dir] The directionality of the input (ltr/rtl).
8035 * @cfg {Function} [inputFilter] The name of an input filter function. Input filters modify the value of an input
8036 * before it is accepted.
8037 */
8038 OO.ui.InputWidget = function OoUiInputWidget( config ) {
8039 // Configuration initialization
8040 config = config || {};
8041
8042 // Parent constructor
8043 OO.ui.InputWidget.parent.call( this, config );
8044
8045 // Properties
8046 // See #reusePreInfuseDOM about config.$input
8047 this.$input = config.$input || this.getInputElement( config );
8048 this.value = '';
8049 this.inputFilter = config.inputFilter;
8050
8051 // Mixin constructors
8052 OO.ui.mixin.FlaggedElement.call( this, config );
8053 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$input } ) );
8054 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$input } ) );
8055 OO.ui.mixin.AccessKeyedElement.call( this, $.extend( {}, config, { $accessKeyed: this.$input } ) );
8056
8057 // Events
8058 this.$input.on( 'keydown mouseup cut paste change input select', this.onEdit.bind( this ) );
8059
8060 // Initialization
8061 this.$input
8062 .addClass( 'oo-ui-inputWidget-input' )
8063 .attr( 'name', config.name )
8064 .prop( 'disabled', this.isDisabled() );
8065 this.$element
8066 .addClass( 'oo-ui-inputWidget' )
8067 .append( this.$input );
8068 this.setValue( config.value );
8069 if ( config.dir ) {
8070 this.setDir( config.dir );
8071 }
8072 };
8073
8074 /* Setup */
8075
8076 OO.inheritClass( OO.ui.InputWidget, OO.ui.Widget );
8077 OO.mixinClass( OO.ui.InputWidget, OO.ui.mixin.FlaggedElement );
8078 OO.mixinClass( OO.ui.InputWidget, OO.ui.mixin.TabIndexedElement );
8079 OO.mixinClass( OO.ui.InputWidget, OO.ui.mixin.TitledElement );
8080 OO.mixinClass( OO.ui.InputWidget, OO.ui.mixin.AccessKeyedElement );
8081
8082 /* Static Properties */
8083
8084 /**
8085 * @static
8086 * @inheritdoc
8087 */
8088 OO.ui.InputWidget.static.supportsSimpleLabel = true;
8089
8090 /* Static Methods */
8091
8092 /**
8093 * @inheritdoc
8094 */
8095 OO.ui.InputWidget.static.reusePreInfuseDOM = function ( node, config ) {
8096 config = OO.ui.InputWidget.parent.static.reusePreInfuseDOM( node, config );
8097 // Reusing $input lets browsers preserve inputted values across page reloads (T114134)
8098 config.$input = $( node ).find( '.oo-ui-inputWidget-input' );
8099 return config;
8100 };
8101
8102 /**
8103 * @inheritdoc
8104 */
8105 OO.ui.InputWidget.static.gatherPreInfuseState = function ( node, config ) {
8106 var state = OO.ui.InputWidget.parent.static.gatherPreInfuseState( node, config );
8107 if ( config.$input && config.$input.length ) {
8108 state.value = config.$input.val();
8109 // Might be better in TabIndexedElement, but it's awkward to do there because mixins are awkward
8110 state.focus = config.$input.is( ':focus' );
8111 }
8112 return state;
8113 };
8114
8115 /* Events */
8116
8117 /**
8118 * @event change
8119 *
8120 * A change event is emitted when the value of the input changes.
8121 *
8122 * @param {string} value
8123 */
8124
8125 /* Methods */
8126
8127 /**
8128 * Get input element.
8129 *
8130 * Subclasses of OO.ui.InputWidget use the `config` parameter to produce different elements in
8131 * different circumstances. The element must have a `value` property (like form elements).
8132 *
8133 * @protected
8134 * @param {Object} config Configuration options
8135 * @return {jQuery} Input element
8136 */
8137 OO.ui.InputWidget.prototype.getInputElement = function () {
8138 return $( '<input>' );
8139 };
8140
8141 /**
8142 * Get input element's ID.
8143 *
8144 * If the element already has an ID then that is returned, otherwise unique ID is
8145 * generated, set on the element, and returned.
8146 *
8147 * @return {string} The ID of the element
8148 */
8149 OO.ui.InputWidget.prototype.getInputId = function () {
8150 var id = this.$input.attr( 'id' );
8151
8152 if ( id === undefined ) {
8153 id = OO.ui.generateElementId();
8154 this.$input.attr( 'id', id );
8155 }
8156
8157 return id;
8158 };
8159
8160 /**
8161 * Handle potentially value-changing events.
8162 *
8163 * @private
8164 * @param {jQuery.Event} e Key down, mouse up, cut, paste, change, input, or select event
8165 */
8166 OO.ui.InputWidget.prototype.onEdit = function () {
8167 var widget = this;
8168 if ( !this.isDisabled() ) {
8169 // Allow the stack to clear so the value will be updated
8170 setTimeout( function () {
8171 widget.setValue( widget.$input.val() );
8172 } );
8173 }
8174 };
8175
8176 /**
8177 * Get the value of the input.
8178 *
8179 * @return {string} Input value
8180 */
8181 OO.ui.InputWidget.prototype.getValue = function () {
8182 // Resynchronize our internal data with DOM data. Other scripts executing on the page can modify
8183 // it, and we won't know unless they're kind enough to trigger a 'change' event.
8184 var value = this.$input.val();
8185 if ( this.value !== value ) {
8186 this.setValue( value );
8187 }
8188 return this.value;
8189 };
8190
8191 /**
8192 * Set the directionality of the input.
8193 *
8194 * @param {string} dir Text directionality: 'ltr', 'rtl' or 'auto'
8195 * @chainable
8196 */
8197 OO.ui.InputWidget.prototype.setDir = function ( dir ) {
8198 this.$input.prop( 'dir', dir );
8199 return this;
8200 };
8201
8202 /**
8203 * Set the value of the input.
8204 *
8205 * @param {string} value New value
8206 * @fires change
8207 * @chainable
8208 */
8209 OO.ui.InputWidget.prototype.setValue = function ( value ) {
8210 value = this.cleanUpValue( value );
8211 // Update the DOM if it has changed. Note that with cleanUpValue, it
8212 // is possible for the DOM value to change without this.value changing.
8213 if ( this.$input.val() !== value ) {
8214 this.$input.val( value );
8215 }
8216 if ( this.value !== value ) {
8217 this.value = value;
8218 this.emit( 'change', this.value );
8219 }
8220 return this;
8221 };
8222
8223 /**
8224 * Clean up incoming value.
8225 *
8226 * Ensures value is a string, and converts undefined and null to empty string.
8227 *
8228 * @private
8229 * @param {string} value Original value
8230 * @return {string} Cleaned up value
8231 */
8232 OO.ui.InputWidget.prototype.cleanUpValue = function ( value ) {
8233 if ( value === undefined || value === null ) {
8234 return '';
8235 } else if ( this.inputFilter ) {
8236 return this.inputFilter( String( value ) );
8237 } else {
8238 return String( value );
8239 }
8240 };
8241
8242 /**
8243 * Simulate the behavior of clicking on a label bound to this input. This method is only called by
8244 * {@link OO.ui.LabelWidget LabelWidget} and {@link OO.ui.FieldLayout FieldLayout}. It should not be
8245 * called directly.
8246 */
8247 OO.ui.InputWidget.prototype.simulateLabelClick = function () {
8248 OO.ui.warnDeprecation( 'InputWidget: simulateLabelClick() is deprecated.' );
8249 if ( !this.isDisabled() ) {
8250 if ( this.$input.is( ':checkbox, :radio' ) ) {
8251 this.$input.click();
8252 }
8253 if ( this.$input.is( ':input' ) ) {
8254 this.$input[ 0 ].focus();
8255 }
8256 }
8257 };
8258
8259 /**
8260 * @inheritdoc
8261 */
8262 OO.ui.InputWidget.prototype.setDisabled = function ( state ) {
8263 OO.ui.InputWidget.parent.prototype.setDisabled.call( this, state );
8264 if ( this.$input ) {
8265 this.$input.prop( 'disabled', this.isDisabled() );
8266 }
8267 return this;
8268 };
8269
8270 /**
8271 * Focus the input.
8272 *
8273 * @chainable
8274 */
8275 OO.ui.InputWidget.prototype.focus = function () {
8276 this.$input[ 0 ].focus();
8277 return this;
8278 };
8279
8280 /**
8281 * Blur the input.
8282 *
8283 * @chainable
8284 */
8285 OO.ui.InputWidget.prototype.blur = function () {
8286 this.$input[ 0 ].blur();
8287 return this;
8288 };
8289
8290 /**
8291 * @inheritdoc
8292 */
8293 OO.ui.InputWidget.prototype.restorePreInfuseState = function ( state ) {
8294 OO.ui.InputWidget.parent.prototype.restorePreInfuseState.call( this, state );
8295 if ( state.value !== undefined && state.value !== this.getValue() ) {
8296 this.setValue( state.value );
8297 }
8298 if ( state.focus ) {
8299 this.focus();
8300 }
8301 };
8302
8303 /**
8304 * ButtonInputWidget is used to submit HTML forms and is intended to be used within
8305 * a OO.ui.FormLayout. If you do not need the button to work with HTML forms, you probably
8306 * want to use OO.ui.ButtonWidget instead. Button input widgets can be rendered as either an
8307 * HTML `<button>` (the default) or an HTML `<input>` tags. See the
8308 * [OOjs UI documentation on MediaWiki] [1] for more information.
8309 *
8310 * @example
8311 * // A ButtonInputWidget rendered as an HTML button, the default.
8312 * var button = new OO.ui.ButtonInputWidget( {
8313 * label: 'Input button',
8314 * icon: 'check',
8315 * value: 'check'
8316 * } );
8317 * $( 'body' ).append( button.$element );
8318 *
8319 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs#Button_inputs
8320 *
8321 * @class
8322 * @extends OO.ui.InputWidget
8323 * @mixins OO.ui.mixin.ButtonElement
8324 * @mixins OO.ui.mixin.IconElement
8325 * @mixins OO.ui.mixin.IndicatorElement
8326 * @mixins OO.ui.mixin.LabelElement
8327 * @mixins OO.ui.mixin.TitledElement
8328 *
8329 * @constructor
8330 * @param {Object} [config] Configuration options
8331 * @cfg {string} [type='button'] The value of the HTML `'type'` attribute: 'button', 'submit' or 'reset'.
8332 * @cfg {boolean} [useInputTag=false] Use an `<input>` tag instead of a `<button>` tag, the default.
8333 * Widgets configured to be an `<input>` do not support {@link #icon icons} and {@link #indicator indicators},
8334 * non-plaintext {@link #label labels}, or {@link #value values}. In general, useInputTag should only
8335 * be set to `true` when there’s need to support IE 6 in a form with multiple buttons.
8336 */
8337 OO.ui.ButtonInputWidget = function OoUiButtonInputWidget( config ) {
8338 // Configuration initialization
8339 config = $.extend( { type: 'button', useInputTag: false }, config );
8340
8341 // See InputWidget#reusePreInfuseDOM about config.$input
8342 if ( config.$input ) {
8343 config.$input.empty();
8344 }
8345
8346 // Properties (must be set before parent constructor, which calls #setValue)
8347 this.useInputTag = config.useInputTag;
8348
8349 // Parent constructor
8350 OO.ui.ButtonInputWidget.parent.call( this, config );
8351
8352 // Mixin constructors
8353 OO.ui.mixin.ButtonElement.call( this, $.extend( {}, config, { $button: this.$input } ) );
8354 OO.ui.mixin.IconElement.call( this, config );
8355 OO.ui.mixin.IndicatorElement.call( this, config );
8356 OO.ui.mixin.LabelElement.call( this, config );
8357 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$input } ) );
8358
8359 // Initialization
8360 if ( !config.useInputTag ) {
8361 this.$input.append( this.$icon, this.$label, this.$indicator );
8362 }
8363 this.$element.addClass( 'oo-ui-buttonInputWidget' );
8364 };
8365
8366 /* Setup */
8367
8368 OO.inheritClass( OO.ui.ButtonInputWidget, OO.ui.InputWidget );
8369 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.mixin.ButtonElement );
8370 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.mixin.IconElement );
8371 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.mixin.IndicatorElement );
8372 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.mixin.LabelElement );
8373 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.mixin.TitledElement );
8374
8375 /* Static Properties */
8376
8377 /**
8378 * Disable generating `<label>` elements for buttons. One would very rarely need additional label
8379 * for a button, and it's already a big clickable target, and it causes unexpected rendering.
8380 *
8381 * @static
8382 * @inheritdoc
8383 */
8384 OO.ui.ButtonInputWidget.static.supportsSimpleLabel = false;
8385
8386 /**
8387 * @static
8388 * @inheritdoc
8389 */
8390 OO.ui.ButtonInputWidget.static.tagName = 'span';
8391
8392 /* Methods */
8393
8394 /**
8395 * @inheritdoc
8396 * @protected
8397 */
8398 OO.ui.ButtonInputWidget.prototype.getInputElement = function ( config ) {
8399 var type;
8400 type = [ 'button', 'submit', 'reset' ].indexOf( config.type ) !== -1 ? config.type : 'button';
8401 return $( '<' + ( config.useInputTag ? 'input' : 'button' ) + ' type="' + type + '">' );
8402 };
8403
8404 /**
8405 * Set label value.
8406 *
8407 * If #useInputTag is `true`, the label is set as the `value` of the `<input>` tag.
8408 *
8409 * @param {jQuery|string|Function|null} label Label nodes, text, a function that returns nodes or
8410 * text, or `null` for no label
8411 * @chainable
8412 */
8413 OO.ui.ButtonInputWidget.prototype.setLabel = function ( label ) {
8414 if ( typeof label === 'function' ) {
8415 label = OO.ui.resolveMsg( label );
8416 }
8417
8418 if ( this.useInputTag ) {
8419 // Discard non-plaintext labels
8420 if ( typeof label !== 'string' ) {
8421 label = '';
8422 }
8423
8424 this.$input.val( label );
8425 }
8426
8427 return OO.ui.mixin.LabelElement.prototype.setLabel.call( this, label );
8428 };
8429
8430 /**
8431 * Set the value of the input.
8432 *
8433 * This method is disabled for button inputs configured as {@link #useInputTag <input> tags}, as
8434 * they do not support {@link #value values}.
8435 *
8436 * @param {string} value New value
8437 * @chainable
8438 */
8439 OO.ui.ButtonInputWidget.prototype.setValue = function ( value ) {
8440 if ( !this.useInputTag ) {
8441 OO.ui.ButtonInputWidget.parent.prototype.setValue.call( this, value );
8442 }
8443 return this;
8444 };
8445
8446 /**
8447 * CheckboxInputWidgets, like HTML checkboxes, can be selected and/or configured with a value.
8448 * Note that these {@link OO.ui.InputWidget input widgets} are best laid out
8449 * in {@link OO.ui.FieldLayout field layouts} that use the {@link OO.ui.FieldLayout#align inline}
8450 * alignment. For more information, please see the [OOjs UI documentation on MediaWiki][1].
8451 *
8452 * This widget can be used inside an HTML form, such as a OO.ui.FormLayout.
8453 *
8454 * @example
8455 * // An example of selected, unselected, and disabled checkbox inputs
8456 * var checkbox1=new OO.ui.CheckboxInputWidget( {
8457 * value: 'a',
8458 * selected: true
8459 * } );
8460 * var checkbox2=new OO.ui.CheckboxInputWidget( {
8461 * value: 'b'
8462 * } );
8463 * var checkbox3=new OO.ui.CheckboxInputWidget( {
8464 * value:'c',
8465 * disabled: true
8466 * } );
8467 * // Create a fieldset layout with fields for each checkbox.
8468 * var fieldset = new OO.ui.FieldsetLayout( {
8469 * label: 'Checkboxes'
8470 * } );
8471 * fieldset.addItems( [
8472 * new OO.ui.FieldLayout( checkbox1, { label: 'Selected checkbox', align: 'inline' } ),
8473 * new OO.ui.FieldLayout( checkbox2, { label: 'Unselected checkbox', align: 'inline' } ),
8474 * new OO.ui.FieldLayout( checkbox3, { label: 'Disabled checkbox', align: 'inline' } ),
8475 * ] );
8476 * $( 'body' ).append( fieldset.$element );
8477 *
8478 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
8479 *
8480 * @class
8481 * @extends OO.ui.InputWidget
8482 *
8483 * @constructor
8484 * @param {Object} [config] Configuration options
8485 * @cfg {boolean} [selected=false] Select the checkbox initially. By default, the checkbox is not selected.
8486 */
8487 OO.ui.CheckboxInputWidget = function OoUiCheckboxInputWidget( config ) {
8488 // Configuration initialization
8489 config = config || {};
8490
8491 // Parent constructor
8492 OO.ui.CheckboxInputWidget.parent.call( this, config );
8493
8494 // Initialization
8495 this.$element
8496 .addClass( 'oo-ui-checkboxInputWidget' )
8497 // Required for pretty styling in MediaWiki theme
8498 .append( $( '<span>' ) );
8499 this.setSelected( config.selected !== undefined ? config.selected : false );
8500 };
8501
8502 /* Setup */
8503
8504 OO.inheritClass( OO.ui.CheckboxInputWidget, OO.ui.InputWidget );
8505
8506 /* Static Properties */
8507
8508 /**
8509 * @static
8510 * @inheritdoc
8511 */
8512 OO.ui.CheckboxInputWidget.static.tagName = 'span';
8513
8514 /* Static Methods */
8515
8516 /**
8517 * @inheritdoc
8518 */
8519 OO.ui.CheckboxInputWidget.static.gatherPreInfuseState = function ( node, config ) {
8520 var state = OO.ui.CheckboxInputWidget.parent.static.gatherPreInfuseState( node, config );
8521 state.checked = config.$input.prop( 'checked' );
8522 return state;
8523 };
8524
8525 /* Methods */
8526
8527 /**
8528 * @inheritdoc
8529 * @protected
8530 */
8531 OO.ui.CheckboxInputWidget.prototype.getInputElement = function () {
8532 return $( '<input>' ).attr( 'type', 'checkbox' );
8533 };
8534
8535 /**
8536 * @inheritdoc
8537 */
8538 OO.ui.CheckboxInputWidget.prototype.onEdit = function () {
8539 var widget = this;
8540 if ( !this.isDisabled() ) {
8541 // Allow the stack to clear so the value will be updated
8542 setTimeout( function () {
8543 widget.setSelected( widget.$input.prop( 'checked' ) );
8544 } );
8545 }
8546 };
8547
8548 /**
8549 * Set selection state of this checkbox.
8550 *
8551 * @param {boolean} state `true` for selected
8552 * @chainable
8553 */
8554 OO.ui.CheckboxInputWidget.prototype.setSelected = function ( state ) {
8555 state = !!state;
8556 if ( this.selected !== state ) {
8557 this.selected = state;
8558 this.$input.prop( 'checked', this.selected );
8559 this.emit( 'change', this.selected );
8560 }
8561 return this;
8562 };
8563
8564 /**
8565 * Check if this checkbox is selected.
8566 *
8567 * @return {boolean} Checkbox is selected
8568 */
8569 OO.ui.CheckboxInputWidget.prototype.isSelected = function () {
8570 // Resynchronize our internal data with DOM data. Other scripts executing on the page can modify
8571 // it, and we won't know unless they're kind enough to trigger a 'change' event.
8572 var selected = this.$input.prop( 'checked' );
8573 if ( this.selected !== selected ) {
8574 this.setSelected( selected );
8575 }
8576 return this.selected;
8577 };
8578
8579 /**
8580 * @inheritdoc
8581 */
8582 OO.ui.CheckboxInputWidget.prototype.restorePreInfuseState = function ( state ) {
8583 OO.ui.CheckboxInputWidget.parent.prototype.restorePreInfuseState.call( this, state );
8584 if ( state.checked !== undefined && state.checked !== this.isSelected() ) {
8585 this.setSelected( state.checked );
8586 }
8587 };
8588
8589 /**
8590 * DropdownInputWidget is a {@link OO.ui.DropdownWidget DropdownWidget} intended to be used
8591 * within an HTML form, such as a OO.ui.FormLayout. The selected value is synchronized with the value
8592 * of a hidden HTML `input` tag. Please see the [OOjs UI documentation on MediaWiki][1] for
8593 * more information about input widgets.
8594 *
8595 * A DropdownInputWidget always has a value (one of the options is always selected), unless there
8596 * are no options. If no `value` configuration option is provided, the first option is selected.
8597 * If you need a state representing no value (no option being selected), use a DropdownWidget.
8598 *
8599 * This and OO.ui.RadioSelectInputWidget support the same configuration options.
8600 *
8601 * @example
8602 * // Example: A DropdownInputWidget with three options
8603 * var dropdownInput = new OO.ui.DropdownInputWidget( {
8604 * options: [
8605 * { data: 'a', label: 'First' },
8606 * { data: 'b', label: 'Second'},
8607 * { data: 'c', label: 'Third' }
8608 * ]
8609 * } );
8610 * $( 'body' ).append( dropdownInput.$element );
8611 *
8612 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
8613 *
8614 * @class
8615 * @extends OO.ui.InputWidget
8616 * @mixins OO.ui.mixin.TitledElement
8617 *
8618 * @constructor
8619 * @param {Object} [config] Configuration options
8620 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: … }`
8621 * @cfg {Object} [dropdown] Configuration options for {@link OO.ui.DropdownWidget DropdownWidget}
8622 */
8623 OO.ui.DropdownInputWidget = function OoUiDropdownInputWidget( config ) {
8624 // Configuration initialization
8625 config = config || {};
8626
8627 // See InputWidget#reusePreInfuseDOM about config.$input
8628 if ( config.$input ) {
8629 config.$input.addClass( 'oo-ui-element-hidden' );
8630 }
8631
8632 // Properties (must be done before parent constructor which calls #setDisabled)
8633 this.dropdownWidget = new OO.ui.DropdownWidget( config.dropdown );
8634
8635 // Parent constructor
8636 OO.ui.DropdownInputWidget.parent.call( this, config );
8637
8638 // Mixin constructors
8639 OO.ui.mixin.TitledElement.call( this, config );
8640
8641 // Events
8642 this.dropdownWidget.getMenu().connect( this, { select: 'onMenuSelect' } );
8643
8644 // Initialization
8645 this.setOptions( config.options || [] );
8646 this.$element
8647 .addClass( 'oo-ui-dropdownInputWidget' )
8648 .append( this.dropdownWidget.$element );
8649 };
8650
8651 /* Setup */
8652
8653 OO.inheritClass( OO.ui.DropdownInputWidget, OO.ui.InputWidget );
8654 OO.mixinClass( OO.ui.DropdownInputWidget, OO.ui.mixin.TitledElement );
8655
8656 /* Methods */
8657
8658 /**
8659 * @inheritdoc
8660 * @protected
8661 */
8662 OO.ui.DropdownInputWidget.prototype.getInputElement = function () {
8663 return $( '<input>' ).attr( 'type', 'hidden' );
8664 };
8665
8666 /**
8667 * Handles menu select events.
8668 *
8669 * @private
8670 * @param {OO.ui.MenuOptionWidget} item Selected menu item
8671 */
8672 OO.ui.DropdownInputWidget.prototype.onMenuSelect = function ( item ) {
8673 this.setValue( item.getData() );
8674 };
8675
8676 /**
8677 * @inheritdoc
8678 */
8679 OO.ui.DropdownInputWidget.prototype.setValue = function ( value ) {
8680 var selected;
8681 value = this.cleanUpValue( value );
8682 this.dropdownWidget.getMenu().selectItemByData( value );
8683 // Only allow setting values that are actually present in the dropdown
8684 selected = this.dropdownWidget.getMenu().getSelectedItem();
8685 value = selected ? selected.getData() : '';
8686 OO.ui.DropdownInputWidget.parent.prototype.setValue.call( this, value );
8687 return this;
8688 };
8689
8690 /**
8691 * @inheritdoc
8692 */
8693 OO.ui.DropdownInputWidget.prototype.setDisabled = function ( state ) {
8694 this.dropdownWidget.setDisabled( state );
8695 OO.ui.DropdownInputWidget.parent.prototype.setDisabled.call( this, state );
8696 return this;
8697 };
8698
8699 /**
8700 * Set the options available for this input.
8701 *
8702 * @param {Object[]} options Array of menu options in the format `{ data: …, label: … }`
8703 * @chainable
8704 */
8705 OO.ui.DropdownInputWidget.prototype.setOptions = function ( options ) {
8706 var
8707 value = this.getValue(),
8708 widget = this;
8709
8710 // Rebuild the dropdown menu
8711 this.dropdownWidget.getMenu()
8712 .clearItems()
8713 .addItems( options.map( function ( opt ) {
8714 var optValue = widget.cleanUpValue( opt.data );
8715
8716 if ( opt.optgroup === undefined ) {
8717 return new OO.ui.MenuOptionWidget( {
8718 data: optValue,
8719 label: opt.label !== undefined ? opt.label : optValue
8720 } );
8721 } else {
8722 return new OO.ui.MenuSectionOptionWidget( {
8723 label: opt.optgroup
8724 } );
8725 }
8726 } ) );
8727
8728 // Restore the previous value, or reset to something sensible
8729 if ( this.dropdownWidget.getMenu().getItemFromData( value ) ) {
8730 // Previous value is still available, ensure consistency with the dropdown
8731 this.setValue( value );
8732 } else {
8733 // No longer valid, reset
8734 if ( options.length ) {
8735 this.setValue( options[ 0 ].data );
8736 }
8737 }
8738
8739 return this;
8740 };
8741
8742 /**
8743 * @inheritdoc
8744 */
8745 OO.ui.DropdownInputWidget.prototype.focus = function () {
8746 this.dropdownWidget.getMenu().toggle( true );
8747 return this;
8748 };
8749
8750 /**
8751 * @inheritdoc
8752 */
8753 OO.ui.DropdownInputWidget.prototype.blur = function () {
8754 this.dropdownWidget.getMenu().toggle( false );
8755 return this;
8756 };
8757
8758 /**
8759 * RadioInputWidget creates a single radio button. Because radio buttons are usually used as a set,
8760 * in most cases you will want to use a {@link OO.ui.RadioSelectWidget radio select}
8761 * with {@link OO.ui.RadioOptionWidget radio options} instead of this class. For more information,
8762 * please see the [OOjs UI documentation on MediaWiki][1].
8763 *
8764 * This widget can be used inside an HTML form, such as a OO.ui.FormLayout.
8765 *
8766 * @example
8767 * // An example of selected, unselected, and disabled radio inputs
8768 * var radio1 = new OO.ui.RadioInputWidget( {
8769 * value: 'a',
8770 * selected: true
8771 * } );
8772 * var radio2 = new OO.ui.RadioInputWidget( {
8773 * value: 'b'
8774 * } );
8775 * var radio3 = new OO.ui.RadioInputWidget( {
8776 * value: 'c',
8777 * disabled: true
8778 * } );
8779 * // Create a fieldset layout with fields for each radio button.
8780 * var fieldset = new OO.ui.FieldsetLayout( {
8781 * label: 'Radio inputs'
8782 * } );
8783 * fieldset.addItems( [
8784 * new OO.ui.FieldLayout( radio1, { label: 'Selected', align: 'inline' } ),
8785 * new OO.ui.FieldLayout( radio2, { label: 'Unselected', align: 'inline' } ),
8786 * new OO.ui.FieldLayout( radio3, { label: 'Disabled', align: 'inline' } ),
8787 * ] );
8788 * $( 'body' ).append( fieldset.$element );
8789 *
8790 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
8791 *
8792 * @class
8793 * @extends OO.ui.InputWidget
8794 *
8795 * @constructor
8796 * @param {Object} [config] Configuration options
8797 * @cfg {boolean} [selected=false] Select the radio button initially. By default, the radio button is not selected.
8798 */
8799 OO.ui.RadioInputWidget = function OoUiRadioInputWidget( config ) {
8800 // Configuration initialization
8801 config = config || {};
8802
8803 // Parent constructor
8804 OO.ui.RadioInputWidget.parent.call( this, config );
8805
8806 // Initialization
8807 this.$element
8808 .addClass( 'oo-ui-radioInputWidget' )
8809 // Required for pretty styling in MediaWiki theme
8810 .append( $( '<span>' ) );
8811 this.setSelected( config.selected !== undefined ? config.selected : false );
8812 };
8813
8814 /* Setup */
8815
8816 OO.inheritClass( OO.ui.RadioInputWidget, OO.ui.InputWidget );
8817
8818 /* Static Properties */
8819
8820 /**
8821 * @static
8822 * @inheritdoc
8823 */
8824 OO.ui.RadioInputWidget.static.tagName = 'span';
8825
8826 /* Static Methods */
8827
8828 /**
8829 * @inheritdoc
8830 */
8831 OO.ui.RadioInputWidget.static.gatherPreInfuseState = function ( node, config ) {
8832 var state = OO.ui.RadioInputWidget.parent.static.gatherPreInfuseState( node, config );
8833 state.checked = config.$input.prop( 'checked' );
8834 return state;
8835 };
8836
8837 /* Methods */
8838
8839 /**
8840 * @inheritdoc
8841 * @protected
8842 */
8843 OO.ui.RadioInputWidget.prototype.getInputElement = function () {
8844 return $( '<input>' ).attr( 'type', 'radio' );
8845 };
8846
8847 /**
8848 * @inheritdoc
8849 */
8850 OO.ui.RadioInputWidget.prototype.onEdit = function () {
8851 // RadioInputWidget doesn't track its state.
8852 };
8853
8854 /**
8855 * Set selection state of this radio button.
8856 *
8857 * @param {boolean} state `true` for selected
8858 * @chainable
8859 */
8860 OO.ui.RadioInputWidget.prototype.setSelected = function ( state ) {
8861 // RadioInputWidget doesn't track its state.
8862 this.$input.prop( 'checked', state );
8863 return this;
8864 };
8865
8866 /**
8867 * Check if this radio button is selected.
8868 *
8869 * @return {boolean} Radio is selected
8870 */
8871 OO.ui.RadioInputWidget.prototype.isSelected = function () {
8872 return this.$input.prop( 'checked' );
8873 };
8874
8875 /**
8876 * @inheritdoc
8877 */
8878 OO.ui.RadioInputWidget.prototype.restorePreInfuseState = function ( state ) {
8879 OO.ui.RadioInputWidget.parent.prototype.restorePreInfuseState.call( this, state );
8880 if ( state.checked !== undefined && state.checked !== this.isSelected() ) {
8881 this.setSelected( state.checked );
8882 }
8883 };
8884
8885 /**
8886 * RadioSelectInputWidget is a {@link OO.ui.RadioSelectWidget RadioSelectWidget} intended to be used
8887 * within an HTML form, such as a OO.ui.FormLayout. The selected value is synchronized with the value
8888 * of a hidden HTML `input` tag. Please see the [OOjs UI documentation on MediaWiki][1] for
8889 * more information about input widgets.
8890 *
8891 * This and OO.ui.DropdownInputWidget support the same configuration options.
8892 *
8893 * @example
8894 * // Example: A RadioSelectInputWidget with three options
8895 * var radioSelectInput = new OO.ui.RadioSelectInputWidget( {
8896 * options: [
8897 * { data: 'a', label: 'First' },
8898 * { data: 'b', label: 'Second'},
8899 * { data: 'c', label: 'Third' }
8900 * ]
8901 * } );
8902 * $( 'body' ).append( radioSelectInput.$element );
8903 *
8904 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
8905 *
8906 * @class
8907 * @extends OO.ui.InputWidget
8908 *
8909 * @constructor
8910 * @param {Object} [config] Configuration options
8911 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: … }`
8912 */
8913 OO.ui.RadioSelectInputWidget = function OoUiRadioSelectInputWidget( config ) {
8914 // Configuration initialization
8915 config = config || {};
8916
8917 // Properties (must be done before parent constructor which calls #setDisabled)
8918 this.radioSelectWidget = new OO.ui.RadioSelectWidget();
8919
8920 // Parent constructor
8921 OO.ui.RadioSelectInputWidget.parent.call( this, config );
8922
8923 // Events
8924 this.radioSelectWidget.connect( this, { select: 'onMenuSelect' } );
8925
8926 // Initialization
8927 this.setOptions( config.options || [] );
8928 this.$element
8929 .addClass( 'oo-ui-radioSelectInputWidget' )
8930 .append( this.radioSelectWidget.$element );
8931 };
8932
8933 /* Setup */
8934
8935 OO.inheritClass( OO.ui.RadioSelectInputWidget, OO.ui.InputWidget );
8936
8937 /* Static Properties */
8938
8939 /**
8940 * @static
8941 * @inheritdoc
8942 */
8943 OO.ui.RadioSelectInputWidget.static.supportsSimpleLabel = false;
8944
8945 /* Static Methods */
8946
8947 /**
8948 * @inheritdoc
8949 */
8950 OO.ui.RadioSelectInputWidget.static.gatherPreInfuseState = function ( node, config ) {
8951 var state = OO.ui.RadioSelectInputWidget.parent.static.gatherPreInfuseState( node, config );
8952 state.value = $( node ).find( '.oo-ui-radioInputWidget .oo-ui-inputWidget-input:checked' ).val();
8953 return state;
8954 };
8955
8956 /**
8957 * @inheritdoc
8958 */
8959 OO.ui.RadioSelectInputWidget.static.reusePreInfuseDOM = function ( node, config ) {
8960 config = OO.ui.RadioSelectInputWidget.parent.static.reusePreInfuseDOM( node, config );
8961 // Cannot reuse the `<input type=radio>` set
8962 delete config.$input;
8963 return config;
8964 };
8965
8966 /* Methods */
8967
8968 /**
8969 * @inheritdoc
8970 * @protected
8971 */
8972 OO.ui.RadioSelectInputWidget.prototype.getInputElement = function () {
8973 return $( '<input>' ).attr( 'type', 'hidden' );
8974 };
8975
8976 /**
8977 * Handles menu select events.
8978 *
8979 * @private
8980 * @param {OO.ui.RadioOptionWidget} item Selected menu item
8981 */
8982 OO.ui.RadioSelectInputWidget.prototype.onMenuSelect = function ( item ) {
8983 this.setValue( item.getData() );
8984 };
8985
8986 /**
8987 * @inheritdoc
8988 */
8989 OO.ui.RadioSelectInputWidget.prototype.setValue = function ( value ) {
8990 value = this.cleanUpValue( value );
8991 this.radioSelectWidget.selectItemByData( value );
8992 OO.ui.RadioSelectInputWidget.parent.prototype.setValue.call( this, value );
8993 return this;
8994 };
8995
8996 /**
8997 * @inheritdoc
8998 */
8999 OO.ui.RadioSelectInputWidget.prototype.setDisabled = function ( state ) {
9000 this.radioSelectWidget.setDisabled( state );
9001 OO.ui.RadioSelectInputWidget.parent.prototype.setDisabled.call( this, state );
9002 return this;
9003 };
9004
9005 /**
9006 * Set the options available for this input.
9007 *
9008 * @param {Object[]} options Array of menu options in the format `{ data: …, label: … }`
9009 * @chainable
9010 */
9011 OO.ui.RadioSelectInputWidget.prototype.setOptions = function ( options ) {
9012 var
9013 value = this.getValue(),
9014 widget = this;
9015
9016 // Rebuild the radioSelect menu
9017 this.radioSelectWidget
9018 .clearItems()
9019 .addItems( options.map( function ( opt ) {
9020 var optValue = widget.cleanUpValue( opt.data );
9021 return new OO.ui.RadioOptionWidget( {
9022 data: optValue,
9023 label: opt.label !== undefined ? opt.label : optValue
9024 } );
9025 } ) );
9026
9027 // Restore the previous value, or reset to something sensible
9028 if ( this.radioSelectWidget.getItemFromData( value ) ) {
9029 // Previous value is still available, ensure consistency with the radioSelect
9030 this.setValue( value );
9031 } else {
9032 // No longer valid, reset
9033 if ( options.length ) {
9034 this.setValue( options[ 0 ].data );
9035 }
9036 }
9037
9038 return this;
9039 };
9040
9041 /**
9042 * CheckboxMultiselectInputWidget is a
9043 * {@link OO.ui.CheckboxMultiselectWidget CheckboxMultiselectWidget} intended to be used within a
9044 * HTML form, such as a OO.ui.FormLayout. The selected values are synchronized with the value of
9045 * HTML `<input type=checkbox>` tags. Please see the [OOjs UI documentation on MediaWiki][1] for
9046 * more information about input widgets.
9047 *
9048 * @example
9049 * // Example: A CheckboxMultiselectInputWidget with three options
9050 * var multiselectInput = new OO.ui.CheckboxMultiselectInputWidget( {
9051 * options: [
9052 * { data: 'a', label: 'First' },
9053 * { data: 'b', label: 'Second'},
9054 * { data: 'c', label: 'Third' }
9055 * ]
9056 * } );
9057 * $( 'body' ).append( multiselectInput.$element );
9058 *
9059 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
9060 *
9061 * @class
9062 * @extends OO.ui.InputWidget
9063 *
9064 * @constructor
9065 * @param {Object} [config] Configuration options
9066 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: …, disabled: … }`
9067 */
9068 OO.ui.CheckboxMultiselectInputWidget = function OoUiCheckboxMultiselectInputWidget( config ) {
9069 // Configuration initialization
9070 config = config || {};
9071
9072 // Properties (must be done before parent constructor which calls #setDisabled)
9073 this.checkboxMultiselectWidget = new OO.ui.CheckboxMultiselectWidget();
9074
9075 // Parent constructor
9076 OO.ui.CheckboxMultiselectInputWidget.parent.call( this, config );
9077
9078 // Properties
9079 this.inputName = config.name;
9080
9081 // Initialization
9082 this.$element
9083 .addClass( 'oo-ui-checkboxMultiselectInputWidget' )
9084 .append( this.checkboxMultiselectWidget.$element );
9085 // We don't use this.$input, but rather the CheckboxInputWidgets inside each option
9086 this.$input.detach();
9087 this.setOptions( config.options || [] );
9088 // Have to repeat this from parent, as we need options to be set up for this to make sense
9089 this.setValue( config.value );
9090 };
9091
9092 /* Setup */
9093
9094 OO.inheritClass( OO.ui.CheckboxMultiselectInputWidget, OO.ui.InputWidget );
9095
9096 /* Static Properties */
9097
9098 /**
9099 * @static
9100 * @inheritdoc
9101 */
9102 OO.ui.CheckboxMultiselectInputWidget.static.supportsSimpleLabel = false;
9103
9104 /* Static Methods */
9105
9106 /**
9107 * @inheritdoc
9108 */
9109 OO.ui.CheckboxMultiselectInputWidget.static.gatherPreInfuseState = function ( node, config ) {
9110 var state = OO.ui.CheckboxMultiselectInputWidget.parent.static.gatherPreInfuseState( node, config );
9111 state.value = $( node ).find( '.oo-ui-checkboxInputWidget .oo-ui-inputWidget-input:checked' )
9112 .toArray().map( function ( el ) { return el.value; } );
9113 return state;
9114 };
9115
9116 /**
9117 * @inheritdoc
9118 */
9119 OO.ui.CheckboxMultiselectInputWidget.static.reusePreInfuseDOM = function ( node, config ) {
9120 config = OO.ui.CheckboxMultiselectInputWidget.parent.static.reusePreInfuseDOM( node, config );
9121 // Cannot reuse the `<input type=checkbox>` set
9122 delete config.$input;
9123 return config;
9124 };
9125
9126 /* Methods */
9127
9128 /**
9129 * @inheritdoc
9130 * @protected
9131 */
9132 OO.ui.CheckboxMultiselectInputWidget.prototype.getInputElement = function () {
9133 // Actually unused
9134 return $( '<div>' );
9135 };
9136
9137 /**
9138 * @inheritdoc
9139 */
9140 OO.ui.CheckboxMultiselectInputWidget.prototype.getValue = function () {
9141 var value = this.$element.find( '.oo-ui-checkboxInputWidget .oo-ui-inputWidget-input:checked' )
9142 .toArray().map( function ( el ) { return el.value; } );
9143 if ( this.value !== value ) {
9144 this.setValue( value );
9145 }
9146 return this.value;
9147 };
9148
9149 /**
9150 * @inheritdoc
9151 */
9152 OO.ui.CheckboxMultiselectInputWidget.prototype.setValue = function ( value ) {
9153 value = this.cleanUpValue( value );
9154 this.checkboxMultiselectWidget.selectItemsByData( value );
9155 OO.ui.CheckboxMultiselectInputWidget.parent.prototype.setValue.call( this, value );
9156 return this;
9157 };
9158
9159 /**
9160 * Clean up incoming value.
9161 *
9162 * @param {string[]} value Original value
9163 * @return {string[]} Cleaned up value
9164 */
9165 OO.ui.CheckboxMultiselectInputWidget.prototype.cleanUpValue = function ( value ) {
9166 var i, singleValue,
9167 cleanValue = [];
9168 if ( !Array.isArray( value ) ) {
9169 return cleanValue;
9170 }
9171 for ( i = 0; i < value.length; i++ ) {
9172 singleValue =
9173 OO.ui.CheckboxMultiselectInputWidget.parent.prototype.cleanUpValue.call( this, value[ i ] );
9174 // Remove options that we don't have here
9175 if ( !this.checkboxMultiselectWidget.getItemFromData( singleValue ) ) {
9176 continue;
9177 }
9178 cleanValue.push( singleValue );
9179 }
9180 return cleanValue;
9181 };
9182
9183 /**
9184 * @inheritdoc
9185 */
9186 OO.ui.CheckboxMultiselectInputWidget.prototype.setDisabled = function ( state ) {
9187 this.checkboxMultiselectWidget.setDisabled( state );
9188 OO.ui.CheckboxMultiselectInputWidget.parent.prototype.setDisabled.call( this, state );
9189 return this;
9190 };
9191
9192 /**
9193 * Set the options available for this input.
9194 *
9195 * @param {Object[]} options Array of menu options in the format `{ data: …, label: …, disabled: … }`
9196 * @chainable
9197 */
9198 OO.ui.CheckboxMultiselectInputWidget.prototype.setOptions = function ( options ) {
9199 var widget = this;
9200
9201 // Rebuild the checkboxMultiselectWidget menu
9202 this.checkboxMultiselectWidget
9203 .clearItems()
9204 .addItems( options.map( function ( opt ) {
9205 var optValue, item, optDisabled;
9206 optValue =
9207 OO.ui.CheckboxMultiselectInputWidget.parent.prototype.cleanUpValue.call( widget, opt.data );
9208 optDisabled = opt.disabled !== undefined ? opt.disabled : false;
9209 item = new OO.ui.CheckboxMultioptionWidget( {
9210 data: optValue,
9211 label: opt.label !== undefined ? opt.label : optValue,
9212 disabled: optDisabled
9213 } );
9214 // Set the 'name' and 'value' for form submission
9215 item.checkbox.$input.attr( 'name', widget.inputName );
9216 item.checkbox.setValue( optValue );
9217 return item;
9218 } ) );
9219
9220 // Re-set the value, checking the checkboxes as needed.
9221 // This will also get rid of any stale options that we just removed.
9222 this.setValue( this.getValue() );
9223
9224 return this;
9225 };
9226
9227 /**
9228 * TextInputWidgets, like HTML text inputs, can be configured with options that customize the
9229 * size of the field as well as its presentation. In addition, these widgets can be configured
9230 * with {@link OO.ui.mixin.IconElement icons}, {@link OO.ui.mixin.IndicatorElement indicators}, an optional
9231 * validation-pattern (used to determine if an input value is valid or not) and an input filter,
9232 * which modifies incoming values rather than validating them.
9233 * Please see the [OOjs UI documentation on MediaWiki] [1] for more information and examples.
9234 *
9235 * This widget can be used inside an HTML form, such as a OO.ui.FormLayout.
9236 *
9237 * @example
9238 * // Example of a text input widget
9239 * var textInput = new OO.ui.TextInputWidget( {
9240 * value: 'Text input'
9241 * } )
9242 * $( 'body' ).append( textInput.$element );
9243 *
9244 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
9245 *
9246 * @class
9247 * @extends OO.ui.InputWidget
9248 * @mixins OO.ui.mixin.IconElement
9249 * @mixins OO.ui.mixin.IndicatorElement
9250 * @mixins OO.ui.mixin.PendingElement
9251 * @mixins OO.ui.mixin.LabelElement
9252 *
9253 * @constructor
9254 * @param {Object} [config] Configuration options
9255 * @cfg {string} [type='text'] The value of the HTML `type` attribute: 'text', 'password', 'search',
9256 * 'email', 'url' or 'number'. Ignored if `multiline` is true.
9257 *
9258 * Some values of `type` result in additional behaviors:
9259 *
9260 * - `search`: implies `icon: 'search'` and `indicator: 'clear'`; when clicked, the indicator
9261 * empties the text field
9262 * @cfg {string} [placeholder] Placeholder text
9263 * @cfg {boolean} [autofocus=false] Use an HTML `autofocus` attribute to
9264 * instruct the browser to focus this widget.
9265 * @cfg {boolean} [readOnly=false] Prevent changes to the value of the text input.
9266 * @cfg {number} [maxLength] Maximum number of characters allowed in the input.
9267 * @cfg {boolean} [multiline=false] Allow multiple lines of text
9268 * @cfg {number} [rows] If multiline, number of visible lines in textarea. If used with `autosize`,
9269 * specifies minimum number of rows to display.
9270 * @cfg {boolean} [autosize=false] Automatically resize the text input to fit its content.
9271 * Use the #maxRows config to specify a maximum number of displayed rows.
9272 * @cfg {number} [maxRows] Maximum number of rows to display when #autosize is set to true.
9273 * Defaults to the maximum of `10` and `2 * rows`, or `10` if `rows` isn't provided.
9274 * @cfg {string} [labelPosition='after'] The position of the inline label relative to that of
9275 * the value or placeholder text: `'before'` or `'after'`
9276 * @cfg {boolean} [required=false] Mark the field as required. Implies `indicator: 'required'`.
9277 * @cfg {boolean} [autocomplete=true] Should the browser support autocomplete for this field
9278 * @cfg {RegExp|Function|string} [validate] Validation pattern: when string, a symbolic name of a
9279 * pattern defined by the class: 'non-empty' (the value cannot be an empty string) or 'integer'
9280 * (the value must contain only numbers); when RegExp, a regular expression that must match the
9281 * value for it to be considered valid; when Function, a function receiving the value as parameter
9282 * that must return true, or promise resolving to true, for it to be considered valid.
9283 */
9284 OO.ui.TextInputWidget = function OoUiTextInputWidget( config ) {
9285 // Configuration initialization
9286 config = $.extend( {
9287 type: 'text',
9288 labelPosition: 'after'
9289 }, config );
9290
9291 if ( config.type === 'search' ) {
9292 OO.ui.warnDeprecation( 'TextInputWidget: config.type=\'search\' is deprecated. Use the SearchInputWidget instead. See T148471 for details.' );
9293 if ( config.icon === undefined ) {
9294 config.icon = 'search';
9295 }
9296 // indicator: 'clear' is set dynamically later, depending on value
9297 }
9298
9299 // Parent constructor
9300 OO.ui.TextInputWidget.parent.call( this, config );
9301
9302 // Mixin constructors
9303 OO.ui.mixin.IconElement.call( this, config );
9304 OO.ui.mixin.IndicatorElement.call( this, config );
9305 OO.ui.mixin.PendingElement.call( this, $.extend( {}, config, { $pending: this.$input } ) );
9306 OO.ui.mixin.LabelElement.call( this, config );
9307
9308 // Properties
9309 this.type = this.getSaneType( config );
9310 this.readOnly = false;
9311 this.required = false;
9312 this.multiline = !!config.multiline;
9313 this.autosize = !!config.autosize;
9314 this.minRows = config.rows !== undefined ? config.rows : '';
9315 this.maxRows = config.maxRows || Math.max( 2 * ( this.minRows || 0 ), 10 );
9316 this.validate = null;
9317 this.styleHeight = null;
9318 this.scrollWidth = null;
9319
9320 // Clone for resizing
9321 if ( this.autosize ) {
9322 this.$clone = this.$input
9323 .clone()
9324 .insertAfter( this.$input )
9325 .attr( 'aria-hidden', 'true' )
9326 .addClass( 'oo-ui-element-hidden' );
9327 }
9328
9329 this.setValidation( config.validate );
9330 this.setLabelPosition( config.labelPosition );
9331
9332 // Events
9333 this.$input.on( {
9334 keypress: this.onKeyPress.bind( this ),
9335 blur: this.onBlur.bind( this ),
9336 focus: this.onFocus.bind( this )
9337 } );
9338 this.$icon.on( 'mousedown', this.onIconMouseDown.bind( this ) );
9339 this.$indicator.on( 'mousedown', this.onIndicatorMouseDown.bind( this ) );
9340 this.on( 'labelChange', this.updatePosition.bind( this ) );
9341 this.connect( this, {
9342 change: 'onChange',
9343 disable: 'onDisable'
9344 } );
9345 this.on( 'change', OO.ui.debounce( this.onDebouncedChange.bind( this ), 250 ) );
9346
9347 // Initialization
9348 this.$element
9349 .addClass( 'oo-ui-textInputWidget oo-ui-textInputWidget-type-' + this.type )
9350 .append( this.$icon, this.$indicator );
9351 this.setReadOnly( !!config.readOnly );
9352 this.setRequired( !!config.required );
9353 this.updateSearchIndicator();
9354 if ( config.placeholder !== undefined ) {
9355 this.$input.attr( 'placeholder', config.placeholder );
9356 }
9357 if ( config.maxLength !== undefined ) {
9358 this.$input.attr( 'maxlength', config.maxLength );
9359 }
9360 if ( config.autofocus ) {
9361 this.$input.attr( 'autofocus', 'autofocus' );
9362 }
9363 if ( config.autocomplete === false ) {
9364 this.$input.attr( 'autocomplete', 'off' );
9365 // Turning off autocompletion also disables "form caching" when the user navigates to a
9366 // different page and then clicks "Back". Re-enable it when leaving. Borrowed from jQuery UI.
9367 $( window ).on( {
9368 beforeunload: function () {
9369 this.$input.removeAttr( 'autocomplete' );
9370 }.bind( this ),
9371 pageshow: function () {
9372 // Browsers don't seem to actually fire this event on "Back", they instead just reload the
9373 // whole page... it shouldn't hurt, though.
9374 this.$input.attr( 'autocomplete', 'off' );
9375 }.bind( this )
9376 } );
9377 }
9378 if ( this.multiline && config.rows ) {
9379 this.$input.attr( 'rows', config.rows );
9380 }
9381 if ( this.label || config.autosize ) {
9382 this.isWaitingToBeAttached = true;
9383 this.installParentChangeDetector();
9384 }
9385 };
9386
9387 /* Setup */
9388
9389 OO.inheritClass( OO.ui.TextInputWidget, OO.ui.InputWidget );
9390 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.mixin.IconElement );
9391 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.mixin.IndicatorElement );
9392 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.mixin.PendingElement );
9393 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.mixin.LabelElement );
9394
9395 /* Static Properties */
9396
9397 OO.ui.TextInputWidget.static.validationPatterns = {
9398 'non-empty': /.+/,
9399 integer: /^\d+$/
9400 };
9401
9402 /* Static Methods */
9403
9404 /**
9405 * @inheritdoc
9406 */
9407 OO.ui.TextInputWidget.static.gatherPreInfuseState = function ( node, config ) {
9408 var state = OO.ui.TextInputWidget.parent.static.gatherPreInfuseState( node, config );
9409 if ( config.multiline ) {
9410 state.scrollTop = config.$input.scrollTop();
9411 }
9412 return state;
9413 };
9414
9415 /* Events */
9416
9417 /**
9418 * An `enter` event is emitted when the user presses 'enter' inside the text box.
9419 *
9420 * Not emitted if the input is multiline.
9421 *
9422 * @event enter
9423 */
9424
9425 /**
9426 * A `resize` event is emitted when autosize is set and the widget resizes
9427 *
9428 * @event resize
9429 */
9430
9431 /* Methods */
9432
9433 /**
9434 * Handle icon mouse down events.
9435 *
9436 * @private
9437 * @param {jQuery.Event} e Mouse down event
9438 */
9439 OO.ui.TextInputWidget.prototype.onIconMouseDown = function ( e ) {
9440 if ( e.which === OO.ui.MouseButtons.LEFT ) {
9441 this.$input[ 0 ].focus();
9442 return false;
9443 }
9444 };
9445
9446 /**
9447 * Handle indicator mouse down events.
9448 *
9449 * @private
9450 * @param {jQuery.Event} e Mouse down event
9451 */
9452 OO.ui.TextInputWidget.prototype.onIndicatorMouseDown = function ( e ) {
9453 if ( e.which === OO.ui.MouseButtons.LEFT ) {
9454 if ( this.type === 'search' ) {
9455 // Clear the text field
9456 this.setValue( '' );
9457 }
9458 this.$input[ 0 ].focus();
9459 return false;
9460 }
9461 };
9462
9463 /**
9464 * Handle key press events.
9465 *
9466 * @private
9467 * @param {jQuery.Event} e Key press event
9468 * @fires enter If enter key is pressed and input is not multiline
9469 */
9470 OO.ui.TextInputWidget.prototype.onKeyPress = function ( e ) {
9471 if ( e.which === OO.ui.Keys.ENTER && !this.multiline ) {
9472 this.emit( 'enter', e );
9473 }
9474 };
9475
9476 /**
9477 * Handle blur events.
9478 *
9479 * @private
9480 * @param {jQuery.Event} e Blur event
9481 */
9482 OO.ui.TextInputWidget.prototype.onBlur = function () {
9483 this.setValidityFlag();
9484 };
9485
9486 /**
9487 * Handle focus events.
9488 *
9489 * @private
9490 * @param {jQuery.Event} e Focus event
9491 */
9492 OO.ui.TextInputWidget.prototype.onFocus = function () {
9493 if ( this.isWaitingToBeAttached ) {
9494 // If we've received focus, then we must be attached to the document, and if
9495 // isWaitingToBeAttached is still true, that means the handler never fired. Fire it now.
9496 this.onElementAttach();
9497 }
9498 this.setValidityFlag( true );
9499 };
9500
9501 /**
9502 * Handle element attach events.
9503 *
9504 * @private
9505 * @param {jQuery.Event} e Element attach event
9506 */
9507 OO.ui.TextInputWidget.prototype.onElementAttach = function () {
9508 this.isWaitingToBeAttached = false;
9509 // Any previously calculated size is now probably invalid if we reattached elsewhere
9510 this.valCache = null;
9511 this.adjustSize();
9512 this.positionLabel();
9513 };
9514
9515 /**
9516 * Handle change events.
9517 *
9518 * @param {string} value
9519 * @private
9520 */
9521 OO.ui.TextInputWidget.prototype.onChange = function () {
9522 this.updateSearchIndicator();
9523 this.adjustSize();
9524 };
9525
9526 /**
9527 * Handle debounced change events.
9528 *
9529 * @param {string} value
9530 * @private
9531 */
9532 OO.ui.TextInputWidget.prototype.onDebouncedChange = function () {
9533 this.setValidityFlag();
9534 };
9535
9536 /**
9537 * Handle disable events.
9538 *
9539 * @param {boolean} disabled Element is disabled
9540 * @private
9541 */
9542 OO.ui.TextInputWidget.prototype.onDisable = function () {
9543 this.updateSearchIndicator();
9544 };
9545
9546 /**
9547 * Check if the input is {@link #readOnly read-only}.
9548 *
9549 * @return {boolean}
9550 */
9551 OO.ui.TextInputWidget.prototype.isReadOnly = function () {
9552 return this.readOnly;
9553 };
9554
9555 /**
9556 * Set the {@link #readOnly read-only} state of the input.
9557 *
9558 * @param {boolean} state Make input read-only
9559 * @chainable
9560 */
9561 OO.ui.TextInputWidget.prototype.setReadOnly = function ( state ) {
9562 this.readOnly = !!state;
9563 this.$input.prop( 'readOnly', this.readOnly );
9564 this.updateSearchIndicator();
9565 return this;
9566 };
9567
9568 /**
9569 * Check if the input is {@link #required required}.
9570 *
9571 * @return {boolean}
9572 */
9573 OO.ui.TextInputWidget.prototype.isRequired = function () {
9574 return this.required;
9575 };
9576
9577 /**
9578 * Set the {@link #required required} state of the input.
9579 *
9580 * @param {boolean} state Make input required
9581 * @chainable
9582 */
9583 OO.ui.TextInputWidget.prototype.setRequired = function ( state ) {
9584 this.required = !!state;
9585 if ( this.required ) {
9586 this.$input
9587 .prop( 'required', true )
9588 .attr( 'aria-required', 'true' );
9589 if ( this.getIndicator() === null ) {
9590 this.setIndicator( 'required' );
9591 }
9592 } else {
9593 this.$input
9594 .prop( 'required', false )
9595 .removeAttr( 'aria-required' );
9596 if ( this.getIndicator() === 'required' ) {
9597 this.setIndicator( null );
9598 }
9599 }
9600 this.updateSearchIndicator();
9601 return this;
9602 };
9603
9604 /**
9605 * Support function for making #onElementAttach work across browsers.
9606 *
9607 * This whole function could be replaced with one line of code using the DOMNodeInsertedIntoDocument
9608 * event, but it's not supported by Firefox and allegedly deprecated, so we only use it as fallback.
9609 *
9610 * Due to MutationObserver performance woes, #onElementAttach is only somewhat reliably called the
9611 * first time that the element gets attached to the documented.
9612 */
9613 OO.ui.TextInputWidget.prototype.installParentChangeDetector = function () {
9614 var mutationObserver, onRemove, topmostNode, fakeParentNode,
9615 MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver,
9616 widget = this;
9617
9618 if ( MutationObserver ) {
9619 // The new way. If only it wasn't so ugly.
9620
9621 if ( this.isElementAttached() ) {
9622 // Widget is attached already, do nothing. This breaks the functionality of this function when
9623 // the widget is detached and reattached. Alas, doing this correctly with MutationObserver
9624 // would require observation of the whole document, which would hurt performance of other,
9625 // more important code.
9626 return;
9627 }
9628
9629 // Find topmost node in the tree
9630 topmostNode = this.$element[ 0 ];
9631 while ( topmostNode.parentNode ) {
9632 topmostNode = topmostNode.parentNode;
9633 }
9634
9635 // We have no way to detect the $element being attached somewhere without observing the entire
9636 // DOM with subtree modifications, which would hurt performance. So we cheat: we hook to the
9637 // parent node of $element, and instead detect when $element is removed from it (and thus
9638 // probably attached somewhere else). If there is no parent, we create a "fake" one. If it
9639 // doesn't get attached, we end up back here and create the parent.
9640
9641 mutationObserver = new MutationObserver( function ( mutations ) {
9642 var i, j, removedNodes;
9643 for ( i = 0; i < mutations.length; i++ ) {
9644 removedNodes = mutations[ i ].removedNodes;
9645 for ( j = 0; j < removedNodes.length; j++ ) {
9646 if ( removedNodes[ j ] === topmostNode ) {
9647 setTimeout( onRemove, 0 );
9648 return;
9649 }
9650 }
9651 }
9652 } );
9653
9654 onRemove = function () {
9655 // If the node was attached somewhere else, report it
9656 if ( widget.isElementAttached() ) {
9657 widget.onElementAttach();
9658 }
9659 mutationObserver.disconnect();
9660 widget.installParentChangeDetector();
9661 };
9662
9663 // Create a fake parent and observe it
9664 fakeParentNode = $( '<div>' ).append( topmostNode )[ 0 ];
9665 mutationObserver.observe( fakeParentNode, { childList: true } );
9666 } else {
9667 // Using the DOMNodeInsertedIntoDocument event is much nicer and less magical, and works for
9668 // detachment and reattachment, but it's not supported by Firefox and allegedly deprecated.
9669 this.$element.on( 'DOMNodeInsertedIntoDocument', this.onElementAttach.bind( this ) );
9670 }
9671 };
9672
9673 /**
9674 * Automatically adjust the size of the text input.
9675 *
9676 * This only affects #multiline inputs that are {@link #autosize autosized}.
9677 *
9678 * @chainable
9679 * @fires resize
9680 */
9681 OO.ui.TextInputWidget.prototype.adjustSize = function () {
9682 var scrollHeight, innerHeight, outerHeight, maxInnerHeight, measurementError,
9683 idealHeight, newHeight, scrollWidth, property;
9684
9685 if ( this.isWaitingToBeAttached ) {
9686 // #onElementAttach will be called soon, which calls this method
9687 return this;
9688 }
9689
9690 if ( this.multiline && this.$input.val() !== this.valCache ) {
9691 if ( this.autosize ) {
9692 this.$clone
9693 .val( this.$input.val() )
9694 .attr( 'rows', this.minRows )
9695 // Set inline height property to 0 to measure scroll height
9696 .css( 'height', 0 );
9697
9698 this.$clone.removeClass( 'oo-ui-element-hidden' );
9699
9700 this.valCache = this.$input.val();
9701
9702 scrollHeight = this.$clone[ 0 ].scrollHeight;
9703
9704 // Remove inline height property to measure natural heights
9705 this.$clone.css( 'height', '' );
9706 innerHeight = this.$clone.innerHeight();
9707 outerHeight = this.$clone.outerHeight();
9708
9709 // Measure max rows height
9710 this.$clone
9711 .attr( 'rows', this.maxRows )
9712 .css( 'height', 'auto' )
9713 .val( '' );
9714 maxInnerHeight = this.$clone.innerHeight();
9715
9716 // Difference between reported innerHeight and scrollHeight with no scrollbars present.
9717 // This is sometimes non-zero on Blink-based browsers, depending on zoom level.
9718 measurementError = maxInnerHeight - this.$clone[ 0 ].scrollHeight;
9719 idealHeight = Math.min( maxInnerHeight, scrollHeight + measurementError );
9720
9721 this.$clone.addClass( 'oo-ui-element-hidden' );
9722
9723 // Only apply inline height when expansion beyond natural height is needed
9724 // Use the difference between the inner and outer height as a buffer
9725 newHeight = idealHeight > innerHeight ? idealHeight + ( outerHeight - innerHeight ) : '';
9726 if ( newHeight !== this.styleHeight ) {
9727 this.$input.css( 'height', newHeight );
9728 this.styleHeight = newHeight;
9729 this.emit( 'resize' );
9730 }
9731 }
9732 scrollWidth = this.$input[ 0 ].offsetWidth - this.$input[ 0 ].clientWidth;
9733 if ( scrollWidth !== this.scrollWidth ) {
9734 property = this.$element.css( 'direction' ) === 'rtl' ? 'left' : 'right';
9735 // Reset
9736 this.$label.css( { right: '', left: '' } );
9737 this.$indicator.css( { right: '', left: '' } );
9738
9739 if ( scrollWidth ) {
9740 this.$indicator.css( property, scrollWidth );
9741 if ( this.labelPosition === 'after' ) {
9742 this.$label.css( property, scrollWidth );
9743 }
9744 }
9745
9746 this.scrollWidth = scrollWidth;
9747 this.positionLabel();
9748 }
9749 }
9750 return this;
9751 };
9752
9753 /**
9754 * @inheritdoc
9755 * @protected
9756 */
9757 OO.ui.TextInputWidget.prototype.getInputElement = function ( config ) {
9758 if ( config.multiline ) {
9759 return $( '<textarea>' );
9760 } else if ( this.getSaneType( config ) === 'number' ) {
9761 return $( '<input>' )
9762 .attr( 'step', 'any' )
9763 .attr( 'type', 'number' );
9764 } else {
9765 return $( '<input>' ).attr( 'type', this.getSaneType( config ) );
9766 }
9767 };
9768
9769 /**
9770 * Get sanitized value for 'type' for given config.
9771 *
9772 * @param {Object} config Configuration options
9773 * @return {string|null}
9774 * @private
9775 */
9776 OO.ui.TextInputWidget.prototype.getSaneType = function ( config ) {
9777 var allowedTypes = [
9778 'text',
9779 'password',
9780 'search',
9781 'email',
9782 'url',
9783 'number'
9784 ];
9785 return allowedTypes.indexOf( config.type ) !== -1 ? config.type : 'text';
9786 };
9787
9788 /**
9789 * Check if the input supports multiple lines.
9790 *
9791 * @return {boolean}
9792 */
9793 OO.ui.TextInputWidget.prototype.isMultiline = function () {
9794 return !!this.multiline;
9795 };
9796
9797 /**
9798 * Check if the input automatically adjusts its size.
9799 *
9800 * @return {boolean}
9801 */
9802 OO.ui.TextInputWidget.prototype.isAutosizing = function () {
9803 return !!this.autosize;
9804 };
9805
9806 /**
9807 * Focus the input and select a specified range within the text.
9808 *
9809 * @param {number} from Select from offset
9810 * @param {number} [to] Select to offset, defaults to from
9811 * @chainable
9812 */
9813 OO.ui.TextInputWidget.prototype.selectRange = function ( from, to ) {
9814 var isBackwards, start, end,
9815 input = this.$input[ 0 ];
9816
9817 to = to || from;
9818
9819 isBackwards = to < from;
9820 start = isBackwards ? to : from;
9821 end = isBackwards ? from : to;
9822
9823 this.focus();
9824
9825 try {
9826 input.setSelectionRange( start, end, isBackwards ? 'backward' : 'forward' );
9827 } catch ( e ) {
9828 // IE throws an exception if you call setSelectionRange on a unattached DOM node.
9829 // Rather than expensively check if the input is attached every time, just check
9830 // if it was the cause of an error being thrown. If not, rethrow the error.
9831 if ( this.getElementDocument().body.contains( input ) ) {
9832 throw e;
9833 }
9834 }
9835 return this;
9836 };
9837
9838 /**
9839 * Get an object describing the current selection range in a directional manner
9840 *
9841 * @return {Object} Object containing 'from' and 'to' offsets
9842 */
9843 OO.ui.TextInputWidget.prototype.getRange = function () {
9844 var input = this.$input[ 0 ],
9845 start = input.selectionStart,
9846 end = input.selectionEnd,
9847 isBackwards = input.selectionDirection === 'backward';
9848
9849 return {
9850 from: isBackwards ? end : start,
9851 to: isBackwards ? start : end
9852 };
9853 };
9854
9855 /**
9856 * Get the length of the text input value.
9857 *
9858 * This could differ from the length of #getValue if the
9859 * value gets filtered
9860 *
9861 * @return {number} Input length
9862 */
9863 OO.ui.TextInputWidget.prototype.getInputLength = function () {
9864 return this.$input[ 0 ].value.length;
9865 };
9866
9867 /**
9868 * Focus the input and select the entire text.
9869 *
9870 * @chainable
9871 */
9872 OO.ui.TextInputWidget.prototype.select = function () {
9873 return this.selectRange( 0, this.getInputLength() );
9874 };
9875
9876 /**
9877 * Focus the input and move the cursor to the start.
9878 *
9879 * @chainable
9880 */
9881 OO.ui.TextInputWidget.prototype.moveCursorToStart = function () {
9882 return this.selectRange( 0 );
9883 };
9884
9885 /**
9886 * Focus the input and move the cursor to the end.
9887 *
9888 * @chainable
9889 */
9890 OO.ui.TextInputWidget.prototype.moveCursorToEnd = function () {
9891 return this.selectRange( this.getInputLength() );
9892 };
9893
9894 /**
9895 * Insert new content into the input.
9896 *
9897 * @param {string} content Content to be inserted
9898 * @chainable
9899 */
9900 OO.ui.TextInputWidget.prototype.insertContent = function ( content ) {
9901 var start, end,
9902 range = this.getRange(),
9903 value = this.getValue();
9904
9905 start = Math.min( range.from, range.to );
9906 end = Math.max( range.from, range.to );
9907
9908 this.setValue( value.slice( 0, start ) + content + value.slice( end ) );
9909 this.selectRange( start + content.length );
9910 return this;
9911 };
9912
9913 /**
9914 * Insert new content either side of a selection.
9915 *
9916 * @param {string} pre Content to be inserted before the selection
9917 * @param {string} post Content to be inserted after the selection
9918 * @chainable
9919 */
9920 OO.ui.TextInputWidget.prototype.encapsulateContent = function ( pre, post ) {
9921 var start, end,
9922 range = this.getRange(),
9923 offset = pre.length;
9924
9925 start = Math.min( range.from, range.to );
9926 end = Math.max( range.from, range.to );
9927
9928 this.selectRange( start ).insertContent( pre );
9929 this.selectRange( offset + end ).insertContent( post );
9930
9931 this.selectRange( offset + start, offset + end );
9932 return this;
9933 };
9934
9935 /**
9936 * Set the validation pattern.
9937 *
9938 * The validation pattern is either a regular expression, a function, or the symbolic name of a
9939 * pattern defined by the class: 'non-empty' (the value cannot be an empty string) or 'integer' (the
9940 * value must contain only numbers).
9941 *
9942 * @param {RegExp|Function|string|null} validate Regular expression, function, or the symbolic name
9943 * of a pattern (either ‘integer’ or ‘non-empty’) defined by the class.
9944 */
9945 OO.ui.TextInputWidget.prototype.setValidation = function ( validate ) {
9946 if ( validate instanceof RegExp || validate instanceof Function ) {
9947 this.validate = validate;
9948 } else {
9949 this.validate = this.constructor.static.validationPatterns[ validate ] || /.*/;
9950 }
9951 };
9952
9953 /**
9954 * Sets the 'invalid' flag appropriately.
9955 *
9956 * @param {boolean} [isValid] Optionally override validation result
9957 */
9958 OO.ui.TextInputWidget.prototype.setValidityFlag = function ( isValid ) {
9959 var widget = this,
9960 setFlag = function ( valid ) {
9961 if ( !valid ) {
9962 widget.$input.attr( 'aria-invalid', 'true' );
9963 } else {
9964 widget.$input.removeAttr( 'aria-invalid' );
9965 }
9966 widget.setFlags( { invalid: !valid } );
9967 };
9968
9969 if ( isValid !== undefined ) {
9970 setFlag( isValid );
9971 } else {
9972 this.getValidity().then( function () {
9973 setFlag( true );
9974 }, function () {
9975 setFlag( false );
9976 } );
9977 }
9978 };
9979
9980 /**
9981 * Get the validity of current value.
9982 *
9983 * This method returns a promise that resolves if the value is valid and rejects if
9984 * it isn't. Uses the {@link #validate validation pattern} to check for validity.
9985 *
9986 * @return {jQuery.Promise} A promise that resolves if the value is valid, rejects if not.
9987 */
9988 OO.ui.TextInputWidget.prototype.getValidity = function () {
9989 var result;
9990
9991 function rejectOrResolve( valid ) {
9992 if ( valid ) {
9993 return $.Deferred().resolve().promise();
9994 } else {
9995 return $.Deferred().reject().promise();
9996 }
9997 }
9998
9999 // Check browser validity and reject if it is invalid
10000 if (
10001 this.$input[ 0 ].checkValidity !== undefined &&
10002 this.$input[ 0 ].checkValidity() === false
10003 ) {
10004 return rejectOrResolve( false );
10005 }
10006
10007 // Run our checks if the browser thinks the field is valid
10008 if ( this.validate instanceof Function ) {
10009 result = this.validate( this.getValue() );
10010 if ( result && $.isFunction( result.promise ) ) {
10011 return result.promise().then( function ( valid ) {
10012 return rejectOrResolve( valid );
10013 } );
10014 } else {
10015 return rejectOrResolve( result );
10016 }
10017 } else {
10018 return rejectOrResolve( this.getValue().match( this.validate ) );
10019 }
10020 };
10021
10022 /**
10023 * Set the position of the inline label relative to that of the value: `‘before’` or `‘after’`.
10024 *
10025 * @param {string} labelPosition Label position, 'before' or 'after'
10026 * @chainable
10027 */
10028 OO.ui.TextInputWidget.prototype.setLabelPosition = function ( labelPosition ) {
10029 this.labelPosition = labelPosition;
10030 if ( this.label ) {
10031 // If there is no label and we only change the position, #updatePosition is a no-op,
10032 // but it takes really a lot of work to do nothing.
10033 this.updatePosition();
10034 }
10035 return this;
10036 };
10037
10038 /**
10039 * Update the position of the inline label.
10040 *
10041 * This method is called by #setLabelPosition, and can also be called on its own if
10042 * something causes the label to be mispositioned.
10043 *
10044 * @chainable
10045 */
10046 OO.ui.TextInputWidget.prototype.updatePosition = function () {
10047 var after = this.labelPosition === 'after';
10048
10049 this.$element
10050 .toggleClass( 'oo-ui-textInputWidget-labelPosition-after', !!this.label && after )
10051 .toggleClass( 'oo-ui-textInputWidget-labelPosition-before', !!this.label && !after );
10052
10053 this.valCache = null;
10054 this.scrollWidth = null;
10055 this.adjustSize();
10056 this.positionLabel();
10057
10058 return this;
10059 };
10060
10061 /**
10062 * Update the 'clear' indicator displayed on type: 'search' text fields, hiding it when the field is
10063 * already empty or when it's not editable.
10064 */
10065 OO.ui.TextInputWidget.prototype.updateSearchIndicator = function () {
10066 if ( this.type === 'search' ) {
10067 if ( this.getValue() === '' || this.isDisabled() || this.isReadOnly() ) {
10068 this.setIndicator( null );
10069 } else {
10070 this.setIndicator( 'clear' );
10071 }
10072 }
10073 };
10074
10075 /**
10076 * Position the label by setting the correct padding on the input.
10077 *
10078 * @private
10079 * @chainable
10080 */
10081 OO.ui.TextInputWidget.prototype.positionLabel = function () {
10082 var after, rtl, property;
10083
10084 if ( this.isWaitingToBeAttached ) {
10085 // #onElementAttach will be called soon, which calls this method
10086 return this;
10087 }
10088
10089 // Clear old values
10090 this.$input
10091 // Clear old values if present
10092 .css( {
10093 'padding-right': '',
10094 'padding-left': ''
10095 } );
10096
10097 if ( this.label ) {
10098 this.$element.append( this.$label );
10099 } else {
10100 this.$label.detach();
10101 return;
10102 }
10103
10104 after = this.labelPosition === 'after';
10105 rtl = this.$element.css( 'direction' ) === 'rtl';
10106 property = after === rtl ? 'padding-left' : 'padding-right';
10107
10108 this.$input.css( property, this.$label.outerWidth( true ) + ( after ? this.scrollWidth : 0 ) );
10109
10110 return this;
10111 };
10112
10113 /**
10114 * @inheritdoc
10115 */
10116 OO.ui.TextInputWidget.prototype.restorePreInfuseState = function ( state ) {
10117 OO.ui.TextInputWidget.parent.prototype.restorePreInfuseState.call( this, state );
10118 if ( state.scrollTop !== undefined ) {
10119 this.$input.scrollTop( state.scrollTop );
10120 }
10121 };
10122
10123 /**
10124 * @class
10125 * @extends OO.ui.TextInputWidget
10126 *
10127 * @constructor
10128 * @param {Object} [config] Configuration options
10129 */
10130 OO.ui.SearchInputWidget = function OoUiSearchInputWidget( config ) {
10131 config = $.extend( {
10132 icon: 'search'
10133 }, config );
10134
10135 // Set type to text so that TextInputWidget doesn't
10136 // get stuck in an infinite loop.
10137 config.type = 'text';
10138
10139 // Parent constructor
10140 OO.ui.SearchInputWidget.parent.call( this, config );
10141
10142 // Initialization
10143 this.$element.addClass( 'oo-ui-textInputWidget-type-search' );
10144 this.updateSearchIndicator();
10145 this.connect( this, {
10146 disable: 'onDisable'
10147 } );
10148 };
10149
10150 /* Setup */
10151
10152 OO.inheritClass( OO.ui.SearchInputWidget, OO.ui.TextInputWidget );
10153
10154 /* Methods */
10155
10156 /**
10157 * @inheritdoc
10158 * @protected
10159 */
10160 OO.ui.SearchInputWidget.prototype.getInputElement = function () {
10161 return $( '<input>' ).attr( 'type', 'search' );
10162 };
10163
10164 /**
10165 * @inheritdoc
10166 */
10167 OO.ui.SearchInputWidget.prototype.onIndicatorMouseDown = function ( e ) {
10168 if ( e.which === OO.ui.MouseButtons.LEFT ) {
10169 // Clear the text field
10170 this.setValue( '' );
10171 this.$input[ 0 ].focus();
10172 return false;
10173 }
10174 };
10175
10176 /**
10177 * Update the 'clear' indicator displayed on type: 'search' text
10178 * fields, hiding it when the field is already empty or when it's not
10179 * editable.
10180 */
10181 OO.ui.SearchInputWidget.prototype.updateSearchIndicator = function () {
10182 if ( this.getValue() === '' || this.isDisabled() || this.isReadOnly() ) {
10183 this.setIndicator( null );
10184 } else {
10185 this.setIndicator( 'clear' );
10186 }
10187 };
10188
10189 /**
10190 * @inheritdoc
10191 */
10192 OO.ui.SearchInputWidget.prototype.onChange = function () {
10193 OO.ui.SearchInputWidget.parent.prototype.onChange.call( this );
10194 this.updateSearchIndicator();
10195 };
10196
10197 /**
10198 * Handle disable events.
10199 *
10200 * @param {boolean} disabled Element is disabled
10201 * @private
10202 */
10203 OO.ui.SearchInputWidget.prototype.onDisable = function () {
10204 this.updateSearchIndicator();
10205 };
10206
10207 /**
10208 * @inheritdoc
10209 */
10210 OO.ui.SearchInputWidget.prototype.setReadOnly = function ( state ) {
10211 OO.ui.SearchInputWidget.parent.prototype.setReadOnly.call( this, state );
10212 this.updateSearchIndicator();
10213 return this;
10214 };
10215
10216 /**
10217 * ComboBoxInputWidgets combine a {@link OO.ui.TextInputWidget text input} (where a value
10218 * can be entered manually) and a {@link OO.ui.MenuSelectWidget menu of options} (from which
10219 * a value can be chosen instead). Users can choose options from the combo box in one of two ways:
10220 *
10221 * - by typing a value in the text input field. If the value exactly matches the value of a menu
10222 * option, that option will appear to be selected.
10223 * - by choosing a value from the menu. The value of the chosen option will then appear in the text
10224 * input field.
10225 *
10226 * After the user chooses an option, its `data` will be used as a new value for the widget.
10227 * A `label` also can be specified for each option: if given, it will be shown instead of the
10228 * `data` in the dropdown menu.
10229 *
10230 * This widget can be used inside an HTML form, such as a OO.ui.FormLayout.
10231 *
10232 * For more information about menus and options, please see the [OOjs UI documentation on MediaWiki][1].
10233 *
10234 * @example
10235 * // Example: A ComboBoxInputWidget.
10236 * var comboBox = new OO.ui.ComboBoxInputWidget( {
10237 * value: 'Option 1',
10238 * options: [
10239 * { data: 'Option 1' },
10240 * { data: 'Option 2' },
10241 * { data: 'Option 3' }
10242 * ]
10243 * } );
10244 * $( 'body' ).append( comboBox.$element );
10245 *
10246 * @example
10247 * // Example: A ComboBoxInputWidget with additional option labels.
10248 * var comboBox = new OO.ui.ComboBoxInputWidget( {
10249 * value: 'Option 1',
10250 * options: [
10251 * {
10252 * data: 'Option 1',
10253 * label: 'Option One'
10254 * },
10255 * {
10256 * data: 'Option 2',
10257 * label: 'Option Two'
10258 * },
10259 * {
10260 * data: 'Option 3',
10261 * label: 'Option Three'
10262 * }
10263 * ]
10264 * } );
10265 * $( 'body' ).append( comboBox.$element );
10266 *
10267 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
10268 *
10269 * @class
10270 * @extends OO.ui.TextInputWidget
10271 *
10272 * @constructor
10273 * @param {Object} [config] Configuration options
10274 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: … }`
10275 * @cfg {Object} [menu] Configuration options to pass to the {@link OO.ui.FloatingMenuSelectWidget menu select widget}.
10276 * @cfg {jQuery} [$overlay] Render the menu into a separate layer. This configuration is useful in cases where
10277 * the expanded menu is larger than its containing `<div>`. The specified overlay layer is usually on top of the
10278 * containing `<div>` and has a larger area. By default, the menu uses relative positioning.
10279 */
10280 OO.ui.ComboBoxInputWidget = function OoUiComboBoxInputWidget( config ) {
10281 // Configuration initialization
10282 config = $.extend( {
10283 autocomplete: false
10284 }, config );
10285
10286 // ComboBoxInputWidget shouldn't support `multiline`
10287 config.multiline = false;
10288
10289 // See InputWidget#reusePreInfuseDOM about `config.$input`
10290 if ( config.$input ) {
10291 config.$input.removeAttr( 'list' );
10292 }
10293
10294 // Parent constructor
10295 OO.ui.ComboBoxInputWidget.parent.call( this, config );
10296
10297 // Properties
10298 this.$overlay = config.$overlay || this.$element;
10299 this.dropdownButton = new OO.ui.ButtonWidget( {
10300 classes: [ 'oo-ui-comboBoxInputWidget-dropdownButton' ],
10301 indicator: 'down',
10302 disabled: this.disabled
10303 } );
10304 this.menu = new OO.ui.FloatingMenuSelectWidget( $.extend(
10305 {
10306 widget: this,
10307 input: this,
10308 $container: this.$element,
10309 disabled: this.isDisabled()
10310 },
10311 config.menu
10312 ) );
10313
10314 // Events
10315 this.connect( this, {
10316 change: 'onInputChange',
10317 enter: 'onInputEnter'
10318 } );
10319 this.dropdownButton.connect( this, {
10320 click: 'onDropdownButtonClick'
10321 } );
10322 this.menu.connect( this, {
10323 choose: 'onMenuChoose',
10324 add: 'onMenuItemsChange',
10325 remove: 'onMenuItemsChange'
10326 } );
10327
10328 // Initialization
10329 this.$input.attr( {
10330 role: 'combobox',
10331 'aria-autocomplete': 'list'
10332 } );
10333 // Do not override options set via config.menu.items
10334 if ( config.options !== undefined ) {
10335 this.setOptions( config.options );
10336 }
10337 this.$field = $( '<div>' )
10338 .addClass( 'oo-ui-comboBoxInputWidget-field' )
10339 .append( this.$input, this.dropdownButton.$element );
10340 this.$element
10341 .addClass( 'oo-ui-comboBoxInputWidget' )
10342 .append( this.$field );
10343 this.$overlay.append( this.menu.$element );
10344 this.onMenuItemsChange();
10345 };
10346
10347 /* Setup */
10348
10349 OO.inheritClass( OO.ui.ComboBoxInputWidget, OO.ui.TextInputWidget );
10350
10351 /* Methods */
10352
10353 /**
10354 * Get the combobox's menu.
10355 *
10356 * @return {OO.ui.FloatingMenuSelectWidget} Menu widget
10357 */
10358 OO.ui.ComboBoxInputWidget.prototype.getMenu = function () {
10359 return this.menu;
10360 };
10361
10362 /**
10363 * Get the combobox's text input widget.
10364 *
10365 * @return {OO.ui.TextInputWidget} Text input widget
10366 */
10367 OO.ui.ComboBoxInputWidget.prototype.getInput = function () {
10368 return this;
10369 };
10370
10371 /**
10372 * Handle input change events.
10373 *
10374 * @private
10375 * @param {string} value New value
10376 */
10377 OO.ui.ComboBoxInputWidget.prototype.onInputChange = function ( value ) {
10378 var match = this.menu.getItemFromData( value );
10379
10380 this.menu.selectItem( match );
10381 if ( this.menu.getHighlightedItem() ) {
10382 this.menu.highlightItem( match );
10383 }
10384
10385 if ( !this.isDisabled() ) {
10386 this.menu.toggle( true );
10387 }
10388 };
10389
10390 /**
10391 * Handle input enter events.
10392 *
10393 * @private
10394 */
10395 OO.ui.ComboBoxInputWidget.prototype.onInputEnter = function () {
10396 if ( !this.isDisabled() ) {
10397 this.menu.toggle( false );
10398 }
10399 };
10400
10401 /**
10402 * Handle button click events.
10403 *
10404 * @private
10405 */
10406 OO.ui.ComboBoxInputWidget.prototype.onDropdownButtonClick = function () {
10407 this.menu.toggle();
10408 this.$input[ 0 ].focus();
10409 };
10410
10411 /**
10412 * Handle menu choose events.
10413 *
10414 * @private
10415 * @param {OO.ui.OptionWidget} item Chosen item
10416 */
10417 OO.ui.ComboBoxInputWidget.prototype.onMenuChoose = function ( item ) {
10418 this.setValue( item.getData() );
10419 };
10420
10421 /**
10422 * Handle menu item change events.
10423 *
10424 * @private
10425 */
10426 OO.ui.ComboBoxInputWidget.prototype.onMenuItemsChange = function () {
10427 var match = this.menu.getItemFromData( this.getValue() );
10428 this.menu.selectItem( match );
10429 if ( this.menu.getHighlightedItem() ) {
10430 this.menu.highlightItem( match );
10431 }
10432 this.$element.toggleClass( 'oo-ui-comboBoxInputWidget-empty', this.menu.isEmpty() );
10433 };
10434
10435 /**
10436 * @inheritdoc
10437 */
10438 OO.ui.ComboBoxInputWidget.prototype.setDisabled = function ( disabled ) {
10439 // Parent method
10440 OO.ui.ComboBoxInputWidget.parent.prototype.setDisabled.call( this, disabled );
10441
10442 if ( this.dropdownButton ) {
10443 this.dropdownButton.setDisabled( this.isDisabled() );
10444 }
10445 if ( this.menu ) {
10446 this.menu.setDisabled( this.isDisabled() );
10447 }
10448
10449 return this;
10450 };
10451
10452 /**
10453 * Set the options available for this input.
10454 *
10455 * @param {Object[]} options Array of menu options in the format `{ data: …, label: … }`
10456 * @chainable
10457 */
10458 OO.ui.ComboBoxInputWidget.prototype.setOptions = function ( options ) {
10459 this.getMenu()
10460 .clearItems()
10461 .addItems( options.map( function ( opt ) {
10462 return new OO.ui.MenuOptionWidget( {
10463 data: opt.data,
10464 label: opt.label !== undefined ? opt.label : opt.data
10465 } );
10466 } ) );
10467
10468 return this;
10469 };
10470
10471 /**
10472 * FieldLayouts are used with OO.ui.FieldsetLayout. Each FieldLayout requires a field-widget,
10473 * which is a widget that is specified by reference before any optional configuration settings.
10474 *
10475 * Field layouts can be configured with help text and/or labels. Labels are aligned in one of four ways:
10476 *
10477 * - **left**: The label is placed before the field-widget and aligned with the left margin.
10478 * A left-alignment is used for forms with many fields.
10479 * - **right**: The label is placed before the field-widget and aligned to the right margin.
10480 * A right-alignment is used for long but familiar forms which users tab through,
10481 * verifying the current field with a quick glance at the label.
10482 * - **top**: The label is placed above the field-widget. A top-alignment is used for brief forms
10483 * that users fill out from top to bottom.
10484 * - **inline**: The label is placed after the field-widget and aligned to the left.
10485 * An inline-alignment is best used with checkboxes or radio buttons.
10486 *
10487 * Help text is accessed via a help icon that appears in the upper right corner of the rendered field layout.
10488 * Please see the [OOjs UI documentation on MediaWiki] [1] for examples and more information.
10489 *
10490 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Layouts/Fields_and_Fieldsets
10491 *
10492 * @class
10493 * @extends OO.ui.Layout
10494 * @mixins OO.ui.mixin.LabelElement
10495 * @mixins OO.ui.mixin.TitledElement
10496 *
10497 * @constructor
10498 * @param {OO.ui.Widget} fieldWidget Field widget
10499 * @param {Object} [config] Configuration options
10500 * @cfg {string} [align='left'] Alignment of the label: 'left', 'right', 'top' or 'inline'
10501 * @cfg {Array} [errors] Error messages about the widget, which will be displayed below the widget.
10502 * The array may contain strings or OO.ui.HtmlSnippet instances.
10503 * @cfg {Array} [notices] Notices about the widget, which will be displayed below the widget.
10504 * The array may contain strings or OO.ui.HtmlSnippet instances.
10505 * @cfg {string|OO.ui.HtmlSnippet} [help] Help text. When help text is specified, a "help" icon will appear
10506 * in the upper-right corner of the rendered field; clicking it will display the text in a popup.
10507 * For important messages, you are advised to use `notices`, as they are always shown.
10508 * @cfg {jQuery} [$overlay] Passed to OO.ui.PopupButtonWidget for help popup, if `help` is given.
10509 *
10510 * @throws {Error} An error is thrown if no widget is specified
10511 */
10512 OO.ui.FieldLayout = function OoUiFieldLayout( fieldWidget, config ) {
10513 // Allow passing positional parameters inside the config object
10514 if ( OO.isPlainObject( fieldWidget ) && config === undefined ) {
10515 config = fieldWidget;
10516 fieldWidget = config.fieldWidget;
10517 }
10518
10519 // Make sure we have required constructor arguments
10520 if ( fieldWidget === undefined ) {
10521 throw new Error( 'Widget not found' );
10522 }
10523
10524 // Configuration initialization
10525 config = $.extend( { align: 'left' }, config );
10526
10527 // Parent constructor
10528 OO.ui.FieldLayout.parent.call( this, config );
10529
10530 // Mixin constructors
10531 OO.ui.mixin.LabelElement.call( this, $.extend( {}, config, {
10532 $label: $( '<label>' )
10533 } ) );
10534 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$label } ) );
10535
10536 // Properties
10537 this.fieldWidget = fieldWidget;
10538 this.errors = [];
10539 this.notices = [];
10540 this.$field = this.isFieldInline() ? $( '<span>' ) : $( '<div>' );
10541 this.$messages = $( '<ul>' );
10542 this.$header = $( '<span>' );
10543 this.$body = $( '<div>' );
10544 this.align = null;
10545 if ( config.help ) {
10546 this.popupButtonWidget = new OO.ui.PopupButtonWidget( {
10547 $overlay: config.$overlay,
10548 popup: {
10549 padded: true
10550 },
10551 classes: [ 'oo-ui-fieldLayout-help' ],
10552 framed: false,
10553 icon: 'info'
10554 } );
10555 if ( config.help instanceof OO.ui.HtmlSnippet ) {
10556 this.popupButtonWidget.getPopup().$body.html( config.help.toString() );
10557 } else {
10558 this.popupButtonWidget.getPopup().$body.text( config.help );
10559 }
10560 this.$help = this.popupButtonWidget.$element;
10561 } else {
10562 this.$help = $( [] );
10563 }
10564
10565 // Events
10566 this.fieldWidget.connect( this, { disable: 'onFieldDisable' } );
10567
10568 // Initialization
10569 if ( fieldWidget.constructor.static.supportsSimpleLabel ) {
10570 if ( this.fieldWidget.getInputId() ) {
10571 this.$label.attr( 'for', this.fieldWidget.getInputId() );
10572 } else {
10573 this.$label.on( 'click', function () {
10574 this.fieldWidget.focus();
10575 return false;
10576 }.bind( this ) );
10577 }
10578 }
10579 this.$element
10580 .addClass( 'oo-ui-fieldLayout' )
10581 .toggleClass( 'oo-ui-fieldLayout-disabled', this.fieldWidget.isDisabled() )
10582 .append( this.$body );
10583 this.$body.addClass( 'oo-ui-fieldLayout-body' );
10584 this.$header.addClass( 'oo-ui-fieldLayout-header' );
10585 this.$messages.addClass( 'oo-ui-fieldLayout-messages' );
10586 this.$field
10587 .addClass( 'oo-ui-fieldLayout-field' )
10588 .append( this.fieldWidget.$element );
10589
10590 this.setErrors( config.errors || [] );
10591 this.setNotices( config.notices || [] );
10592 this.setAlignment( config.align );
10593 };
10594
10595 /* Setup */
10596
10597 OO.inheritClass( OO.ui.FieldLayout, OO.ui.Layout );
10598 OO.mixinClass( OO.ui.FieldLayout, OO.ui.mixin.LabelElement );
10599 OO.mixinClass( OO.ui.FieldLayout, OO.ui.mixin.TitledElement );
10600
10601 /* Methods */
10602
10603 /**
10604 * Handle field disable events.
10605 *
10606 * @private
10607 * @param {boolean} value Field is disabled
10608 */
10609 OO.ui.FieldLayout.prototype.onFieldDisable = function ( value ) {
10610 this.$element.toggleClass( 'oo-ui-fieldLayout-disabled', value );
10611 };
10612
10613 /**
10614 * Get the widget contained by the field.
10615 *
10616 * @return {OO.ui.Widget} Field widget
10617 */
10618 OO.ui.FieldLayout.prototype.getField = function () {
10619 return this.fieldWidget;
10620 };
10621
10622 /**
10623 * Return `true` if the given field widget can be used with `'inline'` alignment (see
10624 * #setAlignment). Return `false` if it can't or if this can't be determined.
10625 *
10626 * @return {boolean}
10627 */
10628 OO.ui.FieldLayout.prototype.isFieldInline = function () {
10629 // This is very simplistic, but should be good enough.
10630 return this.getField().$element.prop( 'tagName' ).toLowerCase() === 'span';
10631 };
10632
10633 /**
10634 * @protected
10635 * @param {string} kind 'error' or 'notice'
10636 * @param {string|OO.ui.HtmlSnippet} text
10637 * @return {jQuery}
10638 */
10639 OO.ui.FieldLayout.prototype.makeMessage = function ( kind, text ) {
10640 var $listItem, $icon, message;
10641 $listItem = $( '<li>' );
10642 if ( kind === 'error' ) {
10643 $icon = new OO.ui.IconWidget( { icon: 'alert', flags: [ 'warning' ] } ).$element;
10644 } else if ( kind === 'notice' ) {
10645 $icon = new OO.ui.IconWidget( { icon: 'info' } ).$element;
10646 } else {
10647 $icon = '';
10648 }
10649 message = new OO.ui.LabelWidget( { label: text } );
10650 $listItem
10651 .append( $icon, message.$element )
10652 .addClass( 'oo-ui-fieldLayout-messages-' + kind );
10653 return $listItem;
10654 };
10655
10656 /**
10657 * Set the field alignment mode.
10658 *
10659 * @private
10660 * @param {string} value Alignment mode, either 'left', 'right', 'top' or 'inline'
10661 * @chainable
10662 */
10663 OO.ui.FieldLayout.prototype.setAlignment = function ( value ) {
10664 if ( value !== this.align ) {
10665 // Default to 'left'
10666 if ( [ 'left', 'right', 'top', 'inline' ].indexOf( value ) === -1 ) {
10667 value = 'left';
10668 }
10669 // Validate
10670 if ( value === 'inline' && !this.isFieldInline() ) {
10671 value = 'top';
10672 }
10673 // Reorder elements
10674 if ( value === 'top' ) {
10675 this.$header.append( this.$label, this.$help );
10676 this.$body.append( this.$header, this.$field );
10677 } else if ( value === 'inline' ) {
10678 this.$header.append( this.$label, this.$help );
10679 this.$body.append( this.$field, this.$header );
10680 } else {
10681 this.$header.append( this.$label );
10682 this.$body.append( this.$header, this.$help, this.$field );
10683 }
10684 // Set classes. The following classes can be used here:
10685 // * oo-ui-fieldLayout-align-left
10686 // * oo-ui-fieldLayout-align-right
10687 // * oo-ui-fieldLayout-align-top
10688 // * oo-ui-fieldLayout-align-inline
10689 if ( this.align ) {
10690 this.$element.removeClass( 'oo-ui-fieldLayout-align-' + this.align );
10691 }
10692 this.$element.addClass( 'oo-ui-fieldLayout-align-' + value );
10693 this.align = value;
10694 }
10695
10696 return this;
10697 };
10698
10699 /**
10700 * Set the list of error messages.
10701 *
10702 * @param {Array} errors Error messages about the widget, which will be displayed below the widget.
10703 * The array may contain strings or OO.ui.HtmlSnippet instances.
10704 * @chainable
10705 */
10706 OO.ui.FieldLayout.prototype.setErrors = function ( errors ) {
10707 this.errors = errors.slice();
10708 this.updateMessages();
10709 return this;
10710 };
10711
10712 /**
10713 * Set the list of notice messages.
10714 *
10715 * @param {Array} notices Notices about the widget, which will be displayed below the widget.
10716 * The array may contain strings or OO.ui.HtmlSnippet instances.
10717 * @chainable
10718 */
10719 OO.ui.FieldLayout.prototype.setNotices = function ( notices ) {
10720 this.notices = notices.slice();
10721 this.updateMessages();
10722 return this;
10723 };
10724
10725 /**
10726 * Update the rendering of error and notice messages.
10727 *
10728 * @private
10729 */
10730 OO.ui.FieldLayout.prototype.updateMessages = function () {
10731 var i;
10732 this.$messages.empty();
10733
10734 if ( this.errors.length || this.notices.length ) {
10735 this.$body.after( this.$messages );
10736 } else {
10737 this.$messages.remove();
10738 return;
10739 }
10740
10741 for ( i = 0; i < this.notices.length; i++ ) {
10742 this.$messages.append( this.makeMessage( 'notice', this.notices[ i ] ) );
10743 }
10744 for ( i = 0; i < this.errors.length; i++ ) {
10745 this.$messages.append( this.makeMessage( 'error', this.errors[ i ] ) );
10746 }
10747 };
10748
10749 /**
10750 * ActionFieldLayouts are used with OO.ui.FieldsetLayout. The layout consists of a field-widget, a button,
10751 * and an optional label and/or help text. The field-widget (e.g., a {@link OO.ui.TextInputWidget TextInputWidget}),
10752 * is required and is specified before any optional configuration settings.
10753 *
10754 * Labels can be aligned in one of four ways:
10755 *
10756 * - **left**: The label is placed before the field-widget and aligned with the left margin.
10757 * A left-alignment is used for forms with many fields.
10758 * - **right**: The label is placed before the field-widget and aligned to the right margin.
10759 * A right-alignment is used for long but familiar forms which users tab through,
10760 * verifying the current field with a quick glance at the label.
10761 * - **top**: The label is placed above the field-widget. A top-alignment is used for brief forms
10762 * that users fill out from top to bottom.
10763 * - **inline**: The label is placed after the field-widget and aligned to the left.
10764 * An inline-alignment is best used with checkboxes or radio buttons.
10765 *
10766 * Help text is accessed via a help icon that appears in the upper right corner of the rendered field layout when help
10767 * text is specified.
10768 *
10769 * @example
10770 * // Example of an ActionFieldLayout
10771 * var actionFieldLayout = new OO.ui.ActionFieldLayout(
10772 * new OO.ui.TextInputWidget( {
10773 * placeholder: 'Field widget'
10774 * } ),
10775 * new OO.ui.ButtonWidget( {
10776 * label: 'Button'
10777 * } ),
10778 * {
10779 * label: 'An ActionFieldLayout. This label is aligned top',
10780 * align: 'top',
10781 * help: 'This is help text'
10782 * }
10783 * );
10784 *
10785 * $( 'body' ).append( actionFieldLayout.$element );
10786 *
10787 * @class
10788 * @extends OO.ui.FieldLayout
10789 *
10790 * @constructor
10791 * @param {OO.ui.Widget} fieldWidget Field widget
10792 * @param {OO.ui.ButtonWidget} buttonWidget Button widget
10793 * @param {Object} config
10794 */
10795 OO.ui.ActionFieldLayout = function OoUiActionFieldLayout( fieldWidget, buttonWidget, config ) {
10796 // Allow passing positional parameters inside the config object
10797 if ( OO.isPlainObject( fieldWidget ) && config === undefined ) {
10798 config = fieldWidget;
10799 fieldWidget = config.fieldWidget;
10800 buttonWidget = config.buttonWidget;
10801 }
10802
10803 // Parent constructor
10804 OO.ui.ActionFieldLayout.parent.call( this, fieldWidget, config );
10805
10806 // Properties
10807 this.buttonWidget = buttonWidget;
10808 this.$button = $( '<span>' );
10809 this.$input = this.isFieldInline() ? $( '<span>' ) : $( '<div>' );
10810
10811 // Initialization
10812 this.$element
10813 .addClass( 'oo-ui-actionFieldLayout' );
10814 this.$button
10815 .addClass( 'oo-ui-actionFieldLayout-button' )
10816 .append( this.buttonWidget.$element );
10817 this.$input
10818 .addClass( 'oo-ui-actionFieldLayout-input' )
10819 .append( this.fieldWidget.$element );
10820 this.$field
10821 .append( this.$input, this.$button );
10822 };
10823
10824 /* Setup */
10825
10826 OO.inheritClass( OO.ui.ActionFieldLayout, OO.ui.FieldLayout );
10827
10828 /**
10829 * FieldsetLayouts are composed of one or more {@link OO.ui.FieldLayout FieldLayouts},
10830 * which each contain an individual widget and, optionally, a label. Each Fieldset can be
10831 * configured with a label as well. For more information and examples,
10832 * please see the [OOjs UI documentation on MediaWiki][1].
10833 *
10834 * @example
10835 * // Example of a fieldset layout
10836 * var input1 = new OO.ui.TextInputWidget( {
10837 * placeholder: 'A text input field'
10838 * } );
10839 *
10840 * var input2 = new OO.ui.TextInputWidget( {
10841 * placeholder: 'A text input field'
10842 * } );
10843 *
10844 * var fieldset = new OO.ui.FieldsetLayout( {
10845 * label: 'Example of a fieldset layout'
10846 * } );
10847 *
10848 * fieldset.addItems( [
10849 * new OO.ui.FieldLayout( input1, {
10850 * label: 'Field One'
10851 * } ),
10852 * new OO.ui.FieldLayout( input2, {
10853 * label: 'Field Two'
10854 * } )
10855 * ] );
10856 * $( 'body' ).append( fieldset.$element );
10857 *
10858 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Layouts/Fields_and_Fieldsets
10859 *
10860 * @class
10861 * @extends OO.ui.Layout
10862 * @mixins OO.ui.mixin.IconElement
10863 * @mixins OO.ui.mixin.LabelElement
10864 * @mixins OO.ui.mixin.GroupElement
10865 *
10866 * @constructor
10867 * @param {Object} [config] Configuration options
10868 * @cfg {OO.ui.FieldLayout[]} [items] An array of fields to add to the fieldset. See OO.ui.FieldLayout for more information about fields.
10869 * @cfg {string|OO.ui.HtmlSnippet} [help] Help text. When help text is specified, a "help" icon will appear
10870 * in the upper-right corner of the rendered field; clicking it will display the text in a popup.
10871 * For important messages, you are advised to use `notices`, as they are always shown.
10872 * @cfg {jQuery} [$overlay] Passed to OO.ui.PopupButtonWidget for help popup, if `help` is given.
10873 */
10874 OO.ui.FieldsetLayout = function OoUiFieldsetLayout( config ) {
10875 // Configuration initialization
10876 config = config || {};
10877
10878 // Parent constructor
10879 OO.ui.FieldsetLayout.parent.call( this, config );
10880
10881 // Mixin constructors
10882 OO.ui.mixin.IconElement.call( this, config );
10883 OO.ui.mixin.LabelElement.call( this, $.extend( {}, config, { $label: $( '<div>' ) } ) );
10884 OO.ui.mixin.GroupElement.call( this, config );
10885
10886 // Properties
10887 this.$header = $( '<div>' );
10888 if ( config.help ) {
10889 this.popupButtonWidget = new OO.ui.PopupButtonWidget( {
10890 $overlay: config.$overlay,
10891 popup: {
10892 padded: true
10893 },
10894 classes: [ 'oo-ui-fieldsetLayout-help' ],
10895 framed: false,
10896 icon: 'info'
10897 } );
10898 if ( config.help instanceof OO.ui.HtmlSnippet ) {
10899 this.popupButtonWidget.getPopup().$body.html( config.help.toString() );
10900 } else {
10901 this.popupButtonWidget.getPopup().$body.text( config.help );
10902 }
10903 this.$help = this.popupButtonWidget.$element;
10904 } else {
10905 this.$help = $( [] );
10906 }
10907
10908 // Initialization
10909 this.$header
10910 .addClass( 'oo-ui-fieldsetLayout-header' )
10911 .append( this.$icon, this.$label, this.$help );
10912 this.$group.addClass( 'oo-ui-fieldsetLayout-group' );
10913 this.$element
10914 .addClass( 'oo-ui-fieldsetLayout' )
10915 .prepend( this.$header, this.$group );
10916 if ( Array.isArray( config.items ) ) {
10917 this.addItems( config.items );
10918 }
10919 };
10920
10921 /* Setup */
10922
10923 OO.inheritClass( OO.ui.FieldsetLayout, OO.ui.Layout );
10924 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.mixin.IconElement );
10925 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.mixin.LabelElement );
10926 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.mixin.GroupElement );
10927
10928 /* Static Properties */
10929
10930 /**
10931 * @static
10932 * @inheritdoc
10933 */
10934 OO.ui.FieldsetLayout.static.tagName = 'fieldset';
10935
10936 /**
10937 * FormLayouts are used to wrap {@link OO.ui.FieldsetLayout FieldsetLayouts} when you intend to use browser-based
10938 * form submission for the fields instead of handling them in JavaScript. Form layouts can be configured with an
10939 * HTML form action, an encoding type, and a method using the #action, #enctype, and #method configs, respectively.
10940 * See the [OOjs UI documentation on MediaWiki] [1] for more information and examples.
10941 *
10942 * Only widgets from the {@link OO.ui.InputWidget InputWidget} family support form submission. It
10943 * includes standard form elements like {@link OO.ui.CheckboxInputWidget checkboxes}, {@link
10944 * OO.ui.RadioInputWidget radio buttons} and {@link OO.ui.TextInputWidget text fields}, as well as
10945 * some fancier controls. Some controls have both regular and InputWidget variants, for example
10946 * OO.ui.DropdownWidget and OO.ui.DropdownInputWidget – only the latter support form submission and
10947 * often have simplified APIs to match the capabilities of HTML forms.
10948 * See the [OOjs UI Inputs documentation on MediaWiki] [2] for more information about InputWidgets.
10949 *
10950 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Layouts/Forms
10951 * [2]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Inputs
10952 *
10953 * @example
10954 * // Example of a form layout that wraps a fieldset layout
10955 * var input1 = new OO.ui.TextInputWidget( {
10956 * placeholder: 'Username'
10957 * } );
10958 * var input2 = new OO.ui.TextInputWidget( {
10959 * placeholder: 'Password',
10960 * type: 'password'
10961 * } );
10962 * var submit = new OO.ui.ButtonInputWidget( {
10963 * label: 'Submit'
10964 * } );
10965 *
10966 * var fieldset = new OO.ui.FieldsetLayout( {
10967 * label: 'A form layout'
10968 * } );
10969 * fieldset.addItems( [
10970 * new OO.ui.FieldLayout( input1, {
10971 * label: 'Username',
10972 * align: 'top'
10973 * } ),
10974 * new OO.ui.FieldLayout( input2, {
10975 * label: 'Password',
10976 * align: 'top'
10977 * } ),
10978 * new OO.ui.FieldLayout( submit )
10979 * ] );
10980 * var form = new OO.ui.FormLayout( {
10981 * items: [ fieldset ],
10982 * action: '/api/formhandler',
10983 * method: 'get'
10984 * } )
10985 * $( 'body' ).append( form.$element );
10986 *
10987 * @class
10988 * @extends OO.ui.Layout
10989 * @mixins OO.ui.mixin.GroupElement
10990 *
10991 * @constructor
10992 * @param {Object} [config] Configuration options
10993 * @cfg {string} [method] HTML form `method` attribute
10994 * @cfg {string} [action] HTML form `action` attribute
10995 * @cfg {string} [enctype] HTML form `enctype` attribute
10996 * @cfg {OO.ui.FieldsetLayout[]} [items] Fieldset layouts to add to the form layout.
10997 */
10998 OO.ui.FormLayout = function OoUiFormLayout( config ) {
10999 var action;
11000
11001 // Configuration initialization
11002 config = config || {};
11003
11004 // Parent constructor
11005 OO.ui.FormLayout.parent.call( this, config );
11006
11007 // Mixin constructors
11008 OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
11009
11010 // Events
11011 this.$element.on( 'submit', this.onFormSubmit.bind( this ) );
11012
11013 // Make sure the action is safe
11014 action = config.action;
11015 if ( action !== undefined && !OO.ui.isSafeUrl( action ) ) {
11016 action = './' + action;
11017 }
11018
11019 // Initialization
11020 this.$element
11021 .addClass( 'oo-ui-formLayout' )
11022 .attr( {
11023 method: config.method,
11024 action: action,
11025 enctype: config.enctype
11026 } );
11027 if ( Array.isArray( config.items ) ) {
11028 this.addItems( config.items );
11029 }
11030 };
11031
11032 /* Setup */
11033
11034 OO.inheritClass( OO.ui.FormLayout, OO.ui.Layout );
11035 OO.mixinClass( OO.ui.FormLayout, OO.ui.mixin.GroupElement );
11036
11037 /* Events */
11038
11039 /**
11040 * A 'submit' event is emitted when the form is submitted.
11041 *
11042 * @event submit
11043 */
11044
11045 /* Static Properties */
11046
11047 /**
11048 * @static
11049 * @inheritdoc
11050 */
11051 OO.ui.FormLayout.static.tagName = 'form';
11052
11053 /* Methods */
11054
11055 /**
11056 * Handle form submit events.
11057 *
11058 * @private
11059 * @param {jQuery.Event} e Submit event
11060 * @fires submit
11061 */
11062 OO.ui.FormLayout.prototype.onFormSubmit = function () {
11063 if ( this.emit( 'submit' ) ) {
11064 return false;
11065 }
11066 };
11067
11068 /**
11069 * PanelLayouts expand to cover the entire area of their parent. They can be configured with scrolling, padding,
11070 * and a frame, and are often used together with {@link OO.ui.StackLayout StackLayouts}.
11071 *
11072 * @example
11073 * // Example of a panel layout
11074 * var panel = new OO.ui.PanelLayout( {
11075 * expanded: false,
11076 * framed: true,
11077 * padded: true,
11078 * $content: $( '<p>A panel layout with padding and a frame.</p>' )
11079 * } );
11080 * $( 'body' ).append( panel.$element );
11081 *
11082 * @class
11083 * @extends OO.ui.Layout
11084 *
11085 * @constructor
11086 * @param {Object} [config] Configuration options
11087 * @cfg {boolean} [scrollable=false] Allow vertical scrolling
11088 * @cfg {boolean} [padded=false] Add padding between the content and the edges of the panel.
11089 * @cfg {boolean} [expanded=true] Expand the panel to fill the entire parent element.
11090 * @cfg {boolean} [framed=false] Render the panel with a frame to visually separate it from outside content.
11091 */
11092 OO.ui.PanelLayout = function OoUiPanelLayout( config ) {
11093 // Configuration initialization
11094 config = $.extend( {
11095 scrollable: false,
11096 padded: false,
11097 expanded: true,
11098 framed: false
11099 }, config );
11100
11101 // Parent constructor
11102 OO.ui.PanelLayout.parent.call( this, config );
11103
11104 // Initialization
11105 this.$element.addClass( 'oo-ui-panelLayout' );
11106 if ( config.scrollable ) {
11107 this.$element.addClass( 'oo-ui-panelLayout-scrollable' );
11108 }
11109 if ( config.padded ) {
11110 this.$element.addClass( 'oo-ui-panelLayout-padded' );
11111 }
11112 if ( config.expanded ) {
11113 this.$element.addClass( 'oo-ui-panelLayout-expanded' );
11114 }
11115 if ( config.framed ) {
11116 this.$element.addClass( 'oo-ui-panelLayout-framed' );
11117 }
11118 };
11119
11120 /* Setup */
11121
11122 OO.inheritClass( OO.ui.PanelLayout, OO.ui.Layout );
11123
11124 /* Methods */
11125
11126 /**
11127 * Focus the panel layout
11128 *
11129 * The default implementation just focuses the first focusable element in the panel
11130 */
11131 OO.ui.PanelLayout.prototype.focus = function () {
11132 OO.ui.findFocusable( this.$element ).focus();
11133 };
11134
11135 /**
11136 * HorizontalLayout arranges its contents in a single line (using `display: inline-block` for its
11137 * items), with small margins between them. Convenient when you need to put a number of block-level
11138 * widgets on a single line next to each other.
11139 *
11140 * Note that inline elements, such as OO.ui.ButtonWidgets, do not need this wrapper.
11141 *
11142 * @example
11143 * // HorizontalLayout with a text input and a label
11144 * var layout = new OO.ui.HorizontalLayout( {
11145 * items: [
11146 * new OO.ui.LabelWidget( { label: 'Label' } ),
11147 * new OO.ui.TextInputWidget( { value: 'Text' } )
11148 * ]
11149 * } );
11150 * $( 'body' ).append( layout.$element );
11151 *
11152 * @class
11153 * @extends OO.ui.Layout
11154 * @mixins OO.ui.mixin.GroupElement
11155 *
11156 * @constructor
11157 * @param {Object} [config] Configuration options
11158 * @cfg {OO.ui.Widget[]|OO.ui.Layout[]} [items] Widgets or other layouts to add to the layout.
11159 */
11160 OO.ui.HorizontalLayout = function OoUiHorizontalLayout( config ) {
11161 // Configuration initialization
11162 config = config || {};
11163
11164 // Parent constructor
11165 OO.ui.HorizontalLayout.parent.call( this, config );
11166
11167 // Mixin constructors
11168 OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
11169
11170 // Initialization
11171 this.$element.addClass( 'oo-ui-horizontalLayout' );
11172 if ( Array.isArray( config.items ) ) {
11173 this.addItems( config.items );
11174 }
11175 };
11176
11177 /* Setup */
11178
11179 OO.inheritClass( OO.ui.HorizontalLayout, OO.ui.Layout );
11180 OO.mixinClass( OO.ui.HorizontalLayout, OO.ui.mixin.GroupElement );
11181
11182 }( OO ) );