d7e92c2606c30f0951153945c25298f805f3119b
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-widgets.js
1 /*!
2 * OOjs UI v0.18.3
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-01-04T00:22:40Z
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 */
28 OO.ui.mixin.DraggableElement = function OoUiMixinDraggableElement( config ) {
29 config = config || {};
30
31 // Properties
32 this.index = null;
33 this.$handle = config.$handle || this.$element;
34 this.wasHandleUsed = null;
35
36 // Initialize and events
37 this.$element.addClass( 'oo-ui-draggableElement' )
38 // We make the entire element draggable, not just the handle, so that
39 // the whole element appears to move. wasHandleUsed prevents drags from
40 // starting outside the handle
41 .attr( 'draggable', true )
42 .on( {
43 mousedown: this.onDragMouseDown.bind( this ),
44 dragstart: this.onDragStart.bind( this ),
45 dragover: this.onDragOver.bind( this ),
46 dragend: this.onDragEnd.bind( this ),
47 drop: this.onDrop.bind( this )
48 } );
49 this.$handle.addClass( 'oo-ui-draggableElement-handle' );
50 };
51
52 OO.initClass( OO.ui.mixin.DraggableElement );
53
54 /* Events */
55
56 /**
57 * @event dragstart
58 *
59 * A dragstart event is emitted when the user clicks and begins dragging an item.
60 * @param {OO.ui.mixin.DraggableElement} item The item the user has clicked and is dragging with the mouse.
61 */
62
63 /**
64 * @event dragend
65 * A dragend event is emitted when the user drags an item and releases the mouse,
66 * thus terminating the drag operation.
67 */
68
69 /**
70 * @event drop
71 * A drop event is emitted when the user drags an item and then releases the mouse button
72 * over a valid target.
73 */
74
75 /* Static Properties */
76
77 /**
78 * @inheritdoc OO.ui.mixin.ButtonElement
79 */
80 OO.ui.mixin.DraggableElement.static.cancelButtonMouseDownEvents = false;
81
82 /* Methods */
83
84 /**
85 * Respond to mousedown event.
86 *
87 * @private
88 * @param {jQuery.Event} e Drag event
89 */
90 OO.ui.mixin.DraggableElement.prototype.onDragMouseDown = function ( e ) {
91 this.wasHandleUsed =
92 // Optimization: if the handle is the whole element this is always true
93 this.$handle[ 0 ] === this.$element[ 0 ] ||
94 // Check the mousedown occurred inside the handle
95 OO.ui.contains( this.$handle[ 0 ], e.target, true );
96 };
97
98 /**
99 * Respond to dragstart event.
100 *
101 * @private
102 * @param {jQuery.Event} e Drag event
103 * @return {boolean} False if the event is cancelled
104 * @fires dragstart
105 */
106 OO.ui.mixin.DraggableElement.prototype.onDragStart = function ( e ) {
107 var element = this,
108 dataTransfer = e.originalEvent.dataTransfer;
109
110 if ( !this.wasHandleUsed ) {
111 return false;
112 }
113
114 // Define drop effect
115 dataTransfer.dropEffect = 'none';
116 dataTransfer.effectAllowed = 'move';
117 // Support: Firefox
118 // We must set up a dataTransfer data property or Firefox seems to
119 // ignore the fact the element is draggable.
120 try {
121 dataTransfer.setData( 'application-x/OOjs-UI-draggable', this.getIndex() );
122 } catch ( err ) {
123 // The above is only for Firefox. Move on if it fails.
124 }
125 // Briefly add a 'clone' class to style the browser's native drag image
126 this.$element.addClass( 'oo-ui-draggableElement-clone' );
127 // Add placeholder class after the browser has rendered the clone
128 setTimeout( function () {
129 element.$element
130 .removeClass( 'oo-ui-draggableElement-clone' )
131 .addClass( 'oo-ui-draggableElement-placeholder' );
132 } );
133 // Emit event
134 this.emit( 'dragstart', this );
135 return true;
136 };
137
138 /**
139 * Respond to dragend event.
140 *
141 * @private
142 * @fires dragend
143 */
144 OO.ui.mixin.DraggableElement.prototype.onDragEnd = function () {
145 this.$element.removeClass( 'oo-ui-draggableElement-placeholder' );
146 this.emit( 'dragend' );
147 };
148
149 /**
150 * Handle drop event.
151 *
152 * @private
153 * @param {jQuery.Event} e Drop event
154 * @fires drop
155 */
156 OO.ui.mixin.DraggableElement.prototype.onDrop = function ( e ) {
157 e.preventDefault();
158 this.emit( 'drop', e );
159 };
160
161 /**
162 * In order for drag/drop to work, the dragover event must
163 * return false and stop propogation.
164 *
165 * @param {jQuery.Event} e Drag event
166 * @private
167 */
168 OO.ui.mixin.DraggableElement.prototype.onDragOver = function ( e ) {
169 e.preventDefault();
170 };
171
172 /**
173 * Set item index.
174 * Store it in the DOM so we can access from the widget drag event
175 *
176 * @private
177 * @param {number} index Item index
178 */
179 OO.ui.mixin.DraggableElement.prototype.setIndex = function ( index ) {
180 if ( this.index !== index ) {
181 this.index = index;
182 this.$element.data( 'index', index );
183 }
184 };
185
186 /**
187 * Get item index
188 *
189 * @private
190 * @return {number} Item index
191 */
192 OO.ui.mixin.DraggableElement.prototype.getIndex = function () {
193 return this.index;
194 };
195
196 /**
197 * DraggableGroupElement is a mixin class used to create a group element to
198 * contain draggable elements, which are items that can be clicked and dragged by a mouse.
199 * The class is used with OO.ui.mixin.DraggableElement.
200 *
201 * @abstract
202 * @class
203 * @mixins OO.ui.mixin.GroupElement
204 *
205 * @constructor
206 * @param {Object} [config] Configuration options
207 * @cfg {string} [orientation] Item orientation: 'horizontal' or 'vertical'. The orientation
208 * should match the layout of the items. Items displayed in a single row
209 * or in several rows should use horizontal orientation. The vertical orientation should only be
210 * used when the items are displayed in a single column. Defaults to 'vertical'
211 */
212 OO.ui.mixin.DraggableGroupElement = function OoUiMixinDraggableGroupElement( config ) {
213 // Configuration initialization
214 config = config || {};
215
216 // Parent constructor
217 OO.ui.mixin.GroupElement.call( this, config );
218
219 // Properties
220 this.orientation = config.orientation || 'vertical';
221 this.dragItem = null;
222 this.itemKeys = {};
223 this.dir = null;
224 this.itemsOrder = null;
225
226 // Events
227 this.aggregate( {
228 dragstart: 'itemDragStart',
229 dragend: 'itemDragEnd',
230 drop: 'itemDrop'
231 } );
232 this.connect( this, {
233 itemDragStart: 'onItemDragStart',
234 itemDrop: 'onItemDropOrDragEnd',
235 itemDragEnd: 'onItemDropOrDragEnd'
236 } );
237
238 // Initialize
239 if ( Array.isArray( config.items ) ) {
240 this.addItems( config.items );
241 }
242 this.$element
243 .addClass( 'oo-ui-draggableGroupElement' )
244 .append( this.$status )
245 .toggleClass( 'oo-ui-draggableGroupElement-horizontal', this.orientation === 'horizontal' );
246 };
247
248 /* Setup */
249 OO.mixinClass( OO.ui.mixin.DraggableGroupElement, OO.ui.mixin.GroupElement );
250
251 /* Events */
252
253 /**
254 * An item has been dragged to a new position, but not yet dropped.
255 *
256 * @event drag
257 * @param {OO.ui.mixin.DraggableElement} item Dragged item
258 * @param {number} [newIndex] New index for the item
259 */
260
261 /**
262 * And item has been dropped at a new position.
263 *
264 * @event reorder
265 * @param {OO.ui.mixin.DraggableElement} item Reordered item
266 * @param {number} [newIndex] New index for the item
267 */
268
269 /* Methods */
270
271 /**
272 * Respond to item drag start event
273 *
274 * @private
275 * @param {OO.ui.mixin.DraggableElement} item Dragged item
276 */
277 OO.ui.mixin.DraggableGroupElement.prototype.onItemDragStart = function ( item ) {
278 // Make a shallow copy of this.items so we can re-order it during previews
279 // without affecting the original array.
280 this.itemsOrder = this.items.slice();
281 this.updateIndexes();
282 if ( this.orientation === 'horizontal' ) {
283 // Calculate and cache directionality on drag start - it's a little
284 // expensive and it shouldn't change while dragging.
285 this.dir = this.$element.css( 'direction' );
286 }
287 this.setDragItem( item );
288 };
289
290 /**
291 * Update the index properties of the items
292 */
293 OO.ui.mixin.DraggableGroupElement.prototype.updateIndexes = function () {
294 var i, len;
295
296 // Map the index of each object
297 for ( i = 0, len = this.itemsOrder.length; i < len; i++ ) {
298 this.itemsOrder[ i ].setIndex( i );
299 }
300 };
301
302 /**
303 * Handle drop or dragend event and switch the order of the items accordingly
304 *
305 * @private
306 * @param {OO.ui.mixin.DraggableElement} item Dropped item
307 */
308 OO.ui.mixin.DraggableGroupElement.prototype.onItemDropOrDragEnd = function () {
309 var targetIndex, originalIndex,
310 item = this.getDragItem();
311
312 // TODO: Figure out a way to configure a list of legally droppable
313 // elements even if they are not yet in the list
314 if ( item ) {
315 originalIndex = this.items.indexOf( item );
316 // If the item has moved forward, add one to the index to account for the left shift
317 targetIndex = item.getIndex() + ( item.getIndex() > originalIndex ? 1 : 0 );
318 if ( targetIndex !== originalIndex ) {
319 this.reorder( this.getDragItem(), targetIndex );
320 this.emit( 'reorder', this.getDragItem(), targetIndex );
321 }
322 this.updateIndexes();
323 }
324 this.unsetDragItem();
325 // Return false to prevent propogation
326 return false;
327 };
328
329 /**
330 * Respond to dragover event
331 *
332 * @private
333 * @param {jQuery.Event} e Dragover event
334 * @fires reorder
335 */
336 OO.ui.mixin.DraggableGroupElement.prototype.onDragOver = function ( e ) {
337 var overIndex, targetIndex,
338 item = this.getDragItem(),
339 dragItemIndex = item.getIndex();
340
341 // Get the OptionWidget item we are dragging over
342 overIndex = $( e.target ).closest( '.oo-ui-draggableElement' ).data( 'index' );
343
344 if ( overIndex !== undefined && overIndex !== dragItemIndex ) {
345 targetIndex = overIndex + ( overIndex > dragItemIndex ? 1 : 0 );
346
347 if ( targetIndex > 0 ) {
348 this.$group.children().eq( targetIndex - 1 ).after( item.$element );
349 } else {
350 this.$group.prepend( item.$element );
351 }
352 // Move item in itemsOrder array
353 this.itemsOrder.splice( overIndex, 0,
354 this.itemsOrder.splice( dragItemIndex, 1 )[ 0 ]
355 );
356 this.updateIndexes();
357 this.emit( 'drag', item, targetIndex );
358 }
359 // Prevent default
360 e.preventDefault();
361 };
362
363 /**
364 * Reorder the items in the group
365 *
366 * @param {OO.ui.mixin.DraggableElement} item Reordered item
367 * @param {number} newIndex New index
368 */
369 OO.ui.mixin.DraggableGroupElement.prototype.reorder = function ( item, newIndex ) {
370 this.addItems( [ item ], newIndex );
371 };
372
373 /**
374 * Set a dragged item
375 *
376 * @param {OO.ui.mixin.DraggableElement} item Dragged item
377 */
378 OO.ui.mixin.DraggableGroupElement.prototype.setDragItem = function ( item ) {
379 if ( this.dragItem !== item ) {
380 this.dragItem = item;
381 this.$element.on( 'dragover', this.onDragOver.bind( this ) );
382 this.$element.addClass( 'oo-ui-draggableGroupElement-dragging' );
383 }
384 };
385
386 /**
387 * Unset the current dragged item
388 */
389 OO.ui.mixin.DraggableGroupElement.prototype.unsetDragItem = function () {
390 if ( this.dragItem ) {
391 this.dragItem = null;
392 this.$element.off( 'dragover' );
393 this.$element.removeClass( 'oo-ui-draggableGroupElement-dragging' );
394 }
395 };
396
397 /**
398 * Get the item that is currently being dragged.
399 *
400 * @return {OO.ui.mixin.DraggableElement|null} The currently dragged item, or `null` if no item is being dragged
401 */
402 OO.ui.mixin.DraggableGroupElement.prototype.getDragItem = function () {
403 return this.dragItem;
404 };
405
406 /**
407 * RequestManager is a mixin that manages the lifecycle of a promise-backed request for a widget, such as
408 * the {@link OO.ui.mixin.LookupElement}.
409 *
410 * @class
411 * @abstract
412 *
413 * @constructor
414 */
415 OO.ui.mixin.RequestManager = function OoUiMixinRequestManager() {
416 this.requestCache = {};
417 this.requestQuery = null;
418 this.requestRequest = null;
419 };
420
421 /* Setup */
422
423 OO.initClass( OO.ui.mixin.RequestManager );
424
425 /**
426 * Get request results for the current query.
427 *
428 * @return {jQuery.Promise} Promise object which will be passed response data as the first argument of
429 * the done event. If the request was aborted to make way for a subsequent request, this promise
430 * may not be rejected, depending on what jQuery feels like doing.
431 */
432 OO.ui.mixin.RequestManager.prototype.getRequestData = function () {
433 var widget = this,
434 value = this.getRequestQuery(),
435 deferred = $.Deferred(),
436 ourRequest;
437
438 this.abortRequest();
439 if ( Object.prototype.hasOwnProperty.call( this.requestCache, value ) ) {
440 deferred.resolve( this.requestCache[ value ] );
441 } else {
442 if ( this.pushPending ) {
443 this.pushPending();
444 }
445 this.requestQuery = value;
446 ourRequest = this.requestRequest = this.getRequest();
447 ourRequest
448 .always( function () {
449 // We need to pop pending even if this is an old request, otherwise
450 // the widget will remain pending forever.
451 // TODO: this assumes that an aborted request will fail or succeed soon after
452 // being aborted, or at least eventually. It would be nice if we could popPending()
453 // at abort time, but only if we knew that we hadn't already called popPending()
454 // for that request.
455 if ( widget.popPending ) {
456 widget.popPending();
457 }
458 } )
459 .done( function ( response ) {
460 // If this is an old request (and aborting it somehow caused it to still succeed),
461 // ignore its success completely
462 if ( ourRequest === widget.requestRequest ) {
463 widget.requestQuery = null;
464 widget.requestRequest = null;
465 widget.requestCache[ value ] = widget.getRequestCacheDataFromResponse( response );
466 deferred.resolve( widget.requestCache[ value ] );
467 }
468 } )
469 .fail( function () {
470 // If this is an old request (or a request failing because it's being aborted),
471 // ignore its failure completely
472 if ( ourRequest === widget.requestRequest ) {
473 widget.requestQuery = null;
474 widget.requestRequest = null;
475 deferred.reject();
476 }
477 } );
478 }
479 return deferred.promise();
480 };
481
482 /**
483 * Abort the currently pending request, if any.
484 *
485 * @private
486 */
487 OO.ui.mixin.RequestManager.prototype.abortRequest = function () {
488 var oldRequest = this.requestRequest;
489 if ( oldRequest ) {
490 // First unset this.requestRequest to the fail handler will notice
491 // that the request is no longer current
492 this.requestRequest = null;
493 this.requestQuery = null;
494 oldRequest.abort();
495 }
496 };
497
498 /**
499 * Get the query to be made.
500 *
501 * @protected
502 * @method
503 * @abstract
504 * @return {string} query to be used
505 */
506 OO.ui.mixin.RequestManager.prototype.getRequestQuery = null;
507
508 /**
509 * Get a new request object of the current query value.
510 *
511 * @protected
512 * @method
513 * @abstract
514 * @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
515 */
516 OO.ui.mixin.RequestManager.prototype.getRequest = null;
517
518 /**
519 * Pre-process data returned by the request from #getRequest.
520 *
521 * The return value of this function will be cached, and any further queries for the given value
522 * will use the cache rather than doing API requests.
523 *
524 * @protected
525 * @method
526 * @abstract
527 * @param {Mixed} response Response from server
528 * @return {Mixed} Cached result data
529 */
530 OO.ui.mixin.RequestManager.prototype.getRequestCacheDataFromResponse = null;
531
532 /**
533 * LookupElement is a mixin that creates a {@link OO.ui.FloatingMenuSelectWidget menu} of suggested values for
534 * a {@link OO.ui.TextInputWidget text input widget}. Suggested values are based on the characters the user types
535 * into the text input field and, in general, the menu is only displayed when the user types. If a suggested value is chosen
536 * from the lookup menu, that value becomes the value of the input field.
537 *
538 * Note that a new menu of suggested items is displayed when a value is chosen from the lookup menu. If this is
539 * not the desired behavior, disable lookup menus with the #setLookupsDisabled method, then set the value, then
540 * re-enable lookups.
541 *
542 * See the [OOjs UI demos][1] for an example.
543 *
544 * [1]: https://tools.wmflabs.org/oojs-ui/oojs-ui/demos/index.html#widgets-apex-vector-ltr
545 *
546 * @class
547 * @abstract
548 * @mixins OO.ui.mixin.RequestManager
549 *
550 * @constructor
551 * @param {Object} [config] Configuration options
552 * @cfg {jQuery} [$overlay] Overlay for the lookup menu; defaults to relative positioning
553 * @cfg {jQuery} [$container=this.$element] The container element. The lookup menu is rendered beneath the specified element.
554 * @cfg {boolean} [allowSuggestionsWhenEmpty=false] Request and display a lookup menu when the text input is empty.
555 * By default, the lookup menu is not generated and displayed until the user begins to type.
556 * @cfg {boolean} [highlightFirst=true] Whether the first lookup result should be highlighted (so, that the user can
557 * take it over into the input with simply pressing return) automatically or not.
558 */
559 OO.ui.mixin.LookupElement = function OoUiMixinLookupElement( config ) {
560 // Configuration initialization
561 config = $.extend( { highlightFirst: true }, config );
562
563 // Mixin constructors
564 OO.ui.mixin.RequestManager.call( this, config );
565
566 // Properties
567 this.$overlay = config.$overlay || this.$element;
568 this.lookupMenu = new OO.ui.FloatingMenuSelectWidget( {
569 widget: this,
570 input: this,
571 $container: config.$container || this.$element
572 } );
573
574 this.allowSuggestionsWhenEmpty = config.allowSuggestionsWhenEmpty || false;
575
576 this.lookupsDisabled = false;
577 this.lookupInputFocused = false;
578 this.lookupHighlightFirstItem = config.highlightFirst;
579
580 // Events
581 this.$input.on( {
582 focus: this.onLookupInputFocus.bind( this ),
583 blur: this.onLookupInputBlur.bind( this ),
584 mousedown: this.onLookupInputMouseDown.bind( this )
585 } );
586 this.connect( this, { change: 'onLookupInputChange' } );
587 this.lookupMenu.connect( this, {
588 toggle: 'onLookupMenuToggle',
589 choose: 'onLookupMenuItemChoose'
590 } );
591
592 // Initialization
593 this.$element.addClass( 'oo-ui-lookupElement' );
594 this.lookupMenu.$element.addClass( 'oo-ui-lookupElement-menu' );
595 this.$overlay.append( this.lookupMenu.$element );
596 };
597
598 /* Setup */
599
600 OO.mixinClass( OO.ui.mixin.LookupElement, OO.ui.mixin.RequestManager );
601
602 /* Methods */
603
604 /**
605 * Handle input focus event.
606 *
607 * @protected
608 * @param {jQuery.Event} e Input focus event
609 */
610 OO.ui.mixin.LookupElement.prototype.onLookupInputFocus = function () {
611 this.lookupInputFocused = true;
612 this.populateLookupMenu();
613 };
614
615 /**
616 * Handle input blur event.
617 *
618 * @protected
619 * @param {jQuery.Event} e Input blur event
620 */
621 OO.ui.mixin.LookupElement.prototype.onLookupInputBlur = function () {
622 this.closeLookupMenu();
623 this.lookupInputFocused = false;
624 };
625
626 /**
627 * Handle input mouse down event.
628 *
629 * @protected
630 * @param {jQuery.Event} e Input mouse down event
631 */
632 OO.ui.mixin.LookupElement.prototype.onLookupInputMouseDown = function () {
633 // Only open the menu if the input was already focused.
634 // This way we allow the user to open the menu again after closing it with Esc
635 // by clicking in the input. Opening (and populating) the menu when initially
636 // clicking into the input is handled by the focus handler.
637 if ( this.lookupInputFocused && !this.lookupMenu.isVisible() ) {
638 this.populateLookupMenu();
639 }
640 };
641
642 /**
643 * Handle input change event.
644 *
645 * @protected
646 * @param {string} value New input value
647 */
648 OO.ui.mixin.LookupElement.prototype.onLookupInputChange = function () {
649 if ( this.lookupInputFocused ) {
650 this.populateLookupMenu();
651 }
652 };
653
654 /**
655 * Handle the lookup menu being shown/hidden.
656 *
657 * @protected
658 * @param {boolean} visible Whether the lookup menu is now visible.
659 */
660 OO.ui.mixin.LookupElement.prototype.onLookupMenuToggle = function ( visible ) {
661 if ( !visible ) {
662 // When the menu is hidden, abort any active request and clear the menu.
663 // This has to be done here in addition to closeLookupMenu(), because
664 // MenuSelectWidget will close itself when the user presses Esc.
665 this.abortLookupRequest();
666 this.lookupMenu.clearItems();
667 }
668 };
669
670 /**
671 * Handle menu item 'choose' event, updating the text input value to the value of the clicked item.
672 *
673 * @protected
674 * @param {OO.ui.MenuOptionWidget} item Selected item
675 */
676 OO.ui.mixin.LookupElement.prototype.onLookupMenuItemChoose = function ( item ) {
677 this.setValue( item.getData() );
678 };
679
680 /**
681 * Get lookup menu.
682 *
683 * @private
684 * @return {OO.ui.FloatingMenuSelectWidget}
685 */
686 OO.ui.mixin.LookupElement.prototype.getLookupMenu = function () {
687 return this.lookupMenu;
688 };
689
690 /**
691 * Disable or re-enable lookups.
692 *
693 * When lookups are disabled, calls to #populateLookupMenu will be ignored.
694 *
695 * @param {boolean} disabled Disable lookups
696 */
697 OO.ui.mixin.LookupElement.prototype.setLookupsDisabled = function ( disabled ) {
698 this.lookupsDisabled = !!disabled;
699 };
700
701 /**
702 * Open the menu. If there are no entries in the menu, this does nothing.
703 *
704 * @private
705 * @chainable
706 */
707 OO.ui.mixin.LookupElement.prototype.openLookupMenu = function () {
708 if ( !this.lookupMenu.isEmpty() ) {
709 this.lookupMenu.toggle( true );
710 }
711 return this;
712 };
713
714 /**
715 * Close the menu, empty it, and abort any pending request.
716 *
717 * @private
718 * @chainable
719 */
720 OO.ui.mixin.LookupElement.prototype.closeLookupMenu = function () {
721 this.lookupMenu.toggle( false );
722 this.abortLookupRequest();
723 this.lookupMenu.clearItems();
724 return this;
725 };
726
727 /**
728 * Request menu items based on the input's current value, and when they arrive,
729 * populate the menu with these items and show the menu.
730 *
731 * If lookups have been disabled with #setLookupsDisabled, this function does nothing.
732 *
733 * @private
734 * @chainable
735 */
736 OO.ui.mixin.LookupElement.prototype.populateLookupMenu = function () {
737 var widget = this,
738 value = this.getValue();
739
740 if ( this.lookupsDisabled || this.isReadOnly() ) {
741 return;
742 }
743
744 // If the input is empty, clear the menu, unless suggestions when empty are allowed.
745 if ( !this.allowSuggestionsWhenEmpty && value === '' ) {
746 this.closeLookupMenu();
747 // Skip population if there is already a request pending for the current value
748 } else if ( value !== this.lookupQuery ) {
749 this.getLookupMenuItems()
750 .done( function ( items ) {
751 widget.lookupMenu.clearItems();
752 if ( items.length ) {
753 widget.lookupMenu
754 .addItems( items )
755 .toggle( true );
756 widget.initializeLookupMenuSelection();
757 } else {
758 widget.lookupMenu.toggle( false );
759 }
760 } )
761 .fail( function () {
762 widget.lookupMenu.clearItems();
763 } );
764 }
765
766 return this;
767 };
768
769 /**
770 * Highlight the first selectable item in the menu, if configured.
771 *
772 * @private
773 * @chainable
774 */
775 OO.ui.mixin.LookupElement.prototype.initializeLookupMenuSelection = function () {
776 if ( this.lookupHighlightFirstItem && !this.lookupMenu.getSelectedItem() ) {
777 this.lookupMenu.highlightItem( this.lookupMenu.getFirstSelectableItem() );
778 }
779 };
780
781 /**
782 * Get lookup menu items for the current query.
783 *
784 * @private
785 * @return {jQuery.Promise} Promise object which will be passed menu items as the first argument of
786 * the done event. If the request was aborted to make way for a subsequent request, this promise
787 * will not be rejected: it will remain pending forever.
788 */
789 OO.ui.mixin.LookupElement.prototype.getLookupMenuItems = function () {
790 return this.getRequestData().then( function ( data ) {
791 return this.getLookupMenuOptionsFromData( data );
792 }.bind( this ) );
793 };
794
795 /**
796 * Abort the currently pending lookup request, if any.
797 *
798 * @private
799 */
800 OO.ui.mixin.LookupElement.prototype.abortLookupRequest = function () {
801 this.abortRequest();
802 };
803
804 /**
805 * Get a new request object of the current lookup query value.
806 *
807 * @protected
808 * @method
809 * @abstract
810 * @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
811 */
812 OO.ui.mixin.LookupElement.prototype.getLookupRequest = null;
813
814 /**
815 * Pre-process data returned by the request from #getLookupRequest.
816 *
817 * The return value of this function will be cached, and any further queries for the given value
818 * will use the cache rather than doing API requests.
819 *
820 * @protected
821 * @method
822 * @abstract
823 * @param {Mixed} response Response from server
824 * @return {Mixed} Cached result data
825 */
826 OO.ui.mixin.LookupElement.prototype.getLookupCacheDataFromResponse = null;
827
828 /**
829 * Get a list of menu option widgets from the (possibly cached) data returned by
830 * #getLookupCacheDataFromResponse.
831 *
832 * @protected
833 * @method
834 * @abstract
835 * @param {Mixed} data Cached result data, usually an array
836 * @return {OO.ui.MenuOptionWidget[]} Menu items
837 */
838 OO.ui.mixin.LookupElement.prototype.getLookupMenuOptionsFromData = null;
839
840 /**
841 * Set the read-only state of the widget.
842 *
843 * This will also disable/enable the lookups functionality.
844 *
845 * @param {boolean} readOnly Make input read-only
846 * @chainable
847 */
848 OO.ui.mixin.LookupElement.prototype.setReadOnly = function ( readOnly ) {
849 // Parent method
850 // Note: Calling #setReadOnly this way assumes this is mixed into an OO.ui.TextInputWidget
851 OO.ui.TextInputWidget.prototype.setReadOnly.call( this, readOnly );
852
853 // During construction, #setReadOnly is called before the OO.ui.mixin.LookupElement constructor
854 if ( this.isReadOnly() && this.lookupMenu ) {
855 this.closeLookupMenu();
856 }
857
858 return this;
859 };
860
861 /**
862 * @inheritdoc OO.ui.mixin.RequestManager
863 */
864 OO.ui.mixin.LookupElement.prototype.getRequestQuery = function () {
865 return this.getValue();
866 };
867
868 /**
869 * @inheritdoc OO.ui.mixin.RequestManager
870 */
871 OO.ui.mixin.LookupElement.prototype.getRequest = function () {
872 return this.getLookupRequest();
873 };
874
875 /**
876 * @inheritdoc OO.ui.mixin.RequestManager
877 */
878 OO.ui.mixin.LookupElement.prototype.getRequestCacheDataFromResponse = function ( response ) {
879 return this.getLookupCacheDataFromResponse( response );
880 };
881
882 /**
883 * CardLayouts are used within {@link OO.ui.IndexLayout index layouts} to create cards that users can select and display
884 * from the index's optional {@link OO.ui.TabSelectWidget tab} navigation. Cards are usually not instantiated directly,
885 * rather extended to include the required content and functionality.
886 *
887 * Each card must have a unique symbolic name, which is passed to the constructor. In addition, the card's tab
888 * item is customized (with a label) using the #setupTabItem method. See
889 * {@link OO.ui.IndexLayout IndexLayout} for an example.
890 *
891 * @class
892 * @extends OO.ui.PanelLayout
893 *
894 * @constructor
895 * @param {string} name Unique symbolic name of card
896 * @param {Object} [config] Configuration options
897 * @cfg {jQuery|string|Function|OO.ui.HtmlSnippet} [label] Label for card's tab
898 */
899 OO.ui.CardLayout = function OoUiCardLayout( name, config ) {
900 // Allow passing positional parameters inside the config object
901 if ( OO.isPlainObject( name ) && config === undefined ) {
902 config = name;
903 name = config.name;
904 }
905
906 // Configuration initialization
907 config = $.extend( { scrollable: true }, config );
908
909 // Parent constructor
910 OO.ui.CardLayout.parent.call( this, config );
911
912 // Properties
913 this.name = name;
914 this.label = config.label;
915 this.tabItem = null;
916 this.active = false;
917
918 // Initialization
919 this.$element.addClass( 'oo-ui-cardLayout' );
920 };
921
922 /* Setup */
923
924 OO.inheritClass( OO.ui.CardLayout, OO.ui.PanelLayout );
925
926 /* Events */
927
928 /**
929 * An 'active' event is emitted when the card becomes active. Cards become active when they are
930 * shown in a index layout that is configured to display only one card at a time.
931 *
932 * @event active
933 * @param {boolean} active Card is active
934 */
935
936 /* Methods */
937
938 /**
939 * Get the symbolic name of the card.
940 *
941 * @return {string} Symbolic name of card
942 */
943 OO.ui.CardLayout.prototype.getName = function () {
944 return this.name;
945 };
946
947 /**
948 * Check if card is active.
949 *
950 * Cards become active when they are shown in a {@link OO.ui.IndexLayout index layout} that is configured to display
951 * only one card at a time. Additional CSS is applied to the card's tab item to reflect the active state.
952 *
953 * @return {boolean} Card is active
954 */
955 OO.ui.CardLayout.prototype.isActive = function () {
956 return this.active;
957 };
958
959 /**
960 * Get tab item.
961 *
962 * The tab item allows users to access the card from the index's tab
963 * navigation. The tab item itself can be customized (with a label, level, etc.) using the #setupTabItem method.
964 *
965 * @return {OO.ui.TabOptionWidget|null} Tab option widget
966 */
967 OO.ui.CardLayout.prototype.getTabItem = function () {
968 return this.tabItem;
969 };
970
971 /**
972 * Set or unset the tab item.
973 *
974 * Specify a {@link OO.ui.TabOptionWidget tab option} to set it,
975 * or `null` to clear the tab item. To customize the tab item itself (e.g., to set a label or tab
976 * level), use #setupTabItem instead of this method.
977 *
978 * @param {OO.ui.TabOptionWidget|null} tabItem Tab option widget, null to clear
979 * @chainable
980 */
981 OO.ui.CardLayout.prototype.setTabItem = function ( tabItem ) {
982 this.tabItem = tabItem || null;
983 if ( tabItem ) {
984 this.setupTabItem();
985 }
986 return this;
987 };
988
989 /**
990 * Set up the tab item.
991 *
992 * Use this method to customize the tab item (e.g., to add a label or tab level). To set or unset
993 * the tab item itself (with a {@link OO.ui.TabOptionWidget tab option} or `null`), use
994 * the #setTabItem method instead.
995 *
996 * @param {OO.ui.TabOptionWidget} tabItem Tab option widget to set up
997 * @chainable
998 */
999 OO.ui.CardLayout.prototype.setupTabItem = function () {
1000 if ( this.label ) {
1001 this.tabItem.setLabel( this.label );
1002 }
1003 return this;
1004 };
1005
1006 /**
1007 * Set the card to its 'active' state.
1008 *
1009 * Cards become active when they are shown in a index layout that is configured to display only one card at a time. Additional
1010 * CSS is applied to the tab item to reflect the card's active state. Outside of the index
1011 * context, setting the active state on a card does nothing.
1012 *
1013 * @param {boolean} active Card is active
1014 * @fires active
1015 */
1016 OO.ui.CardLayout.prototype.setActive = function ( active ) {
1017 active = !!active;
1018
1019 if ( active !== this.active ) {
1020 this.active = active;
1021 this.$element.toggleClass( 'oo-ui-cardLayout-active', this.active );
1022 this.emit( 'active', this.active );
1023 }
1024 };
1025
1026 /**
1027 * PageLayouts are used within {@link OO.ui.BookletLayout booklet layouts} to create pages that users can select and display
1028 * from the booklet's optional {@link OO.ui.OutlineSelectWidget outline} navigation. Pages are usually not instantiated directly,
1029 * rather extended to include the required content and functionality.
1030 *
1031 * Each page must have a unique symbolic name, which is passed to the constructor. In addition, the page's outline
1032 * item is customized (with a label, outline level, etc.) using the #setupOutlineItem method. See
1033 * {@link OO.ui.BookletLayout BookletLayout} for an example.
1034 *
1035 * @class
1036 * @extends OO.ui.PanelLayout
1037 *
1038 * @constructor
1039 * @param {string} name Unique symbolic name of page
1040 * @param {Object} [config] Configuration options
1041 */
1042 OO.ui.PageLayout = function OoUiPageLayout( name, config ) {
1043 // Allow passing positional parameters inside the config object
1044 if ( OO.isPlainObject( name ) && config === undefined ) {
1045 config = name;
1046 name = config.name;
1047 }
1048
1049 // Configuration initialization
1050 config = $.extend( { scrollable: true }, config );
1051
1052 // Parent constructor
1053 OO.ui.PageLayout.parent.call( this, config );
1054
1055 // Properties
1056 this.name = name;
1057 this.outlineItem = null;
1058 this.active = false;
1059
1060 // Initialization
1061 this.$element.addClass( 'oo-ui-pageLayout' );
1062 };
1063
1064 /* Setup */
1065
1066 OO.inheritClass( OO.ui.PageLayout, OO.ui.PanelLayout );
1067
1068 /* Events */
1069
1070 /**
1071 * An 'active' event is emitted when the page becomes active. Pages become active when they are
1072 * shown in a booklet layout that is configured to display only one page at a time.
1073 *
1074 * @event active
1075 * @param {boolean} active Page is active
1076 */
1077
1078 /* Methods */
1079
1080 /**
1081 * Get the symbolic name of the page.
1082 *
1083 * @return {string} Symbolic name of page
1084 */
1085 OO.ui.PageLayout.prototype.getName = function () {
1086 return this.name;
1087 };
1088
1089 /**
1090 * Check if page is active.
1091 *
1092 * Pages become active when they are shown in a {@link OO.ui.BookletLayout booklet layout} that is configured to display
1093 * only one page at a time. Additional CSS is applied to the page's outline item to reflect the active state.
1094 *
1095 * @return {boolean} Page is active
1096 */
1097 OO.ui.PageLayout.prototype.isActive = function () {
1098 return this.active;
1099 };
1100
1101 /**
1102 * Get outline item.
1103 *
1104 * The outline item allows users to access the page from the booklet's outline
1105 * navigation. The outline item itself can be customized (with a label, level, etc.) using the #setupOutlineItem method.
1106 *
1107 * @return {OO.ui.OutlineOptionWidget|null} Outline option widget
1108 */
1109 OO.ui.PageLayout.prototype.getOutlineItem = function () {
1110 return this.outlineItem;
1111 };
1112
1113 /**
1114 * Set or unset the outline item.
1115 *
1116 * Specify an {@link OO.ui.OutlineOptionWidget outline option} to set it,
1117 * or `null` to clear the outline item. To customize the outline item itself (e.g., to set a label or outline
1118 * level), use #setupOutlineItem instead of this method.
1119 *
1120 * @param {OO.ui.OutlineOptionWidget|null} outlineItem Outline option widget, null to clear
1121 * @chainable
1122 */
1123 OO.ui.PageLayout.prototype.setOutlineItem = function ( outlineItem ) {
1124 this.outlineItem = outlineItem || null;
1125 if ( outlineItem ) {
1126 this.setupOutlineItem();
1127 }
1128 return this;
1129 };
1130
1131 /**
1132 * Set up the outline item.
1133 *
1134 * Use this method to customize the outline item (e.g., to add a label or outline level). To set or unset
1135 * the outline item itself (with an {@link OO.ui.OutlineOptionWidget outline option} or `null`), use
1136 * the #setOutlineItem method instead.
1137 *
1138 * @param {OO.ui.OutlineOptionWidget} outlineItem Outline option widget to set up
1139 * @chainable
1140 */
1141 OO.ui.PageLayout.prototype.setupOutlineItem = function () {
1142 return this;
1143 };
1144
1145 /**
1146 * Set the page to its 'active' state.
1147 *
1148 * Pages become active when they are shown in a booklet layout that is configured to display only one page at a time. Additional
1149 * CSS is applied to the outline item to reflect the page's active state. Outside of the booklet
1150 * context, setting the active state on a page does nothing.
1151 *
1152 * @param {boolean} active Page is active
1153 * @fires active
1154 */
1155 OO.ui.PageLayout.prototype.setActive = function ( active ) {
1156 active = !!active;
1157
1158 if ( active !== this.active ) {
1159 this.active = active;
1160 this.$element.toggleClass( 'oo-ui-pageLayout-active', active );
1161 this.emit( 'active', this.active );
1162 }
1163 };
1164
1165 /**
1166 * StackLayouts contain a series of {@link OO.ui.PanelLayout panel layouts}. By default, only one panel is displayed
1167 * at a time, though the stack layout can also be configured to show all contained panels, one after another,
1168 * by setting the #continuous option to 'true'.
1169 *
1170 * @example
1171 * // A stack layout with two panels, configured to be displayed continously
1172 * var myStack = new OO.ui.StackLayout( {
1173 * items: [
1174 * new OO.ui.PanelLayout( {
1175 * $content: $( '<p>Panel One</p>' ),
1176 * padded: true,
1177 * framed: true
1178 * } ),
1179 * new OO.ui.PanelLayout( {
1180 * $content: $( '<p>Panel Two</p>' ),
1181 * padded: true,
1182 * framed: true
1183 * } )
1184 * ],
1185 * continuous: true
1186 * } );
1187 * $( 'body' ).append( myStack.$element );
1188 *
1189 * @class
1190 * @extends OO.ui.PanelLayout
1191 * @mixins OO.ui.mixin.GroupElement
1192 *
1193 * @constructor
1194 * @param {Object} [config] Configuration options
1195 * @cfg {boolean} [continuous=false] Show all panels, one after another. By default, only one panel is displayed at a time.
1196 * @cfg {OO.ui.Layout[]} [items] Panel layouts to add to the stack layout.
1197 */
1198 OO.ui.StackLayout = function OoUiStackLayout( config ) {
1199 // Configuration initialization
1200 config = $.extend( { scrollable: true }, config );
1201
1202 // Parent constructor
1203 OO.ui.StackLayout.parent.call( this, config );
1204
1205 // Mixin constructors
1206 OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
1207
1208 // Properties
1209 this.currentItem = null;
1210 this.continuous = !!config.continuous;
1211
1212 // Initialization
1213 this.$element.addClass( 'oo-ui-stackLayout' );
1214 if ( this.continuous ) {
1215 this.$element.addClass( 'oo-ui-stackLayout-continuous' );
1216 this.$element.on( 'scroll', OO.ui.debounce( this.onScroll.bind( this ), 250 ) );
1217 }
1218 if ( Array.isArray( config.items ) ) {
1219 this.addItems( config.items );
1220 }
1221 };
1222
1223 /* Setup */
1224
1225 OO.inheritClass( OO.ui.StackLayout, OO.ui.PanelLayout );
1226 OO.mixinClass( OO.ui.StackLayout, OO.ui.mixin.GroupElement );
1227
1228 /* Events */
1229
1230 /**
1231 * A 'set' event is emitted when panels are {@link #addItems added}, {@link #removeItems removed},
1232 * {@link #clearItems cleared} or {@link #setItem displayed}.
1233 *
1234 * @event set
1235 * @param {OO.ui.Layout|null} item Current panel or `null` if no panel is shown
1236 */
1237
1238 /**
1239 * When used in continuous mode, this event is emitted when the user scrolls down
1240 * far enough such that currentItem is no longer visible.
1241 *
1242 * @event visibleItemChange
1243 * @param {OO.ui.PanelLayout} panel The next visible item in the layout
1244 */
1245
1246 /* Methods */
1247
1248 /**
1249 * Handle scroll events from the layout element
1250 *
1251 * @param {jQuery.Event} e
1252 * @fires visibleItemChange
1253 */
1254 OO.ui.StackLayout.prototype.onScroll = function () {
1255 var currentRect,
1256 len = this.items.length,
1257 currentIndex = this.items.indexOf( this.currentItem ),
1258 newIndex = currentIndex,
1259 containerRect = this.$element[ 0 ].getBoundingClientRect();
1260
1261 if ( !containerRect || ( !containerRect.top && !containerRect.bottom ) ) {
1262 // Can't get bounding rect, possibly not attached.
1263 return;
1264 }
1265
1266 function getRect( item ) {
1267 return item.$element[ 0 ].getBoundingClientRect();
1268 }
1269
1270 function isVisible( item ) {
1271 var rect = getRect( item );
1272 return rect.bottom > containerRect.top && rect.top < containerRect.bottom;
1273 }
1274
1275 currentRect = getRect( this.currentItem );
1276
1277 if ( currentRect.bottom < containerRect.top ) {
1278 // Scrolled down past current item
1279 while ( ++newIndex < len ) {
1280 if ( isVisible( this.items[ newIndex ] ) ) {
1281 break;
1282 }
1283 }
1284 } else if ( currentRect.top > containerRect.bottom ) {
1285 // Scrolled up past current item
1286 while ( --newIndex >= 0 ) {
1287 if ( isVisible( this.items[ newIndex ] ) ) {
1288 break;
1289 }
1290 }
1291 }
1292
1293 if ( newIndex !== currentIndex ) {
1294 this.emit( 'visibleItemChange', this.items[ newIndex ] );
1295 }
1296 };
1297
1298 /**
1299 * Get the current panel.
1300 *
1301 * @return {OO.ui.Layout|null}
1302 */
1303 OO.ui.StackLayout.prototype.getCurrentItem = function () {
1304 return this.currentItem;
1305 };
1306
1307 /**
1308 * Unset the current item.
1309 *
1310 * @private
1311 * @param {OO.ui.StackLayout} layout
1312 * @fires set
1313 */
1314 OO.ui.StackLayout.prototype.unsetCurrentItem = function () {
1315 var prevItem = this.currentItem;
1316 if ( prevItem === null ) {
1317 return;
1318 }
1319
1320 this.currentItem = null;
1321 this.emit( 'set', null );
1322 };
1323
1324 /**
1325 * Add panel layouts to the stack layout.
1326 *
1327 * Panels will be added to the end of the stack layout array unless the optional index parameter specifies a different
1328 * insertion point. Adding a panel that is already in the stack will move it to the end of the array or the point specified
1329 * by the index.
1330 *
1331 * @param {OO.ui.Layout[]} items Panels to add
1332 * @param {number} [index] Index of the insertion point
1333 * @chainable
1334 */
1335 OO.ui.StackLayout.prototype.addItems = function ( items, index ) {
1336 // Update the visibility
1337 this.updateHiddenState( items, this.currentItem );
1338
1339 // Mixin method
1340 OO.ui.mixin.GroupElement.prototype.addItems.call( this, items, index );
1341
1342 if ( !this.currentItem && items.length ) {
1343 this.setItem( items[ 0 ] );
1344 }
1345
1346 return this;
1347 };
1348
1349 /**
1350 * Remove the specified panels from the stack layout.
1351 *
1352 * Removed panels are detached from the DOM, not removed, so that they may be reused. To remove all panels,
1353 * you may wish to use the #clearItems method instead.
1354 *
1355 * @param {OO.ui.Layout[]} items Panels to remove
1356 * @chainable
1357 * @fires set
1358 */
1359 OO.ui.StackLayout.prototype.removeItems = function ( items ) {
1360 // Mixin method
1361 OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
1362
1363 if ( items.indexOf( this.currentItem ) !== -1 ) {
1364 if ( this.items.length ) {
1365 this.setItem( this.items[ 0 ] );
1366 } else {
1367 this.unsetCurrentItem();
1368 }
1369 }
1370
1371 return this;
1372 };
1373
1374 /**
1375 * Clear all panels from the stack layout.
1376 *
1377 * Cleared panels are detached from the DOM, not removed, so that they may be reused. To remove only
1378 * a subset of panels, use the #removeItems method.
1379 *
1380 * @chainable
1381 * @fires set
1382 */
1383 OO.ui.StackLayout.prototype.clearItems = function () {
1384 this.unsetCurrentItem();
1385 OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
1386
1387 return this;
1388 };
1389
1390 /**
1391 * Show the specified panel.
1392 *
1393 * If another panel is currently displayed, it will be hidden.
1394 *
1395 * @param {OO.ui.Layout} item Panel to show
1396 * @chainable
1397 * @fires set
1398 */
1399 OO.ui.StackLayout.prototype.setItem = function ( item ) {
1400 if ( item !== this.currentItem ) {
1401 this.updateHiddenState( this.items, item );
1402
1403 if ( this.items.indexOf( item ) !== -1 ) {
1404 this.currentItem = item;
1405 this.emit( 'set', item );
1406 } else {
1407 this.unsetCurrentItem();
1408 }
1409 }
1410
1411 return this;
1412 };
1413
1414 /**
1415 * Update the visibility of all items in case of non-continuous view.
1416 *
1417 * Ensure all items are hidden except for the selected one.
1418 * This method does nothing when the stack is continuous.
1419 *
1420 * @private
1421 * @param {OO.ui.Layout[]} items Item list iterate over
1422 * @param {OO.ui.Layout} [selectedItem] Selected item to show
1423 */
1424 OO.ui.StackLayout.prototype.updateHiddenState = function ( items, selectedItem ) {
1425 var i, len;
1426
1427 if ( !this.continuous ) {
1428 for ( i = 0, len = items.length; i < len; i++ ) {
1429 if ( !selectedItem || selectedItem !== items[ i ] ) {
1430 items[ i ].$element.addClass( 'oo-ui-element-hidden' );
1431 items[ i ].$element.attr( 'aria-hidden', 'true' );
1432 }
1433 }
1434 if ( selectedItem ) {
1435 selectedItem.$element.removeClass( 'oo-ui-element-hidden' );
1436 selectedItem.$element.removeAttr( 'aria-hidden' );
1437 }
1438 }
1439 };
1440
1441 /**
1442 * 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)
1443 * and its size is customized with the #menuSize config. The content area will fill all remaining space.
1444 *
1445 * @example
1446 * var menuLayout = new OO.ui.MenuLayout( {
1447 * position: 'top'
1448 * } ),
1449 * menuPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
1450 * contentPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
1451 * select = new OO.ui.SelectWidget( {
1452 * items: [
1453 * new OO.ui.OptionWidget( {
1454 * data: 'before',
1455 * label: 'Before',
1456 * } ),
1457 * new OO.ui.OptionWidget( {
1458 * data: 'after',
1459 * label: 'After',
1460 * } ),
1461 * new OO.ui.OptionWidget( {
1462 * data: 'top',
1463 * label: 'Top',
1464 * } ),
1465 * new OO.ui.OptionWidget( {
1466 * data: 'bottom',
1467 * label: 'Bottom',
1468 * } )
1469 * ]
1470 * } ).on( 'select', function ( item ) {
1471 * menuLayout.setMenuPosition( item.getData() );
1472 * } );
1473 *
1474 * menuLayout.$menu.append(
1475 * menuPanel.$element.append( '<b>Menu panel</b>', select.$element )
1476 * );
1477 * menuLayout.$content.append(
1478 * contentPanel.$element.append( '<b>Content panel</b>', '<p>Note that the menu is positioned relative to the content panel: top, bottom, after, before.</p>')
1479 * );
1480 * $( 'body' ).append( menuLayout.$element );
1481 *
1482 * If menu size needs to be overridden, it can be accomplished using CSS similar to the snippet
1483 * below. MenuLayout's CSS will override the appropriate values with 'auto' or '0' to display the
1484 * menu correctly. If `menuPosition` is known beforehand, CSS rules corresponding to other positions
1485 * may be omitted.
1486 *
1487 * .oo-ui-menuLayout-menu {
1488 * height: 200px;
1489 * width: 200px;
1490 * }
1491 * .oo-ui-menuLayout-content {
1492 * top: 200px;
1493 * left: 200px;
1494 * right: 200px;
1495 * bottom: 200px;
1496 * }
1497 *
1498 * @class
1499 * @extends OO.ui.Layout
1500 *
1501 * @constructor
1502 * @param {Object} [config] Configuration options
1503 * @cfg {boolean} [showMenu=true] Show menu
1504 * @cfg {string} [menuPosition='before'] Position of menu: `top`, `after`, `bottom` or `before`
1505 */
1506 OO.ui.MenuLayout = function OoUiMenuLayout( config ) {
1507 // Configuration initialization
1508 config = $.extend( {
1509 showMenu: true,
1510 menuPosition: 'before'
1511 }, config );
1512
1513 // Parent constructor
1514 OO.ui.MenuLayout.parent.call( this, config );
1515
1516 /**
1517 * Menu DOM node
1518 *
1519 * @property {jQuery}
1520 */
1521 this.$menu = $( '<div>' );
1522 /**
1523 * Content DOM node
1524 *
1525 * @property {jQuery}
1526 */
1527 this.$content = $( '<div>' );
1528
1529 // Initialization
1530 this.$menu
1531 .addClass( 'oo-ui-menuLayout-menu' );
1532 this.$content.addClass( 'oo-ui-menuLayout-content' );
1533 this.$element
1534 .addClass( 'oo-ui-menuLayout' )
1535 .append( this.$content, this.$menu );
1536 this.setMenuPosition( config.menuPosition );
1537 this.toggleMenu( config.showMenu );
1538 };
1539
1540 /* Setup */
1541
1542 OO.inheritClass( OO.ui.MenuLayout, OO.ui.Layout );
1543
1544 /* Methods */
1545
1546 /**
1547 * Toggle menu.
1548 *
1549 * @param {boolean} showMenu Show menu, omit to toggle
1550 * @chainable
1551 */
1552 OO.ui.MenuLayout.prototype.toggleMenu = function ( showMenu ) {
1553 showMenu = showMenu === undefined ? !this.showMenu : !!showMenu;
1554
1555 if ( this.showMenu !== showMenu ) {
1556 this.showMenu = showMenu;
1557 this.$element
1558 .toggleClass( 'oo-ui-menuLayout-showMenu', this.showMenu )
1559 .toggleClass( 'oo-ui-menuLayout-hideMenu', !this.showMenu );
1560 this.$menu.attr( 'aria-hidden', this.showMenu ? 'false' : 'true' );
1561 }
1562
1563 return this;
1564 };
1565
1566 /**
1567 * Check if menu is visible
1568 *
1569 * @return {boolean} Menu is visible
1570 */
1571 OO.ui.MenuLayout.prototype.isMenuVisible = function () {
1572 return this.showMenu;
1573 };
1574
1575 /**
1576 * Set menu position.
1577 *
1578 * @param {string} position Position of menu, either `top`, `after`, `bottom` or `before`
1579 * @throws {Error} If position value is not supported
1580 * @chainable
1581 */
1582 OO.ui.MenuLayout.prototype.setMenuPosition = function ( position ) {
1583 this.$element.removeClass( 'oo-ui-menuLayout-' + this.menuPosition );
1584 this.menuPosition = position;
1585 this.$element.addClass( 'oo-ui-menuLayout-' + position );
1586
1587 return this;
1588 };
1589
1590 /**
1591 * Get menu position.
1592 *
1593 * @return {string} Menu position
1594 */
1595 OO.ui.MenuLayout.prototype.getMenuPosition = function () {
1596 return this.menuPosition;
1597 };
1598
1599 /**
1600 * BookletLayouts contain {@link OO.ui.PageLayout page layouts} as well as
1601 * an {@link OO.ui.OutlineSelectWidget outline} that allows users to easily navigate
1602 * through the pages and select which one to display. By default, only one page is
1603 * displayed at a time and the outline is hidden. When a user navigates to a new page,
1604 * the booklet layout automatically focuses on the first focusable element, unless the
1605 * default setting is changed. Optionally, booklets can be configured to show
1606 * {@link OO.ui.OutlineControlsWidget controls} for adding, moving, and removing items.
1607 *
1608 * @example
1609 * // Example of a BookletLayout that contains two PageLayouts.
1610 *
1611 * function PageOneLayout( name, config ) {
1612 * PageOneLayout.parent.call( this, name, config );
1613 * this.$element.append( '<p>First page</p><p>(This booklet has an outline, displayed on the left)</p>' );
1614 * }
1615 * OO.inheritClass( PageOneLayout, OO.ui.PageLayout );
1616 * PageOneLayout.prototype.setupOutlineItem = function () {
1617 * this.outlineItem.setLabel( 'Page One' );
1618 * };
1619 *
1620 * function PageTwoLayout( name, config ) {
1621 * PageTwoLayout.parent.call( this, name, config );
1622 * this.$element.append( '<p>Second page</p>' );
1623 * }
1624 * OO.inheritClass( PageTwoLayout, OO.ui.PageLayout );
1625 * PageTwoLayout.prototype.setupOutlineItem = function () {
1626 * this.outlineItem.setLabel( 'Page Two' );
1627 * };
1628 *
1629 * var page1 = new PageOneLayout( 'one' ),
1630 * page2 = new PageTwoLayout( 'two' );
1631 *
1632 * var booklet = new OO.ui.BookletLayout( {
1633 * outlined: true
1634 * } );
1635 *
1636 * booklet.addPages ( [ page1, page2 ] );
1637 * $( 'body' ).append( booklet.$element );
1638 *
1639 * @class
1640 * @extends OO.ui.MenuLayout
1641 *
1642 * @constructor
1643 * @param {Object} [config] Configuration options
1644 * @cfg {boolean} [continuous=false] Show all pages, one after another
1645 * @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new page is displayed. Disabled on mobile.
1646 * @cfg {boolean} [outlined=false] Show the outline. The outline is used to navigate through the pages of the booklet.
1647 * @cfg {boolean} [editable=false] Show controls for adding, removing and reordering pages
1648 */
1649 OO.ui.BookletLayout = function OoUiBookletLayout( config ) {
1650 // Configuration initialization
1651 config = config || {};
1652
1653 // Parent constructor
1654 OO.ui.BookletLayout.parent.call( this, config );
1655
1656 // Properties
1657 this.currentPageName = null;
1658 this.pages = {};
1659 this.ignoreFocus = false;
1660 this.stackLayout = new OO.ui.StackLayout( { continuous: !!config.continuous } );
1661 this.$content.append( this.stackLayout.$element );
1662 this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
1663 this.outlineVisible = false;
1664 this.outlined = !!config.outlined;
1665 if ( this.outlined ) {
1666 this.editable = !!config.editable;
1667 this.outlineControlsWidget = null;
1668 this.outlineSelectWidget = new OO.ui.OutlineSelectWidget();
1669 this.outlinePanel = new OO.ui.PanelLayout( { scrollable: true } );
1670 this.$menu.append( this.outlinePanel.$element );
1671 this.outlineVisible = true;
1672 if ( this.editable ) {
1673 this.outlineControlsWidget = new OO.ui.OutlineControlsWidget(
1674 this.outlineSelectWidget
1675 );
1676 }
1677 }
1678 this.toggleMenu( this.outlined );
1679
1680 // Events
1681 this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
1682 if ( this.outlined ) {
1683 this.outlineSelectWidget.connect( this, { select: 'onOutlineSelectWidgetSelect' } );
1684 this.scrolling = false;
1685 this.stackLayout.connect( this, { visibleItemChange: 'onStackLayoutVisibleItemChange' } );
1686 }
1687 if ( this.autoFocus ) {
1688 // Event 'focus' does not bubble, but 'focusin' does
1689 this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
1690 }
1691
1692 // Initialization
1693 this.$element.addClass( 'oo-ui-bookletLayout' );
1694 this.stackLayout.$element.addClass( 'oo-ui-bookletLayout-stackLayout' );
1695 if ( this.outlined ) {
1696 this.outlinePanel.$element
1697 .addClass( 'oo-ui-bookletLayout-outlinePanel' )
1698 .append( this.outlineSelectWidget.$element );
1699 if ( this.editable ) {
1700 this.outlinePanel.$element
1701 .addClass( 'oo-ui-bookletLayout-outlinePanel-editable' )
1702 .append( this.outlineControlsWidget.$element );
1703 }
1704 }
1705 };
1706
1707 /* Setup */
1708
1709 OO.inheritClass( OO.ui.BookletLayout, OO.ui.MenuLayout );
1710
1711 /* Events */
1712
1713 /**
1714 * A 'set' event is emitted when a page is {@link #setPage set} to be displayed by the booklet layout.
1715 * @event set
1716 * @param {OO.ui.PageLayout} page Current page
1717 */
1718
1719 /**
1720 * An 'add' event is emitted when pages are {@link #addPages added} to the booklet layout.
1721 *
1722 * @event add
1723 * @param {OO.ui.PageLayout[]} page Added pages
1724 * @param {number} index Index pages were added at
1725 */
1726
1727 /**
1728 * A 'remove' event is emitted when pages are {@link #clearPages cleared} or
1729 * {@link #removePages removed} from the booklet.
1730 *
1731 * @event remove
1732 * @param {OO.ui.PageLayout[]} pages Removed pages
1733 */
1734
1735 /* Methods */
1736
1737 /**
1738 * Handle stack layout focus.
1739 *
1740 * @private
1741 * @param {jQuery.Event} e Focusin event
1742 */
1743 OO.ui.BookletLayout.prototype.onStackLayoutFocus = function ( e ) {
1744 var name, $target;
1745
1746 // Find the page that an element was focused within
1747 $target = $( e.target ).closest( '.oo-ui-pageLayout' );
1748 for ( name in this.pages ) {
1749 // Check for page match, exclude current page to find only page changes
1750 if ( this.pages[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentPageName ) {
1751 this.setPage( name );
1752 break;
1753 }
1754 }
1755 };
1756
1757 /**
1758 * Handle visibleItemChange events from the stackLayout
1759 *
1760 * The next visible page is set as the current page by selecting it
1761 * in the outline
1762 *
1763 * @param {OO.ui.PageLayout} page The next visible page in the layout
1764 */
1765 OO.ui.BookletLayout.prototype.onStackLayoutVisibleItemChange = function ( page ) {
1766 // Set a flag to so that the resulting call to #onStackLayoutSet doesn't
1767 // try and scroll the item into view again.
1768 this.scrolling = true;
1769 this.outlineSelectWidget.selectItemByData( page.getName() );
1770 this.scrolling = false;
1771 };
1772
1773 /**
1774 * Handle stack layout set events.
1775 *
1776 * @private
1777 * @param {OO.ui.PanelLayout|null} page The page panel that is now the current panel
1778 */
1779 OO.ui.BookletLayout.prototype.onStackLayoutSet = function ( page ) {
1780 var layout = this;
1781 if ( !this.scrolling && page ) {
1782 page.scrollElementIntoView( {
1783 complete: function () {
1784 if ( layout.autoFocus && !OO.ui.isMobile() ) {
1785 layout.focus();
1786 }
1787 }
1788 } );
1789 }
1790 };
1791
1792 /**
1793 * Focus the first input in the current page.
1794 *
1795 * If no page is selected, the first selectable page will be selected.
1796 * If the focus is already in an element on the current page, nothing will happen.
1797 *
1798 * @param {number} [itemIndex] A specific item to focus on
1799 */
1800 OO.ui.BookletLayout.prototype.focus = function ( itemIndex ) {
1801 var page,
1802 items = this.stackLayout.getItems();
1803
1804 if ( itemIndex !== undefined && items[ itemIndex ] ) {
1805 page = items[ itemIndex ];
1806 } else {
1807 page = this.stackLayout.getCurrentItem();
1808 }
1809
1810 if ( !page && this.outlined ) {
1811 this.selectFirstSelectablePage();
1812 page = this.stackLayout.getCurrentItem();
1813 }
1814 if ( !page ) {
1815 return;
1816 }
1817 // Only change the focus if is not already in the current page
1818 if ( !OO.ui.contains( page.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
1819 page.focus();
1820 }
1821 };
1822
1823 /**
1824 * Find the first focusable input in the booklet layout and focus
1825 * on it.
1826 */
1827 OO.ui.BookletLayout.prototype.focusFirstFocusable = function () {
1828 OO.ui.findFocusable( this.stackLayout.$element ).focus();
1829 };
1830
1831 /**
1832 * Handle outline widget select events.
1833 *
1834 * @private
1835 * @param {OO.ui.OptionWidget|null} item Selected item
1836 */
1837 OO.ui.BookletLayout.prototype.onOutlineSelectWidgetSelect = function ( item ) {
1838 if ( item ) {
1839 this.setPage( item.getData() );
1840 }
1841 };
1842
1843 /**
1844 * Check if booklet has an outline.
1845 *
1846 * @return {boolean} Booklet has an outline
1847 */
1848 OO.ui.BookletLayout.prototype.isOutlined = function () {
1849 return this.outlined;
1850 };
1851
1852 /**
1853 * Check if booklet has editing controls.
1854 *
1855 * @return {boolean} Booklet is editable
1856 */
1857 OO.ui.BookletLayout.prototype.isEditable = function () {
1858 return this.editable;
1859 };
1860
1861 /**
1862 * Check if booklet has a visible outline.
1863 *
1864 * @return {boolean} Outline is visible
1865 */
1866 OO.ui.BookletLayout.prototype.isOutlineVisible = function () {
1867 return this.outlined && this.outlineVisible;
1868 };
1869
1870 /**
1871 * Hide or show the outline.
1872 *
1873 * @param {boolean} [show] Show outline, omit to invert current state
1874 * @chainable
1875 */
1876 OO.ui.BookletLayout.prototype.toggleOutline = function ( show ) {
1877 if ( this.outlined ) {
1878 show = show === undefined ? !this.outlineVisible : !!show;
1879 this.outlineVisible = show;
1880 this.toggleMenu( show );
1881 }
1882
1883 return this;
1884 };
1885
1886 /**
1887 * Get the page closest to the specified page.
1888 *
1889 * @param {OO.ui.PageLayout} page Page to use as a reference point
1890 * @return {OO.ui.PageLayout|null} Page closest to the specified page
1891 */
1892 OO.ui.BookletLayout.prototype.getClosestPage = function ( page ) {
1893 var next, prev, level,
1894 pages = this.stackLayout.getItems(),
1895 index = pages.indexOf( page );
1896
1897 if ( index !== -1 ) {
1898 next = pages[ index + 1 ];
1899 prev = pages[ index - 1 ];
1900 // Prefer adjacent pages at the same level
1901 if ( this.outlined ) {
1902 level = this.outlineSelectWidget.getItemFromData( page.getName() ).getLevel();
1903 if (
1904 prev &&
1905 level === this.outlineSelectWidget.getItemFromData( prev.getName() ).getLevel()
1906 ) {
1907 return prev;
1908 }
1909 if (
1910 next &&
1911 level === this.outlineSelectWidget.getItemFromData( next.getName() ).getLevel()
1912 ) {
1913 return next;
1914 }
1915 }
1916 }
1917 return prev || next || null;
1918 };
1919
1920 /**
1921 * Get the outline widget.
1922 *
1923 * If the booklet is not outlined, the method will return `null`.
1924 *
1925 * @return {OO.ui.OutlineSelectWidget|null} Outline widget, or null if the booklet is not outlined
1926 */
1927 OO.ui.BookletLayout.prototype.getOutline = function () {
1928 return this.outlineSelectWidget;
1929 };
1930
1931 /**
1932 * Get the outline controls widget.
1933 *
1934 * If the outline is not editable, the method will return `null`.
1935 *
1936 * @return {OO.ui.OutlineControlsWidget|null} The outline controls widget.
1937 */
1938 OO.ui.BookletLayout.prototype.getOutlineControls = function () {
1939 return this.outlineControlsWidget;
1940 };
1941
1942 /**
1943 * Get a page by its symbolic name.
1944 *
1945 * @param {string} name Symbolic name of page
1946 * @return {OO.ui.PageLayout|undefined} Page, if found
1947 */
1948 OO.ui.BookletLayout.prototype.getPage = function ( name ) {
1949 return this.pages[ name ];
1950 };
1951
1952 /**
1953 * Get the current page.
1954 *
1955 * @return {OO.ui.PageLayout|undefined} Current page, if found
1956 */
1957 OO.ui.BookletLayout.prototype.getCurrentPage = function () {
1958 var name = this.getCurrentPageName();
1959 return name ? this.getPage( name ) : undefined;
1960 };
1961
1962 /**
1963 * Get the symbolic name of the current page.
1964 *
1965 * @return {string|null} Symbolic name of the current page
1966 */
1967 OO.ui.BookletLayout.prototype.getCurrentPageName = function () {
1968 return this.currentPageName;
1969 };
1970
1971 /**
1972 * Add pages to the booklet layout
1973 *
1974 * When pages are added with the same names as existing pages, the existing pages will be
1975 * automatically removed before the new pages are added.
1976 *
1977 * @param {OO.ui.PageLayout[]} pages Pages to add
1978 * @param {number} index Index of the insertion point
1979 * @fires add
1980 * @chainable
1981 */
1982 OO.ui.BookletLayout.prototype.addPages = function ( pages, index ) {
1983 var i, len, name, page, item, currentIndex,
1984 stackLayoutPages = this.stackLayout.getItems(),
1985 remove = [],
1986 items = [];
1987
1988 // Remove pages with same names
1989 for ( i = 0, len = pages.length; i < len; i++ ) {
1990 page = pages[ i ];
1991 name = page.getName();
1992
1993 if ( Object.prototype.hasOwnProperty.call( this.pages, name ) ) {
1994 // Correct the insertion index
1995 currentIndex = stackLayoutPages.indexOf( this.pages[ name ] );
1996 if ( currentIndex !== -1 && currentIndex + 1 < index ) {
1997 index--;
1998 }
1999 remove.push( this.pages[ name ] );
2000 }
2001 }
2002 if ( remove.length ) {
2003 this.removePages( remove );
2004 }
2005
2006 // Add new pages
2007 for ( i = 0, len = pages.length; i < len; i++ ) {
2008 page = pages[ i ];
2009 name = page.getName();
2010 this.pages[ page.getName() ] = page;
2011 if ( this.outlined ) {
2012 item = new OO.ui.OutlineOptionWidget( { data: name } );
2013 page.setOutlineItem( item );
2014 items.push( item );
2015 }
2016 }
2017
2018 if ( this.outlined && items.length ) {
2019 this.outlineSelectWidget.addItems( items, index );
2020 this.selectFirstSelectablePage();
2021 }
2022 this.stackLayout.addItems( pages, index );
2023 this.emit( 'add', pages, index );
2024
2025 return this;
2026 };
2027
2028 /**
2029 * Remove the specified pages from the booklet layout.
2030 *
2031 * To remove all pages from the booklet, you may wish to use the #clearPages method instead.
2032 *
2033 * @param {OO.ui.PageLayout[]} pages An array of pages to remove
2034 * @fires remove
2035 * @chainable
2036 */
2037 OO.ui.BookletLayout.prototype.removePages = function ( pages ) {
2038 var i, len, name, page,
2039 items = [];
2040
2041 for ( i = 0, len = pages.length; i < len; i++ ) {
2042 page = pages[ i ];
2043 name = page.getName();
2044 delete this.pages[ name ];
2045 if ( this.outlined ) {
2046 items.push( this.outlineSelectWidget.getItemFromData( name ) );
2047 page.setOutlineItem( null );
2048 }
2049 }
2050 if ( this.outlined && items.length ) {
2051 this.outlineSelectWidget.removeItems( items );
2052 this.selectFirstSelectablePage();
2053 }
2054 this.stackLayout.removeItems( pages );
2055 this.emit( 'remove', pages );
2056
2057 return this;
2058 };
2059
2060 /**
2061 * Clear all pages from the booklet layout.
2062 *
2063 * To remove only a subset of pages from the booklet, use the #removePages method.
2064 *
2065 * @fires remove
2066 * @chainable
2067 */
2068 OO.ui.BookletLayout.prototype.clearPages = function () {
2069 var i, len,
2070 pages = this.stackLayout.getItems();
2071
2072 this.pages = {};
2073 this.currentPageName = null;
2074 if ( this.outlined ) {
2075 this.outlineSelectWidget.clearItems();
2076 for ( i = 0, len = pages.length; i < len; i++ ) {
2077 pages[ i ].setOutlineItem( null );
2078 }
2079 }
2080 this.stackLayout.clearItems();
2081
2082 this.emit( 'remove', pages );
2083
2084 return this;
2085 };
2086
2087 /**
2088 * Set the current page by symbolic name.
2089 *
2090 * @fires set
2091 * @param {string} name Symbolic name of page
2092 */
2093 OO.ui.BookletLayout.prototype.setPage = function ( name ) {
2094 var selectedItem,
2095 $focused,
2096 page = this.pages[ name ],
2097 previousPage = this.currentPageName && this.pages[ this.currentPageName ];
2098
2099 if ( name !== this.currentPageName ) {
2100 if ( this.outlined ) {
2101 selectedItem = this.outlineSelectWidget.getSelectedItem();
2102 if ( selectedItem && selectedItem.getData() !== name ) {
2103 this.outlineSelectWidget.selectItemByData( name );
2104 }
2105 }
2106 if ( page ) {
2107 if ( previousPage ) {
2108 previousPage.setActive( false );
2109 // Blur anything focused if the next page doesn't have anything focusable.
2110 // This is not needed if the next page has something focusable (because once it is focused
2111 // this blur happens automatically). If the layout is non-continuous, this check is
2112 // meaningless because the next page is not visible yet and thus can't hold focus.
2113 if (
2114 this.autoFocus &&
2115 !OO.ui.isMobile() &&
2116 this.stackLayout.continuous &&
2117 OO.ui.findFocusable( page.$element ).length !== 0
2118 ) {
2119 $focused = previousPage.$element.find( ':focus' );
2120 if ( $focused.length ) {
2121 $focused[ 0 ].blur();
2122 }
2123 }
2124 }
2125 this.currentPageName = name;
2126 page.setActive( true );
2127 this.stackLayout.setItem( page );
2128 if ( !this.stackLayout.continuous && previousPage ) {
2129 // This should not be necessary, since any inputs on the previous page should have been
2130 // blurred when it was hidden, but browsers are not very consistent about this.
2131 $focused = previousPage.$element.find( ':focus' );
2132 if ( $focused.length ) {
2133 $focused[ 0 ].blur();
2134 }
2135 }
2136 this.emit( 'set', page );
2137 }
2138 }
2139 };
2140
2141 /**
2142 * Select the first selectable page.
2143 *
2144 * @chainable
2145 */
2146 OO.ui.BookletLayout.prototype.selectFirstSelectablePage = function () {
2147 if ( !this.outlineSelectWidget.getSelectedItem() ) {
2148 this.outlineSelectWidget.selectItem( this.outlineSelectWidget.getFirstSelectableItem() );
2149 }
2150
2151 return this;
2152 };
2153
2154 /**
2155 * IndexLayouts contain {@link OO.ui.CardLayout card layouts} as well as
2156 * {@link OO.ui.TabSelectWidget tabs} that allow users to easily navigate through the cards and
2157 * select which one to display. By default, only one card is displayed at a time. When a user
2158 * navigates to a new card, the index layout automatically focuses on the first focusable element,
2159 * unless the default setting is changed.
2160 *
2161 * TODO: This class is similar to BookletLayout, we may want to refactor to reduce duplication
2162 *
2163 * @example
2164 * // Example of a IndexLayout that contains two CardLayouts.
2165 *
2166 * function CardOneLayout( name, config ) {
2167 * CardOneLayout.parent.call( this, name, config );
2168 * this.$element.append( '<p>First card</p>' );
2169 * }
2170 * OO.inheritClass( CardOneLayout, OO.ui.CardLayout );
2171 * CardOneLayout.prototype.setupTabItem = function () {
2172 * this.tabItem.setLabel( 'Card one' );
2173 * };
2174 *
2175 * var card1 = new CardOneLayout( 'one' ),
2176 * card2 = new OO.ui.CardLayout( 'two', { label: 'Card two' } );
2177 *
2178 * card2.$element.append( '<p>Second card</p>' );
2179 *
2180 * var index = new OO.ui.IndexLayout();
2181 *
2182 * index.addCards ( [ card1, card2 ] );
2183 * $( 'body' ).append( index.$element );
2184 *
2185 * @class
2186 * @extends OO.ui.MenuLayout
2187 *
2188 * @constructor
2189 * @param {Object} [config] Configuration options
2190 * @cfg {boolean} [continuous=false] Show all cards, one after another
2191 * @cfg {boolean} [expanded=true] Expand the content panel to fill the entire parent element.
2192 * @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new card is displayed. Disabled on mobile.
2193 */
2194 OO.ui.IndexLayout = function OoUiIndexLayout( config ) {
2195 // Configuration initialization
2196 config = $.extend( {}, config, { menuPosition: 'top' } );
2197
2198 // Parent constructor
2199 OO.ui.IndexLayout.parent.call( this, config );
2200
2201 // Properties
2202 this.currentCardName = null;
2203 this.cards = {};
2204 this.ignoreFocus = false;
2205 this.stackLayout = new OO.ui.StackLayout( {
2206 continuous: !!config.continuous,
2207 expanded: config.expanded
2208 } );
2209 this.$content.append( this.stackLayout.$element );
2210 this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
2211
2212 this.tabSelectWidget = new OO.ui.TabSelectWidget();
2213 this.tabPanel = new OO.ui.PanelLayout();
2214 this.$menu.append( this.tabPanel.$element );
2215
2216 this.toggleMenu( true );
2217
2218 // Events
2219 this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
2220 this.tabSelectWidget.connect( this, { select: 'onTabSelectWidgetSelect' } );
2221 if ( this.autoFocus ) {
2222 // Event 'focus' does not bubble, but 'focusin' does
2223 this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
2224 }
2225
2226 // Initialization
2227 this.$element.addClass( 'oo-ui-indexLayout' );
2228 this.stackLayout.$element.addClass( 'oo-ui-indexLayout-stackLayout' );
2229 this.tabPanel.$element
2230 .addClass( 'oo-ui-indexLayout-tabPanel' )
2231 .append( this.tabSelectWidget.$element );
2232 };
2233
2234 /* Setup */
2235
2236 OO.inheritClass( OO.ui.IndexLayout, OO.ui.MenuLayout );
2237
2238 /* Events */
2239
2240 /**
2241 * A 'set' event is emitted when a card is {@link #setCard set} to be displayed by the index layout.
2242 * @event set
2243 * @param {OO.ui.CardLayout} card Current card
2244 */
2245
2246 /**
2247 * An 'add' event is emitted when cards are {@link #addCards added} to the index layout.
2248 *
2249 * @event add
2250 * @param {OO.ui.CardLayout[]} card Added cards
2251 * @param {number} index Index cards were added at
2252 */
2253
2254 /**
2255 * A 'remove' event is emitted when cards are {@link #clearCards cleared} or
2256 * {@link #removeCards removed} from the index.
2257 *
2258 * @event remove
2259 * @param {OO.ui.CardLayout[]} cards Removed cards
2260 */
2261
2262 /* Methods */
2263
2264 /**
2265 * Handle stack layout focus.
2266 *
2267 * @private
2268 * @param {jQuery.Event} e Focusin event
2269 */
2270 OO.ui.IndexLayout.prototype.onStackLayoutFocus = function ( e ) {
2271 var name, $target;
2272
2273 // Find the card that an element was focused within
2274 $target = $( e.target ).closest( '.oo-ui-cardLayout' );
2275 for ( name in this.cards ) {
2276 // Check for card match, exclude current card to find only card changes
2277 if ( this.cards[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentCardName ) {
2278 this.setCard( name );
2279 break;
2280 }
2281 }
2282 };
2283
2284 /**
2285 * Handle stack layout set events.
2286 *
2287 * @private
2288 * @param {OO.ui.PanelLayout|null} card The card panel that is now the current panel
2289 */
2290 OO.ui.IndexLayout.prototype.onStackLayoutSet = function ( card ) {
2291 var layout = this;
2292 if ( card ) {
2293 card.scrollElementIntoView( {
2294 complete: function () {
2295 if ( layout.autoFocus && !OO.ui.isMobile() ) {
2296 layout.focus();
2297 }
2298 }
2299 } );
2300 }
2301 };
2302
2303 /**
2304 * Focus the first input in the current card.
2305 *
2306 * If no card is selected, the first selectable card will be selected.
2307 * If the focus is already in an element on the current card, nothing will happen.
2308 *
2309 * @param {number} [itemIndex] A specific item to focus on
2310 */
2311 OO.ui.IndexLayout.prototype.focus = function ( itemIndex ) {
2312 var card,
2313 items = this.stackLayout.getItems();
2314
2315 if ( itemIndex !== undefined && items[ itemIndex ] ) {
2316 card = items[ itemIndex ];
2317 } else {
2318 card = this.stackLayout.getCurrentItem();
2319 }
2320
2321 if ( !card ) {
2322 this.selectFirstSelectableCard();
2323 card = this.stackLayout.getCurrentItem();
2324 }
2325 if ( !card ) {
2326 return;
2327 }
2328 // Only change the focus if is not already in the current page
2329 if ( !OO.ui.contains( card.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
2330 card.focus();
2331 }
2332 };
2333
2334 /**
2335 * Find the first focusable input in the index layout and focus
2336 * on it.
2337 */
2338 OO.ui.IndexLayout.prototype.focusFirstFocusable = function () {
2339 OO.ui.findFocusable( this.stackLayout.$element ).focus();
2340 };
2341
2342 /**
2343 * Handle tab widget select events.
2344 *
2345 * @private
2346 * @param {OO.ui.OptionWidget|null} item Selected item
2347 */
2348 OO.ui.IndexLayout.prototype.onTabSelectWidgetSelect = function ( item ) {
2349 if ( item ) {
2350 this.setCard( item.getData() );
2351 }
2352 };
2353
2354 /**
2355 * Get the card closest to the specified card.
2356 *
2357 * @param {OO.ui.CardLayout} card Card to use as a reference point
2358 * @return {OO.ui.CardLayout|null} Card closest to the specified card
2359 */
2360 OO.ui.IndexLayout.prototype.getClosestCard = function ( card ) {
2361 var next, prev, level,
2362 cards = this.stackLayout.getItems(),
2363 index = cards.indexOf( card );
2364
2365 if ( index !== -1 ) {
2366 next = cards[ index + 1 ];
2367 prev = cards[ index - 1 ];
2368 // Prefer adjacent cards at the same level
2369 level = this.tabSelectWidget.getItemFromData( card.getName() ).getLevel();
2370 if (
2371 prev &&
2372 level === this.tabSelectWidget.getItemFromData( prev.getName() ).getLevel()
2373 ) {
2374 return prev;
2375 }
2376 if (
2377 next &&
2378 level === this.tabSelectWidget.getItemFromData( next.getName() ).getLevel()
2379 ) {
2380 return next;
2381 }
2382 }
2383 return prev || next || null;
2384 };
2385
2386 /**
2387 * Get the tabs widget.
2388 *
2389 * @return {OO.ui.TabSelectWidget} Tabs widget
2390 */
2391 OO.ui.IndexLayout.prototype.getTabs = function () {
2392 return this.tabSelectWidget;
2393 };
2394
2395 /**
2396 * Get a card by its symbolic name.
2397 *
2398 * @param {string} name Symbolic name of card
2399 * @return {OO.ui.CardLayout|undefined} Card, if found
2400 */
2401 OO.ui.IndexLayout.prototype.getCard = function ( name ) {
2402 return this.cards[ name ];
2403 };
2404
2405 /**
2406 * Get the current card.
2407 *
2408 * @return {OO.ui.CardLayout|undefined} Current card, if found
2409 */
2410 OO.ui.IndexLayout.prototype.getCurrentCard = function () {
2411 var name = this.getCurrentCardName();
2412 return name ? this.getCard( name ) : undefined;
2413 };
2414
2415 /**
2416 * Get the symbolic name of the current card.
2417 *
2418 * @return {string|null} Symbolic name of the current card
2419 */
2420 OO.ui.IndexLayout.prototype.getCurrentCardName = function () {
2421 return this.currentCardName;
2422 };
2423
2424 /**
2425 * Add cards to the index layout
2426 *
2427 * When cards are added with the same names as existing cards, the existing cards will be
2428 * automatically removed before the new cards are added.
2429 *
2430 * @param {OO.ui.CardLayout[]} cards Cards to add
2431 * @param {number} index Index of the insertion point
2432 * @fires add
2433 * @chainable
2434 */
2435 OO.ui.IndexLayout.prototype.addCards = function ( cards, index ) {
2436 var i, len, name, card, item, currentIndex,
2437 stackLayoutCards = this.stackLayout.getItems(),
2438 remove = [],
2439 items = [];
2440
2441 // Remove cards with same names
2442 for ( i = 0, len = cards.length; i < len; i++ ) {
2443 card = cards[ i ];
2444 name = card.getName();
2445
2446 if ( Object.prototype.hasOwnProperty.call( this.cards, name ) ) {
2447 // Correct the insertion index
2448 currentIndex = stackLayoutCards.indexOf( this.cards[ name ] );
2449 if ( currentIndex !== -1 && currentIndex + 1 < index ) {
2450 index--;
2451 }
2452 remove.push( this.cards[ name ] );
2453 }
2454 }
2455 if ( remove.length ) {
2456 this.removeCards( remove );
2457 }
2458
2459 // Add new cards
2460 for ( i = 0, len = cards.length; i < len; i++ ) {
2461 card = cards[ i ];
2462 name = card.getName();
2463 this.cards[ card.getName() ] = card;
2464 item = new OO.ui.TabOptionWidget( { data: name } );
2465 card.setTabItem( item );
2466 items.push( item );
2467 }
2468
2469 if ( items.length ) {
2470 this.tabSelectWidget.addItems( items, index );
2471 this.selectFirstSelectableCard();
2472 }
2473 this.stackLayout.addItems( cards, index );
2474 this.emit( 'add', cards, index );
2475
2476 return this;
2477 };
2478
2479 /**
2480 * Remove the specified cards from the index layout.
2481 *
2482 * To remove all cards from the index, you may wish to use the #clearCards method instead.
2483 *
2484 * @param {OO.ui.CardLayout[]} cards An array of cards to remove
2485 * @fires remove
2486 * @chainable
2487 */
2488 OO.ui.IndexLayout.prototype.removeCards = function ( cards ) {
2489 var i, len, name, card,
2490 items = [];
2491
2492 for ( i = 0, len = cards.length; i < len; i++ ) {
2493 card = cards[ i ];
2494 name = card.getName();
2495 delete this.cards[ name ];
2496 items.push( this.tabSelectWidget.getItemFromData( name ) );
2497 card.setTabItem( null );
2498 }
2499 if ( items.length ) {
2500 this.tabSelectWidget.removeItems( items );
2501 this.selectFirstSelectableCard();
2502 }
2503 this.stackLayout.removeItems( cards );
2504 this.emit( 'remove', cards );
2505
2506 return this;
2507 };
2508
2509 /**
2510 * Clear all cards from the index layout.
2511 *
2512 * To remove only a subset of cards from the index, use the #removeCards method.
2513 *
2514 * @fires remove
2515 * @chainable
2516 */
2517 OO.ui.IndexLayout.prototype.clearCards = function () {
2518 var i, len,
2519 cards = this.stackLayout.getItems();
2520
2521 this.cards = {};
2522 this.currentCardName = null;
2523 this.tabSelectWidget.clearItems();
2524 for ( i = 0, len = cards.length; i < len; i++ ) {
2525 cards[ i ].setTabItem( null );
2526 }
2527 this.stackLayout.clearItems();
2528
2529 this.emit( 'remove', cards );
2530
2531 return this;
2532 };
2533
2534 /**
2535 * Set the current card by symbolic name.
2536 *
2537 * @fires set
2538 * @param {string} name Symbolic name of card
2539 */
2540 OO.ui.IndexLayout.prototype.setCard = function ( name ) {
2541 var selectedItem,
2542 $focused,
2543 card = this.cards[ name ],
2544 previousCard = this.currentCardName && this.cards[ this.currentCardName ];
2545
2546 if ( name !== this.currentCardName ) {
2547 selectedItem = this.tabSelectWidget.getSelectedItem();
2548 if ( selectedItem && selectedItem.getData() !== name ) {
2549 this.tabSelectWidget.selectItemByData( name );
2550 }
2551 if ( card ) {
2552 if ( previousCard ) {
2553 previousCard.setActive( false );
2554 // Blur anything focused if the next card doesn't have anything focusable.
2555 // This is not needed if the next card has something focusable (because once it is focused
2556 // this blur happens automatically). If the layout is non-continuous, this check is
2557 // meaningless because the next card is not visible yet and thus can't hold focus.
2558 if (
2559 this.autoFocus &&
2560 !OO.ui.isMobile() &&
2561 this.stackLayout.continuous &&
2562 OO.ui.findFocusable( card.$element ).length !== 0
2563 ) {
2564 $focused = previousCard.$element.find( ':focus' );
2565 if ( $focused.length ) {
2566 $focused[ 0 ].blur();
2567 }
2568 }
2569 }
2570 this.currentCardName = name;
2571 card.setActive( true );
2572 this.stackLayout.setItem( card );
2573 if ( !this.stackLayout.continuous && previousCard ) {
2574 // This should not be necessary, since any inputs on the previous card should have been
2575 // blurred when it was hidden, but browsers are not very consistent about this.
2576 $focused = previousCard.$element.find( ':focus' );
2577 if ( $focused.length ) {
2578 $focused[ 0 ].blur();
2579 }
2580 }
2581 this.emit( 'set', card );
2582 }
2583 }
2584 };
2585
2586 /**
2587 * Select the first selectable card.
2588 *
2589 * @chainable
2590 */
2591 OO.ui.IndexLayout.prototype.selectFirstSelectableCard = function () {
2592 if ( !this.tabSelectWidget.getSelectedItem() ) {
2593 this.tabSelectWidget.selectItem( this.tabSelectWidget.getFirstSelectableItem() );
2594 }
2595
2596 return this;
2597 };
2598
2599 /**
2600 * ToggleWidget implements basic behavior of widgets with an on/off state.
2601 * Please see OO.ui.ToggleButtonWidget and OO.ui.ToggleSwitchWidget for examples.
2602 *
2603 * @abstract
2604 * @class
2605 * @extends OO.ui.Widget
2606 *
2607 * @constructor
2608 * @param {Object} [config] Configuration options
2609 * @cfg {boolean} [value=false] The toggle’s initial on/off state.
2610 * By default, the toggle is in the 'off' state.
2611 */
2612 OO.ui.ToggleWidget = function OoUiToggleWidget( config ) {
2613 // Configuration initialization
2614 config = config || {};
2615
2616 // Parent constructor
2617 OO.ui.ToggleWidget.parent.call( this, config );
2618
2619 // Properties
2620 this.value = null;
2621
2622 // Initialization
2623 this.$element.addClass( 'oo-ui-toggleWidget' );
2624 this.setValue( !!config.value );
2625 };
2626
2627 /* Setup */
2628
2629 OO.inheritClass( OO.ui.ToggleWidget, OO.ui.Widget );
2630
2631 /* Events */
2632
2633 /**
2634 * @event change
2635 *
2636 * A change event is emitted when the on/off state of the toggle changes.
2637 *
2638 * @param {boolean} value Value representing the new state of the toggle
2639 */
2640
2641 /* Methods */
2642
2643 /**
2644 * Get the value representing the toggle’s state.
2645 *
2646 * @return {boolean} The on/off state of the toggle
2647 */
2648 OO.ui.ToggleWidget.prototype.getValue = function () {
2649 return this.value;
2650 };
2651
2652 /**
2653 * Set the state of the toggle: `true` for 'on', `false' for 'off'.
2654 *
2655 * @param {boolean} value The state of the toggle
2656 * @fires change
2657 * @chainable
2658 */
2659 OO.ui.ToggleWidget.prototype.setValue = function ( value ) {
2660 value = !!value;
2661 if ( this.value !== value ) {
2662 this.value = value;
2663 this.emit( 'change', value );
2664 this.$element.toggleClass( 'oo-ui-toggleWidget-on', value );
2665 this.$element.toggleClass( 'oo-ui-toggleWidget-off', !value );
2666 this.$element.attr( 'aria-checked', value.toString() );
2667 }
2668 return this;
2669 };
2670
2671 /**
2672 * ToggleButtons are buttons that have a state (‘on’ or ‘off’) that is represented by a
2673 * Boolean value. Like other {@link OO.ui.ButtonWidget buttons}, toggle buttons can be
2674 * configured with {@link OO.ui.mixin.IconElement icons}, {@link OO.ui.mixin.IndicatorElement indicators},
2675 * {@link OO.ui.mixin.TitledElement titles}, {@link OO.ui.mixin.FlaggedElement styling flags},
2676 * and {@link OO.ui.mixin.LabelElement labels}. Please see
2677 * the [OOjs UI documentation][1] on MediaWiki for more information.
2678 *
2679 * @example
2680 * // Toggle buttons in the 'off' and 'on' state.
2681 * var toggleButton1 = new OO.ui.ToggleButtonWidget( {
2682 * label: 'Toggle Button off'
2683 * } );
2684 * var toggleButton2 = new OO.ui.ToggleButtonWidget( {
2685 * label: 'Toggle Button on',
2686 * value: true
2687 * } );
2688 * // Append the buttons to the DOM.
2689 * $( 'body' ).append( toggleButton1.$element, toggleButton2.$element );
2690 *
2691 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Buttons_and_Switches#Toggle_buttons
2692 *
2693 * @class
2694 * @extends OO.ui.ToggleWidget
2695 * @mixins OO.ui.mixin.ButtonElement
2696 * @mixins OO.ui.mixin.IconElement
2697 * @mixins OO.ui.mixin.IndicatorElement
2698 * @mixins OO.ui.mixin.LabelElement
2699 * @mixins OO.ui.mixin.TitledElement
2700 * @mixins OO.ui.mixin.FlaggedElement
2701 * @mixins OO.ui.mixin.TabIndexedElement
2702 *
2703 * @constructor
2704 * @param {Object} [config] Configuration options
2705 * @cfg {boolean} [value=false] The toggle button’s initial on/off
2706 * state. By default, the button is in the 'off' state.
2707 */
2708 OO.ui.ToggleButtonWidget = function OoUiToggleButtonWidget( config ) {
2709 // Configuration initialization
2710 config = config || {};
2711
2712 // Parent constructor
2713 OO.ui.ToggleButtonWidget.parent.call( this, config );
2714
2715 // Mixin constructors
2716 OO.ui.mixin.ButtonElement.call( this, $.extend( {}, config, { active: this.active } ) );
2717 OO.ui.mixin.IconElement.call( this, config );
2718 OO.ui.mixin.IndicatorElement.call( this, config );
2719 OO.ui.mixin.LabelElement.call( this, config );
2720 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
2721 OO.ui.mixin.FlaggedElement.call( this, config );
2722 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$button } ) );
2723
2724 // Events
2725 this.connect( this, { click: 'onAction' } );
2726
2727 // Initialization
2728 this.$button.append( this.$icon, this.$label, this.$indicator );
2729 this.$element
2730 .addClass( 'oo-ui-toggleButtonWidget' )
2731 .append( this.$button );
2732 };
2733
2734 /* Setup */
2735
2736 OO.inheritClass( OO.ui.ToggleButtonWidget, OO.ui.ToggleWidget );
2737 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.ButtonElement );
2738 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IconElement );
2739 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IndicatorElement );
2740 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.LabelElement );
2741 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TitledElement );
2742 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.FlaggedElement );
2743 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TabIndexedElement );
2744
2745 /* Methods */
2746
2747 /**
2748 * Handle the button action being triggered.
2749 *
2750 * @private
2751 */
2752 OO.ui.ToggleButtonWidget.prototype.onAction = function () {
2753 this.setValue( !this.value );
2754 };
2755
2756 /**
2757 * @inheritdoc
2758 */
2759 OO.ui.ToggleButtonWidget.prototype.setValue = function ( value ) {
2760 value = !!value;
2761 if ( value !== this.value ) {
2762 // Might be called from parent constructor before ButtonElement constructor
2763 if ( this.$button ) {
2764 this.$button.attr( 'aria-pressed', value.toString() );
2765 }
2766 this.setActive( value );
2767 }
2768
2769 // Parent method
2770 OO.ui.ToggleButtonWidget.parent.prototype.setValue.call( this, value );
2771
2772 return this;
2773 };
2774
2775 /**
2776 * @inheritdoc
2777 */
2778 OO.ui.ToggleButtonWidget.prototype.setButtonElement = function ( $button ) {
2779 if ( this.$button ) {
2780 this.$button.removeAttr( 'aria-pressed' );
2781 }
2782 OO.ui.mixin.ButtonElement.prototype.setButtonElement.call( this, $button );
2783 this.$button.attr( 'aria-pressed', this.value.toString() );
2784 };
2785
2786 /**
2787 * ToggleSwitches are switches that slide on and off. Their state is represented by a Boolean
2788 * value (`true` for ‘on’, and `false` otherwise, the default). The ‘off’ state is represented
2789 * visually by a slider in the leftmost position.
2790 *
2791 * @example
2792 * // Toggle switches in the 'off' and 'on' position.
2793 * var toggleSwitch1 = new OO.ui.ToggleSwitchWidget();
2794 * var toggleSwitch2 = new OO.ui.ToggleSwitchWidget( {
2795 * value: true
2796 * } );
2797 *
2798 * // Create a FieldsetLayout to layout and label switches
2799 * var fieldset = new OO.ui.FieldsetLayout( {
2800 * label: 'Toggle switches'
2801 * } );
2802 * fieldset.addItems( [
2803 * new OO.ui.FieldLayout( toggleSwitch1, { label: 'Off', align: 'top' } ),
2804 * new OO.ui.FieldLayout( toggleSwitch2, { label: 'On', align: 'top' } )
2805 * ] );
2806 * $( 'body' ).append( fieldset.$element );
2807 *
2808 * @class
2809 * @extends OO.ui.ToggleWidget
2810 * @mixins OO.ui.mixin.TabIndexedElement
2811 *
2812 * @constructor
2813 * @param {Object} [config] Configuration options
2814 * @cfg {boolean} [value=false] The toggle switch’s initial on/off state.
2815 * By default, the toggle switch is in the 'off' position.
2816 */
2817 OO.ui.ToggleSwitchWidget = function OoUiToggleSwitchWidget( config ) {
2818 // Parent constructor
2819 OO.ui.ToggleSwitchWidget.parent.call( this, config );
2820
2821 // Mixin constructors
2822 OO.ui.mixin.TabIndexedElement.call( this, config );
2823
2824 // Properties
2825 this.dragging = false;
2826 this.dragStart = null;
2827 this.sliding = false;
2828 this.$glow = $( '<span>' );
2829 this.$grip = $( '<span>' );
2830
2831 // Events
2832 this.$element.on( {
2833 click: this.onClick.bind( this ),
2834 keypress: this.onKeyPress.bind( this )
2835 } );
2836
2837 // Initialization
2838 this.$glow.addClass( 'oo-ui-toggleSwitchWidget-glow' );
2839 this.$grip.addClass( 'oo-ui-toggleSwitchWidget-grip' );
2840 this.$element
2841 .addClass( 'oo-ui-toggleSwitchWidget' )
2842 .attr( 'role', 'checkbox' )
2843 .append( this.$glow, this.$grip );
2844 };
2845
2846 /* Setup */
2847
2848 OO.inheritClass( OO.ui.ToggleSwitchWidget, OO.ui.ToggleWidget );
2849 OO.mixinClass( OO.ui.ToggleSwitchWidget, OO.ui.mixin.TabIndexedElement );
2850
2851 /* Methods */
2852
2853 /**
2854 * Handle mouse click events.
2855 *
2856 * @private
2857 * @param {jQuery.Event} e Mouse click event
2858 */
2859 OO.ui.ToggleSwitchWidget.prototype.onClick = function ( e ) {
2860 if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
2861 this.setValue( !this.value );
2862 }
2863 return false;
2864 };
2865
2866 /**
2867 * Handle key press events.
2868 *
2869 * @private
2870 * @param {jQuery.Event} e Key press event
2871 */
2872 OO.ui.ToggleSwitchWidget.prototype.onKeyPress = function ( e ) {
2873 if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
2874 this.setValue( !this.value );
2875 return false;
2876 }
2877 };
2878
2879 /**
2880 * OutlineControlsWidget is a set of controls for an {@link OO.ui.OutlineSelectWidget outline select widget}.
2881 * Controls include moving items up and down, removing items, and adding different kinds of items.
2882 *
2883 * **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
2884 *
2885 * @class
2886 * @extends OO.ui.Widget
2887 * @mixins OO.ui.mixin.GroupElement
2888 * @mixins OO.ui.mixin.IconElement
2889 *
2890 * @constructor
2891 * @param {OO.ui.OutlineSelectWidget} outline Outline to control
2892 * @param {Object} [config] Configuration options
2893 * @cfg {Object} [abilities] List of abilties
2894 * @cfg {boolean} [abilities.move=true] Allow moving movable items
2895 * @cfg {boolean} [abilities.remove=true] Allow removing removable items
2896 */
2897 OO.ui.OutlineControlsWidget = function OoUiOutlineControlsWidget( outline, config ) {
2898 // Allow passing positional parameters inside the config object
2899 if ( OO.isPlainObject( outline ) && config === undefined ) {
2900 config = outline;
2901 outline = config.outline;
2902 }
2903
2904 // Configuration initialization
2905 config = $.extend( { icon: 'add' }, config );
2906
2907 // Parent constructor
2908 OO.ui.OutlineControlsWidget.parent.call( this, config );
2909
2910 // Mixin constructors
2911 OO.ui.mixin.GroupElement.call( this, config );
2912 OO.ui.mixin.IconElement.call( this, config );
2913
2914 // Properties
2915 this.outline = outline;
2916 this.$movers = $( '<div>' );
2917 this.upButton = new OO.ui.ButtonWidget( {
2918 framed: false,
2919 icon: 'collapse',
2920 title: OO.ui.msg( 'ooui-outline-control-move-up' )
2921 } );
2922 this.downButton = new OO.ui.ButtonWidget( {
2923 framed: false,
2924 icon: 'expand',
2925 title: OO.ui.msg( 'ooui-outline-control-move-down' )
2926 } );
2927 this.removeButton = new OO.ui.ButtonWidget( {
2928 framed: false,
2929 icon: 'remove',
2930 title: OO.ui.msg( 'ooui-outline-control-remove' )
2931 } );
2932 this.abilities = { move: true, remove: true };
2933
2934 // Events
2935 outline.connect( this, {
2936 select: 'onOutlineChange',
2937 add: 'onOutlineChange',
2938 remove: 'onOutlineChange'
2939 } );
2940 this.upButton.connect( this, { click: [ 'emit', 'move', -1 ] } );
2941 this.downButton.connect( this, { click: [ 'emit', 'move', 1 ] } );
2942 this.removeButton.connect( this, { click: [ 'emit', 'remove' ] } );
2943
2944 // Initialization
2945 this.$element.addClass( 'oo-ui-outlineControlsWidget' );
2946 this.$group.addClass( 'oo-ui-outlineControlsWidget-items' );
2947 this.$movers
2948 .addClass( 'oo-ui-outlineControlsWidget-movers' )
2949 .append( this.removeButton.$element, this.upButton.$element, this.downButton.$element );
2950 this.$element.append( this.$icon, this.$group, this.$movers );
2951 this.setAbilities( config.abilities || {} );
2952 };
2953
2954 /* Setup */
2955
2956 OO.inheritClass( OO.ui.OutlineControlsWidget, OO.ui.Widget );
2957 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.GroupElement );
2958 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.IconElement );
2959
2960 /* Events */
2961
2962 /**
2963 * @event move
2964 * @param {number} places Number of places to move
2965 */
2966
2967 /**
2968 * @event remove
2969 */
2970
2971 /* Methods */
2972
2973 /**
2974 * Set abilities.
2975 *
2976 * @param {Object} abilities List of abilties
2977 * @param {boolean} [abilities.move] Allow moving movable items
2978 * @param {boolean} [abilities.remove] Allow removing removable items
2979 */
2980 OO.ui.OutlineControlsWidget.prototype.setAbilities = function ( abilities ) {
2981 var ability;
2982
2983 for ( ability in this.abilities ) {
2984 if ( abilities[ ability ] !== undefined ) {
2985 this.abilities[ ability ] = !!abilities[ ability ];
2986 }
2987 }
2988
2989 this.onOutlineChange();
2990 };
2991
2992 /**
2993 * Handle outline change events.
2994 *
2995 * @private
2996 */
2997 OO.ui.OutlineControlsWidget.prototype.onOutlineChange = function () {
2998 var i, len, firstMovable, lastMovable,
2999 items = this.outline.getItems(),
3000 selectedItem = this.outline.getSelectedItem(),
3001 movable = this.abilities.move && selectedItem && selectedItem.isMovable(),
3002 removable = this.abilities.remove && selectedItem && selectedItem.isRemovable();
3003
3004 if ( movable ) {
3005 i = -1;
3006 len = items.length;
3007 while ( ++i < len ) {
3008 if ( items[ i ].isMovable() ) {
3009 firstMovable = items[ i ];
3010 break;
3011 }
3012 }
3013 i = len;
3014 while ( i-- ) {
3015 if ( items[ i ].isMovable() ) {
3016 lastMovable = items[ i ];
3017 break;
3018 }
3019 }
3020 }
3021 this.upButton.setDisabled( !movable || selectedItem === firstMovable );
3022 this.downButton.setDisabled( !movable || selectedItem === lastMovable );
3023 this.removeButton.setDisabled( !removable );
3024 };
3025
3026 /**
3027 * OutlineOptionWidget is an item in an {@link OO.ui.OutlineSelectWidget OutlineSelectWidget}.
3028 *
3029 * Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}, which contain
3030 * {@link OO.ui.PageLayout page layouts}. See {@link OO.ui.BookletLayout BookletLayout}
3031 * for an example.
3032 *
3033 * @class
3034 * @extends OO.ui.DecoratedOptionWidget
3035 *
3036 * @constructor
3037 * @param {Object} [config] Configuration options
3038 * @cfg {number} [level] Indentation level
3039 * @cfg {boolean} [movable] Allow modification from {@link OO.ui.OutlineControlsWidget outline controls}.
3040 */
3041 OO.ui.OutlineOptionWidget = function OoUiOutlineOptionWidget( config ) {
3042 // Configuration initialization
3043 config = config || {};
3044
3045 // Parent constructor
3046 OO.ui.OutlineOptionWidget.parent.call( this, config );
3047
3048 // Properties
3049 this.level = 0;
3050 this.movable = !!config.movable;
3051 this.removable = !!config.removable;
3052
3053 // Initialization
3054 this.$element.addClass( 'oo-ui-outlineOptionWidget' );
3055 this.setLevel( config.level );
3056 };
3057
3058 /* Setup */
3059
3060 OO.inheritClass( OO.ui.OutlineOptionWidget, OO.ui.DecoratedOptionWidget );
3061
3062 /* Static Properties */
3063
3064 OO.ui.OutlineOptionWidget.static.highlightable = true;
3065
3066 OO.ui.OutlineOptionWidget.static.scrollIntoViewOnSelect = true;
3067
3068 OO.ui.OutlineOptionWidget.static.levelClass = 'oo-ui-outlineOptionWidget-level-';
3069
3070 OO.ui.OutlineOptionWidget.static.levels = 3;
3071
3072 /* Methods */
3073
3074 /**
3075 * Check if item is movable.
3076 *
3077 * Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3078 *
3079 * @return {boolean} Item is movable
3080 */
3081 OO.ui.OutlineOptionWidget.prototype.isMovable = function () {
3082 return this.movable;
3083 };
3084
3085 /**
3086 * Check if item is removable.
3087 *
3088 * Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3089 *
3090 * @return {boolean} Item is removable
3091 */
3092 OO.ui.OutlineOptionWidget.prototype.isRemovable = function () {
3093 return this.removable;
3094 };
3095
3096 /**
3097 * Get indentation level.
3098 *
3099 * @return {number} Indentation level
3100 */
3101 OO.ui.OutlineOptionWidget.prototype.getLevel = function () {
3102 return this.level;
3103 };
3104
3105 /**
3106 * @inheritdoc
3107 */
3108 OO.ui.OutlineOptionWidget.prototype.setPressed = function ( state ) {
3109 OO.ui.OutlineOptionWidget.parent.prototype.setPressed.call( this, state );
3110 if ( this.pressed ) {
3111 this.setFlags( 'progressive' );
3112 } else if ( !this.selected ) {
3113 this.clearFlags();
3114 }
3115 return this;
3116 };
3117
3118 /**
3119 * Set movability.
3120 *
3121 * Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3122 *
3123 * @param {boolean} movable Item is movable
3124 * @chainable
3125 */
3126 OO.ui.OutlineOptionWidget.prototype.setMovable = function ( movable ) {
3127 this.movable = !!movable;
3128 this.updateThemeClasses();
3129 return this;
3130 };
3131
3132 /**
3133 * Set removability.
3134 *
3135 * Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
3136 *
3137 * @param {boolean} removable Item is removable
3138 * @chainable
3139 */
3140 OO.ui.OutlineOptionWidget.prototype.setRemovable = function ( removable ) {
3141 this.removable = !!removable;
3142 this.updateThemeClasses();
3143 return this;
3144 };
3145
3146 /**
3147 * @inheritdoc
3148 */
3149 OO.ui.OutlineOptionWidget.prototype.setSelected = function ( state ) {
3150 OO.ui.OutlineOptionWidget.parent.prototype.setSelected.call( this, state );
3151 if ( this.selected ) {
3152 this.setFlags( 'progressive' );
3153 } else {
3154 this.clearFlags();
3155 }
3156 return this;
3157 };
3158
3159 /**
3160 * Set indentation level.
3161 *
3162 * @param {number} [level=0] Indentation level, in the range of [0,#maxLevel]
3163 * @chainable
3164 */
3165 OO.ui.OutlineOptionWidget.prototype.setLevel = function ( level ) {
3166 var levels = this.constructor.static.levels,
3167 levelClass = this.constructor.static.levelClass,
3168 i = levels;
3169
3170 this.level = level ? Math.max( 0, Math.min( levels - 1, level ) ) : 0;
3171 while ( i-- ) {
3172 if ( this.level === i ) {
3173 this.$element.addClass( levelClass + i );
3174 } else {
3175 this.$element.removeClass( levelClass + i );
3176 }
3177 }
3178 this.updateThemeClasses();
3179
3180 return this;
3181 };
3182
3183 /**
3184 * OutlineSelectWidget is a structured list that contains {@link OO.ui.OutlineOptionWidget outline options}
3185 * A set of controls can be provided with an {@link OO.ui.OutlineControlsWidget outline controls} widget.
3186 *
3187 * **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
3188 *
3189 * @class
3190 * @extends OO.ui.SelectWidget
3191 * @mixins OO.ui.mixin.TabIndexedElement
3192 *
3193 * @constructor
3194 * @param {Object} [config] Configuration options
3195 */
3196 OO.ui.OutlineSelectWidget = function OoUiOutlineSelectWidget( config ) {
3197 // Parent constructor
3198 OO.ui.OutlineSelectWidget.parent.call( this, config );
3199
3200 // Mixin constructors
3201 OO.ui.mixin.TabIndexedElement.call( this, config );
3202
3203 // Events
3204 this.$element.on( {
3205 focus: this.bindKeyDownListener.bind( this ),
3206 blur: this.unbindKeyDownListener.bind( this )
3207 } );
3208
3209 // Initialization
3210 this.$element.addClass( 'oo-ui-outlineSelectWidget' );
3211 };
3212
3213 /* Setup */
3214
3215 OO.inheritClass( OO.ui.OutlineSelectWidget, OO.ui.SelectWidget );
3216 OO.mixinClass( OO.ui.OutlineSelectWidget, OO.ui.mixin.TabIndexedElement );
3217
3218 /**
3219 * ButtonOptionWidget is a special type of {@link OO.ui.mixin.ButtonElement button element} that
3220 * can be selected and configured with data. The class is
3221 * used with OO.ui.ButtonSelectWidget to create a selection of button options. Please see the
3222 * [OOjs UI documentation on MediaWiki] [1] for more information.
3223 *
3224 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Button_selects_and_options
3225 *
3226 * @class
3227 * @extends OO.ui.OptionWidget
3228 * @mixins OO.ui.mixin.ButtonElement
3229 * @mixins OO.ui.mixin.IconElement
3230 * @mixins OO.ui.mixin.IndicatorElement
3231 * @mixins OO.ui.mixin.TitledElement
3232 *
3233 * @constructor
3234 * @param {Object} [config] Configuration options
3235 */
3236 OO.ui.ButtonOptionWidget = function OoUiButtonOptionWidget( config ) {
3237 // Configuration initialization
3238 config = config || {};
3239
3240 // Parent constructor
3241 OO.ui.ButtonOptionWidget.parent.call( this, config );
3242
3243 // Mixin constructors
3244 OO.ui.mixin.ButtonElement.call( this, config );
3245 OO.ui.mixin.IconElement.call( this, config );
3246 OO.ui.mixin.IndicatorElement.call( this, config );
3247 OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
3248
3249 // Initialization
3250 this.$element.addClass( 'oo-ui-buttonOptionWidget' );
3251 this.$button.append( this.$icon, this.$label, this.$indicator );
3252 this.$element.append( this.$button );
3253 };
3254
3255 /* Setup */
3256
3257 OO.inheritClass( OO.ui.ButtonOptionWidget, OO.ui.OptionWidget );
3258 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.ButtonElement );
3259 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IconElement );
3260 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IndicatorElement );
3261 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.TitledElement );
3262
3263 /* Static Properties */
3264
3265 // Allow button mouse down events to pass through so they can be handled by the parent select widget
3266 OO.ui.ButtonOptionWidget.static.cancelButtonMouseDownEvents = false;
3267
3268 OO.ui.ButtonOptionWidget.static.highlightable = false;
3269
3270 /* Methods */
3271
3272 /**
3273 * @inheritdoc
3274 */
3275 OO.ui.ButtonOptionWidget.prototype.setSelected = function ( state ) {
3276 OO.ui.ButtonOptionWidget.parent.prototype.setSelected.call( this, state );
3277
3278 if ( this.constructor.static.selectable ) {
3279 this.setActive( state );
3280 }
3281
3282 return this;
3283 };
3284
3285 /**
3286 * ButtonSelectWidget is a {@link OO.ui.SelectWidget select widget} that contains
3287 * button options and is used together with
3288 * OO.ui.ButtonOptionWidget. The ButtonSelectWidget provides an interface for
3289 * highlighting, choosing, and selecting mutually exclusive options. Please see
3290 * the [OOjs UI documentation on MediaWiki] [1] for more information.
3291 *
3292 * @example
3293 * // Example: A ButtonSelectWidget that contains three ButtonOptionWidgets
3294 * var option1 = new OO.ui.ButtonOptionWidget( {
3295 * data: 1,
3296 * label: 'Option 1',
3297 * title: 'Button option 1'
3298 * } );
3299 *
3300 * var option2 = new OO.ui.ButtonOptionWidget( {
3301 * data: 2,
3302 * label: 'Option 2',
3303 * title: 'Button option 2'
3304 * } );
3305 *
3306 * var option3 = new OO.ui.ButtonOptionWidget( {
3307 * data: 3,
3308 * label: 'Option 3',
3309 * title: 'Button option 3'
3310 * } );
3311 *
3312 * var buttonSelect=new OO.ui.ButtonSelectWidget( {
3313 * items: [ option1, option2, option3 ]
3314 * } );
3315 * $( 'body' ).append( buttonSelect.$element );
3316 *
3317 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
3318 *
3319 * @class
3320 * @extends OO.ui.SelectWidget
3321 * @mixins OO.ui.mixin.TabIndexedElement
3322 *
3323 * @constructor
3324 * @param {Object} [config] Configuration options
3325 */
3326 OO.ui.ButtonSelectWidget = function OoUiButtonSelectWidget( config ) {
3327 // Parent constructor
3328 OO.ui.ButtonSelectWidget.parent.call( this, config );
3329
3330 // Mixin constructors
3331 OO.ui.mixin.TabIndexedElement.call( this, config );
3332
3333 // Events
3334 this.$element.on( {
3335 focus: this.bindKeyDownListener.bind( this ),
3336 blur: this.unbindKeyDownListener.bind( this )
3337 } );
3338
3339 // Initialization
3340 this.$element.addClass( 'oo-ui-buttonSelectWidget' );
3341 };
3342
3343 /* Setup */
3344
3345 OO.inheritClass( OO.ui.ButtonSelectWidget, OO.ui.SelectWidget );
3346 OO.mixinClass( OO.ui.ButtonSelectWidget, OO.ui.mixin.TabIndexedElement );
3347
3348 /**
3349 * TabOptionWidget is an item in a {@link OO.ui.TabSelectWidget TabSelectWidget}.
3350 *
3351 * Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}, which contain
3352 * {@link OO.ui.CardLayout card layouts}. See {@link OO.ui.IndexLayout IndexLayout}
3353 * for an example.
3354 *
3355 * @class
3356 * @extends OO.ui.OptionWidget
3357 *
3358 * @constructor
3359 * @param {Object} [config] Configuration options
3360 */
3361 OO.ui.TabOptionWidget = function OoUiTabOptionWidget( config ) {
3362 // Configuration initialization
3363 config = config || {};
3364
3365 // Parent constructor
3366 OO.ui.TabOptionWidget.parent.call( this, config );
3367
3368 // Initialization
3369 this.$element.addClass( 'oo-ui-tabOptionWidget' );
3370 };
3371
3372 /* Setup */
3373
3374 OO.inheritClass( OO.ui.TabOptionWidget, OO.ui.OptionWidget );
3375
3376 /* Static Properties */
3377
3378 OO.ui.TabOptionWidget.static.highlightable = false;
3379
3380 /**
3381 * TabSelectWidget is a list that contains {@link OO.ui.TabOptionWidget tab options}
3382 *
3383 * **Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}.**
3384 *
3385 * @class
3386 * @extends OO.ui.SelectWidget
3387 * @mixins OO.ui.mixin.TabIndexedElement
3388 *
3389 * @constructor
3390 * @param {Object} [config] Configuration options
3391 */
3392 OO.ui.TabSelectWidget = function OoUiTabSelectWidget( config ) {
3393 // Parent constructor
3394 OO.ui.TabSelectWidget.parent.call( this, config );
3395
3396 // Mixin constructors
3397 OO.ui.mixin.TabIndexedElement.call( this, config );
3398
3399 // Events
3400 this.$element.on( {
3401 focus: this.bindKeyDownListener.bind( this ),
3402 blur: this.unbindKeyDownListener.bind( this )
3403 } );
3404
3405 // Initialization
3406 this.$element.addClass( 'oo-ui-tabSelectWidget' );
3407 };
3408
3409 /* Setup */
3410
3411 OO.inheritClass( OO.ui.TabSelectWidget, OO.ui.SelectWidget );
3412 OO.mixinClass( OO.ui.TabSelectWidget, OO.ui.mixin.TabIndexedElement );
3413
3414 /**
3415 * CapsuleItemWidgets are used within a {@link OO.ui.CapsuleMultiselectWidget
3416 * CapsuleMultiselectWidget} to display the selected items.
3417 *
3418 * @class
3419 * @extends OO.ui.Widget
3420 * @mixins OO.ui.mixin.ItemWidget
3421 * @mixins OO.ui.mixin.LabelElement
3422 * @mixins OO.ui.mixin.FlaggedElement
3423 * @mixins OO.ui.mixin.TabIndexedElement
3424 *
3425 * @constructor
3426 * @param {Object} [config] Configuration options
3427 */
3428 OO.ui.CapsuleItemWidget = function OoUiCapsuleItemWidget( config ) {
3429 // Configuration initialization
3430 config = config || {};
3431
3432 // Parent constructor
3433 OO.ui.CapsuleItemWidget.parent.call( this, config );
3434
3435 // Mixin constructors
3436 OO.ui.mixin.ItemWidget.call( this );
3437 OO.ui.mixin.LabelElement.call( this, config );
3438 OO.ui.mixin.FlaggedElement.call( this, config );
3439 OO.ui.mixin.TabIndexedElement.call( this, config );
3440
3441 // Events
3442 this.closeButton = new OO.ui.ButtonWidget( {
3443 framed: false,
3444 indicator: 'clear',
3445 tabIndex: -1
3446 } ).on( 'click', this.onCloseClick.bind( this ) );
3447
3448 this.on( 'disable', function ( disabled ) {
3449 this.closeButton.setDisabled( disabled );
3450 }.bind( this ) );
3451
3452 // Initialization
3453 this.$element
3454 .on( {
3455 click: this.onClick.bind( this ),
3456 keydown: this.onKeyDown.bind( this )
3457 } )
3458 .addClass( 'oo-ui-capsuleItemWidget' )
3459 .append( this.$label, this.closeButton.$element );
3460 };
3461
3462 /* Setup */
3463
3464 OO.inheritClass( OO.ui.CapsuleItemWidget, OO.ui.Widget );
3465 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.ItemWidget );
3466 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.LabelElement );
3467 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.FlaggedElement );
3468 OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.TabIndexedElement );
3469
3470 /* Methods */
3471
3472 /**
3473 * Handle close icon clicks
3474 */
3475 OO.ui.CapsuleItemWidget.prototype.onCloseClick = function () {
3476 var element = this.getElementGroup();
3477
3478 if ( element && $.isFunction( element.removeItems ) ) {
3479 element.removeItems( [ this ] );
3480 element.focus();
3481 }
3482 };
3483
3484 /**
3485 * Handle click event for the entire capsule
3486 */
3487 OO.ui.CapsuleItemWidget.prototype.onClick = function () {
3488 var element = this.getElementGroup();
3489
3490 if ( !this.isDisabled() && element && $.isFunction( element.editItem ) ) {
3491 element.editItem( this );
3492 }
3493 };
3494
3495 /**
3496 * Handle keyDown event for the entire capsule
3497 *
3498 * @param {jQuery.Event} e Key down event
3499 */
3500 OO.ui.CapsuleItemWidget.prototype.onKeyDown = function ( e ) {
3501 var element = this.getElementGroup();
3502
3503 if ( e.keyCode === OO.ui.Keys.BACKSPACE || e.keyCode === OO.ui.Keys.DELETE ) {
3504 element.removeItems( [ this ] );
3505 element.focus();
3506 return false;
3507 } else if ( e.keyCode === OO.ui.Keys.ENTER ) {
3508 element.editItem( this );
3509 return false;
3510 } else if ( e.keyCode === OO.ui.Keys.LEFT ) {
3511 element.getPreviousItem( this ).focus();
3512 } else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
3513 element.getNextItem( this ).focus();
3514 }
3515 };
3516
3517 /**
3518 * Focuses the capsule
3519 */
3520 OO.ui.CapsuleItemWidget.prototype.focus = function () {
3521 this.$element.focus();
3522 };
3523
3524 /**
3525 * CapsuleMultiselectWidgets are something like a {@link OO.ui.ComboBoxInputWidget combo box widget}
3526 * that allows for selecting multiple values.
3527 *
3528 * For more information about menus and options, please see the [OOjs UI documentation on MediaWiki][1].
3529 *
3530 * @example
3531 * // Example: A CapsuleMultiselectWidget.
3532 * var capsule = new OO.ui.CapsuleMultiselectWidget( {
3533 * label: 'CapsuleMultiselectWidget',
3534 * selected: [ 'Option 1', 'Option 3' ],
3535 * menu: {
3536 * items: [
3537 * new OO.ui.MenuOptionWidget( {
3538 * data: 'Option 1',
3539 * label: 'Option One'
3540 * } ),
3541 * new OO.ui.MenuOptionWidget( {
3542 * data: 'Option 2',
3543 * label: 'Option Two'
3544 * } ),
3545 * new OO.ui.MenuOptionWidget( {
3546 * data: 'Option 3',
3547 * label: 'Option Three'
3548 * } ),
3549 * new OO.ui.MenuOptionWidget( {
3550 * data: 'Option 4',
3551 * label: 'Option Four'
3552 * } ),
3553 * new OO.ui.MenuOptionWidget( {
3554 * data: 'Option 5',
3555 * label: 'Option Five'
3556 * } )
3557 * ]
3558 * }
3559 * } );
3560 * $( 'body' ).append( capsule.$element );
3561 *
3562 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
3563 *
3564 * @class
3565 * @extends OO.ui.Widget
3566 * @mixins OO.ui.mixin.GroupElement
3567 * @mixins OO.ui.mixin.PopupElement
3568 * @mixins OO.ui.mixin.TabIndexedElement
3569 * @mixins OO.ui.mixin.IndicatorElement
3570 * @mixins OO.ui.mixin.IconElement
3571 * @uses OO.ui.CapsuleItemWidget
3572 * @uses OO.ui.FloatingMenuSelectWidget
3573 *
3574 * @constructor
3575 * @param {Object} [config] Configuration options
3576 * @cfg {string} [placeholder] Placeholder text
3577 * @cfg {boolean} [allowArbitrary=false] Allow data items to be added even if not present in the menu.
3578 * @cfg {Object} [menu] (required) Configuration options to pass to the
3579 * {@link OO.ui.MenuSelectWidget menu select widget}.
3580 * @cfg {Object} [popup] Configuration options to pass to the {@link OO.ui.PopupWidget popup widget}.
3581 * If specified, this popup will be shown instead of the menu (but the menu
3582 * will still be used for item labels and allowArbitrary=false). The widgets
3583 * in the popup should use {@link #addItemsFromData} or {@link #addItems} as necessary.
3584 * @cfg {jQuery} [$overlay=this.$element] Render the menu or popup into a separate layer.
3585 * This configuration is useful in cases where the expanded menu is larger than
3586 * its containing `<div>`. The specified overlay layer is usually on top of
3587 * the containing `<div>` and has a larger area. By default, the menu uses
3588 * relative positioning.
3589 */
3590 OO.ui.CapsuleMultiselectWidget = function OoUiCapsuleMultiselectWidget( config ) {
3591 var $tabFocus;
3592
3593 // Parent constructor
3594 OO.ui.CapsuleMultiselectWidget.parent.call( this, config );
3595
3596 // Configuration initialization
3597 config = $.extend( {
3598 allowArbitrary: false,
3599 $overlay: this.$element
3600 }, config );
3601
3602 // Properties (must be set before mixin constructor calls)
3603 this.$handle = $( '<div>' );
3604 this.$input = config.popup ? null : $( '<input>' );
3605 if ( config.placeholder !== undefined && config.placeholder !== '' ) {
3606 this.$input.attr( 'placeholder', config.placeholder );
3607 }
3608
3609 // Mixin constructors
3610 OO.ui.mixin.GroupElement.call( this, config );
3611 if ( config.popup ) {
3612 config.popup = $.extend( {}, config.popup, {
3613 align: 'forwards',
3614 anchor: false
3615 } );
3616 OO.ui.mixin.PopupElement.call( this, config );
3617 $tabFocus = $( '<span>' );
3618 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: $tabFocus } ) );
3619 } else {
3620 this.popup = null;
3621 $tabFocus = null;
3622 OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$input } ) );
3623 }
3624 OO.ui.mixin.IndicatorElement.call( this, config );
3625 OO.ui.mixin.IconElement.call( this, config );
3626
3627 // Properties
3628 this.$content = $( '<div>' );
3629 this.allowArbitrary = config.allowArbitrary;
3630 this.$overlay = config.$overlay;
3631 this.menu = new OO.ui.FloatingMenuSelectWidget( $.extend(
3632 {
3633 widget: this,
3634 $input: this.$input,
3635 $container: this.$element,
3636 filterFromInput: true,
3637 disabled: this.isDisabled()
3638 },
3639 config.menu
3640 ) );
3641
3642 // Events
3643 if ( this.popup ) {
3644 $tabFocus.on( {
3645 focus: this.onFocusForPopup.bind( this )
3646 } );
3647 this.popup.$element.on( 'focusout', this.onPopupFocusOut.bind( this ) );
3648 if ( this.popup.$autoCloseIgnore ) {
3649 this.popup.$autoCloseIgnore.on( 'focusout', this.onPopupFocusOut.bind( this ) );
3650 }
3651 this.popup.connect( this, {
3652 toggle: function ( visible ) {
3653 $tabFocus.toggle( !visible );
3654 }
3655 } );
3656 } else {
3657 this.$input.on( {
3658 focus: this.onInputFocus.bind( this ),
3659 blur: this.onInputBlur.bind( this ),
3660 'propertychange change click mouseup keydown keyup input cut paste select focus':
3661 OO.ui.debounce( this.updateInputSize.bind( this ) ),
3662 keydown: this.onKeyDown.bind( this ),
3663 keypress: this.onKeyPress.bind( this )
3664 } );
3665 }
3666 this.menu.connect( this, {
3667 choose: 'onMenuChoose',
3668 toggle: 'onMenuToggle',
3669 add: 'onMenuItemsChange',
3670 remove: 'onMenuItemsChange'
3671 } );
3672 this.$handle.on( {
3673 mousedown: this.onMouseDown.bind( this )
3674 } );
3675
3676 // Initialization
3677 if ( this.$input ) {
3678 this.$input.prop( 'disabled', this.isDisabled() );
3679 this.$input.attr( {
3680 role: 'combobox',
3681 'aria-autocomplete': 'list'
3682 } );
3683 }
3684 if ( config.data ) {
3685 this.setItemsFromData( config.data );
3686 }
3687 this.$content.addClass( 'oo-ui-capsuleMultiselectWidget-content' )
3688 .append( this.$group );
3689 this.$group.addClass( 'oo-ui-capsuleMultiselectWidget-group' );
3690 this.$handle.addClass( 'oo-ui-capsuleMultiselectWidget-handle' )
3691 .append( this.$indicator, this.$icon, this.$content );
3692 this.$element.addClass( 'oo-ui-capsuleMultiselectWidget' )
3693 .append( this.$handle );
3694 if ( this.popup ) {
3695 this.$content.append( $tabFocus );
3696 this.$overlay.append( this.popup.$element );
3697 } else {
3698 this.$content.append( this.$input );
3699 this.$overlay.append( this.menu.$element );
3700 }
3701
3702 // Input size needs to be calculated after everything else is rendered
3703 setTimeout( function () {
3704 if ( this.$input ) {
3705 this.updateInputSize();
3706 }
3707 }.bind( this ) );
3708
3709 this.onMenuItemsChange();
3710 };
3711
3712 /* Setup */
3713
3714 OO.inheritClass( OO.ui.CapsuleMultiselectWidget, OO.ui.Widget );
3715 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.GroupElement );
3716 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.PopupElement );
3717 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.TabIndexedElement );
3718 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IndicatorElement );
3719 OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IconElement );
3720
3721 /* Events */
3722
3723 /**
3724 * @event change
3725 *
3726 * A change event is emitted when the set of selected items changes.
3727 *
3728 * @param {Mixed[]} datas Data of the now-selected items
3729 */
3730
3731 /**
3732 * @event resize
3733 *
3734 * A resize event is emitted when the widget's dimensions change to accomodate newly added items or
3735 * current user input.
3736 */
3737
3738 /* Methods */
3739
3740 /**
3741 * Construct a OO.ui.CapsuleItemWidget (or a subclass thereof) from given label and data.
3742 * May return `null` if the given label and data are not valid.
3743 *
3744 * @protected
3745 * @param {Mixed} data Custom data of any type.
3746 * @param {string} label The label text.
3747 * @return {OO.ui.CapsuleItemWidget|null}
3748 */
3749 OO.ui.CapsuleMultiselectWidget.prototype.createItemWidget = function ( data, label ) {
3750 if ( label === '' ) {
3751 return null;
3752 }
3753 return new OO.ui.CapsuleItemWidget( { data: data, label: label } );
3754 };
3755
3756 /**
3757 * Get the data of the items in the capsule
3758 *
3759 * @return {Mixed[]}
3760 */
3761 OO.ui.CapsuleMultiselectWidget.prototype.getItemsData = function () {
3762 return this.getItems().map( function ( item ) {
3763 return item.data;
3764 } );
3765 };
3766
3767 /**
3768 * Set the items in the capsule by providing data
3769 *
3770 * @chainable
3771 * @param {Mixed[]} datas
3772 * @return {OO.ui.CapsuleMultiselectWidget}
3773 */
3774 OO.ui.CapsuleMultiselectWidget.prototype.setItemsFromData = function ( datas ) {
3775 var widget = this,
3776 menu = this.menu,
3777 items = this.getItems();
3778
3779 $.each( datas, function ( i, data ) {
3780 var j, label,
3781 item = menu.getItemFromData( data );
3782
3783 if ( item ) {
3784 label = item.label;
3785 } else if ( widget.allowArbitrary ) {
3786 label = String( data );
3787 } else {
3788 return;
3789 }
3790
3791 item = null;
3792 for ( j = 0; j < items.length; j++ ) {
3793 if ( items[ j ].data === data && items[ j ].label === label ) {
3794 item = items[ j ];
3795 items.splice( j, 1 );
3796 break;
3797 }
3798 }
3799 if ( !item ) {
3800 item = widget.createItemWidget( data, label );
3801 }
3802 if ( item ) {
3803 widget.addItems( [ item ], i );
3804 }
3805 } );
3806
3807 if ( items.length ) {
3808 widget.removeItems( items );
3809 }
3810
3811 return this;
3812 };
3813
3814 /**
3815 * Add items to the capsule by providing their data
3816 *
3817 * @chainable
3818 * @param {Mixed[]} datas
3819 * @return {OO.ui.CapsuleMultiselectWidget}
3820 */
3821 OO.ui.CapsuleMultiselectWidget.prototype.addItemsFromData = function ( datas ) {
3822 var widget = this,
3823 menu = this.menu,
3824 items = [];
3825
3826 $.each( datas, function ( i, data ) {
3827 var item;
3828
3829 if ( !widget.getItemFromData( data ) ) {
3830 item = menu.getItemFromData( data );
3831 if ( item ) {
3832 item = widget.createItemWidget( data, item.label );
3833 } else if ( widget.allowArbitrary ) {
3834 item = widget.createItemWidget( data, String( data ) );
3835 }
3836 if ( item ) {
3837 items.push( item );
3838 }
3839 }
3840 } );
3841
3842 if ( items.length ) {
3843 this.addItems( items );
3844 }
3845
3846 return this;
3847 };
3848
3849 /**
3850 * Add items to the capsule by providing a label
3851 *
3852 * @param {string} label
3853 * @return {boolean} Whether the item was added or not
3854 */
3855 OO.ui.CapsuleMultiselectWidget.prototype.addItemFromLabel = function ( label ) {
3856 var item, items;
3857 item = this.menu.getItemFromLabel( label, true );
3858 if ( item ) {
3859 this.addItemsFromData( [ item.data ] );
3860 return true;
3861 } else if ( this.allowArbitrary ) {
3862 items = this.getItems();
3863 this.addItemsFromData( [ label ] );
3864 return !OO.compare( this.getItems(), items );
3865 }
3866 return false;
3867 };
3868
3869 /**
3870 * Remove items by data
3871 *
3872 * @chainable
3873 * @param {Mixed[]} datas
3874 * @return {OO.ui.CapsuleMultiselectWidget}
3875 */
3876 OO.ui.CapsuleMultiselectWidget.prototype.removeItemsFromData = function ( datas ) {
3877 var widget = this,
3878 items = [];
3879
3880 $.each( datas, function ( i, data ) {
3881 var item = widget.getItemFromData( data );
3882 if ( item ) {
3883 items.push( item );
3884 }
3885 } );
3886
3887 if ( items.length ) {
3888 this.removeItems( items );
3889 }
3890
3891 return this;
3892 };
3893
3894 /**
3895 * @inheritdoc
3896 */
3897 OO.ui.CapsuleMultiselectWidget.prototype.addItems = function ( items ) {
3898 var same, i, l,
3899 oldItems = this.items.slice();
3900
3901 OO.ui.mixin.GroupElement.prototype.addItems.call( this, items );
3902
3903 if ( this.items.length !== oldItems.length ) {
3904 same = false;
3905 } else {
3906 same = true;
3907 for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
3908 same = same && this.items[ i ] === oldItems[ i ];
3909 }
3910 }
3911 if ( !same ) {
3912 this.emit( 'change', this.getItemsData() );
3913 this.updateIfHeightChanged();
3914 }
3915
3916 return this;
3917 };
3918
3919 /**
3920 * Removes the item from the list and copies its label to `this.$input`.
3921 *
3922 * @param {Object} item
3923 */
3924 OO.ui.CapsuleMultiselectWidget.prototype.editItem = function ( item ) {
3925 this.addItemFromLabel( this.$input.val() );
3926 this.clearInput();
3927 this.$input.val( item.label );
3928 this.updateInputSize();
3929 this.focus();
3930 this.menu.updateItemVisibility(); // Hack, we shouldn't be calling this method directly
3931 this.removeItems( [ item ] );
3932 };
3933
3934 /**
3935 * @inheritdoc
3936 */
3937 OO.ui.CapsuleMultiselectWidget.prototype.removeItems = function ( items ) {
3938 var same, i, l,
3939 oldItems = this.items.slice();
3940
3941 OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
3942
3943 if ( this.items.length !== oldItems.length ) {
3944 same = false;
3945 } else {
3946 same = true;
3947 for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
3948 same = same && this.items[ i ] === oldItems[ i ];
3949 }
3950 }
3951 if ( !same ) {
3952 this.emit( 'change', this.getItemsData() );
3953 this.updateIfHeightChanged();
3954 }
3955
3956 return this;
3957 };
3958
3959 /**
3960 * @inheritdoc
3961 */
3962 OO.ui.CapsuleMultiselectWidget.prototype.clearItems = function () {
3963 if ( this.items.length ) {
3964 OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
3965 this.emit( 'change', this.getItemsData() );
3966 this.updateIfHeightChanged();
3967 }
3968 return this;
3969 };
3970
3971 /**
3972 * Given an item, returns the item after it. If its the last item,
3973 * returns `this.$input`. If no item is passed, returns the very first
3974 * item.
3975 *
3976 * @param {OO.ui.CapsuleItemWidget} [item]
3977 * @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
3978 */
3979 OO.ui.CapsuleMultiselectWidget.prototype.getNextItem = function ( item ) {
3980 var itemIndex;
3981
3982 if ( item === undefined ) {
3983 return this.items[ 0 ];
3984 }
3985
3986 itemIndex = this.items.indexOf( item );
3987 if ( itemIndex < 0 ) { // Item not in list
3988 return false;
3989 } else if ( itemIndex === this.items.length - 1 ) { // Last item
3990 return this.$input;
3991 } else {
3992 return this.items[ itemIndex + 1 ];
3993 }
3994 };
3995
3996 /**
3997 * Given an item, returns the item before it. If its the first item,
3998 * returns `this.$input`. If no item is passed, returns the very last
3999 * item.
4000 *
4001 * @param {OO.ui.CapsuleItemWidget} [item]
4002 * @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
4003 */
4004 OO.ui.CapsuleMultiselectWidget.prototype.getPreviousItem = function ( item ) {
4005 var itemIndex;
4006
4007 if ( item === undefined ) {
4008 return this.items[ this.items.length - 1 ];
4009 }
4010
4011 itemIndex = this.items.indexOf( item );
4012 if ( itemIndex < 0 ) { // Item not in list
4013 return false;
4014 } else if ( itemIndex === 0 ) { // First item
4015 return this.$input;
4016 } else {
4017 return this.items[ itemIndex - 1 ];
4018 }
4019 };
4020
4021 /**
4022 * Get the capsule widget's menu.
4023 *
4024 * @return {OO.ui.MenuSelectWidget} Menu widget
4025 */
4026 OO.ui.CapsuleMultiselectWidget.prototype.getMenu = function () {
4027 return this.menu;
4028 };
4029
4030 /**
4031 * Handle focus events
4032 *
4033 * @private
4034 * @param {jQuery.Event} event
4035 */
4036 OO.ui.CapsuleMultiselectWidget.prototype.onInputFocus = function () {
4037 if ( !this.isDisabled() ) {
4038 this.menu.toggle( true );
4039 }
4040 };
4041
4042 /**
4043 * Handle blur events
4044 *
4045 * @private
4046 * @param {jQuery.Event} event
4047 */
4048 OO.ui.CapsuleMultiselectWidget.prototype.onInputBlur = function () {
4049 this.addItemFromLabel( this.$input.val() );
4050 this.clearInput();
4051 };
4052
4053 /**
4054 * Handle focus events
4055 *
4056 * @private
4057 * @param {jQuery.Event} event
4058 */
4059 OO.ui.CapsuleMultiselectWidget.prototype.onFocusForPopup = function () {
4060 if ( !this.isDisabled() ) {
4061 this.popup.setSize( this.$handle.width() );
4062 this.popup.toggle( true );
4063 OO.ui.findFocusable( this.popup.$element ).focus();
4064 }
4065 };
4066
4067 /**
4068 * Handles popup focus out events.
4069 *
4070 * @private
4071 * @param {jQuery.Event} e Focus out event
4072 */
4073 OO.ui.CapsuleMultiselectWidget.prototype.onPopupFocusOut = function () {
4074 var widget = this.popup;
4075
4076 setTimeout( function () {
4077 if (
4078 widget.isVisible() &&
4079 !OO.ui.contains( widget.$element.add( widget.$autoCloseIgnore ).get(), document.activeElement, true )
4080 ) {
4081 widget.toggle( false );
4082 }
4083 } );
4084 };
4085
4086 /**
4087 * Handle mouse down events.
4088 *
4089 * @private
4090 * @param {jQuery.Event} e Mouse down event
4091 */
4092 OO.ui.CapsuleMultiselectWidget.prototype.onMouseDown = function ( e ) {
4093 if ( e.which === OO.ui.MouseButtons.LEFT ) {
4094 this.focus();
4095 return false;
4096 } else {
4097 this.updateInputSize();
4098 }
4099 };
4100
4101 /**
4102 * Handle key press events.
4103 *
4104 * @private
4105 * @param {jQuery.Event} e Key press event
4106 */
4107 OO.ui.CapsuleMultiselectWidget.prototype.onKeyPress = function ( e ) {
4108 if ( !this.isDisabled() ) {
4109 if ( e.which === OO.ui.Keys.ESCAPE ) {
4110 this.clearInput();
4111 return false;
4112 }
4113
4114 if ( !this.popup ) {
4115 this.menu.toggle( true );
4116 if ( e.which === OO.ui.Keys.ENTER ) {
4117 if ( this.addItemFromLabel( this.$input.val() ) ) {
4118 this.clearInput();
4119 }
4120 return false;
4121 }
4122
4123 // Make sure the input gets resized.
4124 setTimeout( this.updateInputSize.bind( this ), 0 );
4125 }
4126 }
4127 };
4128
4129 /**
4130 * Handle key down events.
4131 *
4132 * @private
4133 * @param {jQuery.Event} e Key down event
4134 */
4135 OO.ui.CapsuleMultiselectWidget.prototype.onKeyDown = function ( e ) {
4136 if (
4137 !this.isDisabled() &&
4138 this.$input.val() === '' &&
4139 this.items.length
4140 ) {
4141 // 'keypress' event is not triggered for Backspace
4142 if ( e.keyCode === OO.ui.Keys.BACKSPACE ) {
4143 if ( e.metaKey || e.ctrlKey ) {
4144 this.removeItems( this.items.slice( -1 ) );
4145 } else {
4146 this.editItem( this.items[ this.items.length - 1 ] );
4147 }
4148 return false;
4149 } else if ( e.keyCode === OO.ui.Keys.LEFT ) {
4150 this.getPreviousItem().focus();
4151 } else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
4152 this.getNextItem().focus();
4153 }
4154 }
4155 };
4156
4157 /**
4158 * Update the dimensions of the text input field to encompass all available area.
4159 *
4160 * @private
4161 * @param {jQuery.Event} e Event of some sort
4162 */
4163 OO.ui.CapsuleMultiselectWidget.prototype.updateInputSize = function () {
4164 var $lastItem, direction, contentWidth, currentWidth, bestWidth;
4165 if ( this.$input && !this.isDisabled() ) {
4166 this.$input.css( 'width', '1em' );
4167 $lastItem = this.$group.children().last();
4168 direction = OO.ui.Element.static.getDir( this.$handle );
4169
4170 // Get the width of the input with the placeholder text as
4171 // the value and save it so that we don't keep recalculating
4172 if (
4173 this.contentWidthWithPlaceholder === undefined &&
4174 this.$input.val() === '' &&
4175 this.$input.attr( 'placeholder' ) !== undefined
4176 ) {
4177 this.$input.val( this.$input.attr( 'placeholder' ) );
4178 this.contentWidthWithPlaceholder = this.$input[ 0 ].scrollWidth;
4179 this.$input.val( '' );
4180
4181 }
4182
4183 // Always keep the input wide enough for the placeholder text
4184 contentWidth = Math.max(
4185 this.$input[ 0 ].scrollWidth,
4186 // undefined arguments in Math.max lead to NaN
4187 ( this.contentWidthWithPlaceholder === undefined ) ?
4188 0 : this.contentWidthWithPlaceholder
4189 );
4190 currentWidth = this.$input.width();
4191
4192 if ( contentWidth < currentWidth ) {
4193 // All is fine, don't perform expensive calculations
4194 return;
4195 }
4196
4197 if ( $lastItem.length === 0 ) {
4198 bestWidth = this.$content.innerWidth();
4199 } else {
4200 bestWidth = direction === 'ltr' ?
4201 this.$content.innerWidth() - $lastItem.position().left - $lastItem.outerWidth() :
4202 $lastItem.position().left;
4203 }
4204
4205 // Some safety margin for sanity, because I *really* don't feel like finding out where the few
4206 // pixels this is off by are coming from.
4207 bestWidth -= 10;
4208 if ( contentWidth > bestWidth ) {
4209 // This will result in the input getting shifted to the next line
4210 bestWidth = this.$content.innerWidth() - 10;
4211 }
4212 this.$input.width( Math.floor( bestWidth ) );
4213 this.updateIfHeightChanged();
4214 }
4215 };
4216
4217 /**
4218 * Determine if widget height changed, and if so, update menu position and emit 'resize' event.
4219 *
4220 * @private
4221 */
4222 OO.ui.CapsuleMultiselectWidget.prototype.updateIfHeightChanged = function () {
4223 var height = this.$element.height();
4224 if ( height !== this.height ) {
4225 this.height = height;
4226 this.menu.position();
4227 this.emit( 'resize' );
4228 }
4229 };
4230
4231 /**
4232 * Handle menu choose events.
4233 *
4234 * @private
4235 * @param {OO.ui.OptionWidget} item Chosen item
4236 */
4237 OO.ui.CapsuleMultiselectWidget.prototype.onMenuChoose = function ( item ) {
4238 if ( item && item.isVisible() ) {
4239 this.addItemsFromData( [ item.getData() ] );
4240 this.clearInput();
4241 }
4242 };
4243
4244 /**
4245 * Handle menu toggle events.
4246 *
4247 * @private
4248 * @param {boolean} isVisible Menu toggle event
4249 */
4250 OO.ui.CapsuleMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
4251 this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-open', isVisible );
4252 };
4253
4254 /**
4255 * Handle menu item change events.
4256 *
4257 * @private
4258 */
4259 OO.ui.CapsuleMultiselectWidget.prototype.onMenuItemsChange = function () {
4260 this.setItemsFromData( this.getItemsData() );
4261 this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-empty', this.menu.isEmpty() );
4262 };
4263
4264 /**
4265 * Clear the input field
4266 *
4267 * @private
4268 */
4269 OO.ui.CapsuleMultiselectWidget.prototype.clearInput = function () {
4270 if ( this.$input ) {
4271 this.$input.val( '' );
4272 this.updateInputSize();
4273 }
4274 if ( this.popup ) {
4275 this.popup.toggle( false );
4276 }
4277 this.menu.toggle( false );
4278 this.menu.selectItem();
4279 this.menu.highlightItem();
4280 };
4281
4282 /**
4283 * @inheritdoc
4284 */
4285 OO.ui.CapsuleMultiselectWidget.prototype.setDisabled = function ( disabled ) {
4286 var i, len;
4287
4288 // Parent method
4289 OO.ui.CapsuleMultiselectWidget.parent.prototype.setDisabled.call( this, disabled );
4290
4291 if ( this.$input ) {
4292 this.$input.prop( 'disabled', this.isDisabled() );
4293 }
4294 if ( this.menu ) {
4295 this.menu.setDisabled( this.isDisabled() );
4296 }
4297 if ( this.popup ) {
4298 this.popup.setDisabled( this.isDisabled() );
4299 }
4300
4301 if ( this.items ) {
4302 for ( i = 0, len = this.items.length; i < len; i++ ) {
4303 this.items[ i ].updateDisabled();
4304 }
4305 }
4306
4307 return this;
4308 };
4309
4310 /**
4311 * Focus the widget
4312 *
4313 * @chainable
4314 * @return {OO.ui.CapsuleMultiselectWidget}
4315 */
4316 OO.ui.CapsuleMultiselectWidget.prototype.focus = function () {
4317 if ( !this.isDisabled() ) {
4318 if ( this.popup ) {
4319 this.popup.setSize( this.$handle.width() );
4320 this.popup.toggle( true );
4321 OO.ui.findFocusable( this.popup.$element ).focus();
4322 } else {
4323 this.updateInputSize();
4324 this.menu.toggle( true );
4325 this.$input.focus();
4326 }
4327 }
4328 return this;
4329 };
4330
4331 /**
4332 * @class
4333 * @deprecated since 0.17.3; use OO.ui.CapsuleMultiselectWidget instead
4334 */
4335 OO.ui.CapsuleMultiSelectWidget = OO.ui.CapsuleMultiselectWidget;
4336
4337 /**
4338 * SelectFileWidgets allow for selecting files, using the HTML5 File API. These
4339 * widgets can be configured with {@link OO.ui.mixin.IconElement icons} and {@link
4340 * OO.ui.mixin.IndicatorElement indicators}.
4341 * Please see the [OOjs UI documentation on MediaWiki] [1] for more information and examples.
4342 *
4343 * @example
4344 * // Example of a file select widget
4345 * var selectFile = new OO.ui.SelectFileWidget();
4346 * $( 'body' ).append( selectFile.$element );
4347 *
4348 * [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets
4349 *
4350 * @class
4351 * @extends OO.ui.Widget
4352 * @mixins OO.ui.mixin.IconElement
4353 * @mixins OO.ui.mixin.IndicatorElement
4354 * @mixins OO.ui.mixin.PendingElement
4355 * @mixins OO.ui.mixin.LabelElement
4356 *
4357 * @constructor
4358 * @param {Object} [config] Configuration options
4359 * @cfg {string[]|null} [accept=null] MIME types to accept. null accepts all types.
4360 * @cfg {string} [placeholder] Text to display when no file is selected.
4361 * @cfg {string} [notsupported] Text to display when file support is missing in the browser.
4362 * @cfg {boolean} [droppable=true] Whether to accept files by drag and drop.
4363 * @cfg {boolean} [showDropTarget=false] Whether to show a drop target. Requires droppable to be true.
4364 * @cfg {number} [thumbnailSizeLimit=20] File size limit in MiB above which to not try and show a
4365 * preview (for performance)
4366 */
4367 OO.ui.SelectFileWidget = function OoUiSelectFileWidget( config ) {
4368 var dragHandler;
4369
4370 // Configuration initialization
4371 config = $.extend( {
4372 accept: null,
4373 placeholder: OO.ui.msg( 'ooui-selectfile-placeholder' ),
4374 notsupported: OO.ui.msg( 'ooui-selectfile-not-supported' ),
4375 droppable: true,
4376 showDropTarget: false,
4377 thumbnailSizeLimit: 20
4378 }, config );
4379
4380 // Parent constructor
4381 OO.ui.SelectFileWidget.parent.call( this, config );
4382
4383 // Mixin constructors
4384 OO.ui.mixin.IconElement.call( this, config );
4385 OO.ui.mixin.IndicatorElement.call( this, config );
4386 OO.ui.mixin.PendingElement.call( this, $.extend( {}, config, { $pending: this.$info } ) );
4387 OO.ui.mixin.LabelElement.call( this, config );
4388
4389 // Properties
4390 this.$info = $( '<span>' );
4391 this.showDropTarget = config.showDropTarget;
4392 this.thumbnailSizeLimit = config.thumbnailSizeLimit;
4393 this.isSupported = this.constructor.static.isSupported();
4394 this.currentFile = null;
4395 if ( Array.isArray( config.accept ) ) {
4396 this.accept = config.accept;
4397 } else {
4398 this.accept = null;
4399 }
4400 this.placeholder = config.placeholder;
4401 this.notsupported = config.notsupported;
4402 this.onFileSelectedHandler = this.onFileSelected.bind( this );
4403
4404 this.selectButton = new OO.ui.ButtonWidget( {
4405 classes: [ 'oo-ui-selectFileWidget-selectButton' ],
4406 label: OO.ui.msg( 'ooui-selectfile-button-select' ),
4407 disabled: this.disabled || !this.isSupported
4408 } );
4409
4410 this.clearButton = new OO.ui.ButtonWidget( {
4411 classes: [ 'oo-ui-selectFileWidget-clearButton' ],
4412 framed: false,
4413 icon: 'close',
4414 disabled: this.disabled
4415 } );
4416
4417 // Events
4418 this.selectButton.$button.on( {
4419 keypress: this.onKeyPress.bind( this )
4420 } );
4421 this.clearButton.connect( this, {
4422 click: 'onClearClick'
4423 } );
4424 if ( config.droppable ) {
4425 dragHandler = this.onDragEnterOrOver.bind( this );
4426 this.$element.on( {
4427 dragenter: dragHandler,
4428 dragover: dragHandler,
4429 dragleave: this.onDragLeave.bind( this ),
4430 drop: this.onDrop.bind( this )
4431 } );
4432 }
4433
4434 // Initialization
4435 this.addInput();
4436 this.$label.addClass( 'oo-ui-selectFileWidget-label' );
4437 this.$info
4438 .addClass( 'oo-ui-selectFileWidget-info' )
4439 .append( this.$icon, this.$label, this.clearButton.$element, this.$indicator );
4440
4441 if ( config.droppable && config.showDropTarget ) {
4442 this.selectButton.setIcon( 'upload' );
4443 this.$thumbnail = $( '<div>' ).addClass( 'oo-ui-selectFileWidget-thumbnail' );
4444 this.setPendingElement( this.$thumbnail );
4445 this.$element
4446 .addClass( 'oo-ui-selectFileWidget-dropTarget oo-ui-selectFileWidget' )
4447 .on( {
4448 click: this.onDropTargetClick.bind( this )
4449 } )
4450 .append(
4451 this.$thumbnail,
4452 this.$info,
4453 this.selectButton.$element,
4454 $( '<span>' )
4455 .addClass( 'oo-ui-selectFileWidget-dropLabel' )
4456 .text( OO.ui.msg( 'ooui-selectfile-dragdrop-placeholder' ) )
4457 );
4458 } else {
4459 this.$element
4460 .addClass( 'oo-ui-selectFileWidget' )
4461 .append( this.$info, this.selectButton.$element );
4462 }
4463 this.updateUI();
4464 };
4465
4466 /* Setup */
4467
4468 OO.inheritClass( OO.ui.SelectFileWidget, OO.ui.Widget );
4469 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IconElement );
4470 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IndicatorElement );
4471 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.PendingElement );
4472 OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.LabelElement );
4473
4474 /* Static Properties */
4475
4476 /**
4477 * Check if this widget is supported
4478 *
4479 * @static
4480 * @return {boolean}
4481 */
4482 OO.ui.SelectFileWidget.static.isSupported = function () {
4483 var $input;
4484 if ( OO.ui.SelectFileWidget.static.isSupportedCache === null ) {
4485 $input = $( '<input>' ).attr( 'type', 'file' );
4486 OO.ui.SelectFileWidget.static.isSupportedCache = $input[ 0 ].files !== undefined;
4487 }
4488 return OO.ui.SelectFileWidget.static.isSupportedCache;
4489 };
4490
4491 OO.ui.SelectFileWidget.static.isSupportedCache = null;
4492
4493 /* Events */
4494
4495 /**
4496 * @event change
4497 *
4498 * A change event is emitted when the on/off state of the toggle changes.
4499 *
4500 * @param {File|null} value New value
4501 */
4502
4503 /* Methods */
4504
4505 /**
4506 * Get the current value of the field
4507 *
4508 * @return {File|null}
4509 */
4510 OO.ui.SelectFileWidget.prototype.getValue = function () {
4511 return this.currentFile;
4512 };
4513
4514 /**
4515 * Set the current value of the field
4516 *
4517 * @param {File|null} file File to select
4518 */
4519 OO.ui.SelectFileWidget.prototype.setValue = function ( file ) {
4520 if ( this.currentFile !== file ) {
4521 this.currentFile = file;
4522 this.updateUI();
4523 this.emit( 'change', this.currentFile );
4524 }
4525 };
4526
4527 /**
4528 * Focus the widget.
4529 *
4530 * Focusses the select file button.
4531 *
4532 * @chainable
4533 */
4534 OO.ui.SelectFileWidget.prototype.focus = function () {
4535 this.selectButton.$button[ 0 ].focus();
4536 return this;
4537 };
4538
4539 /**
4540 * Update the user interface when a file is selected or unselected
4541 *
4542 * @protected
4543 */
4544 OO.ui.SelectFileWidget.prototype.updateUI = function () {
4545 var $label;
4546 if ( !this.isSupported ) {
4547 this.$element.addClass( 'oo-ui-selectFileWidget-notsupported' );
4548 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
4549 this.setLabel( this.notsupported );
4550 } else {
4551 this.$element.addClass( 'oo-ui-selectFileWidget-supported' );
4552 if ( this.currentFile ) {
4553 this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
4554 $label = $( [] );
4555 $label = $label.add(
4556 $( '<span>' )
4557 .addClass( 'oo-ui-selectFileWidget-fileName' )
4558 .text( this.currentFile.name )
4559 );
4560 this.setLabel( $label );
4561
4562 if ( this.showDropTarget ) {
4563 this.pushPending();
4564 this.loadAndGetImageUrl().done( function ( url ) {
4565 this.$thumbnail.css( 'background-image', 'url( ' + url + ' )' );
4566 }.bind( this ) ).fail( function () {
4567 this.$thumbnail.append(
4568 new OO.ui.IconWidget( {
4569 icon: 'attachment',
4570 classes: [ 'oo-ui-selectFileWidget-noThumbnail-icon' ]
4571 } ).$element
4572 );
4573 }.bind( this ) ).always( function () {
4574 this.popPending();
4575 }.bind( this ) );
4576 this.$element.off( 'click' );
4577 }
4578 } else {
4579 if ( this.showDropTarget ) {
4580 this.$element.off( 'click' );
4581 this.$element.on( {
4582 click: this.onDropTargetClick.bind( this )
4583 } );
4584 this.$thumbnail
4585 .empty()
4586 .css( 'background-image', '' );
4587 }
4588 this.$element.addClass( 'oo-ui-selectFileWidget-empty' );
4589 this.setLabel( this.placeholder );
4590 }
4591 }
4592 };
4593
4594 /**
4595 * If the selected file is an image, get its URL and load it.
4596 *
4597 * @return {jQuery.Promise} Promise resolves with the image URL after it has loaded
4598 */
4599 OO.ui.SelectFileWidget.prototype.loadAndGetImageUrl = function () {
4600 var deferred = $.Deferred(),
4601 file = this.currentFile,
4602 reader = new FileReader();
4603
4604 if (
4605 file &&
4606 ( OO.getProp( file, 'type' ) || '' ).indexOf( 'image/' ) === 0 &&
4607 file.size < this.thumbnailSizeLimit * 1024 * 1024
4608 ) {
4609 reader.onload = function ( event ) {
4610 var img = document.createElement( 'img' );
4611 img.addEventListener( 'load', function () {
4612 if (
4613 img.naturalWidth === 0 ||
4614 img.naturalHeight === 0 ||
4615 img.complete === false
4616 ) {
4617 deferred.reject();
4618 } else {
4619 deferred.resolve( event.target.result );
4620 }
4621 } );
4622 img.src = event.target.result;
4623 };
4624 reader.readAsDataURL( file );
4625 } else {
4626 deferred.reject();
4627 }
4628
4629 return deferred.promise();
4630 };
4631
4632 /**
4633 * Add the input to the widget
4634 *
4635 * @private
4636 */
4637 OO.ui.SelectFileWidget.prototype.addInput = function () {
4638 if ( this.$input ) {
4639 this.$input.remove();
4640 }
4641
4642 if ( !this.isSupported ) {
4643 this.$input = null;
4644 return;
4645 }
4646
4647 this.$input = $( '<input>' ).attr( 'type', 'file' );
4648 this.$input.on( 'change', this.onFileSelectedHandler );
4649 this.$input.on( 'click', function ( e ) {
4650 // Prevents dropTarget to get clicked which calls
4651 // a click on this input
4652 e.stopPropagation();
4653 } );
4654 this.$input.attr( {
4655 tabindex: -1
4656 } );
4657 if ( this.accept ) {
4658 this.$input.attr( 'accept', this.accept.join( ', ' ) );
4659 }
4660 this.selectButton.$button.append( this.$input );
4661 };
4662
4663 /**
4664 * Determine if we should accept this file
4665 *
4666 * @private
4667 * @param {string} mimeType File MIME type
4668 * @return {boolean}
4669 */
4670 OO.ui.SelectFileWidget.prototype.isAllowedType = function ( mimeType ) {
4671 var i, mimeTest;
4672
4673 if ( !this.accept || !mimeType ) {
4674 return true;
4675 }
4676
4677 for ( i = 0; i < this.accept.length; i++ ) {
4678 mimeTest = this.accept[ i ];
4679 if ( mimeTest === mimeType ) {
4680 return true;
4681 } else if ( mimeTest.substr( -2 ) === '/*' ) {
4682 mimeTest = mimeTest.substr( 0, mimeTest.length - 1 );
4683 if ( mimeType.substr( 0, mimeTest.length ) === mimeTest ) {
4684 return true;
4685 }
4686 }
4687 }
4688
4689 return false;
4690 };
4691
4692 /**
4693 * Handle file selection from the input
4694 *
4695 * @private
4696 * @param {jQuery.Event} e
4697 */
4698 OO.ui.SelectFileWidget.prototype.onFileSelected = function ( e ) {
4699 var file = OO.getProp( e.target, 'files', 0 ) || null;
4700
4701 if ( file && !this.isAllowedType( file.type ) ) {
4702 file = null;
4703 }
4704
4705 this.setValue( file );
4706 this.addInput();
4707 };
4708
4709 /**
4710 * Handle clear button click events.
4711 *
4712 * @private
4713 */
4714 OO.ui.SelectFileWidget.prototype.onClearClick = function () {
4715 this.setValue( null );
4716 return false;
4717 };
4718
4719 /**
4720 * Handle key press events.
4721 *
4722 * @private
4723 * @param {jQuery.Event} e Key press event
4724 */
4725 OO.ui.SelectFileWidget.prototype.onKeyPress = function ( e ) {
4726 if ( this.isSupported && !this.isDisabled() && this.$input &&
4727 ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER )
4728 ) {
4729 this.$input.click();
4730 return false;
4731 }
4732 };
4733
4734 /**
4735 * Handle drop target click events.
4736 *
4737 * @private
4738 * @param {jQuery.Event} e Key press event
4739 */
4740 OO.ui.SelectFileWidget.prototype.onDropTargetClick = function () {
4741 if ( this.isSupported && !this.isDisabled() && this.$input ) {
4742 this.$input.click();
4743 return false;
4744 }
4745 };
4746
4747 /**
4748 * Handle drag enter and over events
4749 *
4750 * @private
4751 * @param {jQuery.Event} e Drag event
4752 */
4753 OO.ui.SelectFileWidget.prototype.onDragEnterOrOver = function ( e ) {
4754 var itemOrFile,
4755 droppableFile = false,
4756 dt = e.originalEvent.dataTransfer;
4757
4758 e.preventDefault();
4759 e.stopPropagation();
4760
4761 if ( this.isDisabled() || !this.isSupported ) {
4762 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
4763 dt.dropEffect = 'none';
4764 return false;
4765 }
4766
4767 // DataTransferItem and File both have a type property, but in Chrome files
4768 // have no information at this point.
4769 itemOrFile = OO.getProp( dt, 'items', 0 ) || OO.getProp( dt, 'files', 0 );
4770 if ( itemOrFile ) {
4771 if ( this.isAllowedType( itemOrFile.type ) ) {
4772 droppableFile = true;
4773 }
4774 // dt.types is Array-like, but not an Array
4775 } else if ( Array.prototype.indexOf.call( OO.getProp( dt, 'types' ) || [], 'Files' ) !== -1 ) {
4776 // File information is not available at this point for security so just assume
4777 // it is acceptable for now.
4778 // https://bugzilla.mozilla.org/show_bug.cgi?id=640534
4779 droppableFile = true;
4780 }
4781
4782 this.$element.toggleClass( 'oo-ui-selectFileWidget-canDrop', droppableFile );
4783 if ( !droppableFile ) {
4784 dt.dropEffect = 'none';
4785 }
4786
4787 return false;
4788 };
4789
4790 /**
4791 * Handle drag leave events
4792 *
4793 * @private
4794 * @param {jQuery.Event} e Drag event
4795 */
4796 OO.ui.SelectFileWidget.prototype.onDragLeave = function () {
4797 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
4798 };
4799
4800 /**
4801 * Handle drop events
4802 *
4803 * @private
4804 * @param {jQuery.Event} e Drop event
4805 */
4806 OO.ui.SelectFileWidget.prototype.onDrop = function ( e ) {
4807 var file = null,
4808 dt = e.originalEvent.dataTransfer;
4809
4810 e.preventDefault();
4811 e.stopPropagation();
4812 this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
4813
4814 if ( this.isDisabled() || !this.isSupported ) {
4815 return false;
4816 }
4817
4818 file = OO.getProp( dt, 'files', 0 );
4819 if ( file && !this.isAllowedType( file.type ) ) {
4820 file = null;
4821 }
4822 if ( file ) {
4823 this.setValue( file );
4824 }
4825
4826 return false;
4827 };
4828
4829 /**
4830 * @inheritdoc
4831 */
4832 OO.ui.SelectFileWidget.prototype.setDisabled = function ( disabled ) {
4833 OO.ui.SelectFileWidget.parent.prototype.setDisabled.call( this, disabled );
4834 if ( this.selectButton ) {
4835 this.selectButton.setDisabled( disabled );
4836 }
4837 if ( this.clearButton ) {
4838 this.clearButton.setDisabled( disabled );
4839 }
4840 return this;
4841 };
4842
4843 /**
4844 * SearchWidgets combine a {@link OO.ui.TextInputWidget text input field}, where users can type a search query,
4845 * and a menu of search results, which is displayed beneath the query
4846 * field. Unlike {@link OO.ui.mixin.LookupElement lookup menus}, search result menus are always visible to the user.
4847 * Users can choose an item from the menu or type a query into the text field to search for a matching result item.
4848 * In general, search widgets are used inside a separate {@link OO.ui.Dialog dialog} window.
4849 *
4850 * Each time the query is changed, the search result menu is cleared and repopulated. Please see
4851 * the [OOjs UI demos][1] for an example.
4852 *
4853 * [1]: https://tools.wmflabs.org/oojs-ui/oojs-ui/demos/#dialogs-mediawiki-vector-ltr
4854 *
4855 * @class
4856 * @extends OO.ui.Widget
4857 *
4858 * @constructor
4859 * @param {Object} [config] Configuration options
4860 * @cfg {string|jQuery} [placeholder] Placeholder text for query input
4861 * @cfg {string} [value] Initial query value
4862 */
4863 OO.ui.SearchWidget = function OoUiSearchWidget( config ) {
4864 // Configuration initialization
4865 config = config || {};
4866
4867 // Parent constructor
4868 OO.ui.SearchWidget.parent.call( this, config );
4869
4870 // Properties
4871 this.query = new OO.ui.TextInputWidget( {
4872 icon: 'search',
4873 placeholder: config.placeholder,
4874 value: config.value
4875 } );
4876 this.results = new OO.ui.SelectWidget();
4877 this.$query = $( '<div>' );
4878 this.$results = $( '<div>' );
4879
4880 // Events
4881 this.query.connect( this, {
4882 change: 'onQueryChange',
4883 enter: 'onQueryEnter'
4884 } );
4885 this.query.$input.on( 'keydown', this.onQueryKeydown.bind( this ) );
4886
4887 // Initialization
4888 this.$query
4889 .addClass( 'oo-ui-searchWidget-query' )
4890 .append( this.query.$element );
4891 this.$results
4892 .addClass( 'oo-ui-searchWidget-results' )
4893 .append( this.results.$element );
4894 this.$element
4895 .addClass( 'oo-ui-searchWidget' )
4896 .append( this.$results, this.$query );
4897 };
4898
4899 /* Setup */
4900
4901 OO.inheritClass( OO.ui.SearchWidget, OO.ui.Widget );
4902
4903 /* Methods */
4904
4905 /**
4906 * Handle query key down events.
4907 *
4908 * @private
4909 * @param {jQuery.Event} e Key down event
4910 */
4911 OO.ui.SearchWidget.prototype.onQueryKeydown = function ( e ) {
4912 var highlightedItem, nextItem,
4913 dir = e.which === OO.ui.Keys.DOWN ? 1 : ( e.which === OO.ui.Keys.UP ? -1 : 0 );
4914
4915 if ( dir ) {
4916 highlightedItem = this.results.getHighlightedItem();
4917 if ( !highlightedItem ) {
4918 highlightedItem = this.results.getSelectedItem();
4919 }
4920 nextItem = this.results.getRelativeSelectableItem( highlightedItem, dir );
4921 this.results.highlightItem( nextItem );
4922 nextItem.scrollElementIntoView();
4923 }
4924 };
4925
4926 /**
4927 * Handle select widget select events.
4928 *
4929 * Clears existing results. Subclasses should repopulate items according to new query.
4930 *
4931 * @private
4932 * @param {string} value New value
4933 */
4934 OO.ui.SearchWidget.prototype.onQueryChange = function () {
4935 // Reset
4936 this.results.clearItems();
4937 };
4938
4939 /**
4940 * Handle select widget enter key events.
4941 *
4942 * Chooses highlighted item.
4943 *
4944 * @private
4945 * @param {string} value New value
4946 */
4947 OO.ui.SearchWidget.prototype.onQueryEnter = function () {
4948 var highlightedItem = this.results.getHighlightedItem();
4949 if ( highlightedItem ) {
4950 this.results.chooseItem( highlightedItem );
4951 }
4952 };
4953
4954 /**
4955 * Get the query input.
4956 *
4957 * @return {OO.ui.TextInputWidget} Query input
4958 */
4959 OO.ui.SearchWidget.prototype.getQuery = function () {
4960 return this.query;
4961 };
4962
4963 /**
4964 * Get the search results menu.
4965 *
4966 * @return {OO.ui.SelectWidget} Menu of search results
4967 */
4968 OO.ui.SearchWidget.prototype.getResults = function () {
4969 return this.results;
4970 };
4971
4972 /**
4973 * NumberInputWidgets combine a {@link OO.ui.TextInputWidget text input} (where a value
4974 * can be entered manually) and two {@link OO.ui.ButtonWidget button widgets}
4975 * (to adjust the value in increments) to allow the user to enter a number.
4976 *
4977 * @example
4978 * // Example: A NumberInputWidget.
4979 * var numberInput = new OO.ui.NumberInputWidget( {
4980 * label: 'NumberInputWidget',
4981 * input: { value: 5 },
4982 * min: 1,
4983 * max: 10
4984 * } );
4985 * $( 'body' ).append( numberInput.$element );
4986 *
4987 * @class
4988 * @extends OO.ui.Widget
4989 *
4990 * @constructor
4991 * @param {Object} [config] Configuration options
4992 * @cfg {Object} [input] Configuration options to pass to the {@link OO.ui.TextInputWidget text input widget}.
4993 * @cfg {Object} [minusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget decrementing button widget}.
4994 * @cfg {Object} [plusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget incrementing button widget}.
4995 * @cfg {boolean} [isInteger=false] Whether the field accepts only integer values.
4996 * @cfg {number} [min=-Infinity] Minimum allowed value
4997 * @cfg {number} [max=Infinity] Maximum allowed value
4998 * @cfg {number} [step=1] Delta when using the buttons or up/down arrow keys
4999 * @cfg {number|null} [pageStep] Delta when using the page-up/page-down keys. Defaults to 10 times #step.
5000 * @cfg {boolean} [showButtons=true] Whether to show the plus and minus buttons.
5001 */
5002 OO.ui.NumberInputWidget = function OoUiNumberInputWidget( config ) {
5003 // Configuration initialization
5004 config = $.extend( {
5005 isInteger: false,
5006 min: -Infinity,
5007 max: Infinity,
5008 step: 1,
5009 pageStep: null,
5010 showButtons: true
5011 }, config );
5012
5013 // Parent constructor
5014 OO.ui.NumberInputWidget.parent.call( this, config );
5015
5016 // Properties
5017 this.input = new OO.ui.TextInputWidget( $.extend(
5018 {
5019 disabled: this.isDisabled(),
5020 type: 'number'
5021 },
5022 config.input
5023 ) );
5024 if ( config.showButtons ) {
5025 this.minusButton = new OO.ui.ButtonWidget( $.extend(
5026 {
5027 disabled: this.isDisabled(),
5028 tabIndex: -1,
5029 classes: [ 'oo-ui-numberInputWidget-minusButton' ],
5030 label: '−'
5031 },
5032 config.minusButton
5033 ) );
5034 this.plusButton = new OO.ui.ButtonWidget( $.extend(
5035 {
5036 disabled: this.isDisabled(),
5037 tabIndex: -1,
5038 classes: [ 'oo-ui-numberInputWidget-plusButton' ],
5039 label: '+'
5040 },
5041 config.plusButton
5042 ) );
5043 }
5044
5045 // Events
5046 this.input.connect( this, {
5047 change: this.emit.bind( this, 'change' ),
5048 enter: this.emit.bind( this, 'enter' )
5049 } );
5050 this.input.$input.on( {
5051 keydown: this.onKeyDown.bind( this ),
5052 'wheel mousewheel DOMMouseScroll': this.onWheel.bind( this )
5053 } );
5054 if ( config.showButtons ) {
5055 this.plusButton.connect( this, {
5056 click: [ 'onButtonClick', +1 ]
5057 } );
5058 this.minusButton.connect( this, {
5059 click: [ 'onButtonClick', -1 ]
5060 } );
5061 }
5062
5063 // Initialization
5064 this.setIsInteger( !!config.isInteger );
5065 this.setRange( config.min, config.max );
5066 this.setStep( config.step, config.pageStep );
5067
5068 this.$field = $( '<div>' ).addClass( 'oo-ui-numberInputWidget-field' )
5069 .append( this.input.$element );
5070 this.$element.addClass( 'oo-ui-numberInputWidget' ).append( this.$field );
5071 if ( config.showButtons ) {
5072 this.$field
5073 .prepend( this.minusButton.$element )
5074 .append( this.plusButton.$element );
5075 this.$element.addClass( 'oo-ui-numberInputWidget-buttoned' );
5076 }
5077 this.input.setValidation( this.validateNumber.bind( this ) );
5078 };
5079
5080 /* Setup */
5081
5082 OO.inheritClass( OO.ui.NumberInputWidget, OO.ui.Widget );
5083
5084 /* Events */
5085
5086 /**
5087 * A `change` event is emitted when the value of the input changes.
5088 *
5089 * @event change
5090 */
5091
5092 /**
5093 * An `enter` event is emitted when the user presses 'enter' inside the text box.
5094 *
5095 * @event enter
5096 */
5097
5098 /* Methods */
5099
5100 /**
5101 * Set whether only integers are allowed
5102 *
5103 * @param {boolean} flag
5104 */
5105 OO.ui.NumberInputWidget.prototype.setIsInteger = function ( flag ) {
5106 this.isInteger = !!flag;
5107 this.input.setValidityFlag();
5108 };
5109
5110 /**
5111 * Get whether only integers are allowed
5112 *
5113 * @return {boolean} Flag value
5114 */
5115 OO.ui.NumberInputWidget.prototype.getIsInteger = function () {
5116 return this.isInteger;
5117 };
5118
5119 /**
5120 * Set the range of allowed values
5121 *
5122 * @param {number} min Minimum allowed value
5123 * @param {number} max Maximum allowed value
5124 */
5125 OO.ui.NumberInputWidget.prototype.setRange = function ( min, max ) {
5126 if ( min > max ) {
5127 throw new Error( 'Minimum (' + min + ') must not be greater than maximum (' + max + ')' );
5128 }
5129 this.min = min;
5130 this.max = max;
5131 this.input.setValidityFlag();
5132 };
5133
5134 /**
5135 * Get the current range
5136 *
5137 * @return {number[]} Minimum and maximum values
5138 */
5139 OO.ui.NumberInputWidget.prototype.getRange = function () {
5140 return [ this.min, this.max ];
5141 };
5142
5143 /**
5144 * Set the stepping deltas
5145 *
5146 * @param {number} step Normal step
5147 * @param {number|null} pageStep Page step. If null, 10 * step will be used.
5148 */
5149 OO.ui.NumberInputWidget.prototype.setStep = function ( step, pageStep ) {
5150 if ( step <= 0 ) {
5151 throw new Error( 'Step value must be positive' );
5152 }
5153 if ( pageStep === null ) {
5154 pageStep = step * 10;
5155 } else if ( pageStep <= 0 ) {
5156 throw new Error( 'Page step value must be positive' );
5157 }
5158 this.step = step;
5159 this.pageStep = pageStep;
5160 };
5161
5162 /**
5163 * Get the current stepping values
5164 *
5165 * @return {number[]} Step and page step
5166 */
5167 OO.ui.NumberInputWidget.prototype.getStep = function () {
5168 return [ this.step, this.pageStep ];
5169 };
5170
5171 /**
5172 * Get the current value of the widget
5173 *
5174 * @return {string}
5175 */
5176 OO.ui.NumberInputWidget.prototype.getValue = function () {
5177 return this.input.getValue();
5178 };
5179
5180 /**
5181 * Get the current value of the widget as a number
5182 *
5183 * @return {number} May be NaN, or an invalid number
5184 */
5185 OO.ui.NumberInputWidget.prototype.getNumericValue = function () {
5186 return +this.input.getValue();
5187 };
5188
5189 /**
5190 * Set the value of the widget
5191 *
5192 * @param {string} value Invalid values are allowed
5193 */
5194 OO.ui.NumberInputWidget.prototype.setValue = function ( value ) {
5195 this.input.setValue( value );
5196 };
5197
5198 /**
5199 * Adjust the value of the widget
5200 *
5201 * @param {number} delta Adjustment amount
5202 */
5203 OO.ui.NumberInputWidget.prototype.adjustValue = function ( delta ) {
5204 var n, v = this.getNumericValue();
5205
5206 delta = +delta;
5207 if ( isNaN( delta ) || !isFinite( delta ) ) {
5208 throw new Error( 'Delta must be a finite number' );
5209 }
5210
5211 if ( isNaN( v ) ) {
5212 n = 0;
5213 } else {
5214 n = v + delta;
5215 n = Math.max( Math.min( n, this.max ), this.min );
5216 if ( this.isInteger ) {
5217 n = Math.round( n );
5218 }
5219 }
5220
5221 if ( n !== v ) {
5222 this.setValue( n );
5223 }
5224 };
5225
5226 /**
5227 * Validate input
5228 *
5229 * @private
5230 * @param {string} value Field value
5231 * @return {boolean}
5232 */
5233 OO.ui.NumberInputWidget.prototype.validateNumber = function ( value ) {
5234 var n = +value;
5235 if ( isNaN( n ) || !isFinite( n ) ) {
5236 return false;
5237 }
5238
5239 if ( this.isInteger && Math.floor( n ) !== n ) {
5240 return false;
5241 }
5242
5243 if ( n < this.min || n > this.max ) {
5244 return false;
5245 }
5246
5247 return true;
5248 };
5249
5250 /**
5251 * Handle mouse click events.
5252 *
5253 * @private
5254 * @param {number} dir +1 or -1
5255 */
5256 OO.ui.NumberInputWidget.prototype.onButtonClick = function ( dir ) {
5257 this.adjustValue( dir * this.step );
5258 };
5259
5260 /**
5261 * Handle mouse wheel events.
5262 *
5263 * @private
5264 * @param {jQuery.Event} event
5265 */
5266 OO.ui.NumberInputWidget.prototype.onWheel = function ( event ) {
5267 var delta = 0;
5268
5269 if ( !this.isDisabled() && this.input.$input.is( ':focus' ) ) {
5270 // Standard 'wheel' event
5271 if ( event.originalEvent.deltaMode !== undefined ) {
5272 this.sawWheelEvent = true;
5273 }
5274 if ( event.originalEvent.deltaY ) {
5275 delta = -event.originalEvent.deltaY;
5276 } else if ( event.originalEvent.deltaX ) {
5277 delta = event.originalEvent.deltaX;
5278 }
5279
5280 // Non-standard events
5281 if ( !this.sawWheelEvent ) {
5282 if ( event.originalEvent.wheelDeltaX ) {
5283 delta = -event.originalEvent.wheelDeltaX;
5284 } else if ( event.originalEvent.wheelDeltaY ) {
5285 delta = event.originalEvent.wheelDeltaY;
5286 } else if ( event.originalEvent.wheelDelta ) {
5287 delta = event.originalEvent.wheelDelta;
5288 } else if ( event.originalEvent.detail ) {
5289 delta = -event.originalEvent.detail;
5290 }
5291 }
5292
5293 if ( delta ) {
5294 delta = delta < 0 ? -1 : 1;
5295 this.adjustValue( delta * this.step );
5296 }
5297
5298 return false;
5299 }
5300 };
5301
5302 /**
5303 * Handle key down events.
5304 *
5305 * @private
5306 * @param {jQuery.Event} e Key down event
5307 */
5308 OO.ui.NumberInputWidget.prototype.onKeyDown = function ( e ) {
5309 if ( !this.isDisabled() ) {
5310 switch ( e.which ) {
5311 case OO.ui.Keys.UP:
5312 this.adjustValue( this.step );
5313 return false;
5314 case OO.ui.Keys.DOWN:
5315 this.adjustValue( -this.step );
5316 return false;
5317 case OO.ui.Keys.PAGEUP:
5318 this.adjustValue( this.pageStep );
5319 return false;
5320 case OO.ui.Keys.PAGEDOWN:
5321 this.adjustValue( -this.pageStep );
5322 return false;
5323 }
5324 }
5325 };
5326
5327 /**
5328 * @inheritdoc
5329 */
5330 OO.ui.NumberInputWidget.prototype.setDisabled = function ( disabled ) {
5331 // Parent method
5332 OO.ui.NumberInputWidget.parent.prototype.setDisabled.call( this, disabled );
5333
5334 if ( this.input ) {
5335 this.input.setDisabled( this.isDisabled() );
5336 }
5337 if ( this.minusButton ) {
5338 this.minusButton.setDisabled( this.isDisabled() );
5339 }
5340 if ( this.plusButton ) {
5341 this.plusButton.setDisabled( this.isDisabled() );
5342 }
5343
5344 return this;
5345 };
5346
5347 }( OO ) );