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