Merge "Fix ParserOutput::getText 'unwrap' flag for end-of-doc comment"
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-widgets.js
1 /*!
2 * OOUI v0.25.2
3 * https://www.mediawiki.org/wiki/OOUI
4 *
5 * Copyright 2011–2018 OOUI Team and other contributors.
6 * Released under the MIT license
7 * http://oojs.mit-license.org
8 *
9 * Date: 2018-02-07T00:27:24Z
10 */
11 ( function ( OO ) {
12
13 'use strict';
14
15 /**
16 * DraggableElement is a mixin class used to create elements that can be clicked
17 * and dragged by a mouse to a new position within a group. This class must be used
18 * in conjunction with OO.ui.mixin.DraggableGroupElement, which provides a container for
19 * the draggable elements.
20 *
21 * @abstract
22 * @class
23 *
24 * @constructor
25 * @param {Object} [config] Configuration options
26 * @cfg {jQuery} [$handle] The part of the element which can be used for dragging, defaults to the whole element
27 * @cfg {boolean} [draggable] The items are draggable. This can change with #toggleDraggable
28 * but the draggable state should be called from the DraggableGroupElement, which updates
29 * the whole group
30 */
31 OO.ui.mixin.DraggableElement = function OoUiMixinDraggableElement( config ) {
32 config = config || {};
33
34 // Properties
35 this.index = null;
36 this.$handle = config.$handle || this.$element;
37 this.wasHandleUsed = null;
38
39 // Initialize and events
40 this.$element
41 .addClass( 'oo-ui-draggableElement' )
42 .on( {
43 mousedown: this.onDragMouseDown.bind( this ),
44 dragstart: this.onDragStart.bind( this ),
45 dragover: this.onDragOver.bind( this ),
46 dragend: this.onDragEnd.bind( this ),
47 drop: this.onDrop.bind( this )
48 } );
49 this.$handle.addClass( 'oo-ui-draggableElement-handle' );
50 this.toggleDraggable( config.draggable === undefined ? true : !!config.draggable );
51 };
52
53 OO.initClass( OO.ui.mixin.DraggableElement );
54
55 /* Events */
56
57 /**
58 * @event dragstart
59 *
60 * A dragstart event is emitted when the user clicks and begins dragging an item.
61 * @param {OO.ui.mixin.DraggableElement} item The item the user has clicked and is dragging with the mouse.
62 */
63
64 /**
65 * @event dragend
66 * A dragend event is emitted when the user drags an item and releases the mouse,
67 * thus terminating the drag operation.
68 */
69
70 /**
71 * @event drop
72 * A drop event is emitted when the user drags an item and then releases the mouse button
73 * over a valid target.
74 */
75
76 /* Static Properties */
77
78 /**
79 * @inheritdoc OO.ui.mixin.ButtonElement
80 */
81 OO.ui.mixin.DraggableElement.static.cancelButtonMouseDownEvents = false;
82
83 /* Methods */
84
85 /**
86 * Change the draggable state of this widget.
87 * This allows users to temporarily halt the dragging operations.
88 *
89 * @param {boolean} isDraggable Widget supports draggable operations
90 * @fires draggable
91 */
92 OO.ui.mixin.DraggableElement.prototype.toggleDraggable = function ( isDraggable ) {
93 isDraggable = isDraggable !== undefined ? !!isDraggable : !this.draggable;
94
95 if ( this.draggable !== isDraggable ) {
96 this.draggable = isDraggable;
97
98 this.$handle.toggleClass( 'oo-ui-draggableElement-undraggable', !this.draggable );
99
100 // We make the entire element draggable, not just the handle, so that
101 // the whole element appears to move. wasHandleUsed prevents drags from
102 // starting outside the handle
103 this.$element.prop( 'draggable', this.draggable );
104 }
105 };
106
107 /**
108 * Check the draggable state of this widget
109 *
110 * @return {boolean} Widget supports draggable operations
111 */
112 OO.ui.mixin.DraggableElement.prototype.isDraggable = function () {
113 return this.draggable;
114 };
115
116 /**
117 * Respond to mousedown event.
118 *
119 * @private
120 * @param {jQuery.Event} e Drag event
121 */
122 OO.ui.mixin.DraggableElement.prototype.onDragMouseDown = function ( e ) {
123 if ( !this.isDraggable() ) {
124 return;
125 }
126
127 this.wasHandleUsed =
128 // Optimization: if the handle is the whole element this is always true
129 this.$handle[ 0 ] === this.$element[ 0 ] ||
130 // Check the mousedown occurred inside the handle
131 OO.ui.contains( this.$handle[ 0 ], e.target, true );
132 };
133
134 /**
135 * Respond to dragstart event.
136 *
137 * @private
138 * @param {jQuery.Event} e Drag event
139 * @return {boolean} False if the event is cancelled
140 * @fires dragstart
141 */
142 OO.ui.mixin.DraggableElement.prototype.onDragStart = function ( e ) {
143 var element = this,
144 dataTransfer = e.originalEvent.dataTransfer;
145
146 if ( !this.wasHandleUsed || !this.isDraggable() ) {
147 return false;
148 }
149
150 // Define drop effect
151 dataTransfer.dropEffect = 'none';
152 dataTransfer.effectAllowed = 'move';
153 // Support: Firefox
154 // We must set up a dataTransfer data property or Firefox seems to
155 // ignore the fact the element is draggable.
156 try {
157 dataTransfer.setData( 'application-x/OOUI-draggable', this.getIndex() );
158 } catch ( err ) {
159 // The above is only for Firefox. Move on if it fails.
160 }
161 // Briefly add a 'clone' class to style the browser's native drag image
162 this.$element.addClass( 'oo-ui-draggableElement-clone' );
163 // Add placeholder class after the browser has rendered the clone
164 setTimeout( function () {
165 element.$element
166 .removeClass( 'oo-ui-draggableElement-clone' )
167 .addClass( 'oo-ui-draggableElement-placeholder' );
168 } );
169 // Emit event
170 this.emit( 'dragstart', this );
171 return true;
172 };
173
174 /**
175 * Respond to dragend event.
176 *
177 * @private
178 * @fires dragend
179 */
180 OO.ui.mixin.DraggableElement.prototype.onDragEnd = function () {
181 this.$element.removeClass( 'oo-ui-draggableElement-placeholder' );
182 this.emit( 'dragend' );
183 };
184
185 /**
186 * Handle drop event.
187 *
188 * @private
189 * @param {jQuery.Event} e Drop event
190 * @fires drop
191 */
192 OO.ui.mixin.DraggableElement.prototype.onDrop = function ( e ) {
193 e.preventDefault();
194 this.emit( 'drop', e );
195 };
196
197 /**
198 * In order for drag/drop to work, the dragover event must
199 * return false and stop propogation.
200 *
201 * @param {jQuery.Event} e Drag event
202 * @private
203 */
204 OO.ui.mixin.DraggableElement.prototype.onDragOver = function ( e ) {
205 e.preventDefault();
206 };
207
208 /**
209 * Set item index.
210 * Store it in the DOM so we can access from the widget drag event
211 *
212 * @private
213 * @param {number} index Item index
214 */
215 OO.ui.mixin.DraggableElement.prototype.setIndex = function ( index ) {
216 if ( this.index !== index ) {
217 this.index = index;
218 this.$element.data( 'index', index );
219 }
220 };
221
222 /**
223 * Get item index
224 *
225 * @private
226 * @return {number} Item index
227 */
228 OO.ui.mixin.DraggableElement.prototype.getIndex = function () {
229 return this.index;
230 };
231
232 /**
233 * DraggableGroupElement is a mixin class used to create a group element to
234 * contain draggable elements, which are items that can be clicked and dragged by a mouse.
235 * The class is used with OO.ui.mixin.DraggableElement.
236 *
237 * @abstract
238 * @class
239 * @mixins OO.ui.mixin.GroupElement
240 *
241 * @constructor
242 * @param {Object} [config] Configuration options
243 * @cfg {string} [orientation] Item orientation: 'horizontal' or 'vertical'. The orientation
244 * should match the layout of the items. Items displayed in a single row
245 * or in several rows should use horizontal orientation. The vertical orientation should only be
246 * used when the items are displayed in a single column. Defaults to 'vertical'
247 * @cfg {boolean} [draggable] The items are draggable. This can change with #toggleDraggable
248 */
249 OO.ui.mixin.DraggableGroupElement = function OoUiMixinDraggableGroupElement( config ) {
250 // Configuration initialization
251 config = config || {};
252
253 // Parent constructor
254 OO.ui.mixin.GroupElement.call( this, config );
255
256 // Properties
257 this.orientation = config.orientation || 'vertical';
258 this.dragItem = null;
259 this.itemKeys = {};
260 this.dir = null;
261 this.itemsOrder = null;
262 this.draggable = config.draggable === undefined ? true : !!config.draggable;
263
264 // Events
265 this.aggregate( {
266 dragstart: 'itemDragStart',
267 dragend: 'itemDragEnd',
268 drop: 'itemDrop'
269 } );
270 this.connect( this, {
271 itemDragStart: 'onItemDragStart',
272 itemDrop: 'onItemDropOrDragEnd',
273 itemDragEnd: 'onItemDropOrDragEnd'
274 } );
275
276 // Initialize
277 if ( Array.isArray( config.items ) ) {
278 this.addItems( config.items );
279 }
280 this.$element
281 .addClass( 'oo-ui-draggableGroupElement' )
282 .toggleClass( 'oo-ui-draggableGroupElement-horizontal', this.orientation === 'horizontal' );
283 };
284
285 /* Setup */
286 OO.mixinClass( OO.ui.mixin.DraggableGroupElement, OO.ui.mixin.GroupElement );
287
288 /* Events */
289
290 /**
291 * An item has been dragged to a new position, but not yet dropped.
292 *
293 * @event drag
294 * @param {OO.ui.mixin.DraggableElement} item Dragged item
295 * @param {number} [newIndex] New index for the item
296 */
297
298 /**
299 * An item has been dropped at a new position.
300 *
301 * @event reorder
302 * @param {OO.ui.mixin.DraggableElement} item Reordered item
303 * @param {number} [newIndex] New index for the item
304 */
305
306 /**
307 * Draggable state of this widget has changed.
308 *
309 * @event draggable
310 * @param {boolean} [draggable] Widget is draggable
311 */
312
313 /* Methods */
314
315 /**
316 * Change the draggable state of this widget.
317 * This allows users to temporarily halt the dragging operations.
318 *
319 * @param {boolean} isDraggable Widget supports draggable operations
320 * @fires draggable
321 */
322 OO.ui.mixin.DraggableGroupElement.prototype.toggleDraggable = function ( isDraggable ) {
323 isDraggable = isDraggable !== undefined ? !!isDraggable : !this.draggable;
324
325 if ( this.draggable !== isDraggable ) {
326 this.draggable = isDraggable;
327
328 // Tell the items their draggable state changed
329 this.getItems().forEach( function ( item ) {
330 item.toggleDraggable( this.draggable );
331 }.bind( this ) );
332
333 // Emit event
334 this.emit( 'draggable', this.draggable );
335 }
336 };
337
338 /**
339 * Check the draggable state of this widget
340 *
341 * @return {boolean} Widget supports draggable operations
342 */
343 OO.ui.mixin.DraggableGroupElement.prototype.isDraggable = function () {
344 return this.draggable;
345 };
346
347 /**
348 * Respond to item drag start event
349 *
350 * @private
351 * @param {OO.ui.mixin.DraggableElement} item Dragged item
352 */
353 OO.ui.mixin.DraggableGroupElement.prototype.onItemDragStart = function ( item ) {
354 if ( !this.isDraggable() ) {
355 return;
356 }
357 // Make a shallow copy of this.items so we can re-order it during previews
358 // without affecting the original array.
359 this.itemsOrder = this.items.slice();
360 this.updateIndexes();
361 if ( this.orientation === 'horizontal' ) {
362 // Calculate and cache directionality on drag start - it's a little
363 // expensive and it shouldn't change while dragging.
364 this.dir = this.$element.css( 'direction' );
365 }
366 this.setDragItem( item );
367 };
368
369 /**
370 * Update the index properties of the items
371 */
372 OO.ui.mixin.DraggableGroupElement.prototype.updateIndexes = function () {
373 var i, len;
374
375 // Map the index of each object
376 for ( i = 0, len = this.itemsOrder.length; i < len; i++ ) {
377 this.itemsOrder[ i ].setIndex( i );
378 }
379 };
380
381 /**
382 * Handle drop or dragend event and switch the order of the items accordingly
383 *
384 * @private
385 * @param {OO.ui.mixin.DraggableElement} item Dropped item
386 */
387 OO.ui.mixin.DraggableGroupElement.prototype.onItemDropOrDragEnd = function () {
388 var targetIndex, originalIndex,
389 item = this.getDragItem();
390
391 // TODO: Figure out a way to configure a list of legally droppable
392 // elements even if they are not yet in the list
393 if ( item ) {
394 originalIndex = this.items.indexOf( item );
395 // If the item has moved forward, add one to the index to account for the left shift
396 targetIndex = item.getIndex() + ( item.getIndex() > originalIndex ? 1 : 0 );
397 if ( targetIndex !== originalIndex ) {
398 this.reorder( this.getDragItem(), targetIndex );
399 this.emit( 'reorder', this.getDragItem(), targetIndex );
400 }
401 this.updateIndexes();
402 }
403 this.unsetDragItem();
404 // Return false to prevent propogation
405 return false;
406 };
407
408 /**
409 * Respond to dragover event
410 *
411 * @private
412 * @param {jQuery.Event} e Dragover event
413 * @fires reorder
414 */
415 OO.ui.mixin.DraggableGroupElement.prototype.onDragOver = function ( e ) {
416 var overIndex, targetIndex,
417 item = this.getDragItem(),
418 dragItemIndex = item.getIndex();
419
420 // Get the OptionWidget item we are dragging over
421 overIndex = $( e.target ).closest( '.oo-ui-draggableElement' ).data( 'index' );
422
423 if ( overIndex !== undefined && overIndex !== dragItemIndex ) {
424 targetIndex = overIndex + ( overIndex > dragItemIndex ? 1 : 0 );
425
426 if ( targetIndex > 0 ) {
427 this.$group.children().eq( targetIndex - 1 ).after( item.$element );
428 } else {
429 this.$group.prepend( item.$element );
430 }
431 // Move item in itemsOrder array
432 this.itemsOrder.splice( overIndex, 0,
433 this.itemsOrder.splice( dragItemIndex, 1 )[ 0 ]
434 );
435 this.updateIndexes();
436 this.emit( 'drag', item, targetIndex );
437 }
438 // Prevent default
439 e.preventDefault();
440 };
441
442 /**
443 * Reorder the items in the group
444 *
445 * @param {OO.ui.mixin.DraggableElement} item Reordered item
446 * @param {number} newIndex New index
447 */
448 OO.ui.mixin.DraggableGroupElement.prototype.reorder = function ( item, newIndex ) {
449 this.addItems( [ item ], newIndex );
450 };
451
452 /**
453 * Set a dragged item
454 *
455 * @param {OO.ui.mixin.DraggableElement} item Dragged item
456 */
457 OO.ui.mixin.DraggableGroupElement.prototype.setDragItem = function ( item ) {
458 if ( this.dragItem !== item ) {
459 this.dragItem = item;
460 this.$element.on( 'dragover', this.onDragOver.bind( this ) );
461 this.$element.addClass( 'oo-ui-draggableGroupElement-dragging' );
462 }
463 };
464
465 /**
466 * Unset the current dragged item
467 */
468 OO.ui.mixin.DraggableGroupElement.prototype.unsetDragItem = function () {
469 if ( this.dragItem ) {
470 this.dragItem = null;
471 this.$element.off( 'dragover' );
472 this.$element.removeClass( 'oo-ui-draggableGroupElement-dragging' );
473 }
474 };
475
476 /**
477 * Get the item that is currently being dragged.
478 *
479 * @return {OO.ui.mixin.DraggableElement|null} The currently dragged item, or `null` if no item is being dragged
480 */
481 OO.ui.mixin.DraggableGroupElement.prototype.getDragItem = function () {
482 return this.dragItem;
483 };
484
485 /**
486 * RequestManager is a mixin that manages the lifecycle of a promise-backed request for a widget, such as
487 * the {@link OO.ui.mixin.LookupElement}.
488 *
489 * @class
490 * @abstract
491 *
492 * @constructor
493 */
494 OO.ui.mixin.RequestManager = function OoUiMixinRequestManager() {
495 this.requestCache = {};
496 this.requestQuery = null;
497 this.requestRequest = null;
498 };
499
500 /* Setup */
501
502 OO.initClass( OO.ui.mixin.RequestManager );
503
504 /**
505 * Get request results for the current query.
506 *
507 * @return {jQuery.Promise} Promise object which will be passed response data as the first argument of
508 * the done event. If the request was aborted to make way for a subsequent request, this promise
509 * may not be rejected, depending on what jQuery feels like doing.
510 */
511 OO.ui.mixin.RequestManager.prototype.getRequestData = function () {
512 var widget = this,
513 value = this.getRequestQuery(),
514 deferred = $.Deferred(),
515 ourRequest;
516
517 this.abortRequest();
518 if ( Object.prototype.hasOwnProperty.call( this.requestCache, value ) ) {
519 deferred.resolve( this.requestCache[ value ] );
520 } else {
521 if ( this.pushPending ) {
522 this.pushPending();
523 }
524 this.requestQuery = value;
525 ourRequest = this.requestRequest = this.getRequest();
526 ourRequest
527 .always( function () {
528 // We need to pop pending even if this is an old request, otherwise
529 // the widget will remain pending forever.
530 // TODO: this assumes that an aborted request will fail or succeed soon after
531 // being aborted, or at least eventually. It would be nice if we could popPending()
532 // at abort time, but only if we knew that we hadn't already called popPending()
533 // for that request.
534 if ( widget.popPending ) {
535 widget.popPending();
536 }
537 } )
538 .done( function ( response ) {
539 // If this is an old request (and aborting it somehow caused it to still succeed),
540 // ignore its success completely
541 if ( ourRequest === widget.requestRequest ) {
542 widget.requestQuery = null;
543 widget.requestRequest = null;
544 widget.requestCache[ value ] = widget.getRequestCacheDataFromResponse( response );
545 deferred.resolve( widget.requestCache[ value ] );
546 }
547 } )
548 .fail( function () {
549 // If this is an old request (or a request failing because it's being aborted),
550 // ignore its failure completely
551 if ( ourRequest === widget.requestRequest ) {
552 widget.requestQuery = null;
553 widget.requestRequest = null;
554 deferred.reject();
555 }
556 } );
557 }
558 return deferred.promise();
559 };
560
561 /**
562 * Abort the currently pending request, if any.
563 *
564 * @private
565 */
566 OO.ui.mixin.RequestManager.prototype.abortRequest = function () {
567 var oldRequest = this.requestRequest;
568 if ( oldRequest ) {
569 // First unset this.requestRequest to the fail handler will notice
570 // that the request is no longer current
571 this.requestRequest = null;
572 this.requestQuery = null;
573 oldRequest.abort();
574 }
575 };
576
577 /**
578 * Get the query to be made.
579 *
580 * @protected
581 * @method
582 * @abstract
583 * @return {string} query to be used
584 */
585 OO.ui.mixin.RequestManager.prototype.getRequestQuery = null;
586
587 /**
588 * Get a new request object of the current query value.
589 *
590 * @protected
591 * @method
592 * @abstract
593 * @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
594 */
595 OO.ui.mixin.RequestManager.prototype.getRequest = null;
596
597 /**
598 * Pre-process data returned by the request from #getRequest.
599 *
600 * The return value of this function will be cached, and any further queries for the given value
601 * will use the cache rather than doing API requests.
602 *
603 * @protected
604 * @method
605 * @abstract
606 * @param {Mixed} response Response from server
607 * @return {Mixed} Cached result data
608 */
609 OO.ui.mixin.RequestManager.prototype.getRequestCacheDataFromResponse = null;
610
611 /**
612 * LookupElement is a mixin that creates a {@link OO.ui.MenuSelectWidget menu} of suggested values for
613 * a {@link OO.ui.TextInputWidget text input widget}. Suggested values are based on the characters the user types
614 * into the text input field and, in general, the menu is only displayed when the user types. If a suggested value is chosen
615 * from the lookup menu, that value becomes the value of the input field.
616 *
617 * Note that a new menu of suggested items is displayed when a value is chosen from the lookup menu. If this is
618 * not the desired behavior, disable lookup menus with the #setLookupsDisabled method, then set the value, then
619 * re-enable lookups.
620 *
621 * See the [OOUI demos][1] for an example.
622 *
623 * [1]: https://doc.wikimedia.org/oojs-ui/master/demos/#LookupElement-try-inputting-an-integer
624 *
625 * @class
626 * @abstract
627 * @mixins OO.ui.mixin.RequestManager
628 *
629 * @constructor
630 * @param {Object} [config] Configuration options
631 * @cfg {jQuery} [$overlay] Overlay for the lookup menu; defaults to relative positioning.
632 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
633 * @cfg {jQuery} [$container=this.$element] The container element. The lookup menu is rendered beneath the specified element.
634 * @cfg {boolean} [allowSuggestionsWhenEmpty=false] Request and display a lookup menu when the text input is empty.
635 * By default, the lookup menu is not generated and displayed until the user begins to type.
636 * @cfg {boolean} [highlightFirst=true] Whether the first lookup result should be highlighted (so, that the user can
637 * take it over into the input with simply pressing return) automatically or not.
638 */
639 OO.ui.mixin.LookupElement = function OoUiMixinLookupElement( config ) {
640 // Configuration initialization
641 config = $.extend( { highlightFirst: true }, config );
642
643 // Mixin constructors
644 OO.ui.mixin.RequestManager.call( this, config );
645
646 // Properties
647 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
648 this.lookupMenu = new OO.ui.MenuSelectWidget( {
649 widget: this,
650 input: this,
651 $floatableContainer: config.$container || this.$element
652 } );
653
654 this.allowSuggestionsWhenEmpty = config.allowSuggestionsWhenEmpty || false;
655
656 this.lookupsDisabled = false;
657 this.lookupInputFocused = false;
658 this.lookupHighlightFirstItem = config.highlightFirst;
659
660 // Events
661 this.$input.on( {
662 focus: this.onLookupInputFocus.bind( this ),
663 blur: this.onLookupInputBlur.bind( this ),
664 mousedown: this.onLookupInputMouseDown.bind( this )
665 } );
666 this.connect( this, { change: 'onLookupInputChange' } );
667 this.lookupMenu.connect( this, {
668 toggle: 'onLookupMenuToggle',
669 choose: 'onLookupMenuItemChoose'
670 } );
671
672 // Initialization
673 this.$input.attr( {
674 role: 'combobox',
675 'aria-owns': this.lookupMenu.getElementId(),
676 'aria-autocomplete': 'list'
677 } );
678 this.$element.addClass( 'oo-ui-lookupElement' );
679 this.lookupMenu.$element.addClass( 'oo-ui-lookupElement-menu' );
680 this.$overlay.append( this.lookupMenu.$element );
681 };
682
683 /* Setup */
684
685 OO.mixinClass( OO.ui.mixin.LookupElement, OO.ui.mixin.RequestManager );
686
687 /* Methods */
688
689 /**
690 * Handle input focus event.
691 *
692 * @protected
693 * @param {jQuery.Event} e Input focus event
694 */
695 OO.ui.mixin.LookupElement.prototype.onLookupInputFocus = function () {
696 this.lookupInputFocused = true;
697 this.populateLookupMenu();
698 };
699
700 /**
701 * Handle input blur event.
702 *
703 * @protected
704 * @param {jQuery.Event} e Input blur event
705 */
706 OO.ui.mixin.LookupElement.prototype.onLookupInputBlur = function () {
707 this.closeLookupMenu();
708 this.lookupInputFocused = false;
709 };
710
711 /**
712 * Handle input mouse down event.
713 *
714 * @protected
715 * @param {jQuery.Event} e Input mouse down event
716 */
717 OO.ui.mixin.LookupElement.prototype.onLookupInputMouseDown = function () {
718 // Only open the menu if the input was already focused.
719 // This way we allow the user to open the menu again after closing it with Esc
720 // by clicking in the input. Opening (and populating) the menu when initially
721 // clicking into the input is handled by the focus handler.
722 if ( this.lookupInputFocused && !this.lookupMenu.isVisible() ) {
723 this.populateLookupMenu();
724 }
725 };
726
727 /**
728 * Handle input change event.
729 *
730 * @protected
731 * @param {string} value New input value
732 */
733 OO.ui.mixin.LookupElement.prototype.onLookupInputChange = function () {
734 if ( this.lookupInputFocused ) {
735 this.populateLookupMenu();
736 }
737 };
738
739 /**
740 * Handle the lookup menu being shown/hidden.
741 *
742 * @protected
743 * @param {boolean} visible Whether the lookup menu is now visible.
744 */
745 OO.ui.mixin.LookupElement.prototype.onLookupMenuToggle = function ( visible ) {
746 if ( !visible ) {
747 // When the menu is hidden, abort any active request and clear the menu.
748 // This has to be done here in addition to closeLookupMenu(), because
749 // MenuSelectWidget will close itself when the user presses Esc.
750 this.abortLookupRequest();
751 this.lookupMenu.clearItems();
752 }
753 };
754
755 /**
756 * Handle menu item 'choose' event, updating the text input value to the value of the clicked item.
757 *
758 * @protected
759 * @param {OO.ui.MenuOptionWidget} item Selected item
760 */
761 OO.ui.mixin.LookupElement.prototype.onLookupMenuItemChoose = function ( item ) {
762 this.setValue( item.getData() );
763 };
764
765 /**
766 * Get lookup menu.
767 *
768 * @private
769 * @return {OO.ui.MenuSelectWidget}
770 */
771 OO.ui.mixin.LookupElement.prototype.getLookupMenu = function () {
772 return this.lookupMenu;
773 };
774
775 /**
776 * Disable or re-enable lookups.
777 *
778 * When lookups are disabled, calls to #populateLookupMenu will be ignored.
779 *
780 * @param {boolean} disabled Disable lookups
781 */
782 OO.ui.mixin.LookupElement.prototype.setLookupsDisabled = function ( disabled ) {
783 this.lookupsDisabled = !!disabled;
784 };
785
786 /**
787 * Open the menu. If there are no entries in the menu, this does nothing.
788 *
789 * @private
790 * @chainable
791 */
792 OO.ui.mixin.LookupElement.prototype.openLookupMenu = function () {
793 if ( !this.lookupMenu.isEmpty() ) {
794 this.lookupMenu.toggle( true );
795 }
796 return this;
797 };
798
799 /**
800 * Close the menu, empty it, and abort any pending request.
801 *
802 * @private
803 * @chainable
804 */
805 OO.ui.mixin.LookupElement.prototype.closeLookupMenu = function () {
806 this.lookupMenu.toggle( false );
807 this.abortLookupRequest();
808 this.lookupMenu.clearItems();
809 return this;
810 };
811
812 /**
813 * Request menu items based on the input's current value, and when they arrive,
814 * populate the menu with these items and show the menu.
815 *
816 * If lookups have been disabled with #setLookupsDisabled, this function does nothing.
817 *
818 * @private
819 * @chainable
820 */
821 OO.ui.mixin.LookupElement.prototype.populateLookupMenu = function () {
822 var widget = this,
823 value = this.getValue();
824
825 if ( this.lookupsDisabled || this.isReadOnly() ) {
826 return;
827 }
828
829 // If the input is empty, clear the menu, unless suggestions when empty are allowed.
830 if ( !this.allowSuggestionsWhenEmpty && value === '' ) {
831 this.closeLookupMenu();
832 // Skip population if there is already a request pending for the current value
833 } else if ( value !== this.lookupQuery ) {
834 this.getLookupMenuItems()
835 .done( function ( items ) {
836 widget.lookupMenu.clearItems();
837 if ( items.length ) {
838 widget.lookupMenu
839 .addItems( items )
840 .toggle( true );
841 widget.initializeLookupMenuSelection();
842 } else {
843 widget.lookupMenu.toggle( false );
844 }
845 } )
846 .fail( function () {
847 widget.lookupMenu.clearItems();
848 } );
849 }
850
851 return this;
852 };
853
854 /**
855 * Highlight the first selectable item in the menu, if configured.
856 *
857 * @private
858 * @chainable
859 */
860 OO.ui.mixin.LookupElement.prototype.initializeLookupMenuSelection = function () {
861 if ( this.lookupHighlightFirstItem && !this.lookupMenu.findSelectedItem() ) {
862 this.lookupMenu.highlightItem( this.lookupMenu.findFirstSelectableItem() );
863 }
864 };
865
866 /**
867 * Get lookup menu items for the current query.
868 *
869 * @private
870 * @return {jQuery.Promise} Promise object which will be passed menu items as the first argument of
871 * the done event. If the request was aborted to make way for a subsequent request, this promise
872 * will not be rejected: it will remain pending forever.
873 */
874 OO.ui.mixin.LookupElement.prototype.getLookupMenuItems = function () {
875 return this.getRequestData().then( function ( data ) {
876 return this.getLookupMenuOptionsFromData( data );
877 }.bind( this ) );
878 };
879
880 /**
881 * Abort the currently pending lookup request, if any.
882 *
883 * @private
884 */
885 OO.ui.mixin.LookupElement.prototype.abortLookupRequest = function () {
886 this.abortRequest();
887 };
888
889 /**
890 * Get a new request object of the current lookup query value.
891 *
892 * @protected
893 * @method
894 * @abstract
895 * @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
896 */
897 OO.ui.mixin.LookupElement.prototype.getLookupRequest = null;
898
899 /**
900 * Pre-process data returned by the request from #getLookupRequest.
901 *
902 * The return value of this function will be cached, and any further queries for the given value
903 * will use the cache rather than doing API requests.
904 *
905 * @protected
906 * @method
907 * @abstract
908 * @param {Mixed} response Response from server
909 * @return {Mixed} Cached result data
910 */
911 OO.ui.mixin.LookupElement.prototype.getLookupCacheDataFromResponse = null;
912
913 /**
914 * Get a list of menu option widgets from the (possibly cached) data returned by
915 * #getLookupCacheDataFromResponse.
916 *
917 * @protected
918 * @method
919 * @abstract
920 * @param {Mixed} data Cached result data, usually an array
921 * @return {OO.ui.MenuOptionWidget[]} Menu items
922 */
923 OO.ui.mixin.LookupElement.prototype.getLookupMenuOptionsFromData = null;
924
925 /**
926 * Set the read-only state of the widget.
927 *
928 * This will also disable/enable the lookups functionality.
929 *
930 * @param {boolean} readOnly Make input read-only
931 * @chainable
932 */
933 OO.ui.mixin.LookupElement.prototype.setReadOnly = function ( readOnly ) {
934 // Parent method
935 // Note: Calling #setReadOnly this way assumes this is mixed into an OO.ui.TextInputWidget
936 OO.ui.TextInputWidget.prototype.setReadOnly.call( this, readOnly );
937
938 // During construction, #setReadOnly is called before the OO.ui.mixin.LookupElement constructor
939 if ( this.isReadOnly() && this.lookupMenu ) {
940 this.closeLookupMenu();
941 }
942
943 return this;
944 };
945
946 /**
947 * @inheritdoc OO.ui.mixin.RequestManager
948 */
949 OO.ui.mixin.LookupElement.prototype.getRequestQuery = function () {
950 return this.getValue();
951 };
952
953 /**
954 * @inheritdoc OO.ui.mixin.RequestManager
955 */
956 OO.ui.mixin.LookupElement.prototype.getRequest = function () {
957 return this.getLookupRequest();
958 };
959
960 /**
961 * @inheritdoc OO.ui.mixin.RequestManager
962 */
963 OO.ui.mixin.LookupElement.prototype.getRequestCacheDataFromResponse = function ( response ) {
964 return this.getLookupCacheDataFromResponse( response );
965 };
966
967 /**
968 * TabPanelLayouts are used within {@link OO.ui.IndexLayout index layouts} to create tab panels that
969 * users can select and display from the index's optional {@link OO.ui.TabSelectWidget tab}
970 * navigation. TabPanels are usually not instantiated directly, rather extended to include the
971 * required content and functionality.
972 *
973 * Each tab panel must have a unique symbolic name, which is passed to the constructor. In addition,
974 * the tab panel's tab item is customized (with a label) using the #setupTabItem method. See
975 * {@link OO.ui.IndexLayout IndexLayout} for an example.
976 *
977 * @class
978 * @extends OO.ui.PanelLayout
979 *
980 * @constructor
981 * @param {string} name Unique symbolic name of tab panel
982 * @param {Object} [config] Configuration options
983 * @cfg {jQuery|string|Function|OO.ui.HtmlSnippet} [label] Label for tab panel's tab
984 */
985 OO.ui.TabPanelLayout = function OoUiTabPanelLayout( name, config ) {
986 // Allow passing positional parameters inside the config object
987 if ( OO.isPlainObject( name ) && config === undefined ) {
988 config = name;
989 name = config.name;
990 }
991
992 // Configuration initialization
993 config = $.extend( { scrollable: true }, config );
994
995 // Parent constructor
996 OO.ui.TabPanelLayout.parent.call( this, config );
997
998 // Properties
999 this.name = name;
1000 this.label = config.label;
1001 this.tabItem = null;
1002 this.active = false;
1003
1004 // Initialization
1005 this.$element.addClass( 'oo-ui-tabPanelLayout' );
1006 };
1007
1008 /* Setup */
1009
1010 OO.inheritClass( OO.ui.TabPanelLayout, OO.ui.PanelLayout );
1011
1012 /* Events */
1013
1014 /**
1015 * An 'active' event is emitted when the tab panel becomes active. Tab panels become active when they are
1016 * shown in a index layout that is configured to display only one tab panel at a time.
1017 *
1018 * @event active
1019 * @param {boolean} active Tab panel is active
1020 */
1021
1022 /* Methods */
1023
1024 /**
1025 * Get the symbolic name of the tab panel.
1026 *
1027 * @return {string} Symbolic name of tab panel
1028 */
1029 OO.ui.TabPanelLayout.prototype.getName = function () {
1030 return this.name;
1031 };
1032
1033 /**
1034 * Check if tab panel is active.
1035 *
1036 * Tab panels become active when they are shown in a {@link OO.ui.IndexLayout index layout} that is configured to
1037 * display only one tab panel at a time. Additional CSS is applied to the tab panel's tab item to reflect the
1038 * active state.
1039 *
1040 * @return {boolean} Tab panel is active
1041 */
1042 OO.ui.TabPanelLayout.prototype.isActive = function () {
1043 return this.active;
1044 };
1045
1046 /**
1047 * Get tab item.
1048 *
1049 * The tab item allows users to access the tab panel from the index's tab
1050 * navigation. The tab item itself can be customized (with a label, level, etc.) using the #setupTabItem method.
1051 *
1052 * @return {OO.ui.TabOptionWidget|null} Tab option widget
1053 */
1054 OO.ui.TabPanelLayout.prototype.getTabItem = function () {
1055 return this.tabItem;
1056 };
1057
1058 /**
1059 * Set or unset the tab item.
1060 *
1061 * Specify a {@link OO.ui.TabOptionWidget tab option} to set it,
1062 * or `null` to clear the tab item. To customize the tab item itself (e.g., to set a label or tab
1063 * level), use #setupTabItem instead of this method.
1064 *
1065 * @param {OO.ui.TabOptionWidget|null} tabItem Tab option widget, null to clear
1066 * @chainable
1067 */
1068 OO.ui.TabPanelLayout.prototype.setTabItem = function ( tabItem ) {
1069 this.tabItem = tabItem || null;
1070 if ( tabItem ) {
1071 this.setupTabItem();
1072 }
1073 return this;
1074 };
1075
1076 /**
1077 * Set up the tab item.
1078 *
1079 * Use this method to customize the tab item (e.g., to add a label or tab level). To set or unset
1080 * the tab item itself (with a {@link OO.ui.TabOptionWidget tab option} or `null`), use
1081 * the #setTabItem method instead.
1082 *
1083 * @param {OO.ui.TabOptionWidget} tabItem Tab option widget to set up
1084 * @chainable
1085 */
1086 OO.ui.TabPanelLayout.prototype.setupTabItem = function () {
1087 if ( this.label ) {
1088 this.tabItem.setLabel( this.label );
1089 }
1090 return this;
1091 };
1092
1093 /**
1094 * Set the tab panel to its 'active' state.
1095 *
1096 * Tab panels become active when they are shown in a index layout that is configured to display only
1097 * one tab panel at a time. Additional CSS is applied to the tab item to reflect the tab panel's
1098 * active state. Outside of the index context, setting the active state on a tab panel does nothing.
1099 *
1100 * @param {boolean} active Tab panel is active
1101 * @fires active
1102 */
1103 OO.ui.TabPanelLayout.prototype.setActive = function ( active ) {
1104 active = !!active;
1105
1106 if ( active !== this.active ) {
1107 this.active = active;
1108 this.$element.toggleClass( 'oo-ui-tabPanelLayout-active', this.active );
1109 this.emit( 'active', this.active );
1110 }
1111 };
1112
1113 /**
1114 * PageLayouts are used within {@link OO.ui.BookletLayout booklet layouts} to create pages that users can select and display
1115 * from the booklet's optional {@link OO.ui.OutlineSelectWidget outline} navigation. Pages are usually not instantiated directly,
1116 * rather extended to include the required content and functionality.
1117 *
1118 * Each page must have a unique symbolic name, which is passed to the constructor. In addition, the page's outline
1119 * item is customized (with a label, outline level, etc.) using the #setupOutlineItem method. See
1120 * {@link OO.ui.BookletLayout BookletLayout} for an example.
1121 *
1122 * @class
1123 * @extends OO.ui.PanelLayout
1124 *
1125 * @constructor
1126 * @param {string} name Unique symbolic name of page
1127 * @param {Object} [config] Configuration options
1128 */
1129 OO.ui.PageLayout = function OoUiPageLayout( name, config ) {
1130 // Allow passing positional parameters inside the config object
1131 if ( OO.isPlainObject( name ) && config === undefined ) {
1132 config = name;
1133 name = config.name;
1134 }
1135
1136 // Configuration initialization
1137 config = $.extend( { scrollable: true }, config );
1138
1139 // Parent constructor
1140 OO.ui.PageLayout.parent.call( this, config );
1141
1142 // Properties
1143 this.name = name;
1144 this.outlineItem = null;
1145 this.active = false;
1146
1147 // Initialization
1148 this.$element.addClass( 'oo-ui-pageLayout' );
1149 };
1150
1151 /* Setup */
1152
1153 OO.inheritClass( OO.ui.PageLayout, OO.ui.PanelLayout );
1154
1155 /* Events */
1156
1157 /**
1158 * An 'active' event is emitted when the page becomes active. Pages become active when they are
1159 * shown in a booklet layout that is configured to display only one page at a time.
1160 *
1161 * @event active
1162 * @param {boolean} active Page is active
1163 */
1164
1165 /* Methods */
1166
1167 /**
1168 * Get the symbolic name of the page.
1169 *
1170 * @return {string} Symbolic name of page
1171 */
1172 OO.ui.PageLayout.prototype.getName = function () {
1173 return this.name;
1174 };
1175
1176 /**
1177 * Check if page is active.
1178 *
1179 * Pages become active when they are shown in a {@link OO.ui.BookletLayout booklet layout} that is configured to display
1180 * only one page at a time. Additional CSS is applied to the page's outline item to reflect the active state.
1181 *
1182 * @return {boolean} Page is active
1183 */
1184 OO.ui.PageLayout.prototype.isActive = function () {
1185 return this.active;
1186 };
1187
1188 /**
1189 * Get outline item.
1190 *
1191 * The outline item allows users to access the page from the booklet's outline
1192 * navigation. The outline item itself can be customized (with a label, level, etc.) using the #setupOutlineItem method.
1193 *
1194 * @return {OO.ui.OutlineOptionWidget|null} Outline option widget
1195 */
1196 OO.ui.PageLayout.prototype.getOutlineItem = function () {
1197 return this.outlineItem;
1198 };
1199
1200 /**
1201 * Set or unset the outline item.
1202 *
1203 * Specify an {@link OO.ui.OutlineOptionWidget outline option} to set it,
1204 * or `null` to clear the outline item. To customize the outline item itself (e.g., to set a label or outline
1205 * level), use #setupOutlineItem instead of this method.
1206 *
1207 * @param {OO.ui.OutlineOptionWidget|null} outlineItem Outline option widget, null to clear
1208 * @chainable
1209 */
1210 OO.ui.PageLayout.prototype.setOutlineItem = function ( outlineItem ) {
1211 this.outlineItem = outlineItem || null;
1212 if ( outlineItem ) {
1213 this.setupOutlineItem();
1214 }
1215 return this;
1216 };
1217
1218 /**
1219 * Set up the outline item.
1220 *
1221 * Use this method to customize the outline item (e.g., to add a label or outline level). To set or unset
1222 * the outline item itself (with an {@link OO.ui.OutlineOptionWidget outline option} or `null`), use
1223 * the #setOutlineItem method instead.
1224 *
1225 * @param {OO.ui.OutlineOptionWidget} outlineItem Outline option widget to set up
1226 * @chainable
1227 */
1228 OO.ui.PageLayout.prototype.setupOutlineItem = function () {
1229 return this;
1230 };
1231
1232 /**
1233 * Set the page to its 'active' state.
1234 *
1235 * Pages become active when they are shown in a booklet layout that is configured to display only one page at a time. Additional
1236 * CSS is applied to the outline item to reflect the page's active state. Outside of the booklet
1237 * context, setting the active state on a page does nothing.
1238 *
1239 * @param {boolean} active Page is active
1240 * @fires active
1241 */
1242 OO.ui.PageLayout.prototype.setActive = function ( active ) {
1243 active = !!active;
1244
1245 if ( active !== this.active ) {
1246 this.active = active;
1247 this.$element.toggleClass( 'oo-ui-pageLayout-active', active );
1248 this.emit( 'active', this.active );
1249 }
1250 };
1251
1252 /**
1253 * StackLayouts contain a series of {@link OO.ui.PanelLayout panel layouts}. By default, only one panel is displayed
1254 * at a time, though the stack layout can also be configured to show all contained panels, one after another,
1255 * by setting the #continuous option to 'true'.
1256 *
1257 * @example
1258 * // A stack layout with two panels, configured to be displayed continously
1259 * var myStack = new OO.ui.StackLayout( {
1260 * items: [
1261 * new OO.ui.PanelLayout( {
1262 * $content: $( '<p>Panel One</p>' ),
1263 * padded: true,
1264 * framed: true
1265 * } ),
1266 * new OO.ui.PanelLayout( {
1267 * $content: $( '<p>Panel Two</p>' ),
1268 * padded: true,
1269 * framed: true
1270 * } )
1271 * ],
1272 * continuous: true
1273 * } );
1274 * $( 'body' ).append( myStack.$element );
1275 *
1276 * @class
1277 * @extends OO.ui.PanelLayout
1278 * @mixins OO.ui.mixin.GroupElement
1279 *
1280 * @constructor
1281 * @param {Object} [config] Configuration options
1282 * @cfg {boolean} [continuous=false] Show all panels, one after another. By default, only one panel is displayed at a time.
1283 * @cfg {OO.ui.Layout[]} [items] Panel layouts to add to the stack layout.
1284 */
1285 OO.ui.StackLayout = function OoUiStackLayout( config ) {
1286 // Configuration initialization
1287 config = $.extend( { scrollable: true }, config );
1288
1289 // Parent constructor
1290 OO.ui.StackLayout.parent.call( this, config );
1291
1292 // Mixin constructors
1293 OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
1294
1295 // Properties
1296 this.currentItem = null;
1297 this.continuous = !!config.continuous;
1298
1299 // Initialization
1300 this.$element.addClass( 'oo-ui-stackLayout' );
1301 if ( this.continuous ) {
1302 this.$element.addClass( 'oo-ui-stackLayout-continuous' );
1303 this.$element.on( 'scroll', OO.ui.debounce( this.onScroll.bind( this ), 250 ) );
1304 }
1305 if ( Array.isArray( config.items ) ) {
1306 this.addItems( config.items );
1307 }
1308 };
1309
1310 /* Setup */
1311
1312 OO.inheritClass( OO.ui.StackLayout, OO.ui.PanelLayout );
1313 OO.mixinClass( OO.ui.StackLayout, OO.ui.mixin.GroupElement );
1314
1315 /* Events */
1316
1317 /**
1318 * A 'set' event is emitted when panels are {@link #addItems added}, {@link #removeItems removed},
1319 * {@link #clearItems cleared} or {@link #setItem displayed}.
1320 *
1321 * @event set
1322 * @param {OO.ui.Layout|null} item Current panel or `null` if no panel is shown
1323 */
1324
1325 /**
1326 * When used in continuous mode, this event is emitted when the user scrolls down
1327 * far enough such that currentItem is no longer visible.
1328 *
1329 * @event visibleItemChange
1330 * @param {OO.ui.PanelLayout} panel The next visible item in the layout
1331 */
1332
1333 /* Methods */
1334
1335 /**
1336 * Handle scroll events from the layout element
1337 *
1338 * @param {jQuery.Event} e
1339 * @fires visibleItemChange
1340 */
1341 OO.ui.StackLayout.prototype.onScroll = function () {
1342 var currentRect,
1343 len = this.items.length,
1344 currentIndex = this.items.indexOf( this.currentItem ),
1345 newIndex = currentIndex,
1346 containerRect = this.$element[ 0 ].getBoundingClientRect();
1347
1348 if ( !containerRect || ( !containerRect.top && !containerRect.bottom ) ) {
1349 // Can't get bounding rect, possibly not attached.
1350 return;
1351 }
1352
1353 function getRect( item ) {
1354 return item.$element[ 0 ].getBoundingClientRect();
1355 }
1356
1357 function isVisible( item ) {
1358 var rect = getRect( item );
1359 return rect.bottom > containerRect.top && rect.top < containerRect.bottom;
1360 }
1361
1362 currentRect = getRect( this.currentItem );
1363
1364 if ( currentRect.bottom < containerRect.top ) {
1365 // Scrolled down past current item
1366 while ( ++newIndex < len ) {
1367 if ( isVisible( this.items[ newIndex ] ) ) {
1368 break;
1369 }
1370 }
1371 } else if ( currentRect.top > containerRect.bottom ) {
1372 // Scrolled up past current item
1373 while ( --newIndex >= 0 ) {
1374 if ( isVisible( this.items[ newIndex ] ) ) {
1375 break;
1376 }
1377 }
1378 }
1379
1380 if ( newIndex !== currentIndex ) {
1381 this.emit( 'visibleItemChange', this.items[ newIndex ] );
1382 }
1383 };
1384
1385 /**
1386 * Get the current panel.
1387 *
1388 * @return {OO.ui.Layout|null}
1389 */
1390 OO.ui.StackLayout.prototype.getCurrentItem = function () {
1391 return this.currentItem;
1392 };
1393
1394 /**
1395 * Unset the current item.
1396 *
1397 * @private
1398 * @param {OO.ui.StackLayout} layout
1399 * @fires set
1400 */
1401 OO.ui.StackLayout.prototype.unsetCurrentItem = function () {
1402 var prevItem = this.currentItem;
1403 if ( prevItem === null ) {
1404 return;
1405 }
1406
1407 this.currentItem = null;
1408 this.emit( 'set', null );
1409 };
1410
1411 /**
1412 * Add panel layouts to the stack layout.
1413 *
1414 * Panels will be added to the end of the stack layout array unless the optional index parameter specifies a different
1415 * insertion point. Adding a panel that is already in the stack will move it to the end of the array or the point specified
1416 * by the index.
1417 *
1418 * @param {OO.ui.Layout[]} items Panels to add
1419 * @param {number} [index] Index of the insertion point
1420 * @chainable
1421 */
1422 OO.ui.StackLayout.prototype.addItems = function ( items, index ) {
1423 // Update the visibility
1424 this.updateHiddenState( items, this.currentItem );
1425
1426 // Mixin method
1427 OO.ui.mixin.GroupElement.prototype.addItems.call( this, items, index );
1428
1429 if ( !this.currentItem && items.length ) {
1430 this.setItem( items[ 0 ] );
1431 }
1432
1433 return this;
1434 };
1435
1436 /**
1437 * Remove the specified panels from the stack layout.
1438 *
1439 * Removed panels are detached from the DOM, not removed, so that they may be reused. To remove all panels,
1440 * you may wish to use the #clearItems method instead.
1441 *
1442 * @param {OO.ui.Layout[]} items Panels to remove
1443 * @chainable
1444 * @fires set
1445 */
1446 OO.ui.StackLayout.prototype.removeItems = function ( items ) {
1447 // Mixin method
1448 OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
1449
1450 if ( items.indexOf( this.currentItem ) !== -1 ) {
1451 if ( this.items.length ) {
1452 this.setItem( this.items[ 0 ] );
1453 } else {
1454 this.unsetCurrentItem();
1455 }
1456 }
1457
1458 return this;
1459 };
1460
1461 /**
1462 * Clear all panels from the stack layout.
1463 *
1464 * Cleared panels are detached from the DOM, not removed, so that they may be reused. To remove only
1465 * a subset of panels, use the #removeItems method.
1466 *
1467 * @chainable
1468 * @fires set
1469 */
1470 OO.ui.StackLayout.prototype.clearItems = function () {
1471 this.unsetCurrentItem();
1472 OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
1473
1474 return this;
1475 };
1476
1477 /**
1478 * Show the specified panel.
1479 *
1480 * If another panel is currently displayed, it will be hidden.
1481 *
1482 * @param {OO.ui.Layout} item Panel to show
1483 * @chainable
1484 * @fires set
1485 */
1486 OO.ui.StackLayout.prototype.setItem = function ( item ) {
1487 if ( item !== this.currentItem ) {
1488 this.updateHiddenState( this.items, item );
1489
1490 if ( this.items.indexOf( item ) !== -1 ) {
1491 this.currentItem = item;
1492 this.emit( 'set', item );
1493 } else {
1494 this.unsetCurrentItem();
1495 }
1496 }
1497
1498 return this;
1499 };
1500
1501 /**
1502 * Update the visibility of all items in case of non-continuous view.
1503 *
1504 * Ensure all items are hidden except for the selected one.
1505 * This method does nothing when the stack is continuous.
1506 *
1507 * @private
1508 * @param {OO.ui.Layout[]} items Item list iterate over
1509 * @param {OO.ui.Layout} [selectedItem] Selected item to show
1510 */
1511 OO.ui.StackLayout.prototype.updateHiddenState = function ( items, selectedItem ) {
1512 var i, len;
1513
1514 if ( !this.continuous ) {
1515 for ( i = 0, len = items.length; i < len; i++ ) {
1516 if ( !selectedItem || selectedItem !== items[ i ] ) {
1517 items[ i ].$element.addClass( 'oo-ui-element-hidden' );
1518 items[ i ].$element.attr( 'aria-hidden', 'true' );
1519 }
1520 }
1521 if ( selectedItem ) {
1522 selectedItem.$element.removeClass( 'oo-ui-element-hidden' );
1523 selectedItem.$element.removeAttr( 'aria-hidden' );
1524 }
1525 }
1526 };
1527
1528 /**
1529 * MenuLayouts combine a menu and a content {@link OO.ui.PanelLayout panel}. The menu is positioned relative to the content (after, before, top, or bottom)
1530 * and its size is customized with the #menuSize config. The content area will fill all remaining space.
1531 *
1532 * @example
1533 * var menuLayout = new OO.ui.MenuLayout( {
1534 * position: 'top'
1535 * } ),
1536 * menuPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
1537 * contentPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
1538 * select = new OO.ui.SelectWidget( {
1539 * items: [
1540 * new OO.ui.OptionWidget( {
1541 * data: 'before',
1542 * label: 'Before',
1543 * } ),
1544 * new OO.ui.OptionWidget( {
1545 * data: 'after',
1546 * label: 'After',
1547 * } ),
1548 * new OO.ui.OptionWidget( {
1549 * data: 'top',
1550 * label: 'Top',
1551 * } ),
1552 * new OO.ui.OptionWidget( {
1553 * data: 'bottom',
1554 * label: 'Bottom',
1555 * } )
1556 * ]
1557 * } ).on( 'select', function ( item ) {
1558 * menuLayout.setMenuPosition( item.getData() );
1559 * } );
1560 *
1561 * menuLayout.$menu.append(
1562 * menuPanel.$element.append( '<b>Menu panel</b>', select.$element )
1563 * );
1564 * menuLayout.$content.append(
1565 * contentPanel.$element.append( '<b>Content panel</b>', '<p>Note that the menu is positioned relative to the content panel: top, bottom, after, before.</p>')
1566 * );
1567 * $( 'body' ).append( menuLayout.$element );
1568 *
1569 * If menu size needs to be overridden, it can be accomplished using CSS similar to the snippet
1570 * below. MenuLayout's CSS will override the appropriate values with 'auto' or '0' to display the
1571 * menu correctly. If `menuPosition` is known beforehand, CSS rules corresponding to other positions
1572 * may be omitted.
1573 *
1574 * .oo-ui-menuLayout-menu {
1575 * height: 200px;
1576 * width: 200px;
1577 * }
1578 * .oo-ui-menuLayout-content {
1579 * top: 200px;
1580 * left: 200px;
1581 * right: 200px;
1582 * bottom: 200px;
1583 * }
1584 *
1585 * @class
1586 * @extends OO.ui.Layout
1587 *
1588 * @constructor
1589 * @param {Object} [config] Configuration options
1590 * @cfg {boolean} [expanded=true] Expand the layout to fill the entire parent element.
1591 * @cfg {boolean} [showMenu=true] Show menu
1592 * @cfg {string} [menuPosition='before'] Position of menu: `top`, `after`, `bottom` or `before`
1593 */
1594 OO.ui.MenuLayout = function OoUiMenuLayout( config ) {
1595 // Configuration initialization
1596 config = $.extend( {
1597 expanded: true,
1598 showMenu: true,
1599 menuPosition: 'before'
1600 }, config );
1601
1602 // Parent constructor
1603 OO.ui.MenuLayout.parent.call( this, config );
1604
1605 this.expanded = !!config.expanded;
1606 /**
1607 * Menu DOM node
1608 *
1609 * @property {jQuery}
1610 */
1611 this.$menu = $( '<div>' );
1612 /**
1613 * Content DOM node
1614 *
1615 * @property {jQuery}
1616 */
1617 this.$content = $( '<div>' );
1618
1619 // Initialization
1620 this.$menu
1621 .addClass( 'oo-ui-menuLayout-menu' );
1622 this.$content.addClass( 'oo-ui-menuLayout-content' );
1623 this.$element
1624 .addClass( 'oo-ui-menuLayout' );
1625 if ( config.expanded ) {
1626 this.$element.addClass( 'oo-ui-menuLayout-expanded' );
1627 } else {
1628 this.$element.addClass( 'oo-ui-menuLayout-static' );
1629 }
1630 this.setMenuPosition( config.menuPosition );
1631 this.toggleMenu( config.showMenu );
1632 };
1633
1634 /* Setup */
1635
1636 OO.inheritClass( OO.ui.MenuLayout, OO.ui.Layout );
1637
1638 /* Methods */
1639
1640 /**
1641 * Toggle menu.
1642 *
1643 * @param {boolean} showMenu Show menu, omit to toggle
1644 * @chainable
1645 */
1646 OO.ui.MenuLayout.prototype.toggleMenu = function ( showMenu ) {
1647 showMenu = showMenu === undefined ? !this.showMenu : !!showMenu;
1648
1649 if ( this.showMenu !== showMenu ) {
1650 this.showMenu = showMenu;
1651 this.$element
1652 .toggleClass( 'oo-ui-menuLayout-showMenu', this.showMenu )
1653 .toggleClass( 'oo-ui-menuLayout-hideMenu', !this.showMenu );
1654 this.$menu.attr( 'aria-hidden', this.showMenu ? 'false' : 'true' );
1655 }
1656
1657 return this;
1658 };
1659
1660 /**
1661 * Check if menu is visible
1662 *
1663 * @return {boolean} Menu is visible
1664 */
1665 OO.ui.MenuLayout.prototype.isMenuVisible = function () {
1666 return this.showMenu;
1667 };
1668
1669 /**
1670 * Set menu position.
1671 *
1672 * @param {string} position Position of menu, either `top`, `after`, `bottom` or `before`
1673 * @throws {Error} If position value is not supported
1674 * @chainable
1675 */
1676 OO.ui.MenuLayout.prototype.setMenuPosition = function ( position ) {
1677 this.$element.removeClass( 'oo-ui-menuLayout-' + this.menuPosition );
1678 this.menuPosition = position;
1679 if ( this.menuPosition === 'top' || this.menuPosition === 'before' ) {
1680 this.$element.append( this.$menu, this.$content );
1681 } else {
1682 this.$element.append( this.$content, this.$menu );
1683 }
1684 this.$element.addClass( 'oo-ui-menuLayout-' + position );
1685
1686 return this;
1687 };
1688
1689 /**
1690 * Get menu position.
1691 *
1692 * @return {string} Menu position
1693 */
1694 OO.ui.MenuLayout.prototype.getMenuPosition = function () {
1695 return this.menuPosition;
1696 };
1697
1698 /**
1699 * BookletLayouts contain {@link OO.ui.PageLayout page layouts} as well as
1700 * an {@link OO.ui.OutlineSelectWidget outline} that allows users to easily navigate
1701 * through the pages and select which one to display. By default, only one page is
1702 * displayed at a time and the outline is hidden. When a user navigates to a new page,
1703 * the booklet layout automatically focuses on the first focusable element, unless the
1704 * default setting is changed. Optionally, booklets can be configured to show
1705 * {@link OO.ui.OutlineControlsWidget controls} for adding, moving, and removing items.
1706 *
1707 * @example
1708 * // Example of a BookletLayout that contains two PageLayouts.
1709 *
1710 * function PageOneLayout( name, config ) {
1711 * PageOneLayout.parent.call( this, name, config );
1712 * this.$element.append( '<p>First page</p><p>(This booklet has an outline, displayed on the left)</p>' );
1713 * }
1714 * OO.inheritClass( PageOneLayout, OO.ui.PageLayout );
1715 * PageOneLayout.prototype.setupOutlineItem = function () {
1716 * this.outlineItem.setLabel( 'Page One' );
1717 * };
1718 *
1719 * function PageTwoLayout( name, config ) {
1720 * PageTwoLayout.parent.call( this, name, config );
1721 * this.$element.append( '<p>Second page</p>' );
1722 * }
1723 * OO.inheritClass( PageTwoLayout, OO.ui.PageLayout );
1724 * PageTwoLayout.prototype.setupOutlineItem = function () {
1725 * this.outlineItem.setLabel( 'Page Two' );
1726 * };
1727 *
1728 * var page1 = new PageOneLayout( 'one' ),
1729 * page2 = new PageTwoLayout( 'two' );
1730 *
1731 * var booklet = new OO.ui.BookletLayout( {
1732 * outlined: true
1733 * } );
1734 *
1735 * booklet.addPages ( [ page1, page2 ] );
1736 * $( 'body' ).append( booklet.$element );
1737 *
1738 * @class
1739 * @extends OO.ui.MenuLayout
1740 *
1741 * @constructor
1742 * @param {Object} [config] Configuration options
1743 * @cfg {boolean} [continuous=false] Show all pages, one after another
1744 * @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new page is displayed. Disabled on mobile.
1745 * @cfg {boolean} [outlined=false] Show the outline. The outline is used to navigate through the pages of the booklet.
1746 * @cfg {boolean} [editable=false] Show controls for adding, removing and reordering pages
1747 */
1748 OO.ui.BookletLayout = function OoUiBookletLayout( config ) {
1749 // Configuration initialization
1750 config = config || {};
1751
1752 // Parent constructor
1753 OO.ui.BookletLayout.parent.call( this, config );
1754
1755 // Properties
1756 this.currentPageName = null;
1757 this.pages = {};
1758 this.ignoreFocus = false;
1759 this.stackLayout = new OO.ui.StackLayout( {
1760 continuous: !!config.continuous,
1761 expanded: this.expanded
1762 } );
1763 this.$content.append( this.stackLayout.$element );
1764 this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
1765 this.outlineVisible = false;
1766 this.outlined = !!config.outlined;
1767 if ( this.outlined ) {
1768 this.editable = !!config.editable;
1769 this.outlineControlsWidget = null;
1770 this.outlineSelectWidget = new OO.ui.OutlineSelectWidget();
1771 this.outlinePanel = new OO.ui.PanelLayout( {
1772 expanded: this.expanded,
1773 scrollable: true
1774 } );
1775 this.$menu.append( this.outlinePanel.$element );
1776 this.outlineVisible = true;
1777 if ( this.editable ) {
1778 this.outlineControlsWidget = new OO.ui.OutlineControlsWidget(
1779 this.outlineSelectWidget
1780 );
1781 }
1782 }
1783 this.toggleMenu( this.outlined );
1784
1785 // Events
1786 this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
1787 if ( this.outlined ) {
1788 this.outlineSelectWidget.connect( this, { select: 'onOutlineSelectWidgetSelect' } );
1789 this.scrolling = false;
1790 this.stackLayout.connect( this, { visibleItemChange: 'onStackLayoutVisibleItemChange' } );
1791 }
1792 if ( this.autoFocus ) {
1793 // Event 'focus' does not bubble, but 'focusin' does
1794 this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
1795 }
1796
1797 // Initialization
1798 this.$element.addClass( 'oo-ui-bookletLayout' );
1799 this.stackLayout.$element.addClass( 'oo-ui-bookletLayout-stackLayout' );
1800 if ( this.outlined ) {
1801 this.outlinePanel.$element
1802 .addClass( 'oo-ui-bookletLayout-outlinePanel' )
1803 .append( this.outlineSelectWidget.$element );
1804 if ( this.editable ) {
1805 this.outlinePanel.$element
1806 .addClass( 'oo-ui-bookletLayout-outlinePanel-editable' )
1807 .append( this.outlineControlsWidget.$element );
1808 }
1809 }
1810 };
1811
1812 /* Setup */
1813
1814 OO.inheritClass( OO.ui.BookletLayout, OO.ui.MenuLayout );
1815
1816 /* Events */
1817
1818 /**
1819 * A 'set' event is emitted when a page is {@link #setPage set} to be displayed by the booklet layout.
1820 * @event set
1821 * @param {OO.ui.PageLayout} page Current page
1822 */
1823
1824 /**
1825 * An 'add' event is emitted when pages are {@link #addPages added} to the booklet layout.
1826 *
1827 * @event add
1828 * @param {OO.ui.PageLayout[]} page Added pages
1829 * @param {number} index Index pages were added at
1830 */
1831
1832 /**
1833 * A 'remove' event is emitted when pages are {@link #clearPages cleared} or
1834 * {@link #removePages removed} from the booklet.
1835 *
1836 * @event remove
1837 * @param {OO.ui.PageLayout[]} pages Removed pages
1838 */
1839
1840 /* Methods */
1841
1842 /**
1843 * Handle stack layout focus.
1844 *
1845 * @private
1846 * @param {jQuery.Event} e Focusin event
1847 */
1848 OO.ui.BookletLayout.prototype.onStackLayoutFocus = function ( e ) {
1849 var name, $target;
1850
1851 // Find the page that an element was focused within
1852 $target = $( e.target ).closest( '.oo-ui-pageLayout' );
1853 for ( name in this.pages ) {
1854 // Check for page match, exclude current page to find only page changes
1855 if ( this.pages[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentPageName ) {
1856 this.setPage( name );
1857 break;
1858 }
1859 }
1860 };
1861
1862 /**
1863 * Handle visibleItemChange events from the stackLayout
1864 *
1865 * The next visible page is set as the current page by selecting it
1866 * in the outline
1867 *
1868 * @param {OO.ui.PageLayout} page The next visible page in the layout
1869 */
1870 OO.ui.BookletLayout.prototype.onStackLayoutVisibleItemChange = function ( page ) {
1871 // Set a flag to so that the resulting call to #onStackLayoutSet doesn't
1872 // try and scroll the item into view again.
1873 this.scrolling = true;
1874 this.outlineSelectWidget.selectItemByData( page.getName() );
1875 this.scrolling = false;
1876 };
1877
1878 /**
1879 * Handle stack layout set events.
1880 *
1881 * @private
1882 * @param {OO.ui.PanelLayout|null} page The page panel that is now the current panel
1883 */
1884 OO.ui.BookletLayout.prototype.onStackLayoutSet = function ( page ) {
1885 var promise, layout = this;
1886 // If everything is unselected, do nothing
1887 if ( !page ) {
1888 return;
1889 }
1890 // For continuous BookletLayouts, scroll the selected page into view first
1891 if ( this.stackLayout.continuous && !this.scrolling ) {
1892 promise = page.scrollElementIntoView();
1893 } else {
1894 promise = $.Deferred().resolve();
1895 }
1896 // Focus the first element on the newly selected panel
1897 if ( this.autoFocus && !OO.ui.isMobile() ) {
1898 promise.done( function () {
1899 layout.focus();
1900 } );
1901 }
1902 };
1903
1904 /**
1905 * Focus the first input in the current page.
1906 *
1907 * If no page is selected, the first selectable page will be selected.
1908 * If the focus is already in an element on the current page, nothing will happen.
1909 *
1910 * @param {number} [itemIndex] A specific item to focus on
1911 */
1912 OO.ui.BookletLayout.prototype.focus = function ( itemIndex ) {
1913 var page,
1914 items = this.stackLayout.getItems();
1915
1916 if ( itemIndex !== undefined && items[ itemIndex ] ) {
1917 page = items[ itemIndex ];
1918 } else {
1919 page = this.stackLayout.getCurrentItem();
1920 }
1921
1922 if ( !page && this.outlined ) {
1923 this.selectFirstSelectablePage();
1924 page = this.stackLayout.getCurrentItem();
1925 }
1926 if ( !page ) {
1927 return;
1928 }
1929 // Only change the focus if is not already in the current page
1930 if ( !OO.ui.contains( page.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
1931 page.focus();
1932 }
1933 };
1934
1935 /**
1936 * Find the first focusable input in the booklet layout and focus
1937 * on it.
1938 */
1939 OO.ui.BookletLayout.prototype.focusFirstFocusable = function () {
1940 OO.ui.findFocusable( this.stackLayout.$element ).focus();
1941 };
1942
1943 /**
1944 * Handle outline widget select events.
1945 *
1946 * @private
1947 * @param {OO.ui.OptionWidget|null} item Selected item
1948 */
1949 OO.ui.BookletLayout.prototype.onOutlineSelectWidgetSelect = function ( item ) {
1950 if ( item ) {
1951 this.setPage( item.getData() );
1952 }
1953 };
1954
1955 /**
1956 * Check if booklet has an outline.
1957 *
1958 * @return {boolean} Booklet has an outline
1959 */
1960 OO.ui.BookletLayout.prototype.isOutlined = function () {
1961 return this.outlined;
1962 };
1963
1964 /**
1965 * Check if booklet has editing controls.
1966 *
1967 * @return {boolean} Booklet is editable
1968 */
1969 OO.ui.BookletLayout.prototype.isEditable = function () {
1970 return this.editable;
1971 };
1972
1973 /**
1974 * Check if booklet has a visible outline.
1975 *
1976 * @return {boolean} Outline is visible
1977 */
1978 OO.ui.BookletLayout.prototype.isOutlineVisible = function () {
1979 return this.outlined && this.outlineVisible;
1980 };
1981
1982 /**
1983 * Hide or show the outline.
1984 *
1985 * @param {boolean} [show] Show outline, omit to invert current state
1986 * @chainable
1987 */
1988 OO.ui.BookletLayout.prototype.toggleOutline = function ( show ) {
1989 var booklet = this;
1990
1991 if ( this.outlined ) {
1992 show = show === undefined ? !this.outlineVisible : !!show;
1993 this.outlineVisible = show;
1994 this.toggleMenu( show );
1995 if ( show && this.editable ) {
1996 // HACK: Kill dumb scrollbars when the sidebar stops animating, see T161798. Only necessary when
1997 // outline controls are present, delay matches transition on `.oo-ui-menuLayout-menu`.
1998 setTimeout( function () {
1999 OO.ui.Element.static.reconsiderScrollbars( booklet.outlinePanel.$element[ 0 ] );
2000 }, 200 );
2001 }
2002 }
2003
2004 return this;
2005 };
2006
2007 /**
2008 * Find the page closest to the specified page.
2009 *
2010 * @param {OO.ui.PageLayout} page Page to use as a reference point
2011 * @return {OO.ui.PageLayout|null} Page closest to the specified page
2012 */
2013 OO.ui.BookletLayout.prototype.findClosestPage = function ( page ) {
2014 var next, prev, level,
2015 pages = this.stackLayout.getItems(),
2016 index = pages.indexOf( page );
2017
2018 if ( index !== -1 ) {
2019 next = pages[ index + 1 ];
2020 prev = pages[ index - 1 ];
2021 // Prefer adjacent pages at the same level
2022 if ( this.outlined ) {
2023 level = this.outlineSelectWidget.findItemFromData( page.getName() ).getLevel();
2024 if (
2025 prev &&
2026 level === this.outlineSelectWidget.findItemFromData( prev.getName() ).getLevel()
2027 ) {
2028 return prev;
2029 }
2030 if (
2031 next &&
2032 level === this.outlineSelectWidget.findItemFromData( next.getName() ).getLevel()
2033 ) {
2034 return next;
2035 }
2036 }
2037 }
2038 return prev || next || null;
2039 };
2040
2041 /**
2042 * Get the outline widget.
2043 *
2044 * If the booklet is not outlined, the method will return `null`.
2045 *
2046 * @return {OO.ui.OutlineSelectWidget|null} Outline widget, or null if the booklet is not outlined
2047 */
2048 OO.ui.BookletLayout.prototype.getOutline = function () {
2049 return this.outlineSelectWidget;
2050 };
2051
2052 /**
2053 * Get the outline controls widget.
2054 *
2055 * If the outline is not editable, the method will return `null`.
2056 *
2057 * @return {OO.ui.OutlineControlsWidget|null} The outline controls widget.
2058 */
2059 OO.ui.BookletLayout.prototype.getOutlineControls = function () {
2060 return this.outlineControlsWidget;
2061 };
2062
2063 /**
2064 * Get a page by its symbolic name.
2065 *
2066 * @param {string} name Symbolic name of page
2067 * @return {OO.ui.PageLayout|undefined} Page, if found
2068 */
2069 OO.ui.BookletLayout.prototype.getPage = function ( name ) {
2070 return this.pages[ name ];
2071 };
2072
2073 /**
2074 * Get the current page.
2075 *
2076 * @return {OO.ui.PageLayout|undefined} Current page, if found
2077 */
2078 OO.ui.BookletLayout.prototype.getCurrentPage = function () {
2079 var name = this.getCurrentPageName();
2080 return name ? this.getPage( name ) : undefined;
2081 };
2082
2083 /**
2084 * Get the symbolic name of the current page.
2085 *
2086 * @return {string|null} Symbolic name of the current page
2087 */
2088 OO.ui.BookletLayout.prototype.getCurrentPageName = function () {
2089 return this.currentPageName;
2090 };
2091
2092 /**
2093 * Add pages to the booklet layout
2094 *
2095 * When pages are added with the same names as existing pages, the existing pages will be
2096 * automatically removed before the new pages are added.
2097 *
2098 * @param {OO.ui.PageLayout[]} pages Pages to add
2099 * @param {number} index Index of the insertion point
2100 * @fires add
2101 * @chainable
2102 */
2103 OO.ui.BookletLayout.prototype.addPages = function ( pages, index ) {
2104 var i, len, name, page, item, currentIndex,
2105 stackLayoutPages = this.stackLayout.getItems(),
2106 remove = [],
2107 items = [];
2108
2109 // Remove pages with same names
2110 for ( i = 0, len = pages.length; i < len; i++ ) {
2111 page = pages[ i ];
2112 name = page.getName();
2113
2114 if ( Object.prototype.hasOwnProperty.call( this.pages, name ) ) {
2115 // Correct the insertion index
2116 currentIndex = stackLayoutPages.indexOf( this.pages[ name ] );
2117 if ( currentIndex !== -1 && currentIndex + 1 < index ) {
2118 index--;
2119 }
2120 remove.push( this.pages[ name ] );
2121 }
2122 }
2123 if ( remove.length ) {
2124 this.removePages( remove );
2125 }
2126
2127 // Add new pages
2128 for ( i = 0, len = pages.length; i < len; i++ ) {
2129 page = pages[ i ];
2130 name = page.getName();
2131 this.pages[ page.getName() ] = page;
2132 if ( this.outlined ) {
2133 item = new OO.ui.OutlineOptionWidget( { data: name } );
2134 page.setOutlineItem( item );
2135 items.push( item );
2136 }
2137 }
2138
2139 if ( this.outlined && items.length ) {
2140 this.outlineSelectWidget.addItems( items, index );
2141 this.selectFirstSelectablePage();
2142 }
2143 this.stackLayout.addItems( pages, index );
2144 this.emit( 'add', pages, index );
2145
2146 return this;
2147 };
2148
2149 /**
2150 * Remove the specified pages from the booklet layout.
2151 *
2152 * To remove all pages from the booklet, you may wish to use the #clearPages method instead.
2153 *
2154 * @param {OO.ui.PageLayout[]} pages An array of pages to remove
2155 * @fires remove
2156 * @chainable
2157 */
2158 OO.ui.BookletLayout.prototype.removePages = function ( pages ) {
2159 var i, len, name, page,
2160 items = [];
2161
2162 for ( i = 0, len = pages.length; i < len; i++ ) {
2163 page = pages[ i ];
2164 name = page.getName();
2165 delete this.pages[ name ];
2166 if ( this.outlined ) {
2167 items.push( this.outlineSelectWidget.findItemFromData( name ) );
2168 page.setOutlineItem( null );
2169 }
2170 }
2171 if ( this.outlined && items.length ) {
2172 this.outlineSelectWidget.removeItems( items );
2173 this.selectFirstSelectablePage();
2174 }
2175 this.stackLayout.removeItems( pages );
2176 this.emit( 'remove', pages );
2177
2178 return this;
2179 };
2180
2181 /**
2182 * Clear all pages from the booklet layout.
2183 *
2184 * To remove only a subset of pages from the booklet, use the #removePages method.
2185 *
2186 * @fires remove
2187 * @chainable
2188 */
2189 OO.ui.BookletLayout.prototype.clearPages = function () {
2190 var i, len,
2191 pages = this.stackLayout.getItems();
2192
2193 this.pages = {};
2194 this.currentPageName = null;
2195 if ( this.outlined ) {
2196 this.outlineSelectWidget.clearItems();
2197 for ( i = 0, len = pages.length; i < len; i++ ) {
2198 pages[ i ].setOutlineItem( null );
2199 }
2200 }
2201 this.stackLayout.clearItems();
2202
2203 this.emit( 'remove', pages );
2204
2205 return this;
2206 };
2207
2208 /**
2209 * Set the current page by symbolic name.
2210 *
2211 * @fires set
2212 * @param {string} name Symbolic name of page
2213 */
2214 OO.ui.BookletLayout.prototype.setPage = function ( name ) {
2215 var selectedItem,
2216 $focused,
2217 page = this.pages[ name ],
2218 previousPage = this.currentPageName && this.pages[ this.currentPageName ];
2219
2220 if ( name !== this.currentPageName ) {
2221 if ( this.outlined ) {
2222 selectedItem = this.outlineSelectWidget.findSelectedItem();
2223 if ( selectedItem && selectedItem.getData() !== name ) {
2224 this.outlineSelectWidget.selectItemByData( name );
2225 }
2226 }
2227 if ( page ) {
2228 if ( previousPage ) {
2229 previousPage.setActive( false );
2230 // Blur anything focused if the next page doesn't have anything focusable.
2231 // This is not needed if the next page has something focusable (because once it is focused
2232 // this blur happens automatically). If the layout is non-continuous, this check is
2233 // meaningless because the next page is not visible yet and thus can't hold focus.
2234 if (
2235 this.autoFocus &&
2236 !OO.ui.isMobile() &&
2237 this.stackLayout.continuous &&
2238 OO.ui.findFocusable( page.$element ).length !== 0
2239 ) {
2240 $focused = previousPage.$element.find( ':focus' );
2241 if ( $focused.length ) {
2242 $focused[ 0 ].blur();
2243 }
2244 }
2245 }
2246 this.currentPageName = name;
2247 page.setActive( true );
2248 this.stackLayout.setItem( page );
2249 if ( !this.stackLayout.continuous && previousPage ) {
2250 // This should not be necessary, since any inputs on the previous page should have been
2251 // blurred when it was hidden, but browsers are not very consistent about this.
2252 $focused = previousPage.$element.find( ':focus' );
2253 if ( $focused.length ) {
2254 $focused[ 0 ].blur();
2255 }
2256 }
2257 this.emit( 'set', page );
2258 }
2259 }
2260 };
2261
2262 /**
2263 * Select the first selectable page.
2264 *
2265 * @chainable
2266 */
2267 OO.ui.BookletLayout.prototype.selectFirstSelectablePage = function () {
2268 if ( !this.outlineSelectWidget.findSelectedItem() ) {
2269 this.outlineSelectWidget.selectItem( this.outlineSelectWidget.findFirstSelectableItem() );
2270 }
2271
2272 return this;
2273 };
2274
2275 /**
2276 * IndexLayouts contain {@link OO.ui.TabPanelLayout tab panel layouts} as well as
2277 * {@link OO.ui.TabSelectWidget tabs} that allow users to easily navigate through the tab panels and
2278 * select which one to display. By default, only one tab panel is displayed at a time. When a user
2279 * navigates to a new tab panel, the index layout automatically focuses on the first focusable element,
2280 * unless the default setting is changed.
2281 *
2282 * TODO: This class is similar to BookletLayout, we may want to refactor to reduce duplication
2283 *
2284 * @example
2285 * // Example of a IndexLayout that contains two TabPanelLayouts.
2286 *
2287 * function TabPanelOneLayout( name, config ) {
2288 * TabPanelOneLayout.parent.call( this, name, config );
2289 * this.$element.append( '<p>First tab panel</p>' );
2290 * }
2291 * OO.inheritClass( TabPanelOneLayout, OO.ui.TabPanelLayout );
2292 * TabPanelOneLayout.prototype.setupTabItem = function () {
2293 * this.tabItem.setLabel( 'Tab panel one' );
2294 * };
2295 *
2296 * var tabPanel1 = new TabPanelOneLayout( 'one' ),
2297 * tabPanel2 = new OO.ui.TabPanelLayout( 'two', { label: 'Tab panel two' } );
2298 *
2299 * tabPanel2.$element.append( '<p>Second tab panel</p>' );
2300 *
2301 * var index = new OO.ui.IndexLayout();
2302 *
2303 * index.addTabPanels ( [ tabPanel1, tabPanel2 ] );
2304 * $( 'body' ).append( index.$element );
2305 *
2306 * @class
2307 * @extends OO.ui.MenuLayout
2308 *
2309 * @constructor
2310 * @param {Object} [config] Configuration options
2311 * @cfg {boolean} [continuous=false] Show all tab panels, one after another
2312 * @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new tab panel is displayed. Disabled on mobile.
2313 */
2314 OO.ui.IndexLayout = function OoUiIndexLayout( config ) {
2315 // Configuration initialization
2316 config = $.extend( {}, config, { menuPosition: 'top' } );
2317
2318 // Parent constructor
2319 OO.ui.IndexLayout.parent.call( this, config );
2320
2321 // Properties
2322 this.currentTabPanelName = null;
2323 this.tabPanels = {};
2324
2325 this.ignoreFocus = false;
2326 this.stackLayout = new OO.ui.StackLayout( {
2327 continuous: !!config.continuous,
2328 expanded: this.expanded
2329 } );
2330 this.$content.append( this.stackLayout.$element );
2331 this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
2332
2333 this.tabSelectWidget = new OO.ui.TabSelectWidget();
2334 this.tabPanel = new OO.ui.PanelLayout( {
2335 expanded: this.expanded
2336 } );
2337 this.$menu.append( this.tabPanel.$element );
2338
2339 this.toggleMenu( true );
2340
2341 // Events
2342 this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
2343 this.tabSelectWidget.connect( this, { select: 'onTabSelectWidgetSelect' } );
2344 if ( this.autoFocus ) {
2345 // Event 'focus' does not bubble, but 'focusin' does
2346 this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
2347 }
2348
2349 // Initialization
2350 this.$element.addClass( 'oo-ui-indexLayout' );
2351 this.stackLayout.$element.addClass( 'oo-ui-indexLayout-stackLayout' );
2352 this.tabPanel.$element
2353 .addClass( 'oo-ui-indexLayout-tabPanel' )
2354 .append( this.tabSelectWidget.$element );
2355 };
2356
2357 /* Setup */
2358
2359 OO.inheritClass( OO.ui.IndexLayout, OO.ui.MenuLayout );
2360
2361 /* Events */
2362
2363 /**
2364 * A 'set' event is emitted when a tab panel is {@link #setTabPanel set} to be displayed by the index layout.
2365 * @event set
2366 * @param {OO.ui.TabPanelLayout} tabPanel Current tab panel
2367 */
2368
2369 /**
2370 * An 'add' event is emitted when tab panels are {@link #addTabPanels added} to the index layout.
2371 *
2372 * @event add
2373 * @param {OO.ui.TabPanelLayout[]} tabPanel Added tab panels
2374 * @param {number} index Index tab panels were added at
2375 */
2376
2377 /**
2378 * A 'remove' event is emitted when tab panels are {@link #clearTabPanels cleared} or
2379 * {@link #removeTabPanels removed} from the index.
2380 *
2381 * @event remove
2382 * @param {OO.ui.TabPanelLayout[]} tabPanel Removed tab panels
2383 */
2384
2385 /* Methods */
2386
2387 /**
2388 * Handle stack layout focus.
2389 *
2390 * @private
2391 * @param {jQuery.Event} e Focusing event
2392 */
2393 OO.ui.IndexLayout.prototype.onStackLayoutFocus = function ( e ) {
2394 var name, $target;
2395
2396 // Find the tab panel that an element was focused within
2397 $target = $( e.target ).closest( '.oo-ui-tabPanelLayout' );
2398 for ( name in this.tabPanels ) {
2399 // Check for tab panel match, exclude current tab panel to find only tab panel changes
2400 if ( this.tabPanels[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentTabPanelName ) {
2401 this.setTabPanel( name );
2402 break;
2403 }
2404 }
2405 };
2406
2407 /**
2408 * Handle stack layout set events.
2409 *
2410 * @private
2411 * @param {OO.ui.PanelLayout|null} tabPanel The tab panel that is now the current panel
2412 */
2413 OO.ui.IndexLayout.prototype.onStackLayoutSet = function ( tabPanel ) {
2414 // If everything is unselected, do nothing
2415 if ( !tabPanel ) {
2416 return;
2417 }
2418 // Focus the first element on the newly selected panel
2419 if ( this.autoFocus && !OO.ui.isMobile() ) {
2420 this.focus();
2421 }
2422 };
2423
2424 /**
2425 * Focus the first input in the current tab panel.
2426 *
2427 * If no tab panel is selected, the first selectable tab panel will be selected.
2428 * If the focus is already in an element on the current tab panel, nothing will happen.
2429 *
2430 * @param {number} [itemIndex] A specific item to focus on
2431 */
2432 OO.ui.IndexLayout.prototype.focus = function ( itemIndex ) {
2433 var tabPanel,
2434 items = this.stackLayout.getItems();
2435
2436 if ( itemIndex !== undefined && items[ itemIndex ] ) {
2437 tabPanel = items[ itemIndex ];
2438 } else {
2439 tabPanel = this.stackLayout.getCurrentItem();
2440 }
2441
2442 if ( !tabPanel ) {
2443 this.selectFirstSelectableTabPanel();
2444 tabPanel = this.stackLayout.getCurrentItem();
2445 }
2446 if ( !tabPanel ) {
2447 return;
2448 }
2449 // Only change the focus if is not already in the current page
2450 if ( !OO.ui.contains( tabPanel.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
2451 tabPanel.focus();
2452 }
2453 };
2454
2455 /**
2456 * Find the first focusable input in the index layout and focus
2457 * on it.
2458 */
2459 OO.ui.IndexLayout.prototype.focusFirstFocusable = function () {
2460 OO.ui.findFocusable( this.stackLayout.$element ).focus();
2461 };
2462
2463 /**
2464 * Handle tab widget select events.
2465 *
2466 * @private
2467 * @param {OO.ui.OptionWidget|null} item Selected item
2468 */
2469 OO.ui.IndexLayout.prototype.onTabSelectWidgetSelect = function ( item ) {
2470 if ( item ) {
2471 this.setTabPanel( item.getData() );
2472 }
2473 };
2474
2475 /**
2476 * Get the tab panel closest to the specified tab panel.
2477 *
2478 * @param {OO.ui.TabPanelLayout} tabPanel Tab panel to use as a reference point
2479 * @return {OO.ui.TabPanelLayout|null} Tab panel closest to the specified
2480 */
2481 OO.ui.IndexLayout.prototype.getClosestTabPanel = function ( tabPanel ) {
2482 var next, prev, level,
2483 tabPanels = this.stackLayout.getItems(),
2484 index = tabPanels.indexOf( tabPanel );
2485
2486 if ( index !== -1 ) {
2487 next = tabPanels[ index + 1 ];
2488 prev = tabPanels[ index - 1 ];
2489 // Prefer adjacent tab panels at the same level
2490 level = this.tabSelectWidget.findItemFromData( tabPanel.getName() ).getLevel();
2491 if (
2492 prev &&
2493 level === this.tabSelectWidget.findItemFromData( prev.getName() ).getLevel()
2494 ) {
2495 return prev;
2496 }
2497 if (
2498 next &&
2499 level === this.tabSelectWidget.findItemFromData( next.getName() ).getLevel()
2500 ) {
2501 return next;
2502 }
2503 }
2504 return prev || next || null;
2505 };
2506
2507 /**
2508 * Get the tabs widget.
2509 *
2510 * @return {OO.ui.TabSelectWidget} Tabs widget
2511 */
2512 OO.ui.IndexLayout.prototype.getTabs = function () {
2513 return this.tabSelectWidget;
2514 };
2515
2516 /**
2517 * Get a tab panel by its symbolic name.
2518 *
2519 * @param {string} name Symbolic name of tab panel
2520 * @return {OO.ui.TabPanelLayout|undefined} Tab panel, if found
2521 */
2522 OO.ui.IndexLayout.prototype.getTabPanel = function ( name ) {
2523 return this.tabPanels[ name ];
2524 };
2525
2526 /**
2527 * Get the current tab panel.
2528 *
2529 * @return {OO.ui.TabPanelLayout|undefined} Current tab panel, if found
2530 */
2531 OO.ui.IndexLayout.prototype.getCurrentTabPanel = function () {
2532 var name = this.getCurrentTabPanelName();
2533 return name ? this.getTabPanel( name ) : undefined;
2534 };
2535
2536 /**
2537 * Get the symbolic name of the current tab panel.
2538 *
2539 * @return {string|null} Symbolic name of the current tab panel
2540 */
2541 OO.ui.IndexLayout.prototype.getCurrentTabPanelName = function () {
2542 return this.currentTabPanelName;
2543 };
2544
2545 /**
2546 * Add tab panels to the index layout
2547 *
2548 * When tab panels are added with the same names as existing tab panels, the existing tab panels
2549 * will be automatically removed before the new tab panels are added.
2550 *
2551 * @param {OO.ui.TabPanelLayout[]} tabPanels Tab panels to add
2552 * @param {number} index Index of the insertion point
2553 * @fires add
2554 * @chainable
2555 */
2556 OO.ui.IndexLayout.prototype.addTabPanels = function ( tabPanels, index ) {
2557 var i, len, name, tabPanel, item, currentIndex,
2558 stackLayoutTabPanels = this.stackLayout.getItems(),
2559 remove = [],
2560 items = [];
2561
2562 // Remove tab panels with same names
2563 for ( i = 0, len = tabPanels.length; i < len; i++ ) {
2564 tabPanel = tabPanels[ i ];
2565 name = tabPanel.getName();
2566
2567 if ( Object.prototype.hasOwnProperty.call( this.tabPanels, name ) ) {
2568 // Correct the insertion index
2569 currentIndex = stackLayoutTabPanels.indexOf( this.tabPanels[ name ] );
2570 if ( currentIndex !== -1 && currentIndex + 1 < index ) {
2571 index--;
2572 }
2573 remove.push( this.tabPanels[ name ] );
2574 }
2575 }
2576 if ( remove.length ) {
2577 this.removeTabPanels( remove );
2578 }
2579
2580 // Add new tab panels
2581 for ( i = 0, len = tabPanels.length; i < len; i++ ) {
2582 tabPanel = tabPanels[ i ];
2583 name = tabPanel.getName();
2584 this.tabPanels[ tabPanel.getName() ] = tabPanel;
2585 item = new OO.ui.TabOptionWidget( { data: name } );
2586 tabPanel.setTabItem( item );
2587 items.push( item );
2588 }
2589
2590 if ( items.length ) {
2591 this.tabSelectWidget.addItems( items, index );
2592 this.selectFirstSelectableTabPanel();
2593 }
2594 this.stackLayout.addItems( tabPanels, index );
2595 this.emit( 'add', tabPanels, index );
2596
2597 return this;
2598 };
2599
2600 /**
2601 * Remove the specified tab panels from the index layout.
2602 *
2603 * To remove all tab panels from the index, you may wish to use the #clearTabPanels method instead.
2604 *
2605 * @param {OO.ui.TabPanelLayout[]} tabPanels An array of tab panels to remove
2606 * @fires remove
2607 * @chainable
2608 */
2609 OO.ui.IndexLayout.prototype.removeTabPanels = function ( tabPanels ) {
2610 var i, len, name, tabPanel,
2611 items = [];
2612
2613 for ( i = 0, len = tabPanels.length; i < len; i++ ) {
2614 tabPanel = tabPanels[ i ];
2615 name = tabPanel.getName();
2616 delete this.tabPanels[ name ];
2617 items.push( this.tabSelectWidget.findItemFromData( name ) );
2618 tabPanel.setTabItem( null );
2619 }
2620 if ( items.length ) {
2621 this.tabSelectWidget.removeItems( items );
2622 this.selectFirstSelectableTabPanel();
2623 }
2624 this.stackLayout.removeItems( tabPanels );
2625 this.emit( 'remove', tabPanels );
2626
2627 return this;
2628 };
2629
2630 /**
2631 * Clear all tab panels from the index layout.
2632 *
2633 * To remove only a subset of tab panels from the index, use the #removeTabPanels method.
2634 *
2635 * @fires remove
2636 * @chainable
2637 */
2638 OO.ui.IndexLayout.prototype.clearTabPanels = function () {
2639 var i, len,
2640 tabPanels = this.stackLayout.getItems();
2641
2642 this.tabPanels = {};
2643 this.currentTabPanelName = null;
2644 this.tabSelectWidget.clearItems();
2645 for ( i = 0, len = tabPanels.length; i < len; i++ ) {
2646 tabPanels[ i ].setTabItem( null );
2647 }
2648 this.stackLayout.clearItems();
2649
2650 this.emit( 'remove', tabPanels );
2651
2652 return this;
2653 };
2654
2655 /**
2656 * Set the current tab panel by symbolic name.
2657 *
2658 * @fires set
2659 * @param {string} name Symbolic name of tab panel
2660 */
2661 OO.ui.IndexLayout.prototype.setTabPanel = function ( name ) {
2662 var selectedItem,
2663 $focused,
2664 tabPanel = this.tabPanels[ name ],
2665 previousTabPanel = this.currentTabPanelName && this.tabPanels[ this.currentTabPanelName ];
2666
2667 if ( name !== this.currentTabPanelName ) {
2668 selectedItem = this.tabSelectWidget.findSelectedItem();
2669 if ( selectedItem && selectedItem.getData() !== name ) {
2670 this.tabSelectWidget.selectItemByData( name );
2671 }
2672 if ( tabPanel ) {
2673 if ( previousTabPanel ) {
2674 previousTabPanel.setActive( false );
2675 // Blur anything focused if the next tab panel doesn't have anything focusable.
2676 // This is not needed if the next tab panel has something focusable (because once it is focused
2677 // this blur happens automatically). If the layout is non-continuous, this check is
2678 // meaningless because the next tab panel is not visible yet and thus can't hold focus.
2679 if (
2680 this.autoFocus &&
2681 !OO.ui.isMobile() &&
2682 this.stackLayout.continuous &&
2683 OO.ui.findFocusable( tabPanel.$element ).length !== 0
2684 ) {
2685 $focused = previousTabPanel.$element.find( ':focus' );
2686 if ( $focused.length ) {
2687 $focused[ 0 ].blur();
2688 }
2689 }
2690 }
2691 this.currentTabPanelName = name;
2692 tabPanel.setActive( true );
2693 this.stackLayout.setItem( tabPanel );
2694 if ( !this.stackLayout.continuous && previousTabPanel ) {
2695 // This should not be necessary, since any inputs on the previous tab panel should have been
2696 // blurred when it was hidden, but browsers are not very consistent about this.
2697 $focused = previousTabPanel.$element.find( ':focus' );
2698 if ( $focused.length ) {
2699 $focused[ 0 ].blur();
2700 }
2701 }
2702 this.emit( 'set', tabPanel );
2703 }
2704 }
2705 };
2706
2707 /**
2708 * Select the first selectable tab panel.
2709 *
2710 * @chainable
2711 */
2712 OO.ui.IndexLayout.prototype.selectFirstSelectableTabPanel = function () {
2713 if ( !this.tabSelectWidget.findSelectedItem() ) {
2714 this.tabSelectWidget.selectItem( this.tabSelectWidget.findFirstSelectableItem() );
2715 }
2716
2717 return this;
2718 };
2719
2720 /**
2721 * ToggleWidget implements basic behavior of widgets with an on/off state.
2722 * Please see OO.ui.ToggleButtonWidget and OO.ui.ToggleSwitchWidget for examples.
2723 *
2724 * @abstract
2725 * @class
2726 * @extends OO.ui.Widget
2727 *
2728 * @constructor
2729 * @param {Object} [config] Configuration options
2730 * @cfg {boolean} [value=false] The toggle’s initial on/off state.
2731 * By default, the toggle is in the 'off' state.
2732 */
2733 OO.ui.ToggleWidget = function OoUiToggleWidget( config ) {
2734 // Configuration initialization
2735 config = config || {};
2736
2737 // Parent constructor
2738 OO.ui.ToggleWidget.parent.call( this, config );
2739
2740 // Properties
2741 this.value = null;
2742
2743 // Initialization
2744 this.$element.addClass( 'oo-ui-toggleWidget' );
2745 this.setValue( !!config.value );
2746 };
2747
2748 /* Setup */
2749
2750 OO.inheritClass( OO.ui.ToggleWidget, OO.ui.Widget );
2751
2752 /* Events */
2753
2754 /**
2755 * @event change
2756 *
2757 * A change event is emitted when the on/off state of the toggle changes.
2758 *
2759 * @param {boolean} value Value representing the new state of the toggle
2760 */
2761
2762 /* Methods */
2763
2764 /**
2765 * Get the value representing the toggle’s state.
2766 *
2767 * @return {boolean} The on/off state of the toggle
2768 */
2769 OO.ui.ToggleWidget.prototype.getValue = function () {
2770 return this.value;
2771 };
2772
2773 /**
2774 * Set the state of the toggle: `true` for 'on', `false` for 'off'.
2775 *
2776 * @param {boolean} value The state of the toggle
2777 * @fires change
2778 * @chainable
2779 */
2780 OO.ui.ToggleWidget.prototype.setValue = function ( value ) {
2781 value = !!value;
2782 if ( this.value !== value ) {
2783 this.value = value;
2784 this.emit( 'change', value );
2785 this.$element.toggleClass( 'oo-ui-toggleWidget-on', value );
2786 this.$element.toggleClass( 'oo-ui-toggleWidget-off', !value );
2787 }
2788 return this;
2789 };
2790
2791 /**
2792 * ToggleButtons are buttons that have a state (‘on’ or ‘off’) that is represented by a
2793 * Boolean value. Like other {@link OO.ui.ButtonWidget buttons}, toggle buttons can be
2794 * configured with {@link OO.ui.mixin.IconElement icons}, {@link OO.ui.mixin.IndicatorElement indicators},
2795 * {@link OO.ui.mixin.TitledElement titles}, {@link OO.ui.mixin.FlaggedElement styling flags},
2796 * and {@link OO.ui.mixin.LabelElement labels}. Please see
2797 * the [OOUI documentation][1] on MediaWiki for more information.
2798 *
2799 * @example
2800 * // Toggle buttons in the 'off' and 'on' state.
2801 * var toggleButton1 = new OO.ui.ToggleButtonWidget( {
2802 * label: 'Toggle Button off'
2803 * } );
2804 * var toggleButton2 = new OO.ui.ToggleButtonWidget( {
2805 * label: 'Toggle Button on',
2806 * value: true
2807 * } );
2808 * // Append the buttons to the DOM.
2809 * $( 'body' ).append( toggleButton1.$element, toggleButton2.$element );
2810 *
2811 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets/Buttons_and_Switches#Toggle_buttons
2812 *
2813 * @class
2814 * @extends OO.ui.ToggleWidget
2815 * @mixins OO.ui.mixin.ButtonElement
2816 * @mixins OO.ui.mixin.IconElement
2817 * @mixins OO.ui.mixin.IndicatorElement
2818 * @mixins OO.ui.mixin.LabelElement
2819 * @mixins OO.ui.mixin.TitledElement
2820 * @mixins OO.ui.mixin.FlaggedElement
2821 * @mixins OO.ui.mixin.TabIndexedElement
2822 *
2823 * @constructor
2824 * @param {Object} [config] Configuration options
2825 * @cfg {boolean} [value=false] The toggle button’s initial on/off
2826 * state. By default, the button is in the 'off' state.
2827 */
2828 OO.ui.ToggleButtonWidget = function OoUiToggleButtonWidget( config ) {
2829 // Configuration initialization
2830 config = config || {};
2831
2832 // Parent constructor
2833 OO.ui.ToggleButtonWidget.parent.call( this, config );
2834
2835 // Mixin constructors
2836 OO.ui.mixin.ButtonElement.call( this, $.extend( {}, config, { active: this.active } ) );
2837 OO.ui.mixin.IconElement.call( this, config );
2838 OO.ui.mixin.IndicatorElement.call( this, config );
2839 OO.ui.mixin.LabelElement.call( this, config );
2840 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
2841 OO.ui.mixin.FlaggedElement.call( this, config );
2842 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$button } ) );
2843
2844 // Events
2845 this.connect( this, { click: 'onAction' } );
2846
2847 // Initialization
2848 this.$button.append( this.$icon, this.$label, this.$indicator );
2849 this.$element
2850 .addClass( 'oo-ui-toggleButtonWidget' )
2851 .append( this.$button );
2852 };
2853
2854 /* Setup */
2855
2856 OO.inheritClass( OO.ui.ToggleButtonWidget, OO.ui.ToggleWidget );
2857 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.ButtonElement );
2858 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IconElement );
2859 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IndicatorElement );
2860 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.LabelElement );
2861 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TitledElement );
2862 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.FlaggedElement );
2863 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TabIndexedElement );
2864
2865 /* Static Properties */
2866
2867 /**
2868 * @static
2869 * @inheritdoc
2870 */
2871 OO.ui.ToggleButtonWidget.static.tagName = 'span';
2872
2873 /* Methods */
2874
2875 /**
2876 * Handle the button action being triggered.
2877 *
2878 * @private
2879 */
2880 OO.ui.ToggleButtonWidget.prototype.onAction = function () {
2881 this.setValue( !this.value );
2882 };
2883
2884 /**
2885 * @inheritdoc
2886 */
2887 OO.ui.ToggleButtonWidget.prototype.setValue = function ( value ) {
2888 value = !!value;
2889 if ( value !== this.value ) {
2890 // Might be called from parent constructor before ButtonElement constructor
2891 if ( this.$button ) {
2892 this.$button.attr( 'aria-pressed', value.toString() );
2893 }
2894 this.setActive( value );
2895 }
2896
2897 // Parent method
2898 OO.ui.ToggleButtonWidget.parent.prototype.setValue.call( this, value );
2899
2900 return this;
2901 };
2902
2903 /**
2904 * @inheritdoc
2905 */
2906 OO.ui.ToggleButtonWidget.prototype.setButtonElement = function ( $button ) {
2907 if ( this.$button ) {
2908 this.$button.removeAttr( 'aria-pressed' );
2909 }
2910 OO.ui.mixin.ButtonElement.prototype.setButtonElement.call( this, $button );
2911 this.$button.attr( 'aria-pressed', this.value.toString() );
2912 };
2913
2914 /**
2915 * ToggleSwitches are switches that slide on and off. Their state is represented by a Boolean
2916 * value (`true` for ‘on’, and `false` otherwise, the default). The ‘off’ state is represented
2917 * visually by a slider in the leftmost position.
2918 *
2919 * @example
2920 * // Toggle switches in the 'off' and 'on' position.
2921 * var toggleSwitch1 = new OO.ui.ToggleSwitchWidget();
2922 * var toggleSwitch2 = new OO.ui.ToggleSwitchWidget( {
2923 * value: true
2924 * } );
2925 *
2926 * // Create a FieldsetLayout to layout and label switches
2927 * var fieldset = new OO.ui.FieldsetLayout( {
2928 * label: 'Toggle switches'
2929 * } );
2930 * fieldset.addItems( [
2931 * new OO.ui.FieldLayout( toggleSwitch1, { label: 'Off', align: 'top' } ),
2932 * new OO.ui.FieldLayout( toggleSwitch2, { label: 'On', align: 'top' } )
2933 * ] );
2934 * $( 'body' ).append( fieldset.$element );
2935 *
2936 * @class
2937 * @extends OO.ui.ToggleWidget
2938 * @mixins OO.ui.mixin.TabIndexedElement
2939 *
2940 * @constructor
2941 * @param {Object} [config] Configuration options
2942 * @cfg {boolean} [value=false] The toggle switch’s initial on/off state.
2943 * By default, the toggle switch is in the 'off' position.
2944 */
2945 OO.ui.ToggleSwitchWidget = function OoUiToggleSwitchWidget( config ) {
2946 // Parent constructor
2947 OO.ui.ToggleSwitchWidget.parent.call( this, config );
2948
2949 // Mixin constructors
2950 OO.ui.mixin.TabIndexedElement.call( this, config );
2951
2952 // Properties
2953 this.dragging = false;
2954 this.dragStart = null;
2955 this.sliding = false;
2956 this.$glow = $( '<span>' );
2957 this.$grip = $( '<span>' );
2958
2959 // Events
2960 this.$element.on( {
2961 click: this.onClick.bind( this ),
2962 keypress: this.onKeyPress.bind( this )
2963 } );
2964
2965 // Initialization
2966 this.$glow.addClass( 'oo-ui-toggleSwitchWidget-glow' );
2967 this.$grip.addClass( 'oo-ui-toggleSwitchWidget-grip' );
2968 this.$element
2969 .addClass( 'oo-ui-toggleSwitchWidget' )
2970 .attr( 'role', 'checkbox' )
2971 .append( this.$glow, this.$grip );
2972 };
2973
2974 /* Setup */
2975
2976 OO.inheritClass( OO.ui.ToggleSwitchWidget, OO.ui.ToggleWidget );
2977 OO.mixinClass( OO.ui.ToggleSwitchWidget, OO.ui.mixin.TabIndexedElement );
2978
2979 /* Methods */
2980
2981 /**
2982 * Handle mouse click events.
2983 *
2984 * @private
2985 * @param {jQuery.Event} e Mouse click event
2986 */
2987 OO.ui.ToggleSwitchWidget.prototype.onClick = function ( e ) {
2988 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
2989 this.setValue( !this.value );
2990 }
2991 return false;
2992 };
2993
2994 /**
2995 * Handle key press events.
2996 *
2997 * @private
2998 * @param {jQuery.Event} e Key press event
2999 */
3000 OO.ui.ToggleSwitchWidget.prototype.onKeyPress = function ( e ) {
3001 if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
3002 this.setValue( !this.value );
3003 return false;
3004 }
3005 };
3006
3007 /**
3008 * @inheritdoc
3009 */
3010 OO.ui.ToggleSwitchWidget.prototype.setValue = function ( value ) {
3011 OO.ui.ToggleSwitchWidget.parent.prototype.setValue.call( this, value );
3012 this.$element.attr( 'aria-checked', this.value.toString() );
3013 return this;
3014 };
3015
3016 /**
3017 * @inheritdoc
3018 */
3019 OO.ui.ToggleSwitchWidget.prototype.simulateLabelClick = function () {
3020 if ( !this.isDisabled() ) {
3021 this.setValue( !this.value );
3022 }
3023 this.focus();
3024 };
3025
3026 /**
3027 * OutlineControlsWidget is a set of controls for an {@link OO.ui.OutlineSelectWidget outline select widget}.
3028 * Controls include moving items up and down, removing items, and adding different kinds of items.
3029 *
3030 * **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
3031 *
3032 * @class
3033 * @extends OO.ui.Widget
3034 * @mixins OO.ui.mixin.GroupElement
3035 * @mixins OO.ui.mixin.IconElement
3036 *
3037 * @constructor
3038 * @param {OO.ui.OutlineSelectWidget} outline Outline to control
3039 * @param {Object} [config] Configuration options
3040 * @cfg {Object} [abilities] List of abilties
3041 * @cfg {boolean} [abilities.move=true] Allow moving movable items
3042 * @cfg {boolean} [abilities.remove=true] Allow removing removable items
3043 */
3044 OO.ui.OutlineControlsWidget = function OoUiOutlineControlsWidget( outline, config ) {
3045 // Allow passing positional parameters inside the config object
3046 if ( OO.isPlainObject( outline ) && config === undefined ) {
3047 config = outline;
3048 outline = config.outline;
3049 }
3050
3051 // Configuration initialization
3052 config = $.extend( { icon: 'add' }, config );
3053
3054 // Parent constructor
3055 OO.ui.OutlineControlsWidget.parent.call( this, config );
3056
3057 // Mixin constructors
3058 OO.ui.mixin.GroupElement.call( this, config );
3059 OO.ui.mixin.IconElement.call( this, config );
3060
3061 // Properties
3062 this.outline = outline;
3063 this.$movers = $( '<div>' );
3064 this.upButton = new OO.ui.ButtonWidget( {
3065 framed: false,
3066 icon: 'collapse',
3067 title: OO.ui.msg( 'ooui-outline-control-move-up' )
3068 } );
3069 this.downButton = new OO.ui.ButtonWidget( {
3070 framed: false,
3071 icon: 'expand',
3072 title: OO.ui.msg( 'ooui-outline-control-move-down' )
3073 } );
3074 this.removeButton = new OO.ui.ButtonWidget( {
3075 framed: false,
3076 icon: 'trash',
3077 title: OO.ui.msg( 'ooui-outline-control-remove' )
3078 } );
3079 this.abilities = { move: true, remove: true };
3080
3081 // Events
3082 outline.connect( this, {
3083 select: 'onOutlineChange',
3084 add: 'onOutlineChange',
3085 remove: 'onOutlineChange'
3086 } );
3087 this.upButton.connect( this, { click: [ 'emit', 'move', -1 ] } );
3088 this.downButton.connect( this, { click: [ 'emit', 'move', 1 ] } );
3089 this.removeButton.connect( this, { click: [ 'emit', 'remove' ] } );
3090
3091 // Initialization
3092 this.$element.addClass( 'oo-ui-outlineControlsWidget' );
3093 this.$group.addClass( 'oo-ui-outlineControlsWidget-items' );
3094 this.$movers
3095 .addClass( 'oo-ui-outlineControlsWidget-movers' )
3096 .append( this.removeButton.$element, this.upButton.$element, this.downButton.$element );
3097 this.$element.append( this.$icon, this.$group, this.$movers );
3098 this.setAbilities( config.abilities || {} );
3099 };
3100
3101 /* Setup */
3102
3103 OO.inheritClass( OO.ui.OutlineControlsWidget, OO.ui.Widget );
3104 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.GroupElement );
3105 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.IconElement );
3106
3107 /* Events */
3108
3109 /**
3110 * @event move
3111 * @param {number} places Number of places to move
3112 */
3113
3114 /**
3115 * @event remove
3116 */
3117
3118 /* Methods */
3119
3120 /**
3121 * Set abilities.
3122 *
3123 * @param {Object} abilities List of abilties
3124 * @param {boolean} [abilities.move] Allow moving movable items
3125 * @param {boolean} [abilities.remove] Allow removing removable items
3126 */
3127 OO.ui.OutlineControlsWidget.prototype.setAbilities = function ( abilities ) {
3128 var ability;
3129
3130 for ( ability in this.abilities ) {
3131 if ( abilities[ ability ] !== undefined ) {
3132 this.abilities[ ability ] = !!abilities[ ability ];
3133 }
3134 }
3135
3136 this.onOutlineChange();
3137 };
3138
3139 /**
3140 * Handle outline change events.
3141 *
3142 * @private
3143 */
3144 OO.ui.OutlineControlsWidget.prototype.onOutlineChange = function () {
3145 var i, len, firstMovable, lastMovable,
3146 items = this.outline.getItems(),
3147 selectedItem = this.outline.findSelectedItem(),
3148 movable = this.abilities.move && selectedItem && selectedItem.isMovable(),
3149 removable = this.abilities.remove && selectedItem && selectedItem.isRemovable();
3150
3151 if ( movable ) {
3152 i = -1;
3153 len = items.length;
3154 while ( ++i < len ) {
3155 if ( items[ i ].isMovable() ) {
3156 firstMovable = items[ i ];
3157 break;
3158 }
3159 }
3160 i = len;
3161 while ( i-- ) {
3162 if ( items[ i ].isMovable() ) {
3163 lastMovable = items[ i ];
3164 break;
3165 }
3166 }
3167 }
3168 this.upButton.setDisabled( !movable || selectedItem === firstMovable );
3169 this.downButton.setDisabled( !movable || selectedItem === lastMovable );
3170 this.removeButton.setDisabled( !removable );
3171 };
3172
3173 /**
3174 * OutlineOptionWidget is an item in an {@link OO.ui.OutlineSelectWidget OutlineSelectWidget}.
3175 *
3176 * Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}, which contain
3177 * {@link OO.ui.PageLayout page layouts}. See {@link OO.ui.BookletLayout BookletLayout}
3178 * for an example.
3179 *
3180 * @class
3181 * @extends OO.ui.DecoratedOptionWidget
3182 *
3183 * @constructor
3184 * @param {Object} [config] Configuration options
3185 * @cfg {number} [level] Indentation level
3186 * @cfg {boolean} [movable] Allow modification from {@link OO.ui.OutlineControlsWidget outline controls}.
3187 */
3188 OO.ui.OutlineOptionWidget = function OoUiOutlineOptionWidget( config ) {
3189 // Configuration initialization
3190 config = config || {};
3191
3192 // Parent constructor
3193 OO.ui.OutlineOptionWidget.parent.call( this, config );
3194
3195 // Properties
3196 this.level = 0;
3197 this.movable = !!config.movable;
3198 this.removable = !!config.removable;
3199
3200 // Initialization
3201 this.$element.addClass( 'oo-ui-outlineOptionWidget' );
3202 this.setLevel( config.level );
3203 };
3204
3205 /* Setup */
3206
3207 OO.inheritClass( OO.ui.OutlineOptionWidget, OO.ui.DecoratedOptionWidget );
3208
3209 /* Static Properties */
3210
3211 /**
3212 * @static
3213 * @inheritdoc
3214 */
3215 OO.ui.OutlineOptionWidget.static.highlightable = true;
3216
3217 /**
3218 * @static
3219 * @inheritdoc
3220 */
3221 OO.ui.OutlineOptionWidget.static.scrollIntoViewOnSelect = true;
3222
3223 /**
3224 * @static
3225 * @inheritable
3226 * @property {string}
3227 */
3228 OO.ui.OutlineOptionWidget.static.levelClass = 'oo-ui-outlineOptionWidget-level-';
3229
3230 /**
3231 * @static
3232 * @inheritable
3233 * @property {number}
3234 */
3235 OO.ui.OutlineOptionWidget.static.levels = 3;
3236
3237 /* Methods */
3238
3239 /**
3240 * Check if item is movable.
3241 *
3242 * Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3243 *
3244 * @return {boolean} Item is movable
3245 */
3246 OO.ui.OutlineOptionWidget.prototype.isMovable = function () {
3247 return this.movable;
3248 };
3249
3250 /**
3251 * Check if item is removable.
3252 *
3253 * Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3254 *
3255 * @return {boolean} Item is removable
3256 */
3257 OO.ui.OutlineOptionWidget.prototype.isRemovable = function () {
3258 return this.removable;
3259 };
3260
3261 /**
3262 * Get indentation level.
3263 *
3264 * @return {number} Indentation level
3265 */
3266 OO.ui.OutlineOptionWidget.prototype.getLevel = function () {
3267 return this.level;
3268 };
3269
3270 /**
3271 * @inheritdoc
3272 */
3273 OO.ui.OutlineOptionWidget.prototype.setPressed = function ( state ) {
3274 OO.ui.OutlineOptionWidget.parent.prototype.setPressed.call( this, state );
3275 if ( this.pressed ) {
3276 this.setFlags( { progressive: true } );
3277 } else if ( !this.selected ) {
3278 this.setFlags( { progressive: false } );
3279 }
3280 return this;
3281 };
3282
3283 /**
3284 * Set movability.
3285 *
3286 * Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3287 *
3288 * @param {boolean} movable Item is movable
3289 * @chainable
3290 */
3291 OO.ui.OutlineOptionWidget.prototype.setMovable = function ( movable ) {
3292 this.movable = !!movable;
3293 this.updateThemeClasses();
3294 return this;
3295 };
3296
3297 /**
3298 * Set removability.
3299 *
3300 * Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3301 *
3302 * @param {boolean} removable Item is removable
3303 * @chainable
3304 */
3305 OO.ui.OutlineOptionWidget.prototype.setRemovable = function ( removable ) {
3306 this.removable = !!removable;
3307 this.updateThemeClasses();
3308 return this;
3309 };
3310
3311 /**
3312 * @inheritdoc
3313 */
3314 OO.ui.OutlineOptionWidget.prototype.setSelected = function ( state ) {
3315 OO.ui.OutlineOptionWidget.parent.prototype.setSelected.call( this, state );
3316 if ( this.selected ) {
3317 this.setFlags( { progressive: true } );
3318 } else {
3319 this.setFlags( { progressive: false } );
3320 }
3321 return this;
3322 };
3323
3324 /**
3325 * Set indentation level.
3326 *
3327 * @param {number} [level=0] Indentation level, in the range of [0,#maxLevel]
3328 * @chainable
3329 */
3330 OO.ui.OutlineOptionWidget.prototype.setLevel = function ( level ) {
3331 var levels = this.constructor.static.levels,
3332 levelClass = this.constructor.static.levelClass,
3333 i = levels;
3334
3335 this.level = level ? Math.max( 0, Math.min( levels - 1, level ) ) : 0;
3336 while ( i-- ) {
3337 if ( this.level === i ) {
3338 this.$element.addClass( levelClass + i );
3339 } else {
3340 this.$element.removeClass( levelClass + i );
3341 }
3342 }
3343 this.updateThemeClasses();
3344
3345 return this;
3346 };
3347
3348 /**
3349 * OutlineSelectWidget is a structured list that contains {@link OO.ui.OutlineOptionWidget outline options}
3350 * A set of controls can be provided with an {@link OO.ui.OutlineControlsWidget outline controls} widget.
3351 *
3352 * **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
3353 *
3354 * @class
3355 * @extends OO.ui.SelectWidget
3356 * @mixins OO.ui.mixin.TabIndexedElement
3357 *
3358 * @constructor
3359 * @param {Object} [config] Configuration options
3360 */
3361 OO.ui.OutlineSelectWidget = function OoUiOutlineSelectWidget( config ) {
3362 // Parent constructor
3363 OO.ui.OutlineSelectWidget.parent.call( this, config );
3364
3365 // Mixin constructors
3366 OO.ui.mixin.TabIndexedElement.call( this, config );
3367
3368 // Events
3369 this.$element.on( {
3370 focus: this.bindKeyDownListener.bind( this ),
3371 blur: this.unbindKeyDownListener.bind( this )
3372 } );
3373
3374 // Initialization
3375 this.$element.addClass( 'oo-ui-outlineSelectWidget' );
3376 };
3377
3378 /* Setup */
3379
3380 OO.inheritClass( OO.ui.OutlineSelectWidget, OO.ui.SelectWidget );
3381 OO.mixinClass( OO.ui.OutlineSelectWidget, OO.ui.mixin.TabIndexedElement );
3382
3383 /**
3384 * ButtonOptionWidget is a special type of {@link OO.ui.mixin.ButtonElement button element} that
3385 * can be selected and configured with data. The class is
3386 * used with OO.ui.ButtonSelectWidget to create a selection of button options. Please see the
3387 * [OOUI documentation on MediaWiki] [1] for more information.
3388 *
3389 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets/Selects_and_Options#Button_selects_and_options
3390 *
3391 * @class
3392 * @extends OO.ui.OptionWidget
3393 * @mixins OO.ui.mixin.ButtonElement
3394 * @mixins OO.ui.mixin.IconElement
3395 * @mixins OO.ui.mixin.IndicatorElement
3396 * @mixins OO.ui.mixin.TitledElement
3397 *
3398 * @constructor
3399 * @param {Object} [config] Configuration options
3400 */
3401 OO.ui.ButtonOptionWidget = function OoUiButtonOptionWidget( config ) {
3402 // Configuration initialization
3403 config = config || {};
3404
3405 // Parent constructor
3406 OO.ui.ButtonOptionWidget.parent.call( this, config );
3407
3408 // Mixin constructors
3409 OO.ui.mixin.ButtonElement.call( this, config );
3410 OO.ui.mixin.IconElement.call( this, config );
3411 OO.ui.mixin.IndicatorElement.call( this, config );
3412 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
3413
3414 // Initialization
3415 this.$element.addClass( 'oo-ui-buttonOptionWidget' );
3416 this.$button.append( this.$icon, this.$label, this.$indicator );
3417 this.$element.append( this.$button );
3418 };
3419
3420 /* Setup */
3421
3422 OO.inheritClass( OO.ui.ButtonOptionWidget, OO.ui.OptionWidget );
3423 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.ButtonElement );
3424 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IconElement );
3425 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IndicatorElement );
3426 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.TitledElement );
3427
3428 /* Static Properties */
3429
3430 /**
3431 * Allow button mouse down events to pass through so they can be handled by the parent select widget
3432 *
3433 * @static
3434 * @inheritdoc
3435 */
3436 OO.ui.ButtonOptionWidget.static.cancelButtonMouseDownEvents = false;
3437
3438 /**
3439 * @static
3440 * @inheritdoc
3441 */
3442 OO.ui.ButtonOptionWidget.static.highlightable = false;
3443
3444 /* Methods */
3445
3446 /**
3447 * @inheritdoc
3448 */
3449 OO.ui.ButtonOptionWidget.prototype.setSelected = function ( state ) {
3450 OO.ui.ButtonOptionWidget.parent.prototype.setSelected.call( this, state );
3451
3452 if ( this.constructor.static.selectable ) {
3453 this.setActive( state );
3454 }
3455
3456 return this;
3457 };
3458
3459 /**
3460 * ButtonSelectWidget is a {@link OO.ui.SelectWidget select widget} that contains
3461 * button options and is used together with
3462 * OO.ui.ButtonOptionWidget. The ButtonSelectWidget provides an interface for
3463 * highlighting, choosing, and selecting mutually exclusive options. Please see
3464 * the [OOUI documentation on MediaWiki] [1] for more information.
3465 *
3466 * @example
3467 * // Example: A ButtonSelectWidget that contains three ButtonOptionWidgets
3468 * var option1 = new OO.ui.ButtonOptionWidget( {
3469 * data: 1,
3470 * label: 'Option 1',
3471 * title: 'Button option 1'
3472 * } );
3473 *
3474 * var option2 = new OO.ui.ButtonOptionWidget( {
3475 * data: 2,
3476 * label: 'Option 2',
3477 * title: 'Button option 2'
3478 * } );
3479 *
3480 * var option3 = new OO.ui.ButtonOptionWidget( {
3481 * data: 3,
3482 * label: 'Option 3',
3483 * title: 'Button option 3'
3484 * } );
3485 *
3486 * var buttonSelect=new OO.ui.ButtonSelectWidget( {
3487 * items: [ option1, option2, option3 ]
3488 * } );
3489 * $( 'body' ).append( buttonSelect.$element );
3490 *
3491 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets/Selects_and_Options
3492 *
3493 * @class
3494 * @extends OO.ui.SelectWidget
3495 * @mixins OO.ui.mixin.TabIndexedElement
3496 *
3497 * @constructor
3498 * @param {Object} [config] Configuration options
3499 */
3500 OO.ui.ButtonSelectWidget = function OoUiButtonSelectWidget( config ) {
3501 // Parent constructor
3502 OO.ui.ButtonSelectWidget.parent.call( this, config );
3503
3504 // Mixin constructors
3505 OO.ui.mixin.TabIndexedElement.call( this, config );
3506
3507 // Events
3508 this.$element.on( {
3509 focus: this.bindKeyDownListener.bind( this ),
3510 blur: this.unbindKeyDownListener.bind( this )
3511 } );
3512
3513 // Initialization
3514 this.$element.addClass( 'oo-ui-buttonSelectWidget' );
3515 };
3516
3517 /* Setup */
3518
3519 OO.inheritClass( OO.ui.ButtonSelectWidget, OO.ui.SelectWidget );
3520 OO.mixinClass( OO.ui.ButtonSelectWidget, OO.ui.mixin.TabIndexedElement );
3521
3522 /**
3523 * TabOptionWidget is an item in a {@link OO.ui.TabSelectWidget TabSelectWidget}.
3524 *
3525 * Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}, which contain
3526 * {@link OO.ui.TabPanelLayout tab panel layouts}. See {@link OO.ui.IndexLayout IndexLayout}
3527 * for an example.
3528 *
3529 * @class
3530 * @extends OO.ui.OptionWidget
3531 *
3532 * @constructor
3533 * @param {Object} [config] Configuration options
3534 */
3535 OO.ui.TabOptionWidget = function OoUiTabOptionWidget( config ) {
3536 // Configuration initialization
3537 config = config || {};
3538
3539 // Parent constructor
3540 OO.ui.TabOptionWidget.parent.call( this, config );
3541
3542 // Initialization
3543 this.$element.addClass( 'oo-ui-tabOptionWidget' );
3544 };
3545
3546 /* Setup */
3547
3548 OO.inheritClass( OO.ui.TabOptionWidget, OO.ui.OptionWidget );
3549
3550 /* Static Properties */
3551
3552 /**
3553 * @static
3554 * @inheritdoc
3555 */
3556 OO.ui.TabOptionWidget.static.highlightable = false;
3557
3558 /**
3559 * TabSelectWidget is a list that contains {@link OO.ui.TabOptionWidget tab options}
3560 *
3561 * **Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}.**
3562 *
3563 * @class
3564 * @extends OO.ui.SelectWidget
3565 * @mixins OO.ui.mixin.TabIndexedElement
3566 *
3567 * @constructor
3568 * @param {Object} [config] Configuration options
3569 */
3570 OO.ui.TabSelectWidget = function OoUiTabSelectWidget( config ) {
3571 // Parent constructor
3572 OO.ui.TabSelectWidget.parent.call( this, config );
3573
3574 // Mixin constructors
3575 OO.ui.mixin.TabIndexedElement.call( this, config );
3576
3577 // Events
3578 this.$element.on( {
3579 focus: this.bindKeyDownListener.bind( this ),
3580 blur: this.unbindKeyDownListener.bind( this )
3581 } );
3582
3583 // Initialization
3584 this.$element.addClass( 'oo-ui-tabSelectWidget' );
3585 };
3586
3587 /* Setup */
3588
3589 OO.inheritClass( OO.ui.TabSelectWidget, OO.ui.SelectWidget );
3590 OO.mixinClass( OO.ui.TabSelectWidget, OO.ui.mixin.TabIndexedElement );
3591
3592 /**
3593 * CapsuleItemWidgets are used within a {@link OO.ui.CapsuleMultiselectWidget
3594 * CapsuleMultiselectWidget} to display the selected items.
3595 *
3596 * @class
3597 * @extends OO.ui.Widget
3598 * @mixins OO.ui.mixin.ItemWidget
3599 * @mixins OO.ui.mixin.LabelElement
3600 * @mixins OO.ui.mixin.FlaggedElement
3601 * @mixins OO.ui.mixin.TabIndexedElement
3602 *
3603 * @constructor
3604 * @param {Object} [config] Configuration options
3605 */
3606 OO.ui.CapsuleItemWidget = function OoUiCapsuleItemWidget( config ) {
3607 // Configuration initialization
3608 config = config || {};
3609
3610 // Parent constructor
3611 OO.ui.CapsuleItemWidget.parent.call( this, config );
3612
3613 // Mixin constructors
3614 OO.ui.mixin.ItemWidget.call( this );
3615 OO.ui.mixin.LabelElement.call( this, config );
3616 OO.ui.mixin.FlaggedElement.call( this, config );
3617 OO.ui.mixin.TabIndexedElement.call( this, config );
3618
3619 // Events
3620 this.closeButton = new OO.ui.ButtonWidget( {
3621 framed: false,
3622 icon: 'close',
3623 tabIndex: -1,
3624 title: OO.ui.msg( 'ooui-item-remove' )
3625 } ).on( 'click', this.onCloseClick.bind( this ) );
3626
3627 this.on( 'disable', function ( disabled ) {
3628 this.closeButton.setDisabled( disabled );
3629 }.bind( this ) );
3630
3631 // Initialization
3632 this.$element
3633 .on( {
3634 click: this.onClick.bind( this ),
3635 keydown: this.onKeyDown.bind( this )
3636 } )
3637 .addClass( 'oo-ui-capsuleItemWidget' )
3638 .append( this.$label, this.closeButton.$element );
3639 };
3640
3641 /* Setup */
3642
3643 OO.inheritClass( OO.ui.CapsuleItemWidget, OO.ui.Widget );
3644 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.ItemWidget );
3645 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.LabelElement );
3646 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.FlaggedElement );
3647 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.TabIndexedElement );
3648
3649 /* Methods */
3650
3651 /**
3652 * Handle close icon clicks
3653 */
3654 OO.ui.CapsuleItemWidget.prototype.onCloseClick = function () {
3655 var element = this.getElementGroup();
3656
3657 if ( element && $.isFunction( element.removeItems ) ) {
3658 element.removeItems( [ this ] );
3659 element.focus();
3660 }
3661 };
3662
3663 /**
3664 * Handle click event for the entire capsule
3665 */
3666 OO.ui.CapsuleItemWidget.prototype.onClick = function () {
3667 var element = this.getElementGroup();
3668
3669 if ( !this.isDisabled() && element && $.isFunction( element.editItem ) ) {
3670 element.editItem( this );
3671 }
3672 };
3673
3674 /**
3675 * Handle keyDown event for the entire capsule
3676 *
3677 * @param {jQuery.Event} e Key down event
3678 */
3679 OO.ui.CapsuleItemWidget.prototype.onKeyDown = function ( e ) {
3680 var element = this.getElementGroup();
3681
3682 if ( e.keyCode === OO.ui.Keys.BACKSPACE || e.keyCode === OO.ui.Keys.DELETE ) {
3683 element.removeItems( [ this ] );
3684 element.focus();
3685 return false;
3686 } else if ( e.keyCode === OO.ui.Keys.ENTER ) {
3687 element.editItem( this );
3688 return false;
3689 } else if ( e.keyCode === OO.ui.Keys.LEFT ) {
3690 element.getPreviousItem( this ).focus();
3691 } else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
3692 element.getNextItem( this ).focus();
3693 }
3694 };
3695
3696 /**
3697 * CapsuleMultiselectWidgets are something like a {@link OO.ui.ComboBoxInputWidget combo box widget}
3698 * that allows for selecting multiple values.
3699 *
3700 * For more information about menus and options, please see the [OOUI documentation on MediaWiki][1].
3701 *
3702 * @example
3703 * // Example: A CapsuleMultiselectWidget.
3704 * var capsule = new OO.ui.CapsuleMultiselectWidget( {
3705 * label: 'CapsuleMultiselectWidget',
3706 * selected: [ 'Option 1', 'Option 3' ],
3707 * menu: {
3708 * items: [
3709 * new OO.ui.MenuOptionWidget( {
3710 * data: 'Option 1',
3711 * label: 'Option One'
3712 * } ),
3713 * new OO.ui.MenuOptionWidget( {
3714 * data: 'Option 2',
3715 * label: 'Option Two'
3716 * } ),
3717 * new OO.ui.MenuOptionWidget( {
3718 * data: 'Option 3',
3719 * label: 'Option Three'
3720 * } ),
3721 * new OO.ui.MenuOptionWidget( {
3722 * data: 'Option 4',
3723 * label: 'Option Four'
3724 * } ),
3725 * new OO.ui.MenuOptionWidget( {
3726 * data: 'Option 5',
3727 * label: 'Option Five'
3728 * } )
3729 * ]
3730 * }
3731 * } );
3732 * $( 'body' ).append( capsule.$element );
3733 *
3734 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets/Selects_and_Options#Menu_selects_and_options
3735 *
3736 * @class
3737 * @extends OO.ui.Widget
3738 * @mixins OO.ui.mixin.GroupElement
3739 * @mixins OO.ui.mixin.PopupElement
3740 * @mixins OO.ui.mixin.TabIndexedElement
3741 * @mixins OO.ui.mixin.IndicatorElement
3742 * @mixins OO.ui.mixin.IconElement
3743 * @uses OO.ui.CapsuleItemWidget
3744 * @uses OO.ui.MenuSelectWidget
3745 *
3746 * @constructor
3747 * @param {Object} [config] Configuration options
3748 * @cfg {string} [placeholder] Placeholder text
3749 * @cfg {boolean} [allowArbitrary=false] Allow data items to be added even if not present in the menu.
3750 * @cfg {boolean} [allowDuplicates=false] Allow duplicate items to be added.
3751 * @cfg {Object} [menu] (required) Configuration options to pass to the
3752 * {@link OO.ui.MenuSelectWidget menu select widget}.
3753 * @cfg {Object} [popup] Configuration options to pass to the {@link OO.ui.PopupWidget popup widget}.
3754 * If specified, this popup will be shown instead of the menu (but the menu
3755 * will still be used for item labels and allowArbitrary=false). The widgets
3756 * in the popup should use {@link #addItemsFromData} or {@link #addItems} as necessary.
3757 * @cfg {jQuery} [$overlay=this.$element] Render the menu or popup into a separate layer.
3758 * This configuration is useful in cases where the expanded menu is larger than
3759 * its containing `<div>`. The specified overlay layer is usually on top of
3760 * the containing `<div>` and has a larger area. By default, the menu uses
3761 * relative positioning.
3762 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
3763 */
3764 OO.ui.CapsuleMultiselectWidget = function OoUiCapsuleMultiselectWidget( config ) {
3765 var $tabFocus;
3766
3767 // Parent constructor
3768 OO.ui.CapsuleMultiselectWidget.parent.call( this, config );
3769
3770 // Configuration initialization
3771 config = $.extend( {
3772 allowArbitrary: false,
3773 allowDuplicates: false
3774 }, config );
3775
3776 // Properties (must be set before mixin constructor calls)
3777 this.$handle = $( '<div>' );
3778 this.$input = config.popup ? null : $( '<input>' );
3779 if ( config.placeholder !== undefined && config.placeholder !== '' ) {
3780 this.$input.attr( 'placeholder', config.placeholder );
3781 }
3782
3783 // Mixin constructors
3784 OO.ui.mixin.GroupElement.call( this, config );
3785 if ( config.popup ) {
3786 config.popup = $.extend( {}, config.popup, {
3787 align: 'forwards',
3788 anchor: false
3789 } );
3790 OO.ui.mixin.PopupElement.call( this, config );
3791 $tabFocus = $( '<span>' );
3792 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: $tabFocus } ) );
3793 } else {
3794 this.popup = null;
3795 $tabFocus = null;
3796 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$input } ) );
3797 }
3798 OO.ui.mixin.IndicatorElement.call( this, config );
3799 OO.ui.mixin.IconElement.call( this, config );
3800
3801 // Properties
3802 this.$content = $( '<div>' );
3803 this.allowArbitrary = config.allowArbitrary;
3804 this.allowDuplicates = config.allowDuplicates;
3805 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
3806 this.menu = new OO.ui.MenuSelectWidget( $.extend(
3807 {
3808 widget: this,
3809 $input: this.$input,
3810 $floatableContainer: this.$element,
3811 filterFromInput: true,
3812 disabled: this.isDisabled()
3813 },
3814 config.menu
3815 ) );
3816
3817 // Events
3818 if ( this.popup ) {
3819 $tabFocus.on( {
3820 focus: this.focus.bind( this )
3821 } );
3822 this.popup.$element.on( 'focusout', this.onPopupFocusOut.bind( this ) );
3823 if ( this.popup.$autoCloseIgnore ) {
3824 this.popup.$autoCloseIgnore.on( 'focusout', this.onPopupFocusOut.bind( this ) );
3825 }
3826 this.popup.connect( this, {
3827 toggle: function ( visible ) {
3828 $tabFocus.toggle( !visible );
3829 }
3830 } );
3831 } else {
3832 this.$input.on( {
3833 focus: this.onInputFocus.bind( this ),
3834 blur: this.onInputBlur.bind( this ),
3835 'propertychange change click mouseup keydown keyup input cut paste select focus':
3836 OO.ui.debounce( this.updateInputSize.bind( this ) ),
3837 keydown: this.onKeyDown.bind( this ),
3838 keypress: this.onKeyPress.bind( this )
3839 } );
3840 }
3841 this.menu.connect( this, {
3842 choose: 'onMenuChoose',
3843 toggle: 'onMenuToggle',
3844 add: 'onMenuItemsChange',
3845 remove: 'onMenuItemsChange'
3846 } );
3847 this.$handle.on( {
3848 mousedown: this.onMouseDown.bind( this )
3849 } );
3850
3851 // Initialization
3852 if ( this.$input ) {
3853 this.$input.prop( 'disabled', this.isDisabled() );
3854 this.$input.attr( {
3855 role: 'combobox',
3856 'aria-owns': this.menu.getElementId(),
3857 'aria-autocomplete': 'list'
3858 } );
3859 }
3860 if ( config.data ) {
3861 this.setItemsFromData( config.data );
3862 }
3863 this.$content.addClass( 'oo-ui-capsuleMultiselectWidget-content' )
3864 .append( this.$group );
3865 this.$group.addClass( 'oo-ui-capsuleMultiselectWidget-group' );
3866 this.$handle.addClass( 'oo-ui-capsuleMultiselectWidget-handle' )
3867 .append( this.$indicator, this.$icon, this.$content );
3868 this.$element.addClass( 'oo-ui-capsuleMultiselectWidget' )
3869 .append( this.$handle );
3870 if ( this.popup ) {
3871 this.popup.$element.addClass( 'oo-ui-capsuleMultiselectWidget-popup' );
3872 this.$content.append( $tabFocus );
3873 this.$overlay.append( this.popup.$element );
3874 } else {
3875 this.$content.append( this.$input );
3876 this.$overlay.append( this.menu.$element );
3877 }
3878 if ( $tabFocus ) {
3879 $tabFocus.addClass( 'oo-ui-capsuleMultiselectWidget-focusTrap' );
3880 }
3881
3882 // Input size needs to be calculated after everything else is rendered
3883 setTimeout( function () {
3884 if ( this.$input ) {
3885 this.updateInputSize();
3886 }
3887 }.bind( this ) );
3888
3889 this.onMenuItemsChange();
3890 };
3891
3892 /* Setup */
3893
3894 OO.inheritClass( OO.ui.CapsuleMultiselectWidget, OO.ui.Widget );
3895 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.GroupElement );
3896 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.PopupElement );
3897 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.TabIndexedElement );
3898 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IndicatorElement );
3899 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IconElement );
3900
3901 /* Events */
3902
3903 /**
3904 * @event change
3905 *
3906 * A change event is emitted when the set of selected items changes.
3907 *
3908 * @param {Mixed[]} datas Data of the now-selected items
3909 */
3910
3911 /**
3912 * @event resize
3913 *
3914 * A resize event is emitted when the widget's dimensions change to accomodate newly added items or
3915 * current user input.
3916 */
3917
3918 /* Methods */
3919
3920 /**
3921 * Construct a OO.ui.CapsuleItemWidget (or a subclass thereof) from given label and data.
3922 * May return `null` if the given label and data are not valid.
3923 *
3924 * @protected
3925 * @param {Mixed} data Custom data of any type.
3926 * @param {string} label The label text.
3927 * @return {OO.ui.CapsuleItemWidget|null}
3928 */
3929 OO.ui.CapsuleMultiselectWidget.prototype.createItemWidget = function ( data, label ) {
3930 if ( label === '' ) {
3931 return null;
3932 }
3933 return new OO.ui.CapsuleItemWidget( { data: data, label: label } );
3934 };
3935
3936 /**
3937 * @inheritdoc
3938 */
3939 OO.ui.CapsuleMultiselectWidget.prototype.getInputId = function () {
3940 if ( !this.$input ) {
3941 return null;
3942 }
3943 return OO.ui.mixin.TabIndexedElement.prototype.getInputId.call( this );
3944 };
3945
3946 /**
3947 * Get the data of the items in the capsule
3948 *
3949 * @return {Mixed[]}
3950 */
3951 OO.ui.CapsuleMultiselectWidget.prototype.getItemsData = function () {
3952 return this.getItems().map( function ( item ) {
3953 return item.data;
3954 } );
3955 };
3956
3957 /**
3958 * Set the items in the capsule by providing data
3959 *
3960 * @chainable
3961 * @param {Mixed[]} datas
3962 * @return {OO.ui.CapsuleMultiselectWidget}
3963 */
3964 OO.ui.CapsuleMultiselectWidget.prototype.setItemsFromData = function ( datas ) {
3965 var widget = this,
3966 menu = this.menu,
3967 items = this.getItems();
3968
3969 $.each( datas, function ( i, data ) {
3970 var j, label,
3971 item = menu.findItemFromData( data );
3972
3973 if ( item ) {
3974 label = item.label;
3975 } else if ( widget.allowArbitrary ) {
3976 label = String( data );
3977 } else {
3978 return;
3979 }
3980
3981 item = null;
3982 for ( j = 0; j < items.length; j++ ) {
3983 if ( items[ j ].data === data && items[ j ].label === label ) {
3984 item = items[ j ];
3985 items.splice( j, 1 );
3986 break;
3987 }
3988 }
3989 if ( !item ) {
3990 item = widget.createItemWidget( data, label );
3991 }
3992 if ( item ) {
3993 widget.addItems( [ item ], i );
3994 }
3995 } );
3996
3997 if ( items.length ) {
3998 widget.removeItems( items );
3999 }
4000
4001 return this;
4002 };
4003
4004 /**
4005 * Add items to the capsule by providing their data
4006 *
4007 * @chainable
4008 * @param {Mixed[]} datas
4009 * @return {OO.ui.CapsuleMultiselectWidget}
4010 */
4011 OO.ui.CapsuleMultiselectWidget.prototype.addItemsFromData = function ( datas ) {
4012 var widget = this,
4013 menu = this.menu,
4014 items = [];
4015
4016 $.each( datas, function ( i, data ) {
4017 var item;
4018
4019 if ( !widget.findItemFromData( data ) || widget.allowDuplicates ) {
4020 item = menu.findItemFromData( data );
4021 if ( item ) {
4022 item = widget.createItemWidget( data, item.label );
4023 } else if ( widget.allowArbitrary ) {
4024 item = widget.createItemWidget( data, String( data ) );
4025 }
4026 if ( item ) {
4027 items.push( item );
4028 }
4029 }
4030 } );
4031
4032 if ( items.length ) {
4033 this.addItems( items );
4034 }
4035
4036 return this;
4037 };
4038
4039 /**
4040 * Add items to the capsule by providing a label
4041 *
4042 * @param {string} label
4043 * @return {boolean} Whether the item was added or not
4044 */
4045 OO.ui.CapsuleMultiselectWidget.prototype.addItemFromLabel = function ( label ) {
4046 var item, items;
4047 item = this.menu.getItemFromLabel( label, true );
4048 if ( item ) {
4049 this.addItemsFromData( [ item.data ] );
4050 return true;
4051 } else if ( this.allowArbitrary ) {
4052 items = this.getItems();
4053 this.addItemsFromData( [ label ] );
4054 return !OO.compare( this.getItems(), items );
4055 }
4056 return false;
4057 };
4058
4059 /**
4060 * Remove items by data
4061 *
4062 * @chainable
4063 * @param {Mixed[]} datas
4064 * @return {OO.ui.CapsuleMultiselectWidget}
4065 */
4066 OO.ui.CapsuleMultiselectWidget.prototype.removeItemsFromData = function ( datas ) {
4067 var widget = this,
4068 items = [];
4069
4070 $.each( datas, function ( i, data ) {
4071 var item = widget.findItemFromData( data );
4072 if ( item ) {
4073 items.push( item );
4074 }
4075 } );
4076
4077 if ( items.length ) {
4078 this.removeItems( items );
4079 }
4080
4081 return this;
4082 };
4083
4084 /**
4085 * @inheritdoc
4086 */
4087 OO.ui.CapsuleMultiselectWidget.prototype.addItems = function ( items ) {
4088 var same, i, l,
4089 oldItems = this.items.slice();
4090
4091 OO.ui.mixin.GroupElement.prototype.addItems.call( this, items );
4092
4093 if ( this.items.length !== oldItems.length ) {
4094 same = false;
4095 } else {
4096 same = true;
4097 for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
4098 same = same && this.items[ i ] === oldItems[ i ];
4099 }
4100 }
4101 if ( !same ) {
4102 this.emit( 'change', this.getItemsData() );
4103 this.updateInputSize();
4104 }
4105
4106 return this;
4107 };
4108
4109 /**
4110 * Removes the item from the list and copies its label to `this.$input`.
4111 *
4112 * @param {Object} item
4113 */
4114 OO.ui.CapsuleMultiselectWidget.prototype.editItem = function ( item ) {
4115 this.addItemFromLabel( this.$input.val() );
4116 this.clearInput();
4117 this.$input.val( item.label );
4118 this.updateInputSize();
4119 this.focus();
4120 this.menu.updateItemVisibility(); // Hack, we shouldn't be calling this method directly
4121 this.removeItems( [ item ] );
4122 };
4123
4124 /**
4125 * @inheritdoc
4126 */
4127 OO.ui.CapsuleMultiselectWidget.prototype.removeItems = function ( items ) {
4128 var same, i, l,
4129 oldItems = this.items.slice();
4130
4131 OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
4132
4133 if ( this.items.length !== oldItems.length ) {
4134 same = false;
4135 } else {
4136 same = true;
4137 for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
4138 same = same && this.items[ i ] === oldItems[ i ];
4139 }
4140 }
4141 if ( !same ) {
4142 this.emit( 'change', this.getItemsData() );
4143 this.updateInputSize();
4144 }
4145
4146 return this;
4147 };
4148
4149 /**
4150 * @inheritdoc
4151 */
4152 OO.ui.CapsuleMultiselectWidget.prototype.clearItems = function () {
4153 if ( this.items.length ) {
4154 OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
4155 this.emit( 'change', this.getItemsData() );
4156 this.updateInputSize();
4157 }
4158 return this;
4159 };
4160
4161 /**
4162 * Given an item, returns the item after it. If its the last item,
4163 * returns `this.$input`. If no item is passed, returns the very first
4164 * item.
4165 *
4166 * @param {OO.ui.CapsuleItemWidget} [item]
4167 * @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
4168 */
4169 OO.ui.CapsuleMultiselectWidget.prototype.getNextItem = function ( item ) {
4170 var itemIndex;
4171
4172 if ( item === undefined ) {
4173 return this.items[ 0 ];
4174 }
4175
4176 itemIndex = this.items.indexOf( item );
4177 if ( itemIndex < 0 ) { // Item not in list
4178 return false;
4179 } else if ( itemIndex === this.items.length - 1 ) { // Last item
4180 return this.$input;
4181 } else {
4182 return this.items[ itemIndex + 1 ];
4183 }
4184 };
4185
4186 /**
4187 * Given an item, returns the item before it. If its the first item,
4188 * returns `this.$input`. If no item is passed, returns the very last
4189 * item.
4190 *
4191 * @param {OO.ui.CapsuleItemWidget} [item]
4192 * @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
4193 */
4194 OO.ui.CapsuleMultiselectWidget.prototype.getPreviousItem = function ( item ) {
4195 var itemIndex;
4196
4197 if ( item === undefined ) {
4198 return this.items[ this.items.length - 1 ];
4199 }
4200
4201 itemIndex = this.items.indexOf( item );
4202 if ( itemIndex < 0 ) { // Item not in list
4203 return false;
4204 } else if ( itemIndex === 0 ) { // First item
4205 return this.$input;
4206 } else {
4207 return this.items[ itemIndex - 1 ];
4208 }
4209 };
4210
4211 /**
4212 * Get the capsule widget's menu.
4213 *
4214 * @return {OO.ui.MenuSelectWidget} Menu widget
4215 */
4216 OO.ui.CapsuleMultiselectWidget.prototype.getMenu = function () {
4217 return this.menu;
4218 };
4219
4220 /**
4221 * Handle focus events
4222 *
4223 * @private
4224 * @param {jQuery.Event} event
4225 */
4226 OO.ui.CapsuleMultiselectWidget.prototype.onInputFocus = function () {
4227 if ( !this.isDisabled() ) {
4228 this.updateInputSize();
4229 this.menu.toggle( true );
4230 }
4231 };
4232
4233 /**
4234 * Handle blur events
4235 *
4236 * @private
4237 * @param {jQuery.Event} event
4238 */
4239 OO.ui.CapsuleMultiselectWidget.prototype.onInputBlur = function () {
4240 this.addItemFromLabel( this.$input.val() );
4241 this.clearInput();
4242 };
4243
4244 /**
4245 * Handles popup focus out events.
4246 *
4247 * @private
4248 * @param {jQuery.Event} e Focus out event
4249 */
4250 OO.ui.CapsuleMultiselectWidget.prototype.onPopupFocusOut = function () {
4251 var widget = this.popup;
4252
4253 setTimeout( function () {
4254 if (
4255 widget.isVisible() &&
4256 !OO.ui.contains( widget.$element.add( widget.$autoCloseIgnore ).get(), document.activeElement, true )
4257 ) {
4258 widget.toggle( false );
4259 }
4260 } );
4261 };
4262
4263 /**
4264 * Handle mouse down events.
4265 *
4266 * @private
4267 * @param {jQuery.Event} e Mouse down event
4268 */
4269 OO.ui.CapsuleMultiselectWidget.prototype.onMouseDown = function ( e ) {
4270 if ( e.which === OO.ui.MouseButtons.LEFT ) {
4271 this.focus();
4272 return false;
4273 } else {
4274 this.updateInputSize();
4275 }
4276 };
4277
4278 /**
4279 * Handle key press events.
4280 *
4281 * @private
4282 * @param {jQuery.Event} e Key press event
4283 */
4284 OO.ui.CapsuleMultiselectWidget.prototype.onKeyPress = function ( e ) {
4285 if ( !this.isDisabled() ) {
4286 if ( e.which === OO.ui.Keys.ESCAPE ) {
4287 this.clearInput();
4288 return false;
4289 }
4290
4291 if ( !this.popup ) {
4292 this.menu.toggle( true );
4293 if ( e.which === OO.ui.Keys.ENTER ) {
4294 if ( this.addItemFromLabel( this.$input.val() ) ) {
4295 this.clearInput();
4296 }
4297 return false;
4298 }
4299
4300 // Make sure the input gets resized.
4301 setTimeout( this.updateInputSize.bind( this ), 0 );
4302 }
4303 }
4304 };
4305
4306 /**
4307 * Handle key down events.
4308 *
4309 * @private
4310 * @param {jQuery.Event} e Key down event
4311 */
4312 OO.ui.CapsuleMultiselectWidget.prototype.onKeyDown = function ( e ) {
4313 if (
4314 !this.isDisabled() &&
4315 this.$input.val() === '' &&
4316 this.items.length
4317 ) {
4318 // 'keypress' event is not triggered for Backspace
4319 if ( e.keyCode === OO.ui.Keys.BACKSPACE ) {
4320 if ( e.metaKey || e.ctrlKey ) {
4321 this.removeItems( this.items.slice( -1 ) );
4322 } else {
4323 this.editItem( this.items[ this.items.length - 1 ] );
4324 }
4325 return false;
4326 } else if ( e.keyCode === OO.ui.Keys.LEFT ) {
4327 this.getPreviousItem().focus();
4328 } else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
4329 this.getNextItem().focus();
4330 }
4331 }
4332 };
4333
4334 /**
4335 * Update the dimensions of the text input field to encompass all available area.
4336 *
4337 * @private
4338 * @param {jQuery.Event} e Event of some sort
4339 */
4340 OO.ui.CapsuleMultiselectWidget.prototype.updateInputSize = function () {
4341 var $lastItem, direction, contentWidth, currentWidth, bestWidth;
4342 if ( this.$input && !this.isDisabled() ) {
4343 this.$input.css( 'width', '1em' );
4344 $lastItem = this.$group.children().last();
4345 direction = OO.ui.Element.static.getDir( this.$handle );
4346
4347 // Get the width of the input with the placeholder text as
4348 // the value and save it so that we don't keep recalculating
4349 if (
4350 this.contentWidthWithPlaceholder === undefined &&
4351 this.$input.val() === '' &&
4352 this.$input.attr( 'placeholder' ) !== undefined
4353 ) {
4354 this.$input.val( this.$input.attr( 'placeholder' ) );
4355 this.contentWidthWithPlaceholder = this.$input[ 0 ].scrollWidth;
4356 this.$input.val( '' );
4357
4358 }
4359
4360 // Always keep the input wide enough for the placeholder text
4361 contentWidth = Math.max(
4362 this.$input[ 0 ].scrollWidth,
4363 // undefined arguments in Math.max lead to NaN
4364 ( this.contentWidthWithPlaceholder === undefined ) ?
4365 0 : this.contentWidthWithPlaceholder
4366 );
4367 currentWidth = this.$input.width();
4368
4369 if ( contentWidth < currentWidth ) {
4370 this.updateIfHeightChanged();
4371 // All is fine, don't perform expensive calculations
4372 return;
4373 }
4374
4375 if ( $lastItem.length === 0 ) {
4376 bestWidth = this.$content.innerWidth();
4377 } else {
4378 bestWidth = direction === 'ltr' ?
4379 this.$content.innerWidth() - $lastItem.position().left - $lastItem.outerWidth() :
4380 $lastItem.position().left;
4381 }
4382
4383 // Some safety margin for sanity, because I *really* don't feel like finding out where the few
4384 // pixels this is off by are coming from.
4385 bestWidth -= 10;
4386 if ( contentWidth > bestWidth ) {
4387 // This will result in the input getting shifted to the next line
4388 bestWidth = this.$content.innerWidth() - 10;
4389 }
4390 this.$input.width( Math.floor( bestWidth ) );
4391 this.updateIfHeightChanged();
4392 } else {
4393 this.updateIfHeightChanged();
4394 }
4395 };
4396
4397 /**
4398 * Determine if widget height changed, and if so, update menu position and emit 'resize' event.
4399 *
4400 * @private
4401 */
4402 OO.ui.CapsuleMultiselectWidget.prototype.updateIfHeightChanged = function () {
4403 var height = this.$element.height();
4404 if ( height !== this.height ) {
4405 this.height = height;
4406 this.menu.position();
4407 if ( this.popup ) {
4408 this.popup.updateDimensions();
4409 }
4410 this.emit( 'resize' );
4411 }
4412 };
4413
4414 /**
4415 * Handle menu choose events.
4416 *
4417 * @private
4418 * @param {OO.ui.OptionWidget} item Chosen item
4419 */
4420 OO.ui.CapsuleMultiselectWidget.prototype.onMenuChoose = function ( item ) {
4421 if ( item && item.isVisible() ) {
4422 this.addItemsFromData( [ item.getData() ] );
4423 this.clearInput();
4424 }
4425 };
4426
4427 /**
4428 * Handle menu toggle events.
4429 *
4430 * @private
4431 * @param {boolean} isVisible Open state of the menu
4432 */
4433 OO.ui.CapsuleMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
4434 this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-open', isVisible );
4435 };
4436
4437 /**
4438 * Handle menu item change events.
4439 *
4440 * @private
4441 */
4442 OO.ui.CapsuleMultiselectWidget.prototype.onMenuItemsChange = function () {
4443 this.setItemsFromData( this.getItemsData() );
4444 this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-empty', this.menu.isEmpty() );
4445 };
4446
4447 /**
4448 * Clear the input field
4449 *
4450 * @private
4451 */
4452 OO.ui.CapsuleMultiselectWidget.prototype.clearInput = function () {
4453 if ( this.$input ) {
4454 this.$input.val( '' );
4455 this.updateInputSize();
4456 }
4457 if ( this.popup ) {
4458 this.popup.toggle( false );
4459 }
4460 this.menu.toggle( false );
4461 this.menu.selectItem();
4462 this.menu.highlightItem();
4463 };
4464
4465 /**
4466 * @inheritdoc
4467 */
4468 OO.ui.CapsuleMultiselectWidget.prototype.setDisabled = function ( disabled ) {
4469 var i, len;
4470
4471 // Parent method
4472 OO.ui.CapsuleMultiselectWidget.parent.prototype.setDisabled.call( this, disabled );
4473
4474 if ( this.$input ) {
4475 this.$input.prop( 'disabled', this.isDisabled() );
4476 }
4477 if ( this.menu ) {
4478 this.menu.setDisabled( this.isDisabled() );
4479 }
4480 if ( this.popup ) {
4481 this.popup.setDisabled( this.isDisabled() );
4482 }
4483
4484 if ( this.items ) {
4485 for ( i = 0, len = this.items.length; i < len; i++ ) {
4486 this.items[ i ].updateDisabled();
4487 }
4488 }
4489
4490 return this;
4491 };
4492
4493 /**
4494 * Focus the widget
4495 *
4496 * @chainable
4497 */
4498 OO.ui.CapsuleMultiselectWidget.prototype.focus = function () {
4499 if ( !this.isDisabled() ) {
4500 if ( this.popup ) {
4501 this.popup.setSize( this.$handle.outerWidth() );
4502 this.popup.toggle( true );
4503 OO.ui.findFocusable( this.popup.$element ).focus();
4504 } else {
4505 OO.ui.mixin.TabIndexedElement.prototype.focus.call( this );
4506 }
4507 }
4508 return this;
4509 };
4510
4511 /**
4512 * TagItemWidgets are used within a {@link OO.ui.TagMultiselectWidget
4513 * TagMultiselectWidget} to display the selected items.
4514 *
4515 * @class
4516 * @extends OO.ui.Widget
4517 * @mixins OO.ui.mixin.ItemWidget
4518 * @mixins OO.ui.mixin.LabelElement
4519 * @mixins OO.ui.mixin.FlaggedElement
4520 * @mixins OO.ui.mixin.TabIndexedElement
4521 * @mixins OO.ui.mixin.DraggableElement
4522 *
4523 * @constructor
4524 * @param {Object} [config] Configuration object
4525 * @cfg {boolean} [valid=true] Item is valid
4526 */
4527 OO.ui.TagItemWidget = function OoUiTagItemWidget( config ) {
4528 config = config || {};
4529
4530 // Parent constructor
4531 OO.ui.TagItemWidget.parent.call( this, config );
4532
4533 // Mixin constructors
4534 OO.ui.mixin.ItemWidget.call( this );
4535 OO.ui.mixin.LabelElement.call( this, config );
4536 OO.ui.mixin.FlaggedElement.call( this, config );
4537 OO.ui.mixin.TabIndexedElement.call( this, config );
4538 OO.ui.mixin.DraggableElement.call( this, config );
4539
4540 this.valid = config.valid === undefined ? true : !!config.valid;
4541
4542 this.closeButton = new OO.ui.ButtonWidget( {
4543 framed: false,
4544 icon: 'close',
4545 tabIndex: -1,
4546 title: OO.ui.msg( 'ooui-item-remove' )
4547 } );
4548 this.closeButton.setDisabled( this.isDisabled() );
4549
4550 // Events
4551 this.closeButton
4552 .connect( this, { click: 'remove' } );
4553 this.$element
4554 .on( 'click', this.select.bind( this ) )
4555 .on( 'keydown', this.onKeyDown.bind( this ) )
4556 // Prevent propagation of mousedown; the tag item "lives" in the
4557 // clickable area of the TagMultiselectWidget, which listens to
4558 // mousedown to open the menu or popup. We want to prevent that
4559 // for clicks specifically on the tag itself, so the actions taken
4560 // are more deliberate. When the tag is clicked, it will emit the
4561 // selection event (similar to how #OO.ui.MultioptionWidget emits 'change')
4562 // and can be handled separately.
4563 .on( 'mousedown', function ( e ) { e.stopPropagation(); } );
4564
4565 // Initialization
4566 this.$element
4567 .addClass( 'oo-ui-tagItemWidget' )
4568 .append( this.$label, this.closeButton.$element );
4569 };
4570
4571 /* Initialization */
4572
4573 OO.inheritClass( OO.ui.TagItemWidget, OO.ui.Widget );
4574 OO.mixinClass( OO.ui.TagItemWidget, OO.ui.mixin.ItemWidget );
4575 OO.mixinClass( OO.ui.TagItemWidget, OO.ui.mixin.LabelElement );
4576 OO.mixinClass( OO.ui.TagItemWidget, OO.ui.mixin.FlaggedElement );
4577 OO.mixinClass( OO.ui.TagItemWidget, OO.ui.mixin.TabIndexedElement );
4578 OO.mixinClass( OO.ui.TagItemWidget, OO.ui.mixin.DraggableElement );
4579
4580 /* Events */
4581
4582 /**
4583 * @event remove
4584 *
4585 * A remove action was performed on the item
4586 */
4587
4588 /**
4589 * @event navigate
4590 * @param {string} direction Direction of the movement, forward or backwards
4591 *
4592 * A navigate action was performed on the item
4593 */
4594
4595 /**
4596 * @event select
4597 *
4598 * The tag widget was selected. This can occur when the widget
4599 * is either clicked or enter was pressed on it.
4600 */
4601
4602 /**
4603 * @event valid
4604 * @param {boolean} isValid Item is valid
4605 *
4606 * Item validity has changed
4607 */
4608
4609 /* Methods */
4610
4611 /**
4612 * @inheritdoc
4613 */
4614 OO.ui.TagItemWidget.prototype.setDisabled = function ( state ) {
4615 // Parent method
4616 OO.ui.TagItemWidget.parent.prototype.setDisabled.call( this, state );
4617
4618 if ( this.closeButton ) {
4619 this.closeButton.setDisabled( state );
4620 }
4621 return this;
4622 };
4623
4624 /**
4625 * Handle removal of the item
4626 *
4627 * This is mainly for extensibility concerns, so other children
4628 * of this class can change the behavior if they need to. This
4629 * is called by both clicking the 'remove' button but also
4630 * on keypress, which is harder to override if needed.
4631 *
4632 * @fires remove
4633 */
4634 OO.ui.TagItemWidget.prototype.remove = function () {
4635 if ( !this.isDisabled() ) {
4636 this.emit( 'remove' );
4637 }
4638 };
4639
4640 /**
4641 * Handle a keydown event on the widget
4642 *
4643 * @fires navigate
4644 * @fires remove
4645 * @param {jQuery.Event} e Key down event
4646 * @return {boolean|undefined} false to stop the operation
4647 */
4648 OO.ui.TagItemWidget.prototype.onKeyDown = function ( e ) {
4649 var movement;
4650
4651 if ( e.keyCode === OO.ui.Keys.BACKSPACE || e.keyCode === OO.ui.Keys.DELETE ) {
4652 this.remove();
4653 return false;
4654 } else if ( e.keyCode === OO.ui.Keys.ENTER ) {
4655 this.select();
4656 return false;
4657 } else if (
4658 e.keyCode === OO.ui.Keys.LEFT ||
4659 e.keyCode === OO.ui.Keys.RIGHT
4660 ) {
4661 if ( OO.ui.Element.static.getDir( this.$element ) === 'rtl' ) {
4662 movement = {
4663 left: 'forwards',
4664 right: 'backwards'
4665 };
4666 } else {
4667 movement = {
4668 left: 'backwards',
4669 right: 'forwards'
4670 };
4671 }
4672
4673 this.emit(
4674 'navigate',
4675 e.keyCode === OO.ui.Keys.LEFT ?
4676 movement.left : movement.right
4677 );
4678 }
4679 };
4680
4681 /**
4682 * Select this item
4683 *
4684 * @fires select
4685 */
4686 OO.ui.TagItemWidget.prototype.select = function () {
4687 if ( !this.isDisabled() ) {
4688 this.emit( 'select' );
4689 }
4690 };
4691
4692 /**
4693 * Set the valid state of this item
4694 *
4695 * @param {boolean} [valid] Item is valid
4696 * @fires valid
4697 */
4698 OO.ui.TagItemWidget.prototype.toggleValid = function ( valid ) {
4699 valid = valid === undefined ? !this.valid : !!valid;
4700
4701 if ( this.valid !== valid ) {
4702 this.valid = valid;
4703
4704 this.setFlags( { invalid: !this.valid } );
4705
4706 this.emit( 'valid', this.valid );
4707 }
4708 };
4709
4710 /**
4711 * Check whether the item is valid
4712 *
4713 * @return {boolean} Item is valid
4714 */
4715 OO.ui.TagItemWidget.prototype.isValid = function () {
4716 return this.valid;
4717 };
4718
4719 /**
4720 * A basic tag multiselect widget, similar in concept to {@link OO.ui.ComboBoxInputWidget combo box widget}
4721 * that allows the user to add multiple values that are displayed in a tag area.
4722 *
4723 * This widget is a base widget; see {@link OO.ui.MenuTagMultiselectWidget MenuTagMultiselectWidget} and
4724 * {@link OO.ui.PopupTagMultiselectWidget PopupTagMultiselectWidget} for the implementations that use
4725 * a menu and a popup respectively.
4726 *
4727 * @example
4728 * // Example: A basic TagMultiselectWidget.
4729 * var widget = new OO.ui.TagMultiselectWidget( {
4730 * inputPosition: 'outline',
4731 * allowedValues: [ 'Option 1', 'Option 2', 'Option 3' ],
4732 * selected: [ 'Option 1' ]
4733 * } );
4734 * $( 'body' ).append( widget.$element );
4735 *
4736 * @class
4737 * @extends OO.ui.Widget
4738 * @mixins OO.ui.mixin.GroupWidget
4739 * @mixins OO.ui.mixin.DraggableGroupElement
4740 * @mixins OO.ui.mixin.IndicatorElement
4741 * @mixins OO.ui.mixin.IconElement
4742 * @mixins OO.ui.mixin.TabIndexedElement
4743 * @mixins OO.ui.mixin.FlaggedElement
4744 *
4745 * @constructor
4746 * @param {Object} config Configuration object
4747 * @cfg {Object} [input] Configuration options for the input widget
4748 * @cfg {OO.ui.InputWidget} [inputWidget] An optional input widget. If given, it will
4749 * replace the input widget used in the TagMultiselectWidget. If not given,
4750 * TagMultiselectWidget creates its own.
4751 * @cfg {boolean} [inputPosition='inline'] Position of the input. Options are:
4752 * - inline: The input is invisible, but exists inside the tag list, so
4753 * the user types into the tag groups to add tags.
4754 * - outline: The input is underneath the tag area.
4755 * - none: No input supplied
4756 * @cfg {boolean} [allowEditTags=true] Allow editing of the tags by clicking them
4757 * @cfg {boolean} [allowArbitrary=false] Allow data items to be added even if
4758 * not present in the menu.
4759 * @cfg {Object[]} [allowedValues] An array representing the allowed items
4760 * by their datas.
4761 * @cfg {boolean} [allowDuplicates=false] Allow duplicate items to be added
4762 * @cfg {boolean} [allowDisplayInvalidTags=false] Allow the display of
4763 * invalid tags. These tags will display with an invalid state, and
4764 * the widget as a whole will have an invalid state if any invalid tags
4765 * are present.
4766 * @cfg {boolean} [allowReordering=true] Allow reordering of the items
4767 * @cfg {Object[]|String[]} [selected] A set of selected tags. If given,
4768 * these will appear in the tag list on initialization, as long as they
4769 * pass the validity tests.
4770 */
4771 OO.ui.TagMultiselectWidget = function OoUiTagMultiselectWidget( config ) {
4772 var inputEvents,
4773 rAF = window.requestAnimationFrame || setTimeout,
4774 widget = this,
4775 $tabFocus = $( '<span>' )
4776 .addClass( 'oo-ui-tagMultiselectWidget-focusTrap' );
4777
4778 config = config || {};
4779
4780 // Parent constructor
4781 OO.ui.TagMultiselectWidget.parent.call( this, config );
4782
4783 // Mixin constructors
4784 OO.ui.mixin.GroupWidget.call( this, config );
4785 OO.ui.mixin.IndicatorElement.call( this, config );
4786 OO.ui.mixin.IconElement.call( this, config );
4787 OO.ui.mixin.TabIndexedElement.call( this, config );
4788 OO.ui.mixin.FlaggedElement.call( this, config );
4789 OO.ui.mixin.DraggableGroupElement.call( this, config );
4790
4791 this.toggleDraggable(
4792 config.allowReordering === undefined ?
4793 true : !!config.allowReordering
4794 );
4795
4796 this.inputPosition =
4797 this.constructor.static.allowedInputPositions.indexOf( config.inputPosition ) > -1 ?
4798 config.inputPosition : 'inline';
4799 this.allowEditTags = config.allowEditTags === undefined ? true : !!config.allowEditTags;
4800 this.allowArbitrary = !!config.allowArbitrary;
4801 this.allowDuplicates = !!config.allowDuplicates;
4802 this.allowedValues = config.allowedValues || [];
4803 this.allowDisplayInvalidTags = config.allowDisplayInvalidTags;
4804 this.hasInput = this.inputPosition !== 'none';
4805 this.height = null;
4806 this.valid = true;
4807
4808 this.$content = $( '<div>' )
4809 .addClass( 'oo-ui-tagMultiselectWidget-content' );
4810 this.$handle = $( '<div>' )
4811 .addClass( 'oo-ui-tagMultiselectWidget-handle' )
4812 .append(
4813 this.$indicator,
4814 this.$icon,
4815 this.$content
4816 .append(
4817 this.$group
4818 .addClass( 'oo-ui-tagMultiselectWidget-group' )
4819 )
4820 );
4821
4822 // Events
4823 this.aggregate( {
4824 remove: 'itemRemove',
4825 navigate: 'itemNavigate',
4826 select: 'itemSelect'
4827 } );
4828 this.connect( this, {
4829 itemRemove: 'onTagRemove',
4830 itemSelect: 'onTagSelect',
4831 itemNavigate: 'onTagNavigate',
4832 change: 'onChangeTags'
4833 } );
4834 this.$handle.on( {
4835 mousedown: this.onMouseDown.bind( this )
4836 } );
4837
4838 // Initialize
4839 this.$element
4840 .addClass( 'oo-ui-tagMultiselectWidget' )
4841 .append( this.$handle );
4842
4843 if ( this.hasInput ) {
4844 if ( config.inputWidget ) {
4845 this.input = config.inputWidget;
4846 } else {
4847 this.input = new OO.ui.TextInputWidget( $.extend( {
4848 placeholder: config.placeholder,
4849 classes: [ 'oo-ui-tagMultiselectWidget-input' ]
4850 }, config.input ) );
4851 }
4852 this.input.setDisabled( this.isDisabled() );
4853
4854 inputEvents = {
4855 focus: this.onInputFocus.bind( this ),
4856 blur: this.onInputBlur.bind( this ),
4857 'propertychange change click mouseup keydown keyup input cut paste select focus':
4858 OO.ui.debounce( this.updateInputSize.bind( this ) ),
4859 keydown: this.onInputKeyDown.bind( this ),
4860 keypress: this.onInputKeyPress.bind( this )
4861 };
4862
4863 this.input.$input.on( inputEvents );
4864
4865 if ( this.inputPosition === 'outline' ) {
4866 // Override max-height for the input widget
4867 // in the case the widget is outline so it can
4868 // stretch all the way if the widet is wide
4869 this.input.$element.css( 'max-width', 'inherit' );
4870 this.$element
4871 .addClass( 'oo-ui-tagMultiselectWidget-outlined' )
4872 .append( this.input.$element );
4873 } else {
4874 this.$element.addClass( 'oo-ui-tagMultiselectWidget-inlined' );
4875 // HACK: When the widget is using 'inline' input, the
4876 // behavior needs to only use the $input itself
4877 // so we style and size it accordingly (otherwise
4878 // the styling and sizing can get very convoluted
4879 // when the wrapping divs and other elements)
4880 // We are taking advantage of still being able to
4881 // call the widget itself for operations like
4882 // .getValue() and setDisabled() and .focus() but
4883 // having only the $input attached to the DOM
4884 this.$content.append( this.input.$input );
4885 }
4886 } else {
4887 this.$content.append( $tabFocus );
4888 }
4889
4890 this.setTabIndexedElement(
4891 this.hasInput ?
4892 this.input.$input :
4893 $tabFocus
4894 );
4895
4896 if ( config.selected ) {
4897 this.setValue( config.selected );
4898 }
4899
4900 // HACK: Input size needs to be calculated after everything
4901 // else is rendered
4902 rAF( function () {
4903 if ( widget.hasInput ) {
4904 widget.updateInputSize();
4905 }
4906 } );
4907 };
4908
4909 /* Initialization */
4910
4911 OO.inheritClass( OO.ui.TagMultiselectWidget, OO.ui.Widget );
4912 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.GroupWidget );
4913 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.DraggableGroupElement );
4914 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.IndicatorElement );
4915 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.IconElement );
4916 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.TabIndexedElement );
4917 OO.mixinClass( OO.ui.TagMultiselectWidget, OO.ui.mixin.FlaggedElement );
4918
4919 /* Static properties */
4920
4921 /**
4922 * Allowed input positions.
4923 * - inline: The input is inside the tag list
4924 * - outline: The input is under the tag list
4925 * - none: There is no input
4926 *
4927 * @property {Array}
4928 */
4929 OO.ui.TagMultiselectWidget.static.allowedInputPositions = [ 'inline', 'outline', 'none' ];
4930
4931 /* Methods */
4932
4933 /**
4934 * Handle mouse down events.
4935 *
4936 * @private
4937 * @param {jQuery.Event} e Mouse down event
4938 * @return {boolean} False to prevent defaults
4939 */
4940 OO.ui.TagMultiselectWidget.prototype.onMouseDown = function ( e ) {
4941 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
4942 this.focus();
4943 return false;
4944 }
4945 };
4946
4947 /**
4948 * Handle key press events.
4949 *
4950 * @private
4951 * @param {jQuery.Event} e Key press event
4952 * @return {boolean} Whether to prevent defaults
4953 */
4954 OO.ui.TagMultiselectWidget.prototype.onInputKeyPress = function ( e ) {
4955 var stopOrContinue,
4956 withMetaKey = e.metaKey || e.ctrlKey;
4957
4958 if ( !this.isDisabled() ) {
4959 if ( e.which === OO.ui.Keys.ENTER ) {
4960 stopOrContinue = this.doInputEnter( e, withMetaKey );
4961 }
4962
4963 // Make sure the input gets resized.
4964 setTimeout( this.updateInputSize.bind( this ), 0 );
4965 return stopOrContinue;
4966 }
4967 };
4968
4969 /**
4970 * Handle key down events.
4971 *
4972 * @private
4973 * @param {jQuery.Event} e Key down event
4974 * @return {boolean}
4975 */
4976 OO.ui.TagMultiselectWidget.prototype.onInputKeyDown = function ( e ) {
4977 var movement, direction,
4978 withMetaKey = e.metaKey || e.ctrlKey;
4979
4980 if ( !this.isDisabled() ) {
4981 // 'keypress' event is not triggered for Backspace
4982 if ( e.keyCode === OO.ui.Keys.BACKSPACE ) {
4983 return this.doInputBackspace( e, withMetaKey );
4984 } else if ( e.keyCode === OO.ui.Keys.ESCAPE ) {
4985 return this.doInputEscape( e );
4986 } else if (
4987 e.keyCode === OO.ui.Keys.LEFT ||
4988 e.keyCode === OO.ui.Keys.RIGHT
4989 ) {
4990 if ( OO.ui.Element.static.getDir( this.$element ) === 'rtl' ) {
4991 movement = {
4992 left: 'forwards',
4993 right: 'backwards'
4994 };
4995 } else {
4996 movement = {
4997 left: 'backwards',
4998 right: 'forwards'
4999 };
5000 }
5001 direction = e.keyCode === OO.ui.Keys.LEFT ?
5002 movement.left : movement.right;
5003
5004 return this.doInputArrow( e, direction, withMetaKey );
5005 }
5006 }
5007 };
5008
5009 /**
5010 * Respond to input focus event
5011 */
5012 OO.ui.TagMultiselectWidget.prototype.onInputFocus = function () {
5013 this.$element.addClass( 'oo-ui-tagMultiselectWidget-focus' );
5014 };
5015
5016 /**
5017 * Respond to input blur event
5018 */
5019 OO.ui.TagMultiselectWidget.prototype.onInputBlur = function () {
5020 this.$element.removeClass( 'oo-ui-tagMultiselectWidget-focus' );
5021 };
5022
5023 /**
5024 * Perform an action after the enter key on the input
5025 *
5026 * @param {jQuery.Event} e Event data
5027 * @param {boolean} [withMetaKey] Whether this key was pressed with
5028 * a meta key like 'ctrl'
5029 * @return {boolean} Whether to prevent defaults
5030 */
5031 OO.ui.TagMultiselectWidget.prototype.doInputEnter = function () {
5032 this.addTagFromInput();
5033 return false;
5034 };
5035
5036 /**
5037 * Perform an action responding to the enter key on the input
5038 *
5039 * @param {jQuery.Event} e Event data
5040 * @param {boolean} [withMetaKey] Whether this key was pressed with
5041 * a meta key like 'ctrl'
5042 * @return {boolean} Whether to prevent defaults
5043 */
5044 OO.ui.TagMultiselectWidget.prototype.doInputBackspace = function ( e, withMetaKey ) {
5045 var items, item;
5046
5047 if (
5048 this.inputPosition === 'inline' &&
5049 this.input.getValue() === '' &&
5050 !this.isEmpty()
5051 ) {
5052 // Delete the last item
5053 items = this.getItems();
5054 item = items[ items.length - 1 ];
5055 this.removeItems( [ item ] );
5056 // If Ctrl/Cmd was pressed, delete item entirely.
5057 // Otherwise put it into the text field for editing.
5058 if ( !withMetaKey ) {
5059 this.input.setValue( item.getData() );
5060 }
5061
5062 return false;
5063 }
5064 };
5065
5066 /**
5067 * Perform an action after the escape key on the input
5068 *
5069 * @param {jQuery.Event} e Event data
5070 */
5071 OO.ui.TagMultiselectWidget.prototype.doInputEscape = function () {
5072 this.clearInput();
5073 };
5074
5075 /**
5076 * Perform an action after the arrow key on the input, select the previous
5077 * or next item from the input.
5078 * See #getPreviousItem and #getNextItem
5079 *
5080 * @param {jQuery.Event} e Event data
5081 * @param {string} direction Direction of the movement; forwards or backwards
5082 * @param {boolean} [withMetaKey] Whether this key was pressed with
5083 * a meta key like 'ctrl'
5084 */
5085 OO.ui.TagMultiselectWidget.prototype.doInputArrow = function ( e, direction ) {
5086 if (
5087 this.inputPosition === 'inline' &&
5088 !this.isEmpty()
5089 ) {
5090 if ( direction === 'backwards' ) {
5091 // Get previous item
5092 this.getPreviousItem().focus();
5093 } else {
5094 // Get next item
5095 this.getNextItem().focus();
5096 }
5097 }
5098 };
5099
5100 /**
5101 * Respond to item select event
5102 *
5103 * @param {OO.ui.TagItemWidget} item Selected item
5104 */
5105 OO.ui.TagMultiselectWidget.prototype.onTagSelect = function ( item ) {
5106 if ( this.hasInput && this.allowEditTags ) {
5107 if ( this.input.getValue() ) {
5108 this.addTagFromInput();
5109 }
5110 // 1. Get the label of the tag into the input
5111 this.input.setValue( item.getData() );
5112 // 2. Remove the tag
5113 this.removeItems( [ item ] );
5114 // 3. Focus the input
5115 this.focus();
5116 }
5117 };
5118
5119 /**
5120 * Respond to change event, where items were added, removed, or cleared.
5121 */
5122 OO.ui.TagMultiselectWidget.prototype.onChangeTags = function () {
5123 this.toggleValid( this.checkValidity() );
5124 if ( this.hasInput ) {
5125 this.updateInputSize();
5126 }
5127 this.updateIfHeightChanged();
5128 };
5129
5130 /**
5131 * @inheritdoc
5132 */
5133 OO.ui.TagMultiselectWidget.prototype.setDisabled = function ( isDisabled ) {
5134 // Parent method
5135 OO.ui.TagMultiselectWidget.parent.prototype.setDisabled.call( this, isDisabled );
5136
5137 if ( this.hasInput && this.input ) {
5138 this.input.setDisabled( !!isDisabled );
5139 }
5140
5141 if ( this.items ) {
5142 this.getItems().forEach( function ( item ) {
5143 item.setDisabled( !!isDisabled );
5144 } );
5145 }
5146 };
5147
5148 /**
5149 * Respond to tag remove event
5150 * @param {OO.ui.TagItemWidget} item Removed tag
5151 */
5152 OO.ui.TagMultiselectWidget.prototype.onTagRemove = function ( item ) {
5153 this.removeTagByData( item.getData() );
5154 };
5155
5156 /**
5157 * Respond to navigate event on the tag
5158 *
5159 * @param {OO.ui.TagItemWidget} item Removed tag
5160 * @param {string} direction Direction of movement; 'forwards' or 'backwards'
5161 */
5162 OO.ui.TagMultiselectWidget.prototype.onTagNavigate = function ( item, direction ) {
5163 if ( direction === 'forwards' ) {
5164 this.getNextItem( item ).focus();
5165 } else {
5166 this.getPreviousItem( item ).focus();
5167 }
5168 };
5169
5170 /**
5171 * Add tag from input value
5172 */
5173 OO.ui.TagMultiselectWidget.prototype.addTagFromInput = function () {
5174 var val = this.input.getValue(),
5175 isValid = this.isAllowedData( val );
5176
5177 if ( !val ) {
5178 return;
5179 }
5180
5181 if ( isValid || this.allowDisplayInvalidTags ) {
5182 this.addTag( val );
5183 this.clearInput();
5184 this.focus();
5185 }
5186 };
5187
5188 /**
5189 * Clear the input
5190 */
5191 OO.ui.TagMultiselectWidget.prototype.clearInput = function () {
5192 this.input.setValue( '' );
5193 };
5194
5195 /**
5196 * Check whether the given value is a duplicate of an existing
5197 * tag already in the list.
5198 *
5199 * @param {string|Object} data Requested value
5200 * @return {boolean} Value is duplicate
5201 */
5202 OO.ui.TagMultiselectWidget.prototype.isDuplicateData = function ( data ) {
5203 return !!this.findItemFromData( data );
5204 };
5205
5206 /**
5207 * Check whether a given value is allowed to be added
5208 *
5209 * @param {string|Object} data Requested value
5210 * @return {boolean} Value is allowed
5211 */
5212 OO.ui.TagMultiselectWidget.prototype.isAllowedData = function ( data ) {
5213 if (
5214 !this.allowDuplicates &&
5215 this.isDuplicateData( data )
5216 ) {
5217 return false;
5218 }
5219
5220 if ( this.allowArbitrary ) {
5221 return true;
5222 }
5223
5224 // Check with allowed values
5225 if (
5226 this.getAllowedValues().some( function ( value ) {
5227 return data === value;
5228 } )
5229 ) {
5230 return true;
5231 }
5232
5233 return false;
5234 };
5235
5236 /**
5237 * Get the allowed values list
5238 *
5239 * @return {string[]} Allowed data values
5240 */
5241 OO.ui.TagMultiselectWidget.prototype.getAllowedValues = function () {
5242 return this.allowedValues;
5243 };
5244
5245 /**
5246 * Add a value to the allowed values list
5247 *
5248 * @param {string} value Allowed data value
5249 */
5250 OO.ui.TagMultiselectWidget.prototype.addAllowedValue = function ( value ) {
5251 if ( this.allowedValues.indexOf( value ) === -1 ) {
5252 this.allowedValues.push( value );
5253 }
5254 };
5255
5256 /**
5257 * Get the datas of the currently selected items
5258 *
5259 * @return {string[]|Object[]} Datas of currently selected items
5260 */
5261 OO.ui.TagMultiselectWidget.prototype.getValue = function () {
5262 return this.getItems()
5263 .filter( function ( item ) {
5264 return item.isValid();
5265 } )
5266 .map( function ( item ) {
5267 return item.getData();
5268 } );
5269 };
5270
5271 /**
5272 * Set the value of this widget by datas.
5273 *
5274 * @param {string|string[]|Object|Object[]} valueObject An object representing the data
5275 * and label of the value. If the widget allows arbitrary values,
5276 * the items will be added as-is. Otherwise, the data value will
5277 * be checked against allowedValues.
5278 * This object must contain at least a data key. Example:
5279 * { data: 'foo', label: 'Foo item' }
5280 * For multiple items, use an array of objects. For example:
5281 * [
5282 * { data: 'foo', label: 'Foo item' },
5283 * { data: 'bar', label: 'Bar item' }
5284 * ]
5285 * Value can also be added with plaintext array, for example:
5286 * [ 'foo', 'bar', 'bla' ] or a single string, like 'foo'
5287 */
5288 OO.ui.TagMultiselectWidget.prototype.setValue = function ( valueObject ) {
5289 valueObject = Array.isArray( valueObject ) ? valueObject : [ valueObject ];
5290
5291 this.clearItems();
5292 valueObject.forEach( function ( obj ) {
5293 if ( typeof obj === 'string' ) {
5294 this.addTag( obj );
5295 } else {
5296 this.addTag( obj.data, obj.label );
5297 }
5298 }.bind( this ) );
5299 };
5300
5301 /**
5302 * Add tag to the display area
5303 *
5304 * @param {string|Object} data Tag data
5305 * @param {string} [label] Tag label. If no label is provided, the
5306 * stringified version of the data will be used instead.
5307 * @return {boolean} Item was added successfully
5308 */
5309 OO.ui.TagMultiselectWidget.prototype.addTag = function ( data, label ) {
5310 var newItemWidget,
5311 isValid = this.isAllowedData( data );
5312
5313 if ( isValid || this.allowDisplayInvalidTags ) {
5314 newItemWidget = this.createTagItemWidget( data, label );
5315 newItemWidget.toggleValid( isValid );
5316 this.addItems( [ newItemWidget ] );
5317 return true;
5318 }
5319 return false;
5320 };
5321
5322 /**
5323 * Remove tag by its data property.
5324 *
5325 * @param {string|Object} data Tag data
5326 */
5327 OO.ui.TagMultiselectWidget.prototype.removeTagByData = function ( data ) {
5328 var item = this.findItemFromData( data );
5329
5330 this.removeItems( [ item ] );
5331 };
5332
5333 /**
5334 * Construct a OO.ui.TagItemWidget (or a subclass thereof) from given label and data.
5335 *
5336 * @protected
5337 * @param {string} data Item data
5338 * @param {string} label The label text.
5339 * @return {OO.ui.TagItemWidget}
5340 */
5341 OO.ui.TagMultiselectWidget.prototype.createTagItemWidget = function ( data, label ) {
5342 label = label || data;
5343
5344 return new OO.ui.TagItemWidget( { data: data, label: label } );
5345 };
5346
5347 /**
5348 * Given an item, returns the item after it. If the item is already the
5349 * last item, return `this.input`. If no item is passed, returns the
5350 * very first item.
5351 *
5352 * @protected
5353 * @param {OO.ui.TagItemWidget} [item] Tag item
5354 * @return {OO.ui.Widget} The next widget available.
5355 */
5356 OO.ui.TagMultiselectWidget.prototype.getNextItem = function ( item ) {
5357 var itemIndex = this.items.indexOf( item );
5358
5359 if ( item === undefined || itemIndex === -1 ) {
5360 return this.items[ 0 ];
5361 }
5362
5363 if ( itemIndex === this.items.length - 1 ) { // Last item
5364 if ( this.hasInput ) {
5365 return this.input;
5366 } else {
5367 // Return first item
5368 return this.items[ 0 ];
5369 }
5370 } else {
5371 return this.items[ itemIndex + 1 ];
5372 }
5373 };
5374
5375 /**
5376 * Given an item, returns the item before it. If the item is already the
5377 * first item, return `this.input`. If no item is passed, returns the
5378 * very last item.
5379 *
5380 * @protected
5381 * @param {OO.ui.TagItemWidget} [item] Tag item
5382 * @return {OO.ui.Widget} The previous widget available.
5383 */
5384 OO.ui.TagMultiselectWidget.prototype.getPreviousItem = function ( item ) {
5385 var itemIndex = this.items.indexOf( item );
5386
5387 if ( item === undefined || itemIndex === -1 ) {
5388 return this.items[ this.items.length - 1 ];
5389 }
5390
5391 if ( itemIndex === 0 ) {
5392 if ( this.hasInput ) {
5393 return this.input;
5394 } else {
5395 // Return the last item
5396 return this.items[ this.items.length - 1 ];
5397 }
5398 } else {
5399 return this.items[ itemIndex - 1 ];
5400 }
5401 };
5402
5403 /**
5404 * Update the dimensions of the text input field to encompass all available area.
5405 * This is especially relevant for when the input is at the edge of a line
5406 * and should get smaller. The usual operation (as an inline-block with min-width)
5407 * does not work in that case, pushing the input downwards to the next line.
5408 *
5409 * @private
5410 */
5411 OO.ui.TagMultiselectWidget.prototype.updateInputSize = function () {
5412 var $lastItem, direction, contentWidth, currentWidth, bestWidth;
5413 if ( this.inputPosition === 'inline' && !this.isDisabled() ) {
5414 if ( this.input.$input[ 0 ].scrollWidth === 0 ) {
5415 // Input appears to be attached but not visible.
5416 // Don't attempt to adjust its size, because our measurements
5417 // are going to fail anyway.
5418 return;
5419 }
5420 this.input.$input.css( 'width', '1em' );
5421 $lastItem = this.$group.children().last();
5422 direction = OO.ui.Element.static.getDir( this.$handle );
5423
5424 // Get the width of the input with the placeholder text as
5425 // the value and save it so that we don't keep recalculating
5426 if (
5427 this.contentWidthWithPlaceholder === undefined &&
5428 this.input.getValue() === '' &&
5429 this.input.$input.attr( 'placeholder' ) !== undefined
5430 ) {
5431 this.input.setValue( this.input.$input.attr( 'placeholder' ) );
5432 this.contentWidthWithPlaceholder = this.input.$input[ 0 ].scrollWidth;
5433 this.input.setValue( '' );
5434
5435 }
5436
5437 // Always keep the input wide enough for the placeholder text
5438 contentWidth = Math.max(
5439 this.input.$input[ 0 ].scrollWidth,
5440 // undefined arguments in Math.max lead to NaN
5441 ( this.contentWidthWithPlaceholder === undefined ) ?
5442 0 : this.contentWidthWithPlaceholder
5443 );
5444 currentWidth = this.input.$input.width();
5445
5446 if ( contentWidth < currentWidth ) {
5447 this.updateIfHeightChanged();
5448 // All is fine, don't perform expensive calculations
5449 return;
5450 }
5451
5452 if ( $lastItem.length === 0 ) {
5453 bestWidth = this.$content.innerWidth();
5454 } else {
5455 bestWidth = direction === 'ltr' ?
5456 this.$content.innerWidth() - $lastItem.position().left - $lastItem.outerWidth() :
5457 $lastItem.position().left;
5458 }
5459
5460 // Some safety margin for sanity, because I *really* don't feel like finding out where the few
5461 // pixels this is off by are coming from.
5462 bestWidth -= 10;
5463 if ( contentWidth > bestWidth ) {
5464 // This will result in the input getting shifted to the next line
5465 bestWidth = this.$content.innerWidth() - 10;
5466 }
5467 this.input.$input.width( Math.floor( bestWidth ) );
5468 this.updateIfHeightChanged();
5469 } else {
5470 this.updateIfHeightChanged();
5471 }
5472 };
5473
5474 /**
5475 * Determine if widget height changed, and if so,
5476 * emit the resize event. This is useful for when there are either
5477 * menus or popups attached to the bottom of the widget, to allow
5478 * them to change their positioning in case the widget moved down
5479 * or up.
5480 *
5481 * @private
5482 */
5483 OO.ui.TagMultiselectWidget.prototype.updateIfHeightChanged = function () {
5484 var height = this.$element.height();
5485 if ( height !== this.height ) {
5486 this.height = height;
5487 this.emit( 'resize' );
5488 }
5489 };
5490
5491 /**
5492 * Check whether all items in the widget are valid
5493 *
5494 * @return {boolean} Widget is valid
5495 */
5496 OO.ui.TagMultiselectWidget.prototype.checkValidity = function () {
5497 return this.getItems().every( function ( item ) {
5498 return item.isValid();
5499 } );
5500 };
5501
5502 /**
5503 * Set the valid state of this item
5504 *
5505 * @param {boolean} [valid] Item is valid
5506 * @fires valid
5507 */
5508 OO.ui.TagMultiselectWidget.prototype.toggleValid = function ( valid ) {
5509 valid = valid === undefined ? !this.valid : !!valid;
5510
5511 if ( this.valid !== valid ) {
5512 this.valid = valid;
5513
5514 this.setFlags( { invalid: !this.valid } );
5515
5516 this.emit( 'valid', this.valid );
5517 }
5518 };
5519
5520 /**
5521 * Get the current valid state of the widget
5522 *
5523 * @return {boolean} Widget is valid
5524 */
5525 OO.ui.TagMultiselectWidget.prototype.isValid = function () {
5526 return this.valid;
5527 };
5528
5529 /**
5530 * PopupTagMultiselectWidget is a {@link OO.ui.TagMultiselectWidget OO.ui.TagMultiselectWidget} intended
5531 * to use a popup. The popup can be configured to have a default input to insert values into the widget.
5532 *
5533 * @example
5534 * // Example: A basic PopupTagMultiselectWidget.
5535 * var widget = new OO.ui.PopupTagMultiselectWidget();
5536 * $( 'body' ).append( widget.$element );
5537 *
5538 * // Example: A PopupTagMultiselectWidget with an external popup.
5539 * var popupInput = new OO.ui.TextInputWidget(),
5540 * widget = new OO.ui.PopupTagMultiselectWidget( {
5541 * popupInput: popupInput,
5542 * popup: {
5543 * $content: popupInput.$element
5544 * }
5545 * } );
5546 * $( 'body' ).append( widget.$element );
5547 *
5548 * @class
5549 * @extends OO.ui.TagMultiselectWidget
5550 * @mixins OO.ui.mixin.PopupElement
5551 *
5552 * @param {Object} config Configuration object
5553 * @cfg {jQuery} [$overlay] An overlay for the popup.
5554 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
5555 * @cfg {Object} [popup] Configuration options for the popup
5556 * @cfg {OO.ui.InputWidget} [popupInput] An input widget inside the popup that will be
5557 * focused when the popup is opened and will be used as replacement for the
5558 * general input in the widget.
5559 */
5560 OO.ui.PopupTagMultiselectWidget = function OoUiPopupTagMultiselectWidget( config ) {
5561 var defaultInput,
5562 defaultConfig = { popup: {} };
5563
5564 config = config || {};
5565
5566 // Parent constructor
5567 OO.ui.PopupTagMultiselectWidget.parent.call( this, $.extend( { inputPosition: 'none' }, config ) );
5568
5569 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
5570
5571 if ( !config.popup ) {
5572 // For the default base implementation, we give a popup
5573 // with an input widget inside it. For any other use cases
5574 // the popup needs to be populated externally and the
5575 // event handled to add tags separately and manually
5576 defaultInput = new OO.ui.TextInputWidget();
5577
5578 defaultConfig.popupInput = defaultInput;
5579 defaultConfig.popup.$content = defaultInput.$element;
5580
5581 this.$element.addClass( 'oo-ui-popupTagMultiselectWidget-defaultPopup' );
5582 }
5583
5584 // Add overlay, and add that to the autoCloseIgnore
5585 defaultConfig.popup.$overlay = this.$overlay;
5586 defaultConfig.popup.$autoCloseIgnore = this.hasInput ?
5587 this.input.$element.add( this.$overlay ) : this.$overlay;
5588
5589 // Allow extending any of the above
5590 config = $.extend( defaultConfig, config );
5591
5592 // Mixin constructors
5593 OO.ui.mixin.PopupElement.call( this, config );
5594
5595 if ( this.hasInput ) {
5596 this.input.$input.on( 'focus', this.popup.toggle.bind( this.popup, true ) );
5597 }
5598
5599 // Configuration options
5600 this.popupInput = config.popupInput;
5601 if ( this.popupInput ) {
5602 this.popupInput.connect( this, {
5603 enter: 'onPopupInputEnter'
5604 } );
5605 }
5606
5607 // Events
5608 this.on( 'resize', this.popup.updateDimensions.bind( this.popup ) );
5609 this.popup.connect( this, { toggle: 'onPopupToggle' } );
5610 this.$tabIndexed
5611 .on( 'focus', this.onFocus.bind( this ) );
5612
5613 // Initialize
5614 this.$element
5615 .append( this.popup.$element )
5616 .addClass( 'oo-ui-popupTagMultiselectWidget' );
5617 };
5618
5619 /* Initialization */
5620
5621 OO.inheritClass( OO.ui.PopupTagMultiselectWidget, OO.ui.TagMultiselectWidget );
5622 OO.mixinClass( OO.ui.PopupTagMultiselectWidget, OO.ui.mixin.PopupElement );
5623
5624 /* Methods */
5625
5626 /**
5627 * Focus event handler.
5628 *
5629 * @private
5630 */
5631 OO.ui.PopupTagMultiselectWidget.prototype.onFocus = function () {
5632 this.popup.toggle( true );
5633 };
5634
5635 /**
5636 * Respond to popup toggle event
5637 *
5638 * @param {boolean} isVisible Popup is visible
5639 */
5640 OO.ui.PopupTagMultiselectWidget.prototype.onPopupToggle = function ( isVisible ) {
5641 if ( isVisible && this.popupInput ) {
5642 this.popupInput.focus();
5643 }
5644 };
5645
5646 /**
5647 * Respond to popup input enter event
5648 */
5649 OO.ui.PopupTagMultiselectWidget.prototype.onPopupInputEnter = function () {
5650 if ( this.popupInput ) {
5651 this.addTagByPopupValue( this.popupInput.getValue() );
5652 this.popupInput.setValue( '' );
5653 }
5654 };
5655
5656 /**
5657 * @inheritdoc
5658 */
5659 OO.ui.PopupTagMultiselectWidget.prototype.onTagSelect = function ( item ) {
5660 if ( this.popupInput && this.allowEditTags ) {
5661 this.popupInput.setValue( item.getData() );
5662 this.removeItems( [ item ] );
5663
5664 this.popup.toggle( true );
5665 this.popupInput.focus();
5666 } else {
5667 // Parent
5668 OO.ui.PopupTagMultiselectWidget.parent.prototype.onTagSelect.call( this, item );
5669 }
5670 };
5671
5672 /**
5673 * Add a tag by the popup value.
5674 * Whatever is responsible for setting the value in the popup should call
5675 * this method to add a tag, or use the regular methods like #addTag or
5676 * #setValue directly.
5677 *
5678 * @param {string} data The value of item
5679 * @param {string} [label] The label of the tag. If not given, the data is used.
5680 */
5681 OO.ui.PopupTagMultiselectWidget.prototype.addTagByPopupValue = function ( data, label ) {
5682 this.addTag( data, label );
5683 };
5684
5685 /**
5686 * MenuTagMultiselectWidget is a {@link OO.ui.TagMultiselectWidget OO.ui.TagMultiselectWidget} intended
5687 * to use a menu of selectable options.
5688 *
5689 * @example
5690 * // Example: A basic MenuTagMultiselectWidget.
5691 * var widget = new OO.ui.MenuTagMultiselectWidget( {
5692 * inputPosition: 'outline',
5693 * options: [
5694 * { data: 'option1', label: 'Option 1' },
5695 * { data: 'option2', label: 'Option 2' },
5696 * { data: 'option3', label: 'Option 3' },
5697 * ],
5698 * selected: [ 'option1', 'option2' ]
5699 * } );
5700 * $( 'body' ).append( widget.$element );
5701 *
5702 * @class
5703 * @extends OO.ui.TagMultiselectWidget
5704 *
5705 * @constructor
5706 * @param {Object} [config] Configuration object
5707 * @cfg {boolean} [clearInputOnChoose=true] Clear the text input value when a menu option is chosen
5708 * @cfg {Object} [menu] Configuration object for the menu widget
5709 * @cfg {jQuery} [$overlay] An overlay for the menu.
5710 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
5711 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: … }`
5712 */
5713 OO.ui.MenuTagMultiselectWidget = function OoUiMenuTagMultiselectWidget( config ) {
5714 config = config || {};
5715
5716 // Parent constructor
5717 OO.ui.MenuTagMultiselectWidget.parent.call( this, config );
5718
5719 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
5720 this.clearInputOnChoose = config.clearInputOnChoose === undefined || !!config.clearInputOnChoose;
5721 this.menu = this.createMenuWidget( $.extend( {
5722 widget: this,
5723 input: this.hasInput ? this.input : null,
5724 $input: this.hasInput ? this.input.$input : null,
5725 filterFromInput: !!this.hasInput,
5726 $autoCloseIgnore: this.hasInput ?
5727 this.input.$element : $( [] ),
5728 $floatableContainer: this.hasInput && this.inputPosition === 'outline' ?
5729 this.input.$element : this.$element,
5730 $overlay: this.$overlay,
5731 disabled: this.isDisabled()
5732 }, config.menu ) );
5733 this.addOptions( config.options || [] );
5734
5735 // Events
5736 this.menu.connect( this, {
5737 choose: 'onMenuChoose',
5738 toggle: 'onMenuToggle'
5739 } );
5740 if ( this.hasInput ) {
5741 this.input.connect( this, { change: 'onInputChange' } );
5742 }
5743 this.connect( this, { resize: 'onResize' } );
5744
5745 // Initialization
5746 this.$overlay
5747 .append( this.menu.$element );
5748 this.$element
5749 .addClass( 'oo-ui-menuTagMultiselectWidget' );
5750 // TagMultiselectWidget already does this, but it doesn't work right because this.menu is not yet
5751 // set up while the parent constructor runs, and #getAllowedValues rejects everything.
5752 if ( config.selected ) {
5753 this.setValue( config.selected );
5754 }
5755 };
5756
5757 /* Initialization */
5758
5759 OO.inheritClass( OO.ui.MenuTagMultiselectWidget, OO.ui.TagMultiselectWidget );
5760
5761 /* Methods */
5762
5763 /**
5764 * Respond to resize event
5765 */
5766 OO.ui.MenuTagMultiselectWidget.prototype.onResize = function () {
5767 // Reposition the menu
5768 this.menu.position();
5769 };
5770
5771 /**
5772 * @inheritdoc
5773 */
5774 OO.ui.MenuTagMultiselectWidget.prototype.onInputFocus = function () {
5775 // Parent method
5776 OO.ui.MenuTagMultiselectWidget.parent.prototype.onInputFocus.call( this );
5777
5778 this.menu.toggle( true );
5779 };
5780
5781 /**
5782 * Respond to input change event
5783 */
5784 OO.ui.MenuTagMultiselectWidget.prototype.onInputChange = function () {
5785 this.menu.toggle( true );
5786 };
5787
5788 /**
5789 * Respond to menu choose event
5790 *
5791 * @param {OO.ui.OptionWidget} menuItem Chosen menu item
5792 */
5793 OO.ui.MenuTagMultiselectWidget.prototype.onMenuChoose = function ( menuItem ) {
5794 // Add tag
5795 this.addTag( menuItem.getData(), menuItem.getLabel() );
5796 if ( this.hasInput && this.clearInputOnChoose ) {
5797 this.input.setValue( '' );
5798 }
5799 };
5800
5801 /**
5802 * Respond to menu toggle event. Reset item highlights on hide.
5803 *
5804 * @param {boolean} isVisible The menu is visible
5805 */
5806 OO.ui.MenuTagMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
5807 if ( !isVisible ) {
5808 this.menu.selectItem( null );
5809 this.menu.highlightItem( null );
5810 }
5811 };
5812
5813 /**
5814 * @inheritdoc
5815 */
5816 OO.ui.MenuTagMultiselectWidget.prototype.onTagSelect = function ( tagItem ) {
5817 var menuItem = this.menu.findItemFromData( tagItem.getData() );
5818 // Override the base behavior from TagMultiselectWidget; the base behavior
5819 // in TagMultiselectWidget is to remove the tag to edit it in the input,
5820 // but in our case, we want to utilize the menu selection behavior, and
5821 // definitely not remove the item.
5822
5823 // If there is an input that is used for filtering, erase the value so we don't filter
5824 if ( this.hasInput && this.menu.filterFromInput ) {
5825 this.input.setValue( '' );
5826 }
5827
5828 // Select the menu item
5829 this.menu.selectItem( menuItem );
5830
5831 this.focus();
5832 };
5833
5834 /**
5835 * @inheritdoc
5836 */
5837 OO.ui.MenuTagMultiselectWidget.prototype.addTagFromInput = function () {
5838 var inputValue = this.input.getValue(),
5839 validated = false,
5840 highlightedItem = this.menu.findHighlightedItem(),
5841 item = this.menu.findItemFromData( inputValue );
5842
5843 // Override the parent method so we add from the menu
5844 // rather than directly from the input
5845
5846 // Look for a highlighted item first
5847 if ( highlightedItem ) {
5848 validated = this.addTag( highlightedItem.getData(), highlightedItem.getLabel() );
5849 } else if ( item ) {
5850 // Look for the element that fits the data
5851 validated = this.addTag( item.getData(), item.getLabel() );
5852 } else {
5853 // Otherwise, add the tag - the method will only add if the
5854 // tag is valid or if invalid tags are allowed
5855 validated = this.addTag( inputValue );
5856 }
5857
5858 if ( validated ) {
5859 this.clearInput();
5860 this.focus();
5861 }
5862 };
5863
5864 /**
5865 * Return the visible items in the menu. This is mainly used for when
5866 * the menu is filtering results.
5867 *
5868 * @return {OO.ui.MenuOptionWidget[]} Visible results
5869 */
5870 OO.ui.MenuTagMultiselectWidget.prototype.getMenuVisibleItems = function () {
5871 return this.menu.getItems().filter( function ( menuItem ) {
5872 return menuItem.isVisible();
5873 } );
5874 };
5875
5876 /**
5877 * Create the menu for this widget. This is in a separate method so that
5878 * child classes can override this without polluting the constructor with
5879 * unnecessary extra objects that will be overidden.
5880 *
5881 * @param {Object} menuConfig Configuration options
5882 * @return {OO.ui.MenuSelectWidget} Menu widget
5883 */
5884 OO.ui.MenuTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
5885 return new OO.ui.MenuSelectWidget( menuConfig );
5886 };
5887
5888 /**
5889 * Add options to the menu
5890 *
5891 * @param {Object[]} menuOptions Object defining options
5892 */
5893 OO.ui.MenuTagMultiselectWidget.prototype.addOptions = function ( menuOptions ) {
5894 var widget = this,
5895 items = menuOptions.map( function ( obj ) {
5896 return widget.createMenuOptionWidget( obj.data, obj.label );
5897 } );
5898
5899 this.menu.addItems( items );
5900 };
5901
5902 /**
5903 * Create a menu option widget.
5904 *
5905 * @param {string} data Item data
5906 * @param {string} [label] Item label
5907 * @return {OO.ui.OptionWidget} Option widget
5908 */
5909 OO.ui.MenuTagMultiselectWidget.prototype.createMenuOptionWidget = function ( data, label ) {
5910 return new OO.ui.MenuOptionWidget( {
5911 data: data,
5912 label: label || data
5913 } );
5914 };
5915
5916 /**
5917 * Get the menu
5918 *
5919 * @return {OO.ui.MenuSelectWidget} Menu
5920 */
5921 OO.ui.MenuTagMultiselectWidget.prototype.getMenu = function () {
5922 return this.menu;
5923 };
5924
5925 /**
5926 * Get the allowed values list
5927 *
5928 * @return {string[]} Allowed data values
5929 */
5930 OO.ui.MenuTagMultiselectWidget.prototype.getAllowedValues = function () {
5931 var menuDatas = [];
5932 if ( this.menu ) {
5933 // If the parent constructor is calling us, we're not ready yet, this.menu is not set up.
5934 menuDatas = this.menu.getItems().map( function ( menuItem ) {
5935 return menuItem.getData();
5936 } );
5937 }
5938 return this.allowedValues.concat( menuDatas );
5939 };
5940
5941 /**
5942 * SelectFileWidgets allow for selecting files, using the HTML5 File API. These
5943 * widgets can be configured with {@link OO.ui.mixin.IconElement icons} and {@link
5944 * OO.ui.mixin.IndicatorElement indicators}.
5945 * Please see the [OOUI documentation on MediaWiki] [1] for more information and examples.
5946 *
5947 * @example
5948 * // Example of a file select widget
5949 * var selectFile = new OO.ui.SelectFileWidget();
5950 * $( 'body' ).append( selectFile.$element );
5951 *
5952 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets
5953 *
5954 * @class
5955 * @extends OO.ui.Widget
5956 * @mixins OO.ui.mixin.IconElement
5957 * @mixins OO.ui.mixin.IndicatorElement
5958 * @mixins OO.ui.mixin.PendingElement
5959 * @mixins OO.ui.mixin.LabelElement
5960 *
5961 * @constructor
5962 * @param {Object} [config] Configuration options
5963 * @cfg {string[]|null} [accept=null] MIME types to accept. null accepts all types.
5964 * @cfg {string} [placeholder] Text to display when no file is selected.
5965 * @cfg {string} [notsupported] Text to display when file support is missing in the browser.
5966 * @cfg {boolean} [droppable=true] Whether to accept files by drag and drop.
5967 * @cfg {boolean} [showDropTarget=false] Whether to show a drop target. Requires droppable to be true.
5968 * @cfg {number} [thumbnailSizeLimit=20] File size limit in MiB above which to not try and show a
5969 * preview (for performance)
5970 */
5971 OO.ui.SelectFileWidget = function OoUiSelectFileWidget( config ) {
5972 var dragHandler;
5973
5974 // Configuration initialization
5975 config = $.extend( {
5976 accept: null,
5977 placeholder: OO.ui.msg( 'ooui-selectfile-placeholder' ),
5978 notsupported: OO.ui.msg( 'ooui-selectfile-not-supported' ),
5979 droppable: true,
5980 showDropTarget: false,
5981 thumbnailSizeLimit: 20
5982 }, config );
5983
5984 // Parent constructor
5985 OO.ui.SelectFileWidget.parent.call( this, config );
5986
5987 // Mixin constructors
5988 OO.ui.mixin.IconElement.call( this, config );
5989 OO.ui.mixin.IndicatorElement.call( this, config );
5990 OO.ui.mixin.PendingElement.call( this, $.extend( {}, config, { $pending: this.$info } ) );
5991 OO.ui.mixin.LabelElement.call( this, config );
5992
5993 // Properties
5994 this.$info = $( '<span>' );
5995 this.showDropTarget = config.showDropTarget;
5996 this.thumbnailSizeLimit = config.thumbnailSizeLimit;
5997 this.isSupported = this.constructor.static.isSupported();
5998 this.currentFile = null;
5999 if ( Array.isArray( config.accept ) ) {
6000 this.accept = config.accept;
6001 } else {
6002 this.accept = null;
6003 }
6004 this.placeholder = config.placeholder;
6005 this.notsupported = config.notsupported;
6006 this.onFileSelectedHandler = this.onFileSelected.bind( this );
6007
6008 this.selectButton = new OO.ui.ButtonWidget( {
6009 classes: [ 'oo-ui-selectFileWidget-selectButton' ],
6010 label: OO.ui.msg( 'ooui-selectfile-button-select' ),
6011 disabled: this.disabled || !this.isSupported
6012 } );
6013
6014 this.clearButton = new OO.ui.ButtonWidget( {
6015 classes: [ 'oo-ui-selectFileWidget-clearButton' ],
6016 framed: false,
6017 icon: 'close',
6018 disabled: this.disabled
6019 } );
6020
6021 // Events
6022 this.selectButton.$button.on( {
6023 keypress: this.onKeyPress.bind( this )
6024 } );
6025 this.clearButton.connect( this, {
6026 click: 'onClearClick'
6027 } );
6028 if ( config.droppable ) {
6029 dragHandler = this.onDragEnterOrOver.bind( this );
6030 this.$element.on( {
6031 dragenter: dragHandler,
6032 dragover: dragHandler,
6033 dragleave: this.onDragLeave.bind( this ),
6034 drop: this.onDrop.bind( this )
6035 } );
6036 }
6037
6038 // Initialization
6039 this.addInput();
6040 this.$label.addClass( 'oo-ui-selectFileWidget-label' );
6041 this.$info
6042 .addClass( 'oo-ui-selectFileWidget-info' )
6043 .append( this.$icon, this.$label, this.clearButton.$element, this.$indicator );
6044
6045 if ( config.droppable && config.showDropTarget ) {
6046 this.selectButton.setIcon( 'upload' );
6047 this.$thumbnail = $( '<div>' ).addClass( 'oo-ui-selectFileWidget-thumbnail' );
6048 this.setPendingElement( this.$thumbnail );
6049 this.$element
6050 .addClass( 'oo-ui-selectFileWidget-dropTarget oo-ui-selectFileWidget' )
6051 .on( {
6052 click: this.onDropTargetClick.bind( this )
6053 } )
6054 .append(
6055 this.$thumbnail,
6056 this.$info,
6057 this.selectButton.$element,
6058 $( '<span>' )
6059 .addClass( 'oo-ui-selectFileWidget-dropLabel' )
6060 .text( OO.ui.msg( 'ooui-selectfile-dragdrop-placeholder' ) )
6061 );
6062 } else {
6063 this.$element
6064 .addClass( 'oo-ui-selectFileWidget' )
6065 .append( this.$info, this.selectButton.$element );
6066 }
6067 this.updateUI();
6068 };
6069
6070 /* Setup */
6071
6072 OO.inheritClass( OO.ui.SelectFileWidget, OO.ui.Widget );
6073 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IconElement );
6074 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IndicatorElement );
6075 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.PendingElement );
6076 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.LabelElement );
6077
6078 /* Static Properties */
6079
6080 /**
6081 * Check if this widget is supported
6082 *
6083 * @static
6084 * @return {boolean}
6085 */
6086 OO.ui.SelectFileWidget.static.isSupported = function () {
6087 var $input;
6088 if ( OO.ui.SelectFileWidget.static.isSupportedCache === null ) {
6089 $input = $( '<input>' ).attr( 'type', 'file' );
6090 OO.ui.SelectFileWidget.static.isSupportedCache = $input[ 0 ].files !== undefined;
6091 }
6092 return OO.ui.SelectFileWidget.static.isSupportedCache;
6093 };
6094
6095 OO.ui.SelectFileWidget.static.isSupportedCache = null;
6096
6097 /* Events */
6098
6099 /**
6100 * @event change
6101 *
6102 * A change event is emitted when the on/off state of the toggle changes.
6103 *
6104 * @param {File|null} value New value
6105 */
6106
6107 /* Methods */
6108
6109 /**
6110 * Get the current value of the field
6111 *
6112 * @return {File|null}
6113 */
6114 OO.ui.SelectFileWidget.prototype.getValue = function () {
6115 return this.currentFile;
6116 };
6117
6118 /**
6119 * Set the current value of the field
6120 *
6121 * @param {File|null} file File to select
6122 */
6123 OO.ui.SelectFileWidget.prototype.setValue = function ( file ) {
6124 if ( this.currentFile !== file ) {
6125 this.currentFile = file;
6126 this.updateUI();
6127 this.emit( 'change', this.currentFile );
6128 }
6129 };
6130
6131 /**
6132 * Focus the widget.
6133 *
6134 * Focusses the select file button.
6135 *
6136 * @chainable
6137 */
6138 OO.ui.SelectFileWidget.prototype.focus = function () {
6139 this.selectButton.focus();
6140 return this;
6141 };
6142
6143 /**
6144 * Blur the widget.
6145 *
6146 * @chainable
6147 */
6148 OO.ui.SelectFileWidget.prototype.blur = function () {
6149 this.selectButton.blur();
6150 return this;
6151 };
6152
6153 /**
6154 * @inheritdoc
6155 */
6156 OO.ui.SelectFileWidget.prototype.simulateLabelClick = function () {
6157 this.focus();
6158 };
6159
6160 /**
6161 * Update the user interface when a file is selected or unselected
6162 *
6163 * @protected
6164 */
6165 OO.ui.SelectFileWidget.prototype.updateUI = function () {
6166 var $label;
6167 if ( !this.isSupported ) {
6168 this.$element.addClass( 'oo-ui-selectFileWidget-notsupported' );
6169 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
6170 this.setLabel( this.notsupported );
6171 } else {
6172 this.$element.addClass( 'oo-ui-selectFileWidget-supported' );
6173 if ( this.currentFile ) {
6174 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
6175 $label = $( [] );
6176 $label = $label.add(
6177 $( '<span>' )
6178 .addClass( 'oo-ui-selectFileWidget-fileName' )
6179 .text( this.currentFile.name )
6180 );
6181 this.setLabel( $label );
6182
6183 if ( this.showDropTarget ) {
6184 this.pushPending();
6185 this.loadAndGetImageUrl().done( function ( url ) {
6186 this.$thumbnail.css( 'background-image', 'url( ' + url + ' )' );
6187 }.bind( this ) ).fail( function () {
6188 this.$thumbnail.append(
6189 new OO.ui.IconWidget( {
6190 icon: 'attachment',
6191 classes: [ 'oo-ui-selectFileWidget-noThumbnail-icon' ]
6192 } ).$element
6193 );
6194 }.bind( this ) ).always( function () {
6195 this.popPending();
6196 }.bind( this ) );
6197 this.$element.off( 'click' );
6198 }
6199 } else {
6200 if ( this.showDropTarget ) {
6201 this.$element.off( 'click' );
6202 this.$element.on( {
6203 click: this.onDropTargetClick.bind( this )
6204 } );
6205 this.$thumbnail
6206 .empty()
6207 .css( 'background-image', '' );
6208 }
6209 this.$element.addClass( 'oo-ui-selectFileWidget-empty' );
6210 this.setLabel( this.placeholder );
6211 }
6212 }
6213 };
6214
6215 /**
6216 * If the selected file is an image, get its URL and load it.
6217 *
6218 * @return {jQuery.Promise} Promise resolves with the image URL after it has loaded
6219 */
6220 OO.ui.SelectFileWidget.prototype.loadAndGetImageUrl = function () {
6221 var deferred = $.Deferred(),
6222 file = this.currentFile,
6223 reader = new FileReader();
6224
6225 if (
6226 file &&
6227 ( OO.getProp( file, 'type' ) || '' ).indexOf( 'image/' ) === 0 &&
6228 file.size < this.thumbnailSizeLimit * 1024 * 1024
6229 ) {
6230 reader.onload = function ( event ) {
6231 var img = document.createElement( 'img' );
6232 img.addEventListener( 'load', function () {
6233 if (
6234 img.naturalWidth === 0 ||
6235 img.naturalHeight === 0 ||
6236 img.complete === false
6237 ) {
6238 deferred.reject();
6239 } else {
6240 deferred.resolve( event.target.result );
6241 }
6242 } );
6243 img.src = event.target.result;
6244 };
6245 reader.readAsDataURL( file );
6246 } else {
6247 deferred.reject();
6248 }
6249
6250 return deferred.promise();
6251 };
6252
6253 /**
6254 * Add the input to the widget
6255 *
6256 * @private
6257 */
6258 OO.ui.SelectFileWidget.prototype.addInput = function () {
6259 if ( this.$input ) {
6260 this.$input.remove();
6261 }
6262
6263 if ( !this.isSupported ) {
6264 this.$input = null;
6265 return;
6266 }
6267
6268 this.$input = $( '<input>' ).attr( 'type', 'file' );
6269 this.$input.on( 'change', this.onFileSelectedHandler );
6270 this.$input.on( 'click', function ( e ) {
6271 // Prevents dropTarget to get clicked which calls
6272 // a click on this input
6273 e.stopPropagation();
6274 } );
6275 this.$input.attr( {
6276 tabindex: -1
6277 } );
6278 if ( this.accept ) {
6279 this.$input.attr( 'accept', this.accept.join( ', ' ) );
6280 }
6281 this.selectButton.$button.append( this.$input );
6282 };
6283
6284 /**
6285 * Determine if we should accept this file
6286 *
6287 * @private
6288 * @param {string} mimeType File MIME type
6289 * @return {boolean}
6290 */
6291 OO.ui.SelectFileWidget.prototype.isAllowedType = function ( mimeType ) {
6292 var i, mimeTest;
6293
6294 if ( !this.accept || !mimeType ) {
6295 return true;
6296 }
6297
6298 for ( i = 0; i < this.accept.length; i++ ) {
6299 mimeTest = this.accept[ i ];
6300 if ( mimeTest === mimeType ) {
6301 return true;
6302 } else if ( mimeTest.substr( -2 ) === '/*' ) {
6303 mimeTest = mimeTest.substr( 0, mimeTest.length - 1 );
6304 if ( mimeType.substr( 0, mimeTest.length ) === mimeTest ) {
6305 return true;
6306 }
6307 }
6308 }
6309
6310 return false;
6311 };
6312
6313 /**
6314 * Handle file selection from the input
6315 *
6316 * @private
6317 * @param {jQuery.Event} e
6318 */
6319 OO.ui.SelectFileWidget.prototype.onFileSelected = function ( e ) {
6320 var file = OO.getProp( e.target, 'files', 0 ) || null;
6321
6322 if ( file && !this.isAllowedType( file.type ) ) {
6323 file = null;
6324 }
6325
6326 this.setValue( file );
6327 this.addInput();
6328 };
6329
6330 /**
6331 * Handle clear button click events.
6332 *
6333 * @private
6334 */
6335 OO.ui.SelectFileWidget.prototype.onClearClick = function () {
6336 this.setValue( null );
6337 return false;
6338 };
6339
6340 /**
6341 * Handle key press events.
6342 *
6343 * @private
6344 * @param {jQuery.Event} e Key press event
6345 */
6346 OO.ui.SelectFileWidget.prototype.onKeyPress = function ( e ) {
6347 if ( this.isSupported && !this.isDisabled() && this.$input &&
6348 ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER )
6349 ) {
6350 this.$input.click();
6351 return false;
6352 }
6353 };
6354
6355 /**
6356 * Handle drop target click events.
6357 *
6358 * @private
6359 * @param {jQuery.Event} e Key press event
6360 */
6361 OO.ui.SelectFileWidget.prototype.onDropTargetClick = function () {
6362 if ( this.isSupported && !this.isDisabled() && this.$input ) {
6363 this.$input.click();
6364 return false;
6365 }
6366 };
6367
6368 /**
6369 * Handle drag enter and over events
6370 *
6371 * @private
6372 * @param {jQuery.Event} e Drag event
6373 */
6374 OO.ui.SelectFileWidget.prototype.onDragEnterOrOver = function ( e ) {
6375 var itemOrFile,
6376 droppableFile = false,
6377 dt = e.originalEvent.dataTransfer;
6378
6379 e.preventDefault();
6380 e.stopPropagation();
6381
6382 if ( this.isDisabled() || !this.isSupported ) {
6383 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6384 dt.dropEffect = 'none';
6385 return false;
6386 }
6387
6388 // DataTransferItem and File both have a type property, but in Chrome files
6389 // have no information at this point.
6390 itemOrFile = OO.getProp( dt, 'items', 0 ) || OO.getProp( dt, 'files', 0 );
6391 if ( itemOrFile ) {
6392 if ( this.isAllowedType( itemOrFile.type ) ) {
6393 droppableFile = true;
6394 }
6395 // dt.types is Array-like, but not an Array
6396 } else if ( Array.prototype.indexOf.call( OO.getProp( dt, 'types' ) || [], 'Files' ) !== -1 ) {
6397 // File information is not available at this point for security so just assume
6398 // it is acceptable for now.
6399 // https://bugzilla.mozilla.org/show_bug.cgi?id=640534
6400 droppableFile = true;
6401 }
6402
6403 this.$element.toggleClass( 'oo-ui-selectFileWidget-canDrop', droppableFile );
6404 if ( !droppableFile ) {
6405 dt.dropEffect = 'none';
6406 }
6407
6408 return false;
6409 };
6410
6411 /**
6412 * Handle drag leave events
6413 *
6414 * @private
6415 * @param {jQuery.Event} e Drag event
6416 */
6417 OO.ui.SelectFileWidget.prototype.onDragLeave = function () {
6418 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6419 };
6420
6421 /**
6422 * Handle drop events
6423 *
6424 * @private
6425 * @param {jQuery.Event} e Drop event
6426 */
6427 OO.ui.SelectFileWidget.prototype.onDrop = function ( e ) {
6428 var file = null,
6429 dt = e.originalEvent.dataTransfer;
6430
6431 e.preventDefault();
6432 e.stopPropagation();
6433 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6434
6435 if ( this.isDisabled() || !this.isSupported ) {
6436 return false;
6437 }
6438
6439 file = OO.getProp( dt, 'files', 0 );
6440 if ( file && !this.isAllowedType( file.type ) ) {
6441 file = null;
6442 }
6443 if ( file ) {
6444 this.setValue( file );
6445 }
6446
6447 return false;
6448 };
6449
6450 /**
6451 * @inheritdoc
6452 */
6453 OO.ui.SelectFileWidget.prototype.setDisabled = function ( disabled ) {
6454 OO.ui.SelectFileWidget.parent.prototype.setDisabled.call( this, disabled );
6455 if ( this.selectButton ) {
6456 this.selectButton.setDisabled( disabled );
6457 }
6458 if ( this.clearButton ) {
6459 this.clearButton.setDisabled( disabled );
6460 }
6461 return this;
6462 };
6463
6464 /**
6465 * SearchWidgets combine a {@link OO.ui.TextInputWidget text input field}, where users can type a search query,
6466 * and a menu of search results, which is displayed beneath the query
6467 * field. Unlike {@link OO.ui.mixin.LookupElement lookup menus}, search result menus are always visible to the user.
6468 * Users can choose an item from the menu or type a query into the text field to search for a matching result item.
6469 * In general, search widgets are used inside a separate {@link OO.ui.Dialog dialog} window.
6470 *
6471 * Each time the query is changed, the search result menu is cleared and repopulated. Please see
6472 * the [OOUI demos][1] for an example.
6473 *
6474 * [1]: https://doc.wikimedia.org/oojs-ui/master/demos/#SearchInputWidget-type-search
6475 *
6476 * @class
6477 * @extends OO.ui.Widget
6478 *
6479 * @constructor
6480 * @param {Object} [config] Configuration options
6481 * @cfg {string|jQuery} [placeholder] Placeholder text for query input
6482 * @cfg {string} [value] Initial query value
6483 */
6484 OO.ui.SearchWidget = function OoUiSearchWidget( config ) {
6485 // Configuration initialization
6486 config = config || {};
6487
6488 // Parent constructor
6489 OO.ui.SearchWidget.parent.call( this, config );
6490
6491 // Properties
6492 this.query = new OO.ui.TextInputWidget( {
6493 icon: 'search',
6494 placeholder: config.placeholder,
6495 value: config.value
6496 } );
6497 this.results = new OO.ui.SelectWidget();
6498 this.$query = $( '<div>' );
6499 this.$results = $( '<div>' );
6500
6501 // Events
6502 this.query.connect( this, {
6503 change: 'onQueryChange',
6504 enter: 'onQueryEnter'
6505 } );
6506 this.query.$input.on( 'keydown', this.onQueryKeydown.bind( this ) );
6507
6508 // Initialization
6509 this.$query
6510 .addClass( 'oo-ui-searchWidget-query' )
6511 .append( this.query.$element );
6512 this.$results
6513 .addClass( 'oo-ui-searchWidget-results' )
6514 .append( this.results.$element );
6515 this.$element
6516 .addClass( 'oo-ui-searchWidget' )
6517 .append( this.$results, this.$query );
6518 };
6519
6520 /* Setup */
6521
6522 OO.inheritClass( OO.ui.SearchWidget, OO.ui.Widget );
6523
6524 /* Methods */
6525
6526 /**
6527 * Handle query key down events.
6528 *
6529 * @private
6530 * @param {jQuery.Event} e Key down event
6531 */
6532 OO.ui.SearchWidget.prototype.onQueryKeydown = function ( e ) {
6533 var highlightedItem, nextItem,
6534 dir = e.which === OO.ui.Keys.DOWN ? 1 : ( e.which === OO.ui.Keys.UP ? -1 : 0 );
6535
6536 if ( dir ) {
6537 highlightedItem = this.results.findHighlightedItem();
6538 if ( !highlightedItem ) {
6539 highlightedItem = this.results.findSelectedItem();
6540 }
6541 nextItem = this.results.findRelativeSelectableItem( highlightedItem, dir );
6542 this.results.highlightItem( nextItem );
6543 nextItem.scrollElementIntoView();
6544 }
6545 };
6546
6547 /**
6548 * Handle select widget select events.
6549 *
6550 * Clears existing results. Subclasses should repopulate items according to new query.
6551 *
6552 * @private
6553 * @param {string} value New value
6554 */
6555 OO.ui.SearchWidget.prototype.onQueryChange = function () {
6556 // Reset
6557 this.results.clearItems();
6558 };
6559
6560 /**
6561 * Handle select widget enter key events.
6562 *
6563 * Chooses highlighted item.
6564 *
6565 * @private
6566 * @param {string} value New value
6567 */
6568 OO.ui.SearchWidget.prototype.onQueryEnter = function () {
6569 var highlightedItem = this.results.findHighlightedItem();
6570 if ( highlightedItem ) {
6571 this.results.chooseItem( highlightedItem );
6572 }
6573 };
6574
6575 /**
6576 * Get the query input.
6577 *
6578 * @return {OO.ui.TextInputWidget} Query input
6579 */
6580 OO.ui.SearchWidget.prototype.getQuery = function () {
6581 return this.query;
6582 };
6583
6584 /**
6585 * Get the search results menu.
6586 *
6587 * @return {OO.ui.SelectWidget} Menu of search results
6588 */
6589 OO.ui.SearchWidget.prototype.getResults = function () {
6590 return this.results;
6591 };
6592
6593 /**
6594 * NumberInputWidgets combine a {@link OO.ui.TextInputWidget text input} (where a value
6595 * can be entered manually) and two {@link OO.ui.ButtonWidget button widgets}
6596 * (to adjust the value in increments) to allow the user to enter a number.
6597 *
6598 * @example
6599 * // Example: A NumberInputWidget.
6600 * var numberInput = new OO.ui.NumberInputWidget( {
6601 * label: 'NumberInputWidget',
6602 * input: { value: 5 },
6603 * min: 1,
6604 * max: 10
6605 * } );
6606 * $( 'body' ).append( numberInput.$element );
6607 *
6608 * @class
6609 * @extends OO.ui.TextInputWidget
6610 *
6611 * @constructor
6612 * @param {Object} [config] Configuration options
6613 * @cfg {Object} [minusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget decrementing button widget}.
6614 * @cfg {Object} [plusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget incrementing button widget}.
6615 * @cfg {boolean} [allowInteger=false] Whether the field accepts only integer values.
6616 * @cfg {number} [min=-Infinity] Minimum allowed value
6617 * @cfg {number} [max=Infinity] Maximum allowed value
6618 * @cfg {number} [step=1] Delta when using the buttons or up/down arrow keys
6619 * @cfg {number|null} [pageStep] Delta when using the page-up/page-down keys. Defaults to 10 times #step.
6620 * @cfg {boolean} [showButtons=true] Whether to show the plus and minus buttons.
6621 */
6622 OO.ui.NumberInputWidget = function OoUiNumberInputWidget( config ) {
6623 var $field = $( '<div>' )
6624 .addClass( 'oo-ui-numberInputWidget-field' );
6625
6626 // Configuration initialization
6627 config = $.extend( {
6628 allowInteger: false,
6629 min: -Infinity,
6630 max: Infinity,
6631 step: 1,
6632 pageStep: null,
6633 showButtons: true
6634 }, config );
6635
6636 // For backward compatibility
6637 $.extend( config, config.input );
6638 this.input = this;
6639
6640 // Parent constructor
6641 OO.ui.NumberInputWidget.parent.call( this, $.extend( config, {
6642 type: 'number'
6643 } ) );
6644
6645 if ( config.showButtons ) {
6646 this.minusButton = new OO.ui.ButtonWidget( $.extend(
6647 {
6648 disabled: this.isDisabled(),
6649 tabIndex: -1,
6650 classes: [ 'oo-ui-numberInputWidget-minusButton' ],
6651 icon: 'subtract'
6652 },
6653 config.minusButton
6654 ) );
6655 this.plusButton = new OO.ui.ButtonWidget( $.extend(
6656 {
6657 disabled: this.isDisabled(),
6658 tabIndex: -1,
6659 classes: [ 'oo-ui-numberInputWidget-plusButton' ],
6660 icon: 'add'
6661 },
6662 config.plusButton
6663 ) );
6664 }
6665
6666 // Events
6667 this.$input.on( {
6668 keydown: this.onKeyDown.bind( this ),
6669 'wheel mousewheel DOMMouseScroll': this.onWheel.bind( this )
6670 } );
6671 if ( config.showButtons ) {
6672 this.plusButton.connect( this, {
6673 click: [ 'onButtonClick', +1 ]
6674 } );
6675 this.minusButton.connect( this, {
6676 click: [ 'onButtonClick', -1 ]
6677 } );
6678 }
6679
6680 // Build the field
6681 $field.append( this.$input );
6682 if ( config.showButtons ) {
6683 $field
6684 .prepend( this.minusButton.$element )
6685 .append( this.plusButton.$element );
6686 }
6687
6688 // Initialization
6689 this.setAllowInteger( config.allowInteger || config.isInteger );
6690 this.setRange( config.min, config.max );
6691 this.setStep( config.step, config.pageStep );
6692 // Set the validation method after we set allowInteger and range
6693 // so that it doesn't immediately call setValidityFlag
6694 this.setValidation( this.validateNumber.bind( this ) );
6695
6696 this.$element
6697 .addClass( 'oo-ui-numberInputWidget' )
6698 .toggleClass( 'oo-ui-numberInputWidget-buttoned', config.showButtons )
6699 .append( $field );
6700 };
6701
6702 /* Setup */
6703
6704 OO.inheritClass( OO.ui.NumberInputWidget, OO.ui.TextInputWidget );
6705
6706 /* Methods */
6707
6708 /**
6709 * Set whether only integers are allowed
6710 *
6711 * @param {boolean} flag
6712 */
6713 OO.ui.NumberInputWidget.prototype.setAllowInteger = function ( flag ) {
6714 this.allowInteger = !!flag;
6715 this.setValidityFlag();
6716 };
6717 // Backward compatibility
6718 OO.ui.NumberInputWidget.prototype.setIsInteger = OO.ui.NumberInputWidget.prototype.setAllowInteger;
6719
6720 /**
6721 * Get whether only integers are allowed
6722 *
6723 * @return {boolean} Flag value
6724 */
6725 OO.ui.NumberInputWidget.prototype.getAllowInteger = function () {
6726 return this.allowInteger;
6727 };
6728 // Backward compatibility
6729 OO.ui.NumberInputWidget.prototype.getIsInteger = OO.ui.NumberInputWidget.prototype.getAllowInteger;
6730
6731 /**
6732 * Set the range of allowed values
6733 *
6734 * @param {number} min Minimum allowed value
6735 * @param {number} max Maximum allowed value
6736 */
6737 OO.ui.NumberInputWidget.prototype.setRange = function ( min, max ) {
6738 if ( min > max ) {
6739 throw new Error( 'Minimum (' + min + ') must not be greater than maximum (' + max + ')' );
6740 }
6741 this.min = min;
6742 this.max = max;
6743 this.setValidityFlag();
6744 };
6745
6746 /**
6747 * Get the current range
6748 *
6749 * @return {number[]} Minimum and maximum values
6750 */
6751 OO.ui.NumberInputWidget.prototype.getRange = function () {
6752 return [ this.min, this.max ];
6753 };
6754
6755 /**
6756 * Set the stepping deltas
6757 *
6758 * @param {number} step Normal step
6759 * @param {number|null} pageStep Page step. If null, 10 * step will be used.
6760 */
6761 OO.ui.NumberInputWidget.prototype.setStep = function ( step, pageStep ) {
6762 if ( step <= 0 ) {
6763 throw new Error( 'Step value must be positive' );
6764 }
6765 if ( pageStep === null ) {
6766 pageStep = step * 10;
6767 } else if ( pageStep <= 0 ) {
6768 throw new Error( 'Page step value must be positive' );
6769 }
6770 this.step = step;
6771 this.pageStep = pageStep;
6772 };
6773
6774 /**
6775 * Get the current stepping values
6776 *
6777 * @return {number[]} Step and page step
6778 */
6779 OO.ui.NumberInputWidget.prototype.getStep = function () {
6780 return [ this.step, this.pageStep ];
6781 };
6782
6783 /**
6784 * Get the current value of the widget as a number
6785 *
6786 * @return {number} May be NaN, or an invalid number
6787 */
6788 OO.ui.NumberInputWidget.prototype.getNumericValue = function () {
6789 return +this.getValue();
6790 };
6791
6792 /**
6793 * Adjust the value of the widget
6794 *
6795 * @param {number} delta Adjustment amount
6796 */
6797 OO.ui.NumberInputWidget.prototype.adjustValue = function ( delta ) {
6798 var n, v = this.getNumericValue();
6799
6800 delta = +delta;
6801 if ( isNaN( delta ) || !isFinite( delta ) ) {
6802 throw new Error( 'Delta must be a finite number' );
6803 }
6804
6805 if ( isNaN( v ) ) {
6806 n = 0;
6807 } else {
6808 n = v + delta;
6809 n = Math.max( Math.min( n, this.max ), this.min );
6810 if ( this.allowInteger ) {
6811 n = Math.round( n );
6812 }
6813 }
6814
6815 if ( n !== v ) {
6816 this.setValue( n );
6817 }
6818 };
6819 /**
6820 * Validate input
6821 *
6822 * @private
6823 * @param {string} value Field value
6824 * @return {boolean}
6825 */
6826 OO.ui.NumberInputWidget.prototype.validateNumber = function ( value ) {
6827 var n = +value;
6828 if ( value === '' ) {
6829 return !this.isRequired();
6830 }
6831
6832 if ( isNaN( n ) || !isFinite( n ) ) {
6833 return false;
6834 }
6835
6836 if ( this.allowInteger && Math.floor( n ) !== n ) {
6837 return false;
6838 }
6839
6840 if ( n < this.min || n > this.max ) {
6841 return false;
6842 }
6843
6844 return true;
6845 };
6846
6847 /**
6848 * Handle mouse click events.
6849 *
6850 * @private
6851 * @param {number} dir +1 or -1
6852 */
6853 OO.ui.NumberInputWidget.prototype.onButtonClick = function ( dir ) {
6854 this.adjustValue( dir * this.step );
6855 };
6856
6857 /**
6858 * Handle mouse wheel events.
6859 *
6860 * @private
6861 * @param {jQuery.Event} event
6862 */
6863 OO.ui.NumberInputWidget.prototype.onWheel = function ( event ) {
6864 var delta = 0;
6865
6866 if ( !this.isDisabled() && this.$input.is( ':focus' ) ) {
6867 // Standard 'wheel' event
6868 if ( event.originalEvent.deltaMode !== undefined ) {
6869 this.sawWheelEvent = true;
6870 }
6871 if ( event.originalEvent.deltaY ) {
6872 delta = -event.originalEvent.deltaY;
6873 } else if ( event.originalEvent.deltaX ) {
6874 delta = event.originalEvent.deltaX;
6875 }
6876
6877 // Non-standard events
6878 if ( !this.sawWheelEvent ) {
6879 if ( event.originalEvent.wheelDeltaX ) {
6880 delta = -event.originalEvent.wheelDeltaX;
6881 } else if ( event.originalEvent.wheelDeltaY ) {
6882 delta = event.originalEvent.wheelDeltaY;
6883 } else if ( event.originalEvent.wheelDelta ) {
6884 delta = event.originalEvent.wheelDelta;
6885 } else if ( event.originalEvent.detail ) {
6886 delta = -event.originalEvent.detail;
6887 }
6888 }
6889
6890 if ( delta ) {
6891 delta = delta < 0 ? -1 : 1;
6892 this.adjustValue( delta * this.step );
6893 }
6894
6895 return false;
6896 }
6897 };
6898
6899 /**
6900 * Handle key down events.
6901 *
6902 * @private
6903 * @param {jQuery.Event} e Key down event
6904 */
6905 OO.ui.NumberInputWidget.prototype.onKeyDown = function ( e ) {
6906 if ( !this.isDisabled() ) {
6907 switch ( e.which ) {
6908 case OO.ui.Keys.UP:
6909 this.adjustValue( this.step );
6910 return false;
6911 case OO.ui.Keys.DOWN:
6912 this.adjustValue( -this.step );
6913 return false;
6914 case OO.ui.Keys.PAGEUP:
6915 this.adjustValue( this.pageStep );
6916 return false;
6917 case OO.ui.Keys.PAGEDOWN:
6918 this.adjustValue( -this.pageStep );
6919 return false;
6920 }
6921 }
6922 };
6923
6924 /**
6925 * @inheritdoc
6926 */
6927 OO.ui.NumberInputWidget.prototype.setDisabled = function ( disabled ) {
6928 // Parent method
6929 OO.ui.NumberInputWidget.parent.prototype.setDisabled.call( this, disabled );
6930
6931 if ( this.minusButton ) {
6932 this.minusButton.setDisabled( this.isDisabled() );
6933 }
6934 if ( this.plusButton ) {
6935 this.plusButton.setDisabled( this.isDisabled() );
6936 }
6937
6938 return this;
6939 };
6940
6941 }( OO ) );
6942
6943 //# sourceMappingURL=oojs-ui-widgets.js.map