Update OOUI to v0.25.3
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-widgets.js
1 /*!
2 * OOUI v0.25.3
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-03-07T06:52:35Z
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 (
4942 !this.isDisabled() &&
4943 ( !this.hasInput || e.target !== this.input.$input[ 0 ] ) &&
4944 e.which === OO.ui.MouseButtons.LEFT
4945 ) {
4946 this.focus();
4947 return false;
4948 }
4949 };
4950
4951 /**
4952 * Handle key press events.
4953 *
4954 * @private
4955 * @param {jQuery.Event} e Key press event
4956 * @return {boolean} Whether to prevent defaults
4957 */
4958 OO.ui.TagMultiselectWidget.prototype.onInputKeyPress = function ( e ) {
4959 var stopOrContinue,
4960 withMetaKey = e.metaKey || e.ctrlKey;
4961
4962 if ( !this.isDisabled() ) {
4963 if ( e.which === OO.ui.Keys.ENTER ) {
4964 stopOrContinue = this.doInputEnter( e, withMetaKey );
4965 }
4966
4967 // Make sure the input gets resized.
4968 setTimeout( this.updateInputSize.bind( this ), 0 );
4969 return stopOrContinue;
4970 }
4971 };
4972
4973 /**
4974 * Handle key down events.
4975 *
4976 * @private
4977 * @param {jQuery.Event} e Key down event
4978 * @return {boolean}
4979 */
4980 OO.ui.TagMultiselectWidget.prototype.onInputKeyDown = function ( e ) {
4981 var movement, direction,
4982 withMetaKey = e.metaKey || e.ctrlKey;
4983
4984 if ( !this.isDisabled() ) {
4985 // 'keypress' event is not triggered for Backspace
4986 if ( e.keyCode === OO.ui.Keys.BACKSPACE ) {
4987 return this.doInputBackspace( e, withMetaKey );
4988 } else if ( e.keyCode === OO.ui.Keys.ESCAPE ) {
4989 return this.doInputEscape( e );
4990 } else if (
4991 e.keyCode === OO.ui.Keys.LEFT ||
4992 e.keyCode === OO.ui.Keys.RIGHT
4993 ) {
4994 if ( OO.ui.Element.static.getDir( this.$element ) === 'rtl' ) {
4995 movement = {
4996 left: 'forwards',
4997 right: 'backwards'
4998 };
4999 } else {
5000 movement = {
5001 left: 'backwards',
5002 right: 'forwards'
5003 };
5004 }
5005 direction = e.keyCode === OO.ui.Keys.LEFT ?
5006 movement.left : movement.right;
5007
5008 return this.doInputArrow( e, direction, withMetaKey );
5009 }
5010 }
5011 };
5012
5013 /**
5014 * Respond to input focus event
5015 */
5016 OO.ui.TagMultiselectWidget.prototype.onInputFocus = function () {
5017 this.$element.addClass( 'oo-ui-tagMultiselectWidget-focus' );
5018 };
5019
5020 /**
5021 * Respond to input blur event
5022 */
5023 OO.ui.TagMultiselectWidget.prototype.onInputBlur = function () {
5024 this.$element.removeClass( 'oo-ui-tagMultiselectWidget-focus' );
5025 };
5026
5027 /**
5028 * Perform an action after the enter key on the input
5029 *
5030 * @param {jQuery.Event} e Event data
5031 * @param {boolean} [withMetaKey] Whether this key was pressed with
5032 * a meta key like 'ctrl'
5033 * @return {boolean} Whether to prevent defaults
5034 */
5035 OO.ui.TagMultiselectWidget.prototype.doInputEnter = function () {
5036 this.addTagFromInput();
5037 return false;
5038 };
5039
5040 /**
5041 * Perform an action responding to the enter key on the input
5042 *
5043 * @param {jQuery.Event} e Event data
5044 * @param {boolean} [withMetaKey] Whether this key was pressed with
5045 * a meta key like 'ctrl'
5046 * @return {boolean} Whether to prevent defaults
5047 */
5048 OO.ui.TagMultiselectWidget.prototype.doInputBackspace = function ( e, withMetaKey ) {
5049 var items, item;
5050
5051 if (
5052 this.inputPosition === 'inline' &&
5053 this.input.getValue() === '' &&
5054 !this.isEmpty()
5055 ) {
5056 // Delete the last item
5057 items = this.getItems();
5058 item = items[ items.length - 1 ];
5059 this.removeItems( [ item ] );
5060 // If Ctrl/Cmd was pressed, delete item entirely.
5061 // Otherwise put it into the text field for editing.
5062 if ( !withMetaKey ) {
5063 this.input.setValue( item.getData() );
5064 }
5065
5066 return false;
5067 }
5068 };
5069
5070 /**
5071 * Perform an action after the escape key on the input
5072 *
5073 * @param {jQuery.Event} e Event data
5074 */
5075 OO.ui.TagMultiselectWidget.prototype.doInputEscape = function () {
5076 this.clearInput();
5077 };
5078
5079 /**
5080 * Perform an action after the arrow key on the input, select the previous
5081 * or next item from the input.
5082 * See #getPreviousItem and #getNextItem
5083 *
5084 * @param {jQuery.Event} e Event data
5085 * @param {string} direction Direction of the movement; forwards or backwards
5086 * @param {boolean} [withMetaKey] Whether this key was pressed with
5087 * a meta key like 'ctrl'
5088 */
5089 OO.ui.TagMultiselectWidget.prototype.doInputArrow = function ( e, direction ) {
5090 if (
5091 this.inputPosition === 'inline' &&
5092 !this.isEmpty()
5093 ) {
5094 if ( direction === 'backwards' ) {
5095 // Get previous item
5096 this.getPreviousItem().focus();
5097 } else {
5098 // Get next item
5099 this.getNextItem().focus();
5100 }
5101 }
5102 };
5103
5104 /**
5105 * Respond to item select event
5106 *
5107 * @param {OO.ui.TagItemWidget} item Selected item
5108 */
5109 OO.ui.TagMultiselectWidget.prototype.onTagSelect = function ( item ) {
5110 if ( this.hasInput && this.allowEditTags ) {
5111 if ( this.input.getValue() ) {
5112 this.addTagFromInput();
5113 }
5114 // 1. Get the label of the tag into the input
5115 this.input.setValue( item.getData() );
5116 // 2. Remove the tag
5117 this.removeItems( [ item ] );
5118 // 3. Focus the input
5119 this.focus();
5120 }
5121 };
5122
5123 /**
5124 * Respond to change event, where items were added, removed, or cleared.
5125 */
5126 OO.ui.TagMultiselectWidget.prototype.onChangeTags = function () {
5127 this.toggleValid( this.checkValidity() );
5128 if ( this.hasInput ) {
5129 this.updateInputSize();
5130 }
5131 this.updateIfHeightChanged();
5132 };
5133
5134 /**
5135 * @inheritdoc
5136 */
5137 OO.ui.TagMultiselectWidget.prototype.setDisabled = function ( isDisabled ) {
5138 // Parent method
5139 OO.ui.TagMultiselectWidget.parent.prototype.setDisabled.call( this, isDisabled );
5140
5141 if ( this.hasInput && this.input ) {
5142 this.input.setDisabled( !!isDisabled );
5143 }
5144
5145 if ( this.items ) {
5146 this.getItems().forEach( function ( item ) {
5147 item.setDisabled( !!isDisabled );
5148 } );
5149 }
5150 };
5151
5152 /**
5153 * Respond to tag remove event
5154 * @param {OO.ui.TagItemWidget} item Removed tag
5155 */
5156 OO.ui.TagMultiselectWidget.prototype.onTagRemove = function ( item ) {
5157 this.removeTagByData( item.getData() );
5158 };
5159
5160 /**
5161 * Respond to navigate event on the tag
5162 *
5163 * @param {OO.ui.TagItemWidget} item Removed tag
5164 * @param {string} direction Direction of movement; 'forwards' or 'backwards'
5165 */
5166 OO.ui.TagMultiselectWidget.prototype.onTagNavigate = function ( item, direction ) {
5167 if ( direction === 'forwards' ) {
5168 this.getNextItem( item ).focus();
5169 } else {
5170 this.getPreviousItem( item ).focus();
5171 }
5172 };
5173
5174 /**
5175 * Add tag from input value
5176 */
5177 OO.ui.TagMultiselectWidget.prototype.addTagFromInput = function () {
5178 var val = this.input.getValue(),
5179 isValid = this.isAllowedData( val );
5180
5181 if ( !val ) {
5182 return;
5183 }
5184
5185 if ( isValid || this.allowDisplayInvalidTags ) {
5186 this.addTag( val );
5187 this.clearInput();
5188 this.focus();
5189 }
5190 };
5191
5192 /**
5193 * Clear the input
5194 */
5195 OO.ui.TagMultiselectWidget.prototype.clearInput = function () {
5196 this.input.setValue( '' );
5197 };
5198
5199 /**
5200 * Check whether the given value is a duplicate of an existing
5201 * tag already in the list.
5202 *
5203 * @param {string|Object} data Requested value
5204 * @return {boolean} Value is duplicate
5205 */
5206 OO.ui.TagMultiselectWidget.prototype.isDuplicateData = function ( data ) {
5207 return !!this.findItemFromData( data );
5208 };
5209
5210 /**
5211 * Check whether a given value is allowed to be added
5212 *
5213 * @param {string|Object} data Requested value
5214 * @return {boolean} Value is allowed
5215 */
5216 OO.ui.TagMultiselectWidget.prototype.isAllowedData = function ( data ) {
5217 if (
5218 !this.allowDuplicates &&
5219 this.isDuplicateData( data )
5220 ) {
5221 return false;
5222 }
5223
5224 if ( this.allowArbitrary ) {
5225 return true;
5226 }
5227
5228 // Check with allowed values
5229 if (
5230 this.getAllowedValues().some( function ( value ) {
5231 return data === value;
5232 } )
5233 ) {
5234 return true;
5235 }
5236
5237 return false;
5238 };
5239
5240 /**
5241 * Get the allowed values list
5242 *
5243 * @return {string[]} Allowed data values
5244 */
5245 OO.ui.TagMultiselectWidget.prototype.getAllowedValues = function () {
5246 return this.allowedValues;
5247 };
5248
5249 /**
5250 * Add a value to the allowed values list
5251 *
5252 * @param {string} value Allowed data value
5253 */
5254 OO.ui.TagMultiselectWidget.prototype.addAllowedValue = function ( value ) {
5255 if ( this.allowedValues.indexOf( value ) === -1 ) {
5256 this.allowedValues.push( value );
5257 }
5258 };
5259
5260 /**
5261 * Get the datas of the currently selected items
5262 *
5263 * @return {string[]|Object[]} Datas of currently selected items
5264 */
5265 OO.ui.TagMultiselectWidget.prototype.getValue = function () {
5266 return this.getItems()
5267 .filter( function ( item ) {
5268 return item.isValid();
5269 } )
5270 .map( function ( item ) {
5271 return item.getData();
5272 } );
5273 };
5274
5275 /**
5276 * Set the value of this widget by datas.
5277 *
5278 * @param {string|string[]|Object|Object[]} valueObject An object representing the data
5279 * and label of the value. If the widget allows arbitrary values,
5280 * the items will be added as-is. Otherwise, the data value will
5281 * be checked against allowedValues.
5282 * This object must contain at least a data key. Example:
5283 * { data: 'foo', label: 'Foo item' }
5284 * For multiple items, use an array of objects. For example:
5285 * [
5286 * { data: 'foo', label: 'Foo item' },
5287 * { data: 'bar', label: 'Bar item' }
5288 * ]
5289 * Value can also be added with plaintext array, for example:
5290 * [ 'foo', 'bar', 'bla' ] or a single string, like 'foo'
5291 */
5292 OO.ui.TagMultiselectWidget.prototype.setValue = function ( valueObject ) {
5293 valueObject = Array.isArray( valueObject ) ? valueObject : [ valueObject ];
5294
5295 this.clearItems();
5296 valueObject.forEach( function ( obj ) {
5297 if ( typeof obj === 'string' ) {
5298 this.addTag( obj );
5299 } else {
5300 this.addTag( obj.data, obj.label );
5301 }
5302 }.bind( this ) );
5303 };
5304
5305 /**
5306 * Add tag to the display area
5307 *
5308 * @param {string|Object} data Tag data
5309 * @param {string} [label] Tag label. If no label is provided, the
5310 * stringified version of the data will be used instead.
5311 * @return {boolean} Item was added successfully
5312 */
5313 OO.ui.TagMultiselectWidget.prototype.addTag = function ( data, label ) {
5314 var newItemWidget,
5315 isValid = this.isAllowedData( data );
5316
5317 if ( isValid || this.allowDisplayInvalidTags ) {
5318 newItemWidget = this.createTagItemWidget( data, label );
5319 newItemWidget.toggleValid( isValid );
5320 this.addItems( [ newItemWidget ] );
5321 return true;
5322 }
5323 return false;
5324 };
5325
5326 /**
5327 * Remove tag by its data property.
5328 *
5329 * @param {string|Object} data Tag data
5330 */
5331 OO.ui.TagMultiselectWidget.prototype.removeTagByData = function ( data ) {
5332 var item = this.findItemFromData( data );
5333
5334 this.removeItems( [ item ] );
5335 };
5336
5337 /**
5338 * Construct a OO.ui.TagItemWidget (or a subclass thereof) from given label and data.
5339 *
5340 * @protected
5341 * @param {string} data Item data
5342 * @param {string} label The label text.
5343 * @return {OO.ui.TagItemWidget}
5344 */
5345 OO.ui.TagMultiselectWidget.prototype.createTagItemWidget = function ( data, label ) {
5346 label = label || data;
5347
5348 return new OO.ui.TagItemWidget( { data: data, label: label } );
5349 };
5350
5351 /**
5352 * Given an item, returns the item after it. If the item is already the
5353 * last item, return `this.input`. If no item is passed, returns the
5354 * very first item.
5355 *
5356 * @protected
5357 * @param {OO.ui.TagItemWidget} [item] Tag item
5358 * @return {OO.ui.Widget} The next widget available.
5359 */
5360 OO.ui.TagMultiselectWidget.prototype.getNextItem = function ( item ) {
5361 var itemIndex = this.items.indexOf( item );
5362
5363 if ( item === undefined || itemIndex === -1 ) {
5364 return this.items[ 0 ];
5365 }
5366
5367 if ( itemIndex === this.items.length - 1 ) { // Last item
5368 if ( this.hasInput ) {
5369 return this.input;
5370 } else {
5371 // Return first item
5372 return this.items[ 0 ];
5373 }
5374 } else {
5375 return this.items[ itemIndex + 1 ];
5376 }
5377 };
5378
5379 /**
5380 * Given an item, returns the item before it. If the item is already the
5381 * first item, return `this.input`. If no item is passed, returns the
5382 * very last item.
5383 *
5384 * @protected
5385 * @param {OO.ui.TagItemWidget} [item] Tag item
5386 * @return {OO.ui.Widget} The previous widget available.
5387 */
5388 OO.ui.TagMultiselectWidget.prototype.getPreviousItem = function ( item ) {
5389 var itemIndex = this.items.indexOf( item );
5390
5391 if ( item === undefined || itemIndex === -1 ) {
5392 return this.items[ this.items.length - 1 ];
5393 }
5394
5395 if ( itemIndex === 0 ) {
5396 if ( this.hasInput ) {
5397 return this.input;
5398 } else {
5399 // Return the last item
5400 return this.items[ this.items.length - 1 ];
5401 }
5402 } else {
5403 return this.items[ itemIndex - 1 ];
5404 }
5405 };
5406
5407 /**
5408 * Update the dimensions of the text input field to encompass all available area.
5409 * This is especially relevant for when the input is at the edge of a line
5410 * and should get smaller. The usual operation (as an inline-block with min-width)
5411 * does not work in that case, pushing the input downwards to the next line.
5412 *
5413 * @private
5414 */
5415 OO.ui.TagMultiselectWidget.prototype.updateInputSize = function () {
5416 var $lastItem, direction, contentWidth, currentWidth, bestWidth;
5417 if ( this.inputPosition === 'inline' && !this.isDisabled() ) {
5418 if ( this.input.$input[ 0 ].scrollWidth === 0 ) {
5419 // Input appears to be attached but not visible.
5420 // Don't attempt to adjust its size, because our measurements
5421 // are going to fail anyway.
5422 return;
5423 }
5424 this.input.$input.css( 'width', '1em' );
5425 $lastItem = this.$group.children().last();
5426 direction = OO.ui.Element.static.getDir( this.$handle );
5427
5428 // Get the width of the input with the placeholder text as
5429 // the value and save it so that we don't keep recalculating
5430 if (
5431 this.contentWidthWithPlaceholder === undefined &&
5432 this.input.getValue() === '' &&
5433 this.input.$input.attr( 'placeholder' ) !== undefined
5434 ) {
5435 this.input.setValue( this.input.$input.attr( 'placeholder' ) );
5436 this.contentWidthWithPlaceholder = this.input.$input[ 0 ].scrollWidth;
5437 this.input.setValue( '' );
5438
5439 }
5440
5441 // Always keep the input wide enough for the placeholder text
5442 contentWidth = Math.max(
5443 this.input.$input[ 0 ].scrollWidth,
5444 // undefined arguments in Math.max lead to NaN
5445 ( this.contentWidthWithPlaceholder === undefined ) ?
5446 0 : this.contentWidthWithPlaceholder
5447 );
5448 currentWidth = this.input.$input.width();
5449
5450 if ( contentWidth < currentWidth ) {
5451 this.updateIfHeightChanged();
5452 // All is fine, don't perform expensive calculations
5453 return;
5454 }
5455
5456 if ( $lastItem.length === 0 ) {
5457 bestWidth = this.$content.innerWidth();
5458 } else {
5459 bestWidth = direction === 'ltr' ?
5460 this.$content.innerWidth() - $lastItem.position().left - $lastItem.outerWidth() :
5461 $lastItem.position().left;
5462 }
5463
5464 // Some safety margin for sanity, because I *really* don't feel like finding out where the few
5465 // pixels this is off by are coming from.
5466 bestWidth -= 10;
5467 if ( contentWidth > bestWidth ) {
5468 // This will result in the input getting shifted to the next line
5469 bestWidth = this.$content.innerWidth() - 10;
5470 }
5471 this.input.$input.width( Math.floor( bestWidth ) );
5472 this.updateIfHeightChanged();
5473 } else {
5474 this.updateIfHeightChanged();
5475 }
5476 };
5477
5478 /**
5479 * Determine if widget height changed, and if so,
5480 * emit the resize event. This is useful for when there are either
5481 * menus or popups attached to the bottom of the widget, to allow
5482 * them to change their positioning in case the widget moved down
5483 * or up.
5484 *
5485 * @private
5486 */
5487 OO.ui.TagMultiselectWidget.prototype.updateIfHeightChanged = function () {
5488 var height = this.$element.height();
5489 if ( height !== this.height ) {
5490 this.height = height;
5491 this.emit( 'resize' );
5492 }
5493 };
5494
5495 /**
5496 * Check whether all items in the widget are valid
5497 *
5498 * @return {boolean} Widget is valid
5499 */
5500 OO.ui.TagMultiselectWidget.prototype.checkValidity = function () {
5501 return this.getItems().every( function ( item ) {
5502 return item.isValid();
5503 } );
5504 };
5505
5506 /**
5507 * Set the valid state of this item
5508 *
5509 * @param {boolean} [valid] Item is valid
5510 * @fires valid
5511 */
5512 OO.ui.TagMultiselectWidget.prototype.toggleValid = function ( valid ) {
5513 valid = valid === undefined ? !this.valid : !!valid;
5514
5515 if ( this.valid !== valid ) {
5516 this.valid = valid;
5517
5518 this.setFlags( { invalid: !this.valid } );
5519
5520 this.emit( 'valid', this.valid );
5521 }
5522 };
5523
5524 /**
5525 * Get the current valid state of the widget
5526 *
5527 * @return {boolean} Widget is valid
5528 */
5529 OO.ui.TagMultiselectWidget.prototype.isValid = function () {
5530 return this.valid;
5531 };
5532
5533 /**
5534 * PopupTagMultiselectWidget is a {@link OO.ui.TagMultiselectWidget OO.ui.TagMultiselectWidget} intended
5535 * to use a popup. The popup can be configured to have a default input to insert values into the widget.
5536 *
5537 * @example
5538 * // Example: A basic PopupTagMultiselectWidget.
5539 * var widget = new OO.ui.PopupTagMultiselectWidget();
5540 * $( 'body' ).append( widget.$element );
5541 *
5542 * // Example: A PopupTagMultiselectWidget with an external popup.
5543 * var popupInput = new OO.ui.TextInputWidget(),
5544 * widget = new OO.ui.PopupTagMultiselectWidget( {
5545 * popupInput: popupInput,
5546 * popup: {
5547 * $content: popupInput.$element
5548 * }
5549 * } );
5550 * $( 'body' ).append( widget.$element );
5551 *
5552 * @class
5553 * @extends OO.ui.TagMultiselectWidget
5554 * @mixins OO.ui.mixin.PopupElement
5555 *
5556 * @param {Object} config Configuration object
5557 * @cfg {jQuery} [$overlay] An overlay for the popup.
5558 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
5559 * @cfg {Object} [popup] Configuration options for the popup
5560 * @cfg {OO.ui.InputWidget} [popupInput] An input widget inside the popup that will be
5561 * focused when the popup is opened and will be used as replacement for the
5562 * general input in the widget.
5563 */
5564 OO.ui.PopupTagMultiselectWidget = function OoUiPopupTagMultiselectWidget( config ) {
5565 var defaultInput,
5566 defaultConfig = { popup: {} };
5567
5568 config = config || {};
5569
5570 // Parent constructor
5571 OO.ui.PopupTagMultiselectWidget.parent.call( this, $.extend( { inputPosition: 'none' }, config ) );
5572
5573 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
5574
5575 if ( !config.popup ) {
5576 // For the default base implementation, we give a popup
5577 // with an input widget inside it. For any other use cases
5578 // the popup needs to be populated externally and the
5579 // event handled to add tags separately and manually
5580 defaultInput = new OO.ui.TextInputWidget();
5581
5582 defaultConfig.popupInput = defaultInput;
5583 defaultConfig.popup.$content = defaultInput.$element;
5584
5585 this.$element.addClass( 'oo-ui-popupTagMultiselectWidget-defaultPopup' );
5586 }
5587
5588 // Add overlay, and add that to the autoCloseIgnore
5589 defaultConfig.popup.$overlay = this.$overlay;
5590 defaultConfig.popup.$autoCloseIgnore = this.hasInput ?
5591 this.input.$element.add( this.$overlay ) : this.$overlay;
5592
5593 // Allow extending any of the above
5594 config = $.extend( defaultConfig, config );
5595
5596 // Mixin constructors
5597 OO.ui.mixin.PopupElement.call( this, config );
5598
5599 if ( this.hasInput ) {
5600 this.input.$input.on( 'focus', this.popup.toggle.bind( this.popup, true ) );
5601 }
5602
5603 // Configuration options
5604 this.popupInput = config.popupInput;
5605 if ( this.popupInput ) {
5606 this.popupInput.connect( this, {
5607 enter: 'onPopupInputEnter'
5608 } );
5609 }
5610
5611 // Events
5612 this.on( 'resize', this.popup.updateDimensions.bind( this.popup ) );
5613 this.popup.connect( this, { toggle: 'onPopupToggle' } );
5614 this.$tabIndexed
5615 .on( 'focus', this.onFocus.bind( this ) );
5616
5617 // Initialize
5618 this.$element
5619 .append( this.popup.$element )
5620 .addClass( 'oo-ui-popupTagMultiselectWidget' );
5621 };
5622
5623 /* Initialization */
5624
5625 OO.inheritClass( OO.ui.PopupTagMultiselectWidget, OO.ui.TagMultiselectWidget );
5626 OO.mixinClass( OO.ui.PopupTagMultiselectWidget, OO.ui.mixin.PopupElement );
5627
5628 /* Methods */
5629
5630 /**
5631 * Focus event handler.
5632 *
5633 * @private
5634 */
5635 OO.ui.PopupTagMultiselectWidget.prototype.onFocus = function () {
5636 this.popup.toggle( true );
5637 };
5638
5639 /**
5640 * Respond to popup toggle event
5641 *
5642 * @param {boolean} isVisible Popup is visible
5643 */
5644 OO.ui.PopupTagMultiselectWidget.prototype.onPopupToggle = function ( isVisible ) {
5645 if ( isVisible && this.popupInput ) {
5646 this.popupInput.focus();
5647 }
5648 };
5649
5650 /**
5651 * Respond to popup input enter event
5652 */
5653 OO.ui.PopupTagMultiselectWidget.prototype.onPopupInputEnter = function () {
5654 if ( this.popupInput ) {
5655 this.addTagByPopupValue( this.popupInput.getValue() );
5656 this.popupInput.setValue( '' );
5657 }
5658 };
5659
5660 /**
5661 * @inheritdoc
5662 */
5663 OO.ui.PopupTagMultiselectWidget.prototype.onTagSelect = function ( item ) {
5664 if ( this.popupInput && this.allowEditTags ) {
5665 this.popupInput.setValue( item.getData() );
5666 this.removeItems( [ item ] );
5667
5668 this.popup.toggle( true );
5669 this.popupInput.focus();
5670 } else {
5671 // Parent
5672 OO.ui.PopupTagMultiselectWidget.parent.prototype.onTagSelect.call( this, item );
5673 }
5674 };
5675
5676 /**
5677 * Add a tag by the popup value.
5678 * Whatever is responsible for setting the value in the popup should call
5679 * this method to add a tag, or use the regular methods like #addTag or
5680 * #setValue directly.
5681 *
5682 * @param {string} data The value of item
5683 * @param {string} [label] The label of the tag. If not given, the data is used.
5684 */
5685 OO.ui.PopupTagMultiselectWidget.prototype.addTagByPopupValue = function ( data, label ) {
5686 this.addTag( data, label );
5687 };
5688
5689 /**
5690 * MenuTagMultiselectWidget is a {@link OO.ui.TagMultiselectWidget OO.ui.TagMultiselectWidget} intended
5691 * to use a menu of selectable options.
5692 *
5693 * @example
5694 * // Example: A basic MenuTagMultiselectWidget.
5695 * var widget = new OO.ui.MenuTagMultiselectWidget( {
5696 * inputPosition: 'outline',
5697 * options: [
5698 * { data: 'option1', label: 'Option 1' },
5699 * { data: 'option2', label: 'Option 2' },
5700 * { data: 'option3', label: 'Option 3' },
5701 * ],
5702 * selected: [ 'option1', 'option2' ]
5703 * } );
5704 * $( 'body' ).append( widget.$element );
5705 *
5706 * @class
5707 * @extends OO.ui.TagMultiselectWidget
5708 *
5709 * @constructor
5710 * @param {Object} [config] Configuration object
5711 * @cfg {boolean} [clearInputOnChoose=true] Clear the text input value when a menu option is chosen
5712 * @cfg {Object} [menu] Configuration object for the menu widget
5713 * @cfg {jQuery} [$overlay] An overlay for the menu.
5714 * See <https://www.mediawiki.org/wiki/OOUI/Concepts#Overlays>.
5715 * @cfg {Object[]} [options=[]] Array of menu options in the format `{ data: …, label: … }`
5716 */
5717 OO.ui.MenuTagMultiselectWidget = function OoUiMenuTagMultiselectWidget( config ) {
5718 config = config || {};
5719
5720 // Parent constructor
5721 OO.ui.MenuTagMultiselectWidget.parent.call( this, config );
5722
5723 this.$overlay = ( config.$overlay === true ? OO.ui.getDefaultOverlay() : config.$overlay ) || this.$element;
5724 this.clearInputOnChoose = config.clearInputOnChoose === undefined || !!config.clearInputOnChoose;
5725 this.menu = this.createMenuWidget( $.extend( {
5726 widget: this,
5727 input: this.hasInput ? this.input : null,
5728 $input: this.hasInput ? this.input.$input : null,
5729 filterFromInput: !!this.hasInput,
5730 $autoCloseIgnore: this.hasInput ?
5731 this.input.$element : $( [] ),
5732 $floatableContainer: this.hasInput && this.inputPosition === 'outline' ?
5733 this.input.$element : this.$element,
5734 $overlay: this.$overlay,
5735 disabled: this.isDisabled()
5736 }, config.menu ) );
5737 this.addOptions( config.options || [] );
5738
5739 // Events
5740 this.menu.connect( this, {
5741 choose: 'onMenuChoose',
5742 toggle: 'onMenuToggle'
5743 } );
5744 if ( this.hasInput ) {
5745 this.input.connect( this, { change: 'onInputChange' } );
5746 }
5747 this.connect( this, { resize: 'onResize' } );
5748
5749 // Initialization
5750 this.$overlay
5751 .append( this.menu.$element );
5752 this.$element
5753 .addClass( 'oo-ui-menuTagMultiselectWidget' );
5754 // TagMultiselectWidget already does this, but it doesn't work right because this.menu is not yet
5755 // set up while the parent constructor runs, and #getAllowedValues rejects everything.
5756 if ( config.selected ) {
5757 this.setValue( config.selected );
5758 }
5759 };
5760
5761 /* Initialization */
5762
5763 OO.inheritClass( OO.ui.MenuTagMultiselectWidget, OO.ui.TagMultiselectWidget );
5764
5765 /* Methods */
5766
5767 /**
5768 * Respond to resize event
5769 */
5770 OO.ui.MenuTagMultiselectWidget.prototype.onResize = function () {
5771 // Reposition the menu
5772 this.menu.position();
5773 };
5774
5775 /**
5776 * @inheritdoc
5777 */
5778 OO.ui.MenuTagMultiselectWidget.prototype.onInputFocus = function () {
5779 // Parent method
5780 OO.ui.MenuTagMultiselectWidget.parent.prototype.onInputFocus.call( this );
5781
5782 this.menu.toggle( true );
5783 };
5784
5785 /**
5786 * Respond to input change event
5787 */
5788 OO.ui.MenuTagMultiselectWidget.prototype.onInputChange = function () {
5789 this.menu.toggle( true );
5790 this.initializeMenuSelection();
5791 };
5792
5793 /**
5794 * Respond to menu choose event
5795 *
5796 * @param {OO.ui.OptionWidget} menuItem Chosen menu item
5797 */
5798 OO.ui.MenuTagMultiselectWidget.prototype.onMenuChoose = function ( menuItem ) {
5799 // Add tag
5800 this.addTag( menuItem.getData(), menuItem.getLabel() );
5801 if ( this.hasInput && this.clearInputOnChoose ) {
5802 this.input.setValue( '' );
5803 }
5804 };
5805
5806 /**
5807 * Respond to menu toggle event. Reset item highlights on hide.
5808 *
5809 * @param {boolean} isVisible The menu is visible
5810 */
5811 OO.ui.MenuTagMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
5812 if ( !isVisible ) {
5813 this.menu.selectItem( null );
5814 this.menu.highlightItem( null );
5815 } else {
5816 this.initializeMenuSelection();
5817 }
5818 };
5819
5820 /**
5821 * @inheritdoc
5822 */
5823 OO.ui.MenuTagMultiselectWidget.prototype.onTagSelect = function ( tagItem ) {
5824 var menuItem = this.menu.findItemFromData( tagItem.getData() );
5825 // Override the base behavior from TagMultiselectWidget; the base behavior
5826 // in TagMultiselectWidget is to remove the tag to edit it in the input,
5827 // but in our case, we want to utilize the menu selection behavior, and
5828 // definitely not remove the item.
5829
5830 // If there is an input that is used for filtering, erase the value so we don't filter
5831 if ( this.hasInput && this.menu.filterFromInput ) {
5832 this.input.setValue( '' );
5833 }
5834
5835 // Select the menu item
5836 this.menu.selectItem( menuItem );
5837
5838 this.focus();
5839 };
5840
5841 /**
5842 * Highlight the first selectable item in the menu, if configured.
5843 *
5844 * @private
5845 * @chainable
5846 */
5847 OO.ui.MenuTagMultiselectWidget.prototype.initializeMenuSelection = function () {
5848 if ( !this.menu.findSelectedItem() ) {
5849 this.menu.highlightItem( this.menu.findFirstSelectableItem() );
5850 }
5851 };
5852
5853 /**
5854 * @inheritdoc
5855 */
5856 OO.ui.MenuTagMultiselectWidget.prototype.addTagFromInput = function () {
5857 var inputValue = this.input.getValue(),
5858 validated = false,
5859 highlightedItem = this.menu.findHighlightedItem(),
5860 item = this.menu.findItemFromData( inputValue );
5861
5862 // Override the parent method so we add from the menu
5863 // rather than directly from the input
5864
5865 // Look for a highlighted item first
5866 if ( highlightedItem ) {
5867 validated = this.addTag( highlightedItem.getData(), highlightedItem.getLabel() );
5868 } else if ( item ) {
5869 // Look for the element that fits the data
5870 validated = this.addTag( item.getData(), item.getLabel() );
5871 } else {
5872 // Otherwise, add the tag - the method will only add if the
5873 // tag is valid or if invalid tags are allowed
5874 validated = this.addTag( inputValue );
5875 }
5876
5877 if ( validated ) {
5878 this.clearInput();
5879 this.focus();
5880 }
5881 };
5882
5883 /**
5884 * Return the visible items in the menu. This is mainly used for when
5885 * the menu is filtering results.
5886 *
5887 * @return {OO.ui.MenuOptionWidget[]} Visible results
5888 */
5889 OO.ui.MenuTagMultiselectWidget.prototype.getMenuVisibleItems = function () {
5890 return this.menu.getItems().filter( function ( menuItem ) {
5891 return menuItem.isVisible();
5892 } );
5893 };
5894
5895 /**
5896 * Create the menu for this widget. This is in a separate method so that
5897 * child classes can override this without polluting the constructor with
5898 * unnecessary extra objects that will be overidden.
5899 *
5900 * @param {Object} menuConfig Configuration options
5901 * @return {OO.ui.MenuSelectWidget} Menu widget
5902 */
5903 OO.ui.MenuTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
5904 return new OO.ui.MenuSelectWidget( menuConfig );
5905 };
5906
5907 /**
5908 * Add options to the menu
5909 *
5910 * @param {Object[]} menuOptions Object defining options
5911 */
5912 OO.ui.MenuTagMultiselectWidget.prototype.addOptions = function ( menuOptions ) {
5913 var widget = this,
5914 items = menuOptions.map( function ( obj ) {
5915 return widget.createMenuOptionWidget( obj.data, obj.label );
5916 } );
5917
5918 this.menu.addItems( items );
5919 };
5920
5921 /**
5922 * Create a menu option widget.
5923 *
5924 * @param {string} data Item data
5925 * @param {string} [label] Item label
5926 * @return {OO.ui.OptionWidget} Option widget
5927 */
5928 OO.ui.MenuTagMultiselectWidget.prototype.createMenuOptionWidget = function ( data, label ) {
5929 return new OO.ui.MenuOptionWidget( {
5930 data: data,
5931 label: label || data
5932 } );
5933 };
5934
5935 /**
5936 * Get the menu
5937 *
5938 * @return {OO.ui.MenuSelectWidget} Menu
5939 */
5940 OO.ui.MenuTagMultiselectWidget.prototype.getMenu = function () {
5941 return this.menu;
5942 };
5943
5944 /**
5945 * Get the allowed values list
5946 *
5947 * @return {string[]} Allowed data values
5948 */
5949 OO.ui.MenuTagMultiselectWidget.prototype.getAllowedValues = function () {
5950 var menuDatas = [];
5951 if ( this.menu ) {
5952 // If the parent constructor is calling us, we're not ready yet, this.menu is not set up.
5953 menuDatas = this.menu.getItems().map( function ( menuItem ) {
5954 return menuItem.getData();
5955 } );
5956 }
5957 return this.allowedValues.concat( menuDatas );
5958 };
5959
5960 /**
5961 * SelectFileWidgets allow for selecting files, using the HTML5 File API. These
5962 * widgets can be configured with {@link OO.ui.mixin.IconElement icons} and {@link
5963 * OO.ui.mixin.IndicatorElement indicators}.
5964 * Please see the [OOUI documentation on MediaWiki] [1] for more information and examples.
5965 *
5966 * @example
5967 * // Example of a file select widget
5968 * var selectFile = new OO.ui.SelectFileWidget();
5969 * $( 'body' ).append( selectFile.$element );
5970 *
5971 * [1]: https://www.mediawiki.org/wiki/OOUI/Widgets
5972 *
5973 * @class
5974 * @extends OO.ui.Widget
5975 * @mixins OO.ui.mixin.IconElement
5976 * @mixins OO.ui.mixin.IndicatorElement
5977 * @mixins OO.ui.mixin.PendingElement
5978 * @mixins OO.ui.mixin.LabelElement
5979 *
5980 * @constructor
5981 * @param {Object} [config] Configuration options
5982 * @cfg {string[]|null} [accept=null] MIME types to accept. null accepts all types.
5983 * @cfg {string} [placeholder] Text to display when no file is selected.
5984 * @cfg {string} [notsupported] Text to display when file support is missing in the browser.
5985 * @cfg {boolean} [droppable=true] Whether to accept files by drag and drop.
5986 * @cfg {boolean} [showDropTarget=false] Whether to show a drop target. Requires droppable to be true.
5987 * @cfg {number} [thumbnailSizeLimit=20] File size limit in MiB above which to not try and show a
5988 * preview (for performance)
5989 */
5990 OO.ui.SelectFileWidget = function OoUiSelectFileWidget( config ) {
5991 var dragHandler;
5992
5993 // Configuration initialization
5994 config = $.extend( {
5995 accept: null,
5996 placeholder: OO.ui.msg( 'ooui-selectfile-placeholder' ),
5997 notsupported: OO.ui.msg( 'ooui-selectfile-not-supported' ),
5998 droppable: true,
5999 showDropTarget: false,
6000 thumbnailSizeLimit: 20
6001 }, config );
6002
6003 // Parent constructor
6004 OO.ui.SelectFileWidget.parent.call( this, config );
6005
6006 // Mixin constructors
6007 OO.ui.mixin.IconElement.call( this, config );
6008 OO.ui.mixin.IndicatorElement.call( this, config );
6009 OO.ui.mixin.PendingElement.call( this, $.extend( {}, config, { $pending: this.$info } ) );
6010 OO.ui.mixin.LabelElement.call( this, config );
6011
6012 // Properties
6013 this.$info = $( '<span>' );
6014 this.showDropTarget = config.showDropTarget;
6015 this.thumbnailSizeLimit = config.thumbnailSizeLimit;
6016 this.isSupported = this.constructor.static.isSupported();
6017 this.currentFile = null;
6018 if ( Array.isArray( config.accept ) ) {
6019 this.accept = config.accept;
6020 } else {
6021 this.accept = null;
6022 }
6023 this.placeholder = config.placeholder;
6024 this.notsupported = config.notsupported;
6025 this.onFileSelectedHandler = this.onFileSelected.bind( this );
6026
6027 this.selectButton = new OO.ui.ButtonWidget( {
6028 classes: [ 'oo-ui-selectFileWidget-selectButton' ],
6029 label: OO.ui.msg( 'ooui-selectfile-button-select' ),
6030 disabled: this.disabled || !this.isSupported
6031 } );
6032
6033 this.clearButton = new OO.ui.ButtonWidget( {
6034 classes: [ 'oo-ui-selectFileWidget-clearButton' ],
6035 framed: false,
6036 icon: 'close',
6037 disabled: this.disabled
6038 } );
6039
6040 // Events
6041 this.selectButton.$button.on( {
6042 keypress: this.onKeyPress.bind( this )
6043 } );
6044 this.clearButton.connect( this, {
6045 click: 'onClearClick'
6046 } );
6047 if ( config.droppable ) {
6048 dragHandler = this.onDragEnterOrOver.bind( this );
6049 this.$element.on( {
6050 dragenter: dragHandler,
6051 dragover: dragHandler,
6052 dragleave: this.onDragLeave.bind( this ),
6053 drop: this.onDrop.bind( this )
6054 } );
6055 }
6056
6057 // Initialization
6058 this.addInput();
6059 this.$label.addClass( 'oo-ui-selectFileWidget-label' );
6060 this.$info
6061 .addClass( 'oo-ui-selectFileWidget-info' )
6062 .append( this.$icon, this.$label, this.clearButton.$element, this.$indicator );
6063
6064 if ( config.droppable && config.showDropTarget ) {
6065 this.selectButton.setIcon( 'upload' );
6066 this.$thumbnail = $( '<div>' ).addClass( 'oo-ui-selectFileWidget-thumbnail' );
6067 this.setPendingElement( this.$thumbnail );
6068 this.$element
6069 .addClass( 'oo-ui-selectFileWidget-dropTarget oo-ui-selectFileWidget' )
6070 .on( {
6071 click: this.onDropTargetClick.bind( this )
6072 } )
6073 .append(
6074 this.$thumbnail,
6075 this.$info,
6076 this.selectButton.$element,
6077 $( '<span>' )
6078 .addClass( 'oo-ui-selectFileWidget-dropLabel' )
6079 .text( OO.ui.msg( 'ooui-selectfile-dragdrop-placeholder' ) )
6080 );
6081 } else {
6082 this.$element
6083 .addClass( 'oo-ui-selectFileWidget' )
6084 .append( this.$info, this.selectButton.$element );
6085 }
6086 this.updateUI();
6087 };
6088
6089 /* Setup */
6090
6091 OO.inheritClass( OO.ui.SelectFileWidget, OO.ui.Widget );
6092 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IconElement );
6093 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IndicatorElement );
6094 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.PendingElement );
6095 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.LabelElement );
6096
6097 /* Static Properties */
6098
6099 /**
6100 * Check if this widget is supported
6101 *
6102 * @static
6103 * @return {boolean}
6104 */
6105 OO.ui.SelectFileWidget.static.isSupported = function () {
6106 var $input;
6107 if ( OO.ui.SelectFileWidget.static.isSupportedCache === null ) {
6108 $input = $( '<input>' ).attr( 'type', 'file' );
6109 OO.ui.SelectFileWidget.static.isSupportedCache = $input[ 0 ].files !== undefined;
6110 }
6111 return OO.ui.SelectFileWidget.static.isSupportedCache;
6112 };
6113
6114 OO.ui.SelectFileWidget.static.isSupportedCache = null;
6115
6116 /* Events */
6117
6118 /**
6119 * @event change
6120 *
6121 * A change event is emitted when the on/off state of the toggle changes.
6122 *
6123 * @param {File|null} value New value
6124 */
6125
6126 /* Methods */
6127
6128 /**
6129 * Get the current value of the field
6130 *
6131 * @return {File|null}
6132 */
6133 OO.ui.SelectFileWidget.prototype.getValue = function () {
6134 return this.currentFile;
6135 };
6136
6137 /**
6138 * Set the current value of the field
6139 *
6140 * @param {File|null} file File to select
6141 */
6142 OO.ui.SelectFileWidget.prototype.setValue = function ( file ) {
6143 if ( this.currentFile !== file ) {
6144 this.currentFile = file;
6145 this.updateUI();
6146 this.emit( 'change', this.currentFile );
6147 }
6148 };
6149
6150 /**
6151 * Focus the widget.
6152 *
6153 * Focusses the select file button.
6154 *
6155 * @chainable
6156 */
6157 OO.ui.SelectFileWidget.prototype.focus = function () {
6158 this.selectButton.focus();
6159 return this;
6160 };
6161
6162 /**
6163 * Blur the widget.
6164 *
6165 * @chainable
6166 */
6167 OO.ui.SelectFileWidget.prototype.blur = function () {
6168 this.selectButton.blur();
6169 return this;
6170 };
6171
6172 /**
6173 * @inheritdoc
6174 */
6175 OO.ui.SelectFileWidget.prototype.simulateLabelClick = function () {
6176 this.focus();
6177 };
6178
6179 /**
6180 * Update the user interface when a file is selected or unselected
6181 *
6182 * @protected
6183 */
6184 OO.ui.SelectFileWidget.prototype.updateUI = function () {
6185 var $label;
6186 if ( !this.isSupported ) {
6187 this.$element.addClass( 'oo-ui-selectFileWidget-notsupported' );
6188 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
6189 this.setLabel( this.notsupported );
6190 } else {
6191 this.$element.addClass( 'oo-ui-selectFileWidget-supported' );
6192 if ( this.currentFile ) {
6193 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
6194 $label = $( [] );
6195 $label = $label.add(
6196 $( '<span>' )
6197 .addClass( 'oo-ui-selectFileWidget-fileName' )
6198 .text( this.currentFile.name )
6199 );
6200 this.setLabel( $label );
6201
6202 if ( this.showDropTarget ) {
6203 this.pushPending();
6204 this.loadAndGetImageUrl().done( function ( url ) {
6205 this.$thumbnail.css( 'background-image', 'url( ' + url + ' )' );
6206 }.bind( this ) ).fail( function () {
6207 this.$thumbnail.append(
6208 new OO.ui.IconWidget( {
6209 icon: 'attachment',
6210 classes: [ 'oo-ui-selectFileWidget-noThumbnail-icon' ]
6211 } ).$element
6212 );
6213 }.bind( this ) ).always( function () {
6214 this.popPending();
6215 }.bind( this ) );
6216 this.$element.off( 'click' );
6217 }
6218 } else {
6219 if ( this.showDropTarget ) {
6220 this.$element.off( 'click' );
6221 this.$element.on( {
6222 click: this.onDropTargetClick.bind( this )
6223 } );
6224 this.$thumbnail
6225 .empty()
6226 .css( 'background-image', '' );
6227 }
6228 this.$element.addClass( 'oo-ui-selectFileWidget-empty' );
6229 this.setLabel( this.placeholder );
6230 }
6231 }
6232 };
6233
6234 /**
6235 * If the selected file is an image, get its URL and load it.
6236 *
6237 * @return {jQuery.Promise} Promise resolves with the image URL after it has loaded
6238 */
6239 OO.ui.SelectFileWidget.prototype.loadAndGetImageUrl = function () {
6240 var deferred = $.Deferred(),
6241 file = this.currentFile,
6242 reader = new FileReader();
6243
6244 if (
6245 file &&
6246 ( OO.getProp( file, 'type' ) || '' ).indexOf( 'image/' ) === 0 &&
6247 file.size < this.thumbnailSizeLimit * 1024 * 1024
6248 ) {
6249 reader.onload = function ( event ) {
6250 var img = document.createElement( 'img' );
6251 img.addEventListener( 'load', function () {
6252 if (
6253 img.naturalWidth === 0 ||
6254 img.naturalHeight === 0 ||
6255 img.complete === false
6256 ) {
6257 deferred.reject();
6258 } else {
6259 deferred.resolve( event.target.result );
6260 }
6261 } );
6262 img.src = event.target.result;
6263 };
6264 reader.readAsDataURL( file );
6265 } else {
6266 deferred.reject();
6267 }
6268
6269 return deferred.promise();
6270 };
6271
6272 /**
6273 * Add the input to the widget
6274 *
6275 * @private
6276 */
6277 OO.ui.SelectFileWidget.prototype.addInput = function () {
6278 if ( this.$input ) {
6279 this.$input.remove();
6280 }
6281
6282 if ( !this.isSupported ) {
6283 this.$input = null;
6284 return;
6285 }
6286
6287 this.$input = $( '<input>' ).attr( 'type', 'file' );
6288 this.$input.on( 'change', this.onFileSelectedHandler );
6289 this.$input.on( 'click', function ( e ) {
6290 // Prevents dropTarget to get clicked which calls
6291 // a click on this input
6292 e.stopPropagation();
6293 } );
6294 this.$input.attr( {
6295 tabindex: -1
6296 } );
6297 if ( this.accept ) {
6298 this.$input.attr( 'accept', this.accept.join( ', ' ) );
6299 }
6300 this.selectButton.$button.append( this.$input );
6301 };
6302
6303 /**
6304 * Determine if we should accept this file
6305 *
6306 * @private
6307 * @param {string} mimeType File MIME type
6308 * @return {boolean}
6309 */
6310 OO.ui.SelectFileWidget.prototype.isAllowedType = function ( mimeType ) {
6311 var i, mimeTest;
6312
6313 if ( !this.accept || !mimeType ) {
6314 return true;
6315 }
6316
6317 for ( i = 0; i < this.accept.length; i++ ) {
6318 mimeTest = this.accept[ i ];
6319 if ( mimeTest === mimeType ) {
6320 return true;
6321 } else if ( mimeTest.substr( -2 ) === '/*' ) {
6322 mimeTest = mimeTest.substr( 0, mimeTest.length - 1 );
6323 if ( mimeType.substr( 0, mimeTest.length ) === mimeTest ) {
6324 return true;
6325 }
6326 }
6327 }
6328
6329 return false;
6330 };
6331
6332 /**
6333 * Handle file selection from the input
6334 *
6335 * @private
6336 * @param {jQuery.Event} e
6337 */
6338 OO.ui.SelectFileWidget.prototype.onFileSelected = function ( e ) {
6339 var file = OO.getProp( e.target, 'files', 0 ) || null;
6340
6341 if ( file && !this.isAllowedType( file.type ) ) {
6342 file = null;
6343 }
6344
6345 this.setValue( file );
6346 this.addInput();
6347 };
6348
6349 /**
6350 * Handle clear button click events.
6351 *
6352 * @private
6353 */
6354 OO.ui.SelectFileWidget.prototype.onClearClick = function () {
6355 this.setValue( null );
6356 return false;
6357 };
6358
6359 /**
6360 * Handle key press events.
6361 *
6362 * @private
6363 * @param {jQuery.Event} e Key press event
6364 */
6365 OO.ui.SelectFileWidget.prototype.onKeyPress = function ( e ) {
6366 if ( this.isSupported && !this.isDisabled() && this.$input &&
6367 ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER )
6368 ) {
6369 this.$input.click();
6370 return false;
6371 }
6372 };
6373
6374 /**
6375 * Handle drop target click events.
6376 *
6377 * @private
6378 * @param {jQuery.Event} e Key press event
6379 */
6380 OO.ui.SelectFileWidget.prototype.onDropTargetClick = function () {
6381 if ( this.isSupported && !this.isDisabled() && this.$input ) {
6382 this.$input.click();
6383 return false;
6384 }
6385 };
6386
6387 /**
6388 * Handle drag enter and over events
6389 *
6390 * @private
6391 * @param {jQuery.Event} e Drag event
6392 */
6393 OO.ui.SelectFileWidget.prototype.onDragEnterOrOver = function ( e ) {
6394 var itemOrFile,
6395 droppableFile = false,
6396 dt = e.originalEvent.dataTransfer;
6397
6398 e.preventDefault();
6399 e.stopPropagation();
6400
6401 if ( this.isDisabled() || !this.isSupported ) {
6402 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6403 dt.dropEffect = 'none';
6404 return false;
6405 }
6406
6407 // DataTransferItem and File both have a type property, but in Chrome files
6408 // have no information at this point.
6409 itemOrFile = OO.getProp( dt, 'items', 0 ) || OO.getProp( dt, 'files', 0 );
6410 if ( itemOrFile ) {
6411 if ( this.isAllowedType( itemOrFile.type ) ) {
6412 droppableFile = true;
6413 }
6414 // dt.types is Array-like, but not an Array
6415 } else if ( Array.prototype.indexOf.call( OO.getProp( dt, 'types' ) || [], 'Files' ) !== -1 ) {
6416 // File information is not available at this point for security so just assume
6417 // it is acceptable for now.
6418 // https://bugzilla.mozilla.org/show_bug.cgi?id=640534
6419 droppableFile = true;
6420 }
6421
6422 this.$element.toggleClass( 'oo-ui-selectFileWidget-canDrop', droppableFile );
6423 if ( !droppableFile ) {
6424 dt.dropEffect = 'none';
6425 }
6426
6427 return false;
6428 };
6429
6430 /**
6431 * Handle drag leave events
6432 *
6433 * @private
6434 * @param {jQuery.Event} e Drag event
6435 */
6436 OO.ui.SelectFileWidget.prototype.onDragLeave = function () {
6437 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6438 };
6439
6440 /**
6441 * Handle drop events
6442 *
6443 * @private
6444 * @param {jQuery.Event} e Drop event
6445 */
6446 OO.ui.SelectFileWidget.prototype.onDrop = function ( e ) {
6447 var file = null,
6448 dt = e.originalEvent.dataTransfer;
6449
6450 e.preventDefault();
6451 e.stopPropagation();
6452 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
6453
6454 if ( this.isDisabled() || !this.isSupported ) {
6455 return false;
6456 }
6457
6458 file = OO.getProp( dt, 'files', 0 );
6459 if ( file && !this.isAllowedType( file.type ) ) {
6460 file = null;
6461 }
6462 if ( file ) {
6463 this.setValue( file );
6464 }
6465
6466 return false;
6467 };
6468
6469 /**
6470 * @inheritdoc
6471 */
6472 OO.ui.SelectFileWidget.prototype.setDisabled = function ( disabled ) {
6473 OO.ui.SelectFileWidget.parent.prototype.setDisabled.call( this, disabled );
6474 if ( this.selectButton ) {
6475 this.selectButton.setDisabled( disabled );
6476 }
6477 if ( this.clearButton ) {
6478 this.clearButton.setDisabled( disabled );
6479 }
6480 return this;
6481 };
6482
6483 /**
6484 * SearchWidgets combine a {@link OO.ui.TextInputWidget text input field}, where users can type a search query,
6485 * and a menu of search results, which is displayed beneath the query
6486 * field. Unlike {@link OO.ui.mixin.LookupElement lookup menus}, search result menus are always visible to the user.
6487 * Users can choose an item from the menu or type a query into the text field to search for a matching result item.
6488 * In general, search widgets are used inside a separate {@link OO.ui.Dialog dialog} window.
6489 *
6490 * Each time the query is changed, the search result menu is cleared and repopulated. Please see
6491 * the [OOUI demos][1] for an example.
6492 *
6493 * [1]: https://doc.wikimedia.org/oojs-ui/master/demos/#SearchInputWidget-type-search
6494 *
6495 * @class
6496 * @extends OO.ui.Widget
6497 *
6498 * @constructor
6499 * @param {Object} [config] Configuration options
6500 * @cfg {string|jQuery} [placeholder] Placeholder text for query input
6501 * @cfg {string} [value] Initial query value
6502 */
6503 OO.ui.SearchWidget = function OoUiSearchWidget( config ) {
6504 // Configuration initialization
6505 config = config || {};
6506
6507 // Parent constructor
6508 OO.ui.SearchWidget.parent.call( this, config );
6509
6510 // Properties
6511 this.query = new OO.ui.TextInputWidget( {
6512 icon: 'search',
6513 placeholder: config.placeholder,
6514 value: config.value
6515 } );
6516 this.results = new OO.ui.SelectWidget();
6517 this.$query = $( '<div>' );
6518 this.$results = $( '<div>' );
6519
6520 // Events
6521 this.query.connect( this, {
6522 change: 'onQueryChange',
6523 enter: 'onQueryEnter'
6524 } );
6525 this.query.$input.on( 'keydown', this.onQueryKeydown.bind( this ) );
6526
6527 // Initialization
6528 this.$query
6529 .addClass( 'oo-ui-searchWidget-query' )
6530 .append( this.query.$element );
6531 this.$results
6532 .addClass( 'oo-ui-searchWidget-results' )
6533 .append( this.results.$element );
6534 this.$element
6535 .addClass( 'oo-ui-searchWidget' )
6536 .append( this.$results, this.$query );
6537 };
6538
6539 /* Setup */
6540
6541 OO.inheritClass( OO.ui.SearchWidget, OO.ui.Widget );
6542
6543 /* Methods */
6544
6545 /**
6546 * Handle query key down events.
6547 *
6548 * @private
6549 * @param {jQuery.Event} e Key down event
6550 */
6551 OO.ui.SearchWidget.prototype.onQueryKeydown = function ( e ) {
6552 var highlightedItem, nextItem,
6553 dir = e.which === OO.ui.Keys.DOWN ? 1 : ( e.which === OO.ui.Keys.UP ? -1 : 0 );
6554
6555 if ( dir ) {
6556 highlightedItem = this.results.findHighlightedItem();
6557 if ( !highlightedItem ) {
6558 highlightedItem = this.results.findSelectedItem();
6559 }
6560 nextItem = this.results.findRelativeSelectableItem( highlightedItem, dir );
6561 this.results.highlightItem( nextItem );
6562 nextItem.scrollElementIntoView();
6563 }
6564 };
6565
6566 /**
6567 * Handle select widget select events.
6568 *
6569 * Clears existing results. Subclasses should repopulate items according to new query.
6570 *
6571 * @private
6572 * @param {string} value New value
6573 */
6574 OO.ui.SearchWidget.prototype.onQueryChange = function () {
6575 // Reset
6576 this.results.clearItems();
6577 };
6578
6579 /**
6580 * Handle select widget enter key events.
6581 *
6582 * Chooses highlighted item.
6583 *
6584 * @private
6585 * @param {string} value New value
6586 */
6587 OO.ui.SearchWidget.prototype.onQueryEnter = function () {
6588 var highlightedItem = this.results.findHighlightedItem();
6589 if ( highlightedItem ) {
6590 this.results.chooseItem( highlightedItem );
6591 }
6592 };
6593
6594 /**
6595 * Get the query input.
6596 *
6597 * @return {OO.ui.TextInputWidget} Query input
6598 */
6599 OO.ui.SearchWidget.prototype.getQuery = function () {
6600 return this.query;
6601 };
6602
6603 /**
6604 * Get the search results menu.
6605 *
6606 * @return {OO.ui.SelectWidget} Menu of search results
6607 */
6608 OO.ui.SearchWidget.prototype.getResults = function () {
6609 return this.results;
6610 };
6611
6612 /**
6613 * NumberInputWidgets combine a {@link OO.ui.TextInputWidget text input} (where a value
6614 * can be entered manually) and two {@link OO.ui.ButtonWidget button widgets}
6615 * (to adjust the value in increments) to allow the user to enter a number.
6616 *
6617 * @example
6618 * // Example: A NumberInputWidget.
6619 * var numberInput = new OO.ui.NumberInputWidget( {
6620 * label: 'NumberInputWidget',
6621 * input: { value: 5 },
6622 * min: 1,
6623 * max: 10
6624 * } );
6625 * $( 'body' ).append( numberInput.$element );
6626 *
6627 * @class
6628 * @extends OO.ui.TextInputWidget
6629 *
6630 * @constructor
6631 * @param {Object} [config] Configuration options
6632 * @cfg {Object} [minusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget decrementing button widget}.
6633 * @cfg {Object} [plusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget incrementing button widget}.
6634 * @cfg {boolean} [allowInteger=false] Whether the field accepts only integer values.
6635 * @cfg {number} [min=-Infinity] Minimum allowed value
6636 * @cfg {number} [max=Infinity] Maximum allowed value
6637 * @cfg {number} [step=1] Delta when using the buttons or up/down arrow keys
6638 * @cfg {number|null} [pageStep] Delta when using the page-up/page-down keys. Defaults to 10 times #step.
6639 * @cfg {boolean} [showButtons=true] Whether to show the plus and minus buttons.
6640 */
6641 OO.ui.NumberInputWidget = function OoUiNumberInputWidget( config ) {
6642 var $field = $( '<div>' )
6643 .addClass( 'oo-ui-numberInputWidget-field' );
6644
6645 // Configuration initialization
6646 config = $.extend( {
6647 allowInteger: false,
6648 min: -Infinity,
6649 max: Infinity,
6650 step: 1,
6651 pageStep: null,
6652 showButtons: true
6653 }, config );
6654
6655 // For backward compatibility
6656 $.extend( config, config.input );
6657 this.input = this;
6658
6659 // Parent constructor
6660 OO.ui.NumberInputWidget.parent.call( this, $.extend( config, {
6661 type: 'number'
6662 } ) );
6663
6664 if ( config.showButtons ) {
6665 this.minusButton = new OO.ui.ButtonWidget( $.extend(
6666 {
6667 disabled: this.isDisabled(),
6668 tabIndex: -1,
6669 classes: [ 'oo-ui-numberInputWidget-minusButton' ],
6670 icon: 'subtract'
6671 },
6672 config.minusButton
6673 ) );
6674 this.plusButton = new OO.ui.ButtonWidget( $.extend(
6675 {
6676 disabled: this.isDisabled(),
6677 tabIndex: -1,
6678 classes: [ 'oo-ui-numberInputWidget-plusButton' ],
6679 icon: 'add'
6680 },
6681 config.plusButton
6682 ) );
6683 }
6684
6685 // Events
6686 this.$input.on( {
6687 keydown: this.onKeyDown.bind( this ),
6688 'wheel mousewheel DOMMouseScroll': this.onWheel.bind( this )
6689 } );
6690 if ( config.showButtons ) {
6691 this.plusButton.connect( this, {
6692 click: [ 'onButtonClick', +1 ]
6693 } );
6694 this.minusButton.connect( this, {
6695 click: [ 'onButtonClick', -1 ]
6696 } );
6697 }
6698
6699 // Build the field
6700 $field.append( this.$input );
6701 if ( config.showButtons ) {
6702 $field
6703 .prepend( this.minusButton.$element )
6704 .append( this.plusButton.$element );
6705 }
6706
6707 // Initialization
6708 this.setAllowInteger( config.allowInteger || config.isInteger );
6709 this.setRange( config.min, config.max );
6710 this.setStep( config.step, config.pageStep );
6711 // Set the validation method after we set allowInteger and range
6712 // so that it doesn't immediately call setValidityFlag
6713 this.setValidation( this.validateNumber.bind( this ) );
6714
6715 this.$element
6716 .addClass( 'oo-ui-numberInputWidget' )
6717 .toggleClass( 'oo-ui-numberInputWidget-buttoned', config.showButtons )
6718 .append( $field );
6719 };
6720
6721 /* Setup */
6722
6723 OO.inheritClass( OO.ui.NumberInputWidget, OO.ui.TextInputWidget );
6724
6725 /* Methods */
6726
6727 /**
6728 * Set whether only integers are allowed
6729 *
6730 * @param {boolean} flag
6731 */
6732 OO.ui.NumberInputWidget.prototype.setAllowInteger = function ( flag ) {
6733 this.allowInteger = !!flag;
6734 this.setValidityFlag();
6735 };
6736 // Backward compatibility
6737 OO.ui.NumberInputWidget.prototype.setIsInteger = OO.ui.NumberInputWidget.prototype.setAllowInteger;
6738
6739 /**
6740 * Get whether only integers are allowed
6741 *
6742 * @return {boolean} Flag value
6743 */
6744 OO.ui.NumberInputWidget.prototype.getAllowInteger = function () {
6745 return this.allowInteger;
6746 };
6747 // Backward compatibility
6748 OO.ui.NumberInputWidget.prototype.getIsInteger = OO.ui.NumberInputWidget.prototype.getAllowInteger;
6749
6750 /**
6751 * Set the range of allowed values
6752 *
6753 * @param {number} min Minimum allowed value
6754 * @param {number} max Maximum allowed value
6755 */
6756 OO.ui.NumberInputWidget.prototype.setRange = function ( min, max ) {
6757 if ( min > max ) {
6758 throw new Error( 'Minimum (' + min + ') must not be greater than maximum (' + max + ')' );
6759 }
6760 this.min = min;
6761 this.max = max;
6762 this.setValidityFlag();
6763 };
6764
6765 /**
6766 * Get the current range
6767 *
6768 * @return {number[]} Minimum and maximum values
6769 */
6770 OO.ui.NumberInputWidget.prototype.getRange = function () {
6771 return [ this.min, this.max ];
6772 };
6773
6774 /**
6775 * Set the stepping deltas
6776 *
6777 * @param {number} step Normal step
6778 * @param {number|null} pageStep Page step. If null, 10 * step will be used.
6779 */
6780 OO.ui.NumberInputWidget.prototype.setStep = function ( step, pageStep ) {
6781 if ( step <= 0 ) {
6782 throw new Error( 'Step value must be positive' );
6783 }
6784 if ( pageStep === null ) {
6785 pageStep = step * 10;
6786 } else if ( pageStep <= 0 ) {
6787 throw new Error( 'Page step value must be positive' );
6788 }
6789 this.step = step;
6790 this.pageStep = pageStep;
6791 };
6792
6793 /**
6794 * Get the current stepping values
6795 *
6796 * @return {number[]} Step and page step
6797 */
6798 OO.ui.NumberInputWidget.prototype.getStep = function () {
6799 return [ this.step, this.pageStep ];
6800 };
6801
6802 /**
6803 * Get the current value of the widget as a number
6804 *
6805 * @return {number} May be NaN, or an invalid number
6806 */
6807 OO.ui.NumberInputWidget.prototype.getNumericValue = function () {
6808 return +this.getValue();
6809 };
6810
6811 /**
6812 * Adjust the value of the widget
6813 *
6814 * @param {number} delta Adjustment amount
6815 */
6816 OO.ui.NumberInputWidget.prototype.adjustValue = function ( delta ) {
6817 var n, v = this.getNumericValue();
6818
6819 delta = +delta;
6820 if ( isNaN( delta ) || !isFinite( delta ) ) {
6821 throw new Error( 'Delta must be a finite number' );
6822 }
6823
6824 if ( isNaN( v ) ) {
6825 n = 0;
6826 } else {
6827 n = v + delta;
6828 n = Math.max( Math.min( n, this.max ), this.min );
6829 if ( this.allowInteger ) {
6830 n = Math.round( n );
6831 }
6832 }
6833
6834 if ( n !== v ) {
6835 this.setValue( n );
6836 }
6837 };
6838 /**
6839 * Validate input
6840 *
6841 * @private
6842 * @param {string} value Field value
6843 * @return {boolean}
6844 */
6845 OO.ui.NumberInputWidget.prototype.validateNumber = function ( value ) {
6846 var n = +value;
6847 if ( value === '' ) {
6848 return !this.isRequired();
6849 }
6850
6851 if ( isNaN( n ) || !isFinite( n ) ) {
6852 return false;
6853 }
6854
6855 if ( this.allowInteger && Math.floor( n ) !== n ) {
6856 return false;
6857 }
6858
6859 if ( n < this.min || n > this.max ) {
6860 return false;
6861 }
6862
6863 return true;
6864 };
6865
6866 /**
6867 * Handle mouse click events.
6868 *
6869 * @private
6870 * @param {number} dir +1 or -1
6871 */
6872 OO.ui.NumberInputWidget.prototype.onButtonClick = function ( dir ) {
6873 this.adjustValue( dir * this.step );
6874 };
6875
6876 /**
6877 * Handle mouse wheel events.
6878 *
6879 * @private
6880 * @param {jQuery.Event} event
6881 */
6882 OO.ui.NumberInputWidget.prototype.onWheel = function ( event ) {
6883 var delta = 0;
6884
6885 if ( !this.isDisabled() && this.$input.is( ':focus' ) ) {
6886 // Standard 'wheel' event
6887 if ( event.originalEvent.deltaMode !== undefined ) {
6888 this.sawWheelEvent = true;
6889 }
6890 if ( event.originalEvent.deltaY ) {
6891 delta = -event.originalEvent.deltaY;
6892 } else if ( event.originalEvent.deltaX ) {
6893 delta = event.originalEvent.deltaX;
6894 }
6895
6896 // Non-standard events
6897 if ( !this.sawWheelEvent ) {
6898 if ( event.originalEvent.wheelDeltaX ) {
6899 delta = -event.originalEvent.wheelDeltaX;
6900 } else if ( event.originalEvent.wheelDeltaY ) {
6901 delta = event.originalEvent.wheelDeltaY;
6902 } else if ( event.originalEvent.wheelDelta ) {
6903 delta = event.originalEvent.wheelDelta;
6904 } else if ( event.originalEvent.detail ) {
6905 delta = -event.originalEvent.detail;
6906 }
6907 }
6908
6909 if ( delta ) {
6910 delta = delta < 0 ? -1 : 1;
6911 this.adjustValue( delta * this.step );
6912 }
6913
6914 return false;
6915 }
6916 };
6917
6918 /**
6919 * Handle key down events.
6920 *
6921 * @private
6922 * @param {jQuery.Event} e Key down event
6923 */
6924 OO.ui.NumberInputWidget.prototype.onKeyDown = function ( e ) {
6925 if ( !this.isDisabled() ) {
6926 switch ( e.which ) {
6927 case OO.ui.Keys.UP:
6928 this.adjustValue( this.step );
6929 return false;
6930 case OO.ui.Keys.DOWN:
6931 this.adjustValue( -this.step );
6932 return false;
6933 case OO.ui.Keys.PAGEUP:
6934 this.adjustValue( this.pageStep );
6935 return false;
6936 case OO.ui.Keys.PAGEDOWN:
6937 this.adjustValue( -this.pageStep );
6938 return false;
6939 }
6940 }
6941 };
6942
6943 /**
6944 * @inheritdoc
6945 */
6946 OO.ui.NumberInputWidget.prototype.setDisabled = function ( disabled ) {
6947 // Parent method
6948 OO.ui.NumberInputWidget.parent.prototype.setDisabled.call( this, disabled );
6949
6950 if ( this.minusButton ) {
6951 this.minusButton.setDisabled( this.isDisabled() );
6952 }
6953 if ( this.plusButton ) {
6954 this.plusButton.setDisabled( this.isDisabled() );
6955 }
6956
6957 return this;
6958 };
6959
6960 }( OO ) );
6961
6962 //# sourceMappingURL=oojs-ui-widgets.js.map