Release notes: https://phabricator.wikimedia.org/diffusion/GOJU/browse/master/History.md;v0.17.10 Change-Id: I4faf83e301417ef5721a81a4a69890854e6c266b
5315 lines
143 KiB
JavaScript
5315 lines
143 KiB
JavaScript
/*!
|
||
* OOjs UI v0.17.10
|
||
* https://www.mediawiki.org/wiki/OOjs_UI
|
||
*
|
||
* Copyright 2011–2016 OOjs UI Team and other contributors.
|
||
* Released under the MIT license
|
||
* http://oojs.mit-license.org
|
||
*
|
||
* Date: 2016-10-03T18:59:01Z
|
||
*/
|
||
( function ( OO ) {
|
||
|
||
'use strict';
|
||
|
||
/**
|
||
* DraggableElement is a mixin class used to create elements that can be clicked
|
||
* and dragged by a mouse to a new position within a group. This class must be used
|
||
* in conjunction with OO.ui.mixin.DraggableGroupElement, which provides a container for
|
||
* the draggable elements.
|
||
*
|
||
* @abstract
|
||
* @class
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {jQuery} [$handle] The part of the element which can be used for dragging, defaults to the whole element
|
||
*/
|
||
OO.ui.mixin.DraggableElement = function OoUiMixinDraggableElement( config ) {
|
||
config = config || {};
|
||
|
||
// Properties
|
||
this.index = null;
|
||
this.$handle = config.$handle || this.$element;
|
||
this.wasHandleUsed = null;
|
||
|
||
// Initialize and events
|
||
this.$element.addClass( 'oo-ui-draggableElement' )
|
||
// We make the entire element draggable, not just the handle, so that
|
||
// the whole element appears to move. wasHandleUsed prevents drags from
|
||
// starting outside the handle
|
||
.attr( 'draggable', true )
|
||
.on( {
|
||
mousedown: this.onDragMouseDown.bind( this ),
|
||
dragstart: this.onDragStart.bind( this ),
|
||
dragover: this.onDragOver.bind( this ),
|
||
dragend: this.onDragEnd.bind( this ),
|
||
drop: this.onDrop.bind( this )
|
||
} );
|
||
this.$handle.addClass( 'oo-ui-draggableElement-handle' );
|
||
};
|
||
|
||
OO.initClass( OO.ui.mixin.DraggableElement );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* @event dragstart
|
||
*
|
||
* A dragstart event is emitted when the user clicks and begins dragging an item.
|
||
* @param {OO.ui.mixin.DraggableElement} item The item the user has clicked and is dragging with the mouse.
|
||
*/
|
||
|
||
/**
|
||
* @event dragend
|
||
* A dragend event is emitted when the user drags an item and releases the mouse,
|
||
* thus terminating the drag operation.
|
||
*/
|
||
|
||
/**
|
||
* @event drop
|
||
* A drop event is emitted when the user drags an item and then releases the mouse button
|
||
* over a valid target.
|
||
*/
|
||
|
||
/* Static Properties */
|
||
|
||
/**
|
||
* @inheritdoc OO.ui.mixin.ButtonElement
|
||
*/
|
||
OO.ui.mixin.DraggableElement.static.cancelButtonMouseDownEvents = false;
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Respond to mousedown event.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e jQuery event
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.onDragMouseDown = function ( e ) {
|
||
this.wasHandleUsed =
|
||
// Optimization: if the handle is the whole element this is always true
|
||
this.$handle[ 0 ] === this.$element[ 0 ] ||
|
||
// Check the mousedown occurred inside the handle
|
||
OO.ui.contains( this.$handle[ 0 ], e.target, true );
|
||
};
|
||
|
||
/**
|
||
* Respond to dragstart event.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e jQuery event
|
||
* @fires dragstart
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.onDragStart = function ( e ) {
|
||
var element = this,
|
||
dataTransfer = e.originalEvent.dataTransfer;
|
||
|
||
if ( !this.wasHandleUsed ) {
|
||
return false;
|
||
}
|
||
|
||
// Define drop effect
|
||
dataTransfer.dropEffect = 'none';
|
||
dataTransfer.effectAllowed = 'move';
|
||
// Support: Firefox
|
||
// We must set up a dataTransfer data property or Firefox seems to
|
||
// ignore the fact the element is draggable.
|
||
try {
|
||
dataTransfer.setData( 'application-x/OOjs-UI-draggable', this.getIndex() );
|
||
} catch ( err ) {
|
||
// The above is only for Firefox. Move on if it fails.
|
||
}
|
||
// Briefly add a 'clone' class to style the browser's native drag image
|
||
this.$element.addClass( 'oo-ui-draggableElement-clone' );
|
||
// Add placeholder class after the browser has rendered the clone
|
||
setTimeout( function () {
|
||
element.$element
|
||
.removeClass( 'oo-ui-draggableElement-clone' )
|
||
.addClass( 'oo-ui-draggableElement-placeholder' );
|
||
} );
|
||
// Emit event
|
||
this.emit( 'dragstart', this );
|
||
return true;
|
||
};
|
||
|
||
/**
|
||
* Respond to dragend event.
|
||
*
|
||
* @private
|
||
* @fires dragend
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.onDragEnd = function () {
|
||
this.$element.removeClass( 'oo-ui-draggableElement-placeholder' );
|
||
this.emit( 'dragend' );
|
||
};
|
||
|
||
/**
|
||
* Handle drop event.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e jQuery event
|
||
* @fires drop
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.onDrop = function ( e ) {
|
||
e.preventDefault();
|
||
this.emit( 'drop', e );
|
||
};
|
||
|
||
/**
|
||
* In order for drag/drop to work, the dragover event must
|
||
* return false and stop propogation.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.onDragOver = function ( e ) {
|
||
e.preventDefault();
|
||
};
|
||
|
||
/**
|
||
* Set item index.
|
||
* Store it in the DOM so we can access from the widget drag event
|
||
*
|
||
* @private
|
||
* @param {number} index Item index
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.setIndex = function ( index ) {
|
||
if ( this.index !== index ) {
|
||
this.index = index;
|
||
this.$element.data( 'index', index );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get item index
|
||
*
|
||
* @private
|
||
* @return {number} Item index
|
||
*/
|
||
OO.ui.mixin.DraggableElement.prototype.getIndex = function () {
|
||
return this.index;
|
||
};
|
||
|
||
/**
|
||
* DraggableGroupElement is a mixin class used to create a group element to
|
||
* contain draggable elements, which are items that can be clicked and dragged by a mouse.
|
||
* The class is used with OO.ui.mixin.DraggableElement.
|
||
*
|
||
* @abstract
|
||
* @class
|
||
* @mixins OO.ui.mixin.GroupElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {string} [orientation] Item orientation: 'horizontal' or 'vertical'. The orientation
|
||
* should match the layout of the items. Items displayed in a single row
|
||
* or in several rows should use horizontal orientation. The vertical orientation should only be
|
||
* used when the items are displayed in a single column. Defaults to 'vertical'
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement = function OoUiMixinDraggableGroupElement( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.mixin.GroupElement.call( this, config );
|
||
|
||
// Properties
|
||
this.orientation = config.orientation || 'vertical';
|
||
this.dragItem = null;
|
||
this.itemKeys = {};
|
||
this.dir = null;
|
||
this.itemsOrder = null;
|
||
|
||
// Events
|
||
this.aggregate( {
|
||
dragstart: 'itemDragStart',
|
||
dragend: 'itemDragEnd',
|
||
drop: 'itemDrop'
|
||
} );
|
||
this.connect( this, {
|
||
itemDragStart: 'onItemDragStart',
|
||
itemDrop: 'onItemDropOrDragEnd',
|
||
itemDragEnd: 'onItemDropOrDragEnd'
|
||
} );
|
||
|
||
// Initialize
|
||
if ( Array.isArray( config.items ) ) {
|
||
this.addItems( config.items );
|
||
}
|
||
this.$element
|
||
.addClass( 'oo-ui-draggableGroupElement' )
|
||
.append( this.$status )
|
||
.toggleClass( 'oo-ui-draggableGroupElement-horizontal', this.orientation === 'horizontal' );
|
||
};
|
||
|
||
/* Setup */
|
||
OO.mixinClass( OO.ui.mixin.DraggableGroupElement, OO.ui.mixin.GroupElement );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* An item has been dragged to a new position, but not yet dropped.
|
||
*
|
||
* @event drag
|
||
* @param {OO.ui.mixin.DraggableElement} item Dragged item
|
||
* @param {number} [newIndex] New index for the item
|
||
*/
|
||
|
||
/**
|
||
* And item has been dropped at a new position.
|
||
*
|
||
* @event reorder
|
||
* @param {OO.ui.mixin.DraggableElement} item Reordered item
|
||
* @param {number} [newIndex] New index for the item
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Respond to item drag start event
|
||
*
|
||
* @private
|
||
* @param {OO.ui.mixin.DraggableElement} item Dragged item
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.onItemDragStart = function ( item ) {
|
||
// Make a shallow copy of this.items so we can re-order it during previews
|
||
// without affecting the original array.
|
||
this.itemsOrder = this.items.slice();
|
||
this.updateIndexes();
|
||
if ( this.orientation === 'horizontal' ) {
|
||
// Calculate and cache directionality on drag start - it's a little
|
||
// expensive and it shouldn't change while dragging.
|
||
this.dir = this.$element.css( 'direction' );
|
||
}
|
||
this.setDragItem( item );
|
||
};
|
||
|
||
/**
|
||
* Update the index properties of the items
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.updateIndexes = function () {
|
||
var i, len;
|
||
|
||
// Map the index of each object
|
||
for ( i = 0, len = this.itemsOrder.length; i < len; i++ ) {
|
||
this.itemsOrder[ i ].setIndex( i );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle drop or dragend event and switch the order of the items accordingly
|
||
*
|
||
* @private
|
||
* @param {OO.ui.mixin.DraggableElement} item Dropped item
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.onItemDropOrDragEnd = function () {
|
||
var targetIndex, originalIndex,
|
||
item = this.getDragItem();
|
||
|
||
// TODO: Figure out a way to configure a list of legally droppable
|
||
// elements even if they are not yet in the list
|
||
if ( item ) {
|
||
originalIndex = this.items.indexOf( item );
|
||
// If the item has moved forward, add one to the index to account for the left shift
|
||
targetIndex = item.getIndex() + ( item.getIndex() > originalIndex ? 1 : 0 );
|
||
if ( targetIndex !== originalIndex ) {
|
||
this.reorder( this.getDragItem(), targetIndex );
|
||
this.emit( 'reorder', this.getDragItem(), targetIndex );
|
||
}
|
||
this.updateIndexes();
|
||
}
|
||
this.unsetDragItem();
|
||
// Return false to prevent propogation
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Respond to dragover event
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Dragover event
|
||
* @fires reorder
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.onDragOver = function ( e ) {
|
||
var overIndex, targetIndex,
|
||
item = this.getDragItem(),
|
||
dragItemIndex = item.getIndex();
|
||
|
||
// Get the OptionWidget item we are dragging over
|
||
overIndex = $( e.target ).closest( '.oo-ui-draggableElement' ).data( 'index' );
|
||
|
||
if ( overIndex !== undefined && overIndex !== dragItemIndex ) {
|
||
targetIndex = overIndex + ( overIndex > dragItemIndex ? 1 : 0 );
|
||
|
||
if ( targetIndex > 0 ) {
|
||
this.$group.children().eq( targetIndex - 1 ).after( item.$element );
|
||
} else {
|
||
this.$group.prepend( item.$element );
|
||
}
|
||
// Move item in itemsOrder array
|
||
this.itemsOrder.splice( overIndex, 0,
|
||
this.itemsOrder.splice( dragItemIndex, 1 )[ 0 ]
|
||
);
|
||
this.updateIndexes();
|
||
this.emit( 'drag', item, targetIndex );
|
||
}
|
||
// Prevent default
|
||
e.preventDefault();
|
||
};
|
||
|
||
/**
|
||
* Reorder the items in the group
|
||
*
|
||
* @param {OO.ui.mixin.DraggableElement} item Reordered item
|
||
* @param {number} newIndex New index
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.reorder = function ( item, newIndex ) {
|
||
this.addItems( [ item ], newIndex );
|
||
};
|
||
|
||
/**
|
||
* Set a dragged item
|
||
*
|
||
* @param {OO.ui.mixin.DraggableElement} item Dragged item
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.setDragItem = function ( item ) {
|
||
if ( this.dragItem !== item ) {
|
||
this.dragItem = item;
|
||
this.$element.on( 'dragover', this.onDragOver.bind( this ) );
|
||
this.$element.addClass( 'oo-ui-draggableGroupElement-dragging' );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Unset the current dragged item
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.unsetDragItem = function () {
|
||
if ( this.dragItem ) {
|
||
this.dragItem = null;
|
||
this.$element.off( 'dragover' );
|
||
this.$element.removeClass( 'oo-ui-draggableGroupElement-dragging' );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the item that is currently being dragged.
|
||
*
|
||
* @return {OO.ui.mixin.DraggableElement|null} The currently dragged item, or `null` if no item is being dragged
|
||
*/
|
||
OO.ui.mixin.DraggableGroupElement.prototype.getDragItem = function () {
|
||
return this.dragItem;
|
||
};
|
||
|
||
/**
|
||
* RequestManager is a mixin that manages the lifecycle of a promise-backed request for a widget, such as
|
||
* the {@link OO.ui.mixin.LookupElement}.
|
||
*
|
||
* @class
|
||
* @abstract
|
||
*
|
||
* @constructor
|
||
*/
|
||
OO.ui.mixin.RequestManager = function OoUiMixinRequestManager() {
|
||
this.requestCache = {};
|
||
this.requestQuery = null;
|
||
this.requestRequest = null;
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.initClass( OO.ui.mixin.RequestManager );
|
||
|
||
/**
|
||
* Get request results for the current query.
|
||
*
|
||
* @return {jQuery.Promise} Promise object which will be passed response data as the first argument of
|
||
* the done event. If the request was aborted to make way for a subsequent request, this promise
|
||
* may not be rejected, depending on what jQuery feels like doing.
|
||
*/
|
||
OO.ui.mixin.RequestManager.prototype.getRequestData = function () {
|
||
var widget = this,
|
||
value = this.getRequestQuery(),
|
||
deferred = $.Deferred(),
|
||
ourRequest;
|
||
|
||
this.abortRequest();
|
||
if ( Object.prototype.hasOwnProperty.call( this.requestCache, value ) ) {
|
||
deferred.resolve( this.requestCache[ value ] );
|
||
} else {
|
||
if ( this.pushPending ) {
|
||
this.pushPending();
|
||
}
|
||
this.requestQuery = value;
|
||
ourRequest = this.requestRequest = this.getRequest();
|
||
ourRequest
|
||
.always( function () {
|
||
// We need to pop pending even if this is an old request, otherwise
|
||
// the widget will remain pending forever.
|
||
// TODO: this assumes that an aborted request will fail or succeed soon after
|
||
// being aborted, or at least eventually. It would be nice if we could popPending()
|
||
// at abort time, but only if we knew that we hadn't already called popPending()
|
||
// for that request.
|
||
if ( widget.popPending ) {
|
||
widget.popPending();
|
||
}
|
||
} )
|
||
.done( function ( response ) {
|
||
// If this is an old request (and aborting it somehow caused it to still succeed),
|
||
// ignore its success completely
|
||
if ( ourRequest === widget.requestRequest ) {
|
||
widget.requestQuery = null;
|
||
widget.requestRequest = null;
|
||
widget.requestCache[ value ] = widget.getRequestCacheDataFromResponse( response );
|
||
deferred.resolve( widget.requestCache[ value ] );
|
||
}
|
||
} )
|
||
.fail( function () {
|
||
// If this is an old request (or a request failing because it's being aborted),
|
||
// ignore its failure completely
|
||
if ( ourRequest === widget.requestRequest ) {
|
||
widget.requestQuery = null;
|
||
widget.requestRequest = null;
|
||
deferred.reject();
|
||
}
|
||
} );
|
||
}
|
||
return deferred.promise();
|
||
};
|
||
|
||
/**
|
||
* Abort the currently pending request, if any.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.mixin.RequestManager.prototype.abortRequest = function () {
|
||
var oldRequest = this.requestRequest;
|
||
if ( oldRequest ) {
|
||
// First unset this.requestRequest to the fail handler will notice
|
||
// that the request is no longer current
|
||
this.requestRequest = null;
|
||
this.requestQuery = null;
|
||
oldRequest.abort();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the query to be made.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @return {string} query to be used
|
||
*/
|
||
OO.ui.mixin.RequestManager.prototype.getRequestQuery = null;
|
||
|
||
/**
|
||
* Get a new request object of the current query value.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
|
||
*/
|
||
OO.ui.mixin.RequestManager.prototype.getRequest = null;
|
||
|
||
/**
|
||
* Pre-process data returned by the request from #getRequest.
|
||
*
|
||
* The return value of this function will be cached, and any further queries for the given value
|
||
* will use the cache rather than doing API requests.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @param {Mixed} response Response from server
|
||
* @return {Mixed} Cached result data
|
||
*/
|
||
OO.ui.mixin.RequestManager.prototype.getRequestCacheDataFromResponse = null;
|
||
|
||
/**
|
||
* LookupElement is a mixin that creates a {@link OO.ui.FloatingMenuSelectWidget menu} of suggested values for
|
||
* a {@link OO.ui.TextInputWidget text input widget}. Suggested values are based on the characters the user types
|
||
* into the text input field and, in general, the menu is only displayed when the user types. If a suggested value is chosen
|
||
* from the lookup menu, that value becomes the value of the input field.
|
||
*
|
||
* Note that a new menu of suggested items is displayed when a value is chosen from the lookup menu. If this is
|
||
* not the desired behavior, disable lookup menus with the #setLookupsDisabled method, then set the value, then
|
||
* re-enable lookups.
|
||
*
|
||
* See the [OOjs UI demos][1] for an example.
|
||
*
|
||
* [1]: https://tools.wmflabs.org/oojs-ui/oojs-ui/demos/index.html#widgets-apex-vector-ltr
|
||
*
|
||
* @class
|
||
* @abstract
|
||
* @mixins OO.ui.mixin.RequestManager
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {jQuery} [$overlay] Overlay for the lookup menu; defaults to relative positioning
|
||
* @cfg {jQuery} [$container=this.$element] The container element. The lookup menu is rendered beneath the specified element.
|
||
* @cfg {boolean} [allowSuggestionsWhenEmpty=false] Request and display a lookup menu when the text input is empty.
|
||
* By default, the lookup menu is not generated and displayed until the user begins to type.
|
||
* @cfg {boolean} [highlightFirst=true] Whether the first lookup result should be highlighted (so, that the user can
|
||
* take it over into the input with simply pressing return) automatically or not.
|
||
*/
|
||
OO.ui.mixin.LookupElement = function OoUiMixinLookupElement( config ) {
|
||
// Configuration initialization
|
||
config = $.extend( { highlightFirst: true }, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.RequestManager.call( this, config );
|
||
|
||
// Properties
|
||
this.$overlay = config.$overlay || this.$element;
|
||
this.lookupMenu = new OO.ui.FloatingMenuSelectWidget( {
|
||
widget: this,
|
||
input: this,
|
||
$container: config.$container || this.$element
|
||
} );
|
||
|
||
this.allowSuggestionsWhenEmpty = config.allowSuggestionsWhenEmpty || false;
|
||
|
||
this.lookupsDisabled = false;
|
||
this.lookupInputFocused = false;
|
||
this.lookupHighlightFirstItem = config.highlightFirst;
|
||
|
||
// Events
|
||
this.$input.on( {
|
||
focus: this.onLookupInputFocus.bind( this ),
|
||
blur: this.onLookupInputBlur.bind( this ),
|
||
mousedown: this.onLookupInputMouseDown.bind( this )
|
||
} );
|
||
this.connect( this, { change: 'onLookupInputChange' } );
|
||
this.lookupMenu.connect( this, {
|
||
toggle: 'onLookupMenuToggle',
|
||
choose: 'onLookupMenuItemChoose'
|
||
} );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-lookupElement' );
|
||
this.lookupMenu.$element.addClass( 'oo-ui-lookupElement-menu' );
|
||
this.$overlay.append( this.lookupMenu.$element );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.mixinClass( OO.ui.mixin.LookupElement, OO.ui.mixin.RequestManager );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle input focus event.
|
||
*
|
||
* @protected
|
||
* @param {jQuery.Event} e Input focus event
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupInputFocus = function () {
|
||
this.lookupInputFocused = true;
|
||
this.populateLookupMenu();
|
||
};
|
||
|
||
/**
|
||
* Handle input blur event.
|
||
*
|
||
* @protected
|
||
* @param {jQuery.Event} e Input blur event
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupInputBlur = function () {
|
||
this.closeLookupMenu();
|
||
this.lookupInputFocused = false;
|
||
};
|
||
|
||
/**
|
||
* Handle input mouse down event.
|
||
*
|
||
* @protected
|
||
* @param {jQuery.Event} e Input mouse down event
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupInputMouseDown = function () {
|
||
// Only open the menu if the input was already focused.
|
||
// This way we allow the user to open the menu again after closing it with Esc
|
||
// by clicking in the input. Opening (and populating) the menu when initially
|
||
// clicking into the input is handled by the focus handler.
|
||
if ( this.lookupInputFocused && !this.lookupMenu.isVisible() ) {
|
||
this.populateLookupMenu();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle input change event.
|
||
*
|
||
* @protected
|
||
* @param {string} value New input value
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupInputChange = function () {
|
||
if ( this.lookupInputFocused ) {
|
||
this.populateLookupMenu();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle the lookup menu being shown/hidden.
|
||
*
|
||
* @protected
|
||
* @param {boolean} visible Whether the lookup menu is now visible.
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupMenuToggle = function ( visible ) {
|
||
if ( !visible ) {
|
||
// When the menu is hidden, abort any active request and clear the menu.
|
||
// This has to be done here in addition to closeLookupMenu(), because
|
||
// MenuSelectWidget will close itself when the user presses Esc.
|
||
this.abortLookupRequest();
|
||
this.lookupMenu.clearItems();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle menu item 'choose' event, updating the text input value to the value of the clicked item.
|
||
*
|
||
* @protected
|
||
* @param {OO.ui.MenuOptionWidget} item Selected item
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.onLookupMenuItemChoose = function ( item ) {
|
||
this.setValue( item.getData() );
|
||
};
|
||
|
||
/**
|
||
* Get lookup menu.
|
||
*
|
||
* @private
|
||
* @return {OO.ui.FloatingMenuSelectWidget}
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getLookupMenu = function () {
|
||
return this.lookupMenu;
|
||
};
|
||
|
||
/**
|
||
* Disable or re-enable lookups.
|
||
*
|
||
* When lookups are disabled, calls to #populateLookupMenu will be ignored.
|
||
*
|
||
* @param {boolean} disabled Disable lookups
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.setLookupsDisabled = function ( disabled ) {
|
||
this.lookupsDisabled = !!disabled;
|
||
};
|
||
|
||
/**
|
||
* Open the menu. If there are no entries in the menu, this does nothing.
|
||
*
|
||
* @private
|
||
* @chainable
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.openLookupMenu = function () {
|
||
if ( !this.lookupMenu.isEmpty() ) {
|
||
this.lookupMenu.toggle( true );
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Close the menu, empty it, and abort any pending request.
|
||
*
|
||
* @private
|
||
* @chainable
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.closeLookupMenu = function () {
|
||
this.lookupMenu.toggle( false );
|
||
this.abortLookupRequest();
|
||
this.lookupMenu.clearItems();
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Request menu items based on the input's current value, and when they arrive,
|
||
* populate the menu with these items and show the menu.
|
||
*
|
||
* If lookups have been disabled with #setLookupsDisabled, this function does nothing.
|
||
*
|
||
* @private
|
||
* @chainable
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.populateLookupMenu = function () {
|
||
var widget = this,
|
||
value = this.getValue();
|
||
|
||
if ( this.lookupsDisabled || this.isReadOnly() ) {
|
||
return;
|
||
}
|
||
|
||
// If the input is empty, clear the menu, unless suggestions when empty are allowed.
|
||
if ( !this.allowSuggestionsWhenEmpty && value === '' ) {
|
||
this.closeLookupMenu();
|
||
// Skip population if there is already a request pending for the current value
|
||
} else if ( value !== this.lookupQuery ) {
|
||
this.getLookupMenuItems()
|
||
.done( function ( items ) {
|
||
widget.lookupMenu.clearItems();
|
||
if ( items.length ) {
|
||
widget.lookupMenu
|
||
.addItems( items )
|
||
.toggle( true );
|
||
widget.initializeLookupMenuSelection();
|
||
} else {
|
||
widget.lookupMenu.toggle( false );
|
||
}
|
||
} )
|
||
.fail( function () {
|
||
widget.lookupMenu.clearItems();
|
||
} );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Highlight the first selectable item in the menu, if configured.
|
||
*
|
||
* @private
|
||
* @chainable
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.initializeLookupMenuSelection = function () {
|
||
if ( this.lookupHighlightFirstItem && !this.lookupMenu.getSelectedItem() ) {
|
||
this.lookupMenu.highlightItem( this.lookupMenu.getFirstSelectableItem() );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get lookup menu items for the current query.
|
||
*
|
||
* @private
|
||
* @return {jQuery.Promise} Promise object which will be passed menu items as the first argument of
|
||
* the done event. If the request was aborted to make way for a subsequent request, this promise
|
||
* will not be rejected: it will remain pending forever.
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getLookupMenuItems = function () {
|
||
return this.getRequestData().then( function ( data ) {
|
||
return this.getLookupMenuOptionsFromData( data );
|
||
}.bind( this ) );
|
||
};
|
||
|
||
/**
|
||
* Abort the currently pending lookup request, if any.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.abortLookupRequest = function () {
|
||
this.abortRequest();
|
||
};
|
||
|
||
/**
|
||
* Get a new request object of the current lookup query value.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @return {jQuery.Promise} jQuery AJAX object, or promise object with an .abort() method
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getLookupRequest = null;
|
||
|
||
/**
|
||
* Pre-process data returned by the request from #getLookupRequest.
|
||
*
|
||
* The return value of this function will be cached, and any further queries for the given value
|
||
* will use the cache rather than doing API requests.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @param {Mixed} response Response from server
|
||
* @return {Mixed} Cached result data
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getLookupCacheDataFromResponse = null;
|
||
|
||
/**
|
||
* Get a list of menu option widgets from the (possibly cached) data returned by
|
||
* #getLookupCacheDataFromResponse.
|
||
*
|
||
* @protected
|
||
* @method
|
||
* @abstract
|
||
* @param {Mixed} data Cached result data, usually an array
|
||
* @return {OO.ui.MenuOptionWidget[]} Menu items
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getLookupMenuOptionsFromData = null;
|
||
|
||
/**
|
||
* Set the read-only state of the widget.
|
||
*
|
||
* This will also disable/enable the lookups functionality.
|
||
*
|
||
* @param {boolean} readOnly Make input read-only
|
||
* @chainable
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.setReadOnly = function ( readOnly ) {
|
||
// Parent method
|
||
// Note: Calling #setReadOnly this way assumes this is mixed into an OO.ui.TextInputWidget
|
||
OO.ui.TextInputWidget.prototype.setReadOnly.call( this, readOnly );
|
||
|
||
// During construction, #setReadOnly is called before the OO.ui.mixin.LookupElement constructor
|
||
if ( this.isReadOnly() && this.lookupMenu ) {
|
||
this.closeLookupMenu();
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc OO.ui.mixin.RequestManager
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getRequestQuery = function () {
|
||
return this.getValue();
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc OO.ui.mixin.RequestManager
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getRequest = function () {
|
||
return this.getLookupRequest();
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc OO.ui.mixin.RequestManager
|
||
*/
|
||
OO.ui.mixin.LookupElement.prototype.getRequestCacheDataFromResponse = function ( response ) {
|
||
return this.getLookupCacheDataFromResponse( response );
|
||
};
|
||
|
||
/**
|
||
* CardLayouts are used within {@link OO.ui.IndexLayout index layouts} to create cards that users can select and display
|
||
* from the index's optional {@link OO.ui.TabSelectWidget tab} navigation. Cards are usually not instantiated directly,
|
||
* rather extended to include the required content and functionality.
|
||
*
|
||
* Each card must have a unique symbolic name, which is passed to the constructor. In addition, the card's tab
|
||
* item is customized (with a label) using the #setupTabItem method. See
|
||
* {@link OO.ui.IndexLayout IndexLayout} for an example.
|
||
*
|
||
* @class
|
||
* @extends OO.ui.PanelLayout
|
||
*
|
||
* @constructor
|
||
* @param {string} name Unique symbolic name of card
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {jQuery|string|Function|OO.ui.HtmlSnippet} [label] Label for card's tab
|
||
*/
|
||
OO.ui.CardLayout = function OoUiCardLayout( name, config ) {
|
||
// Allow passing positional parameters inside the config object
|
||
if ( OO.isPlainObject( name ) && config === undefined ) {
|
||
config = name;
|
||
name = config.name;
|
||
}
|
||
|
||
// Configuration initialization
|
||
config = $.extend( { scrollable: true }, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.CardLayout.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.name = name;
|
||
this.label = config.label;
|
||
this.tabItem = null;
|
||
this.active = false;
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-cardLayout' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.CardLayout, OO.ui.PanelLayout );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* An 'active' event is emitted when the card becomes active. Cards become active when they are
|
||
* shown in a index layout that is configured to display only one card at a time.
|
||
*
|
||
* @event active
|
||
* @param {boolean} active Card is active
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Get the symbolic name of the card.
|
||
*
|
||
* @return {string} Symbolic name of card
|
||
*/
|
||
OO.ui.CardLayout.prototype.getName = function () {
|
||
return this.name;
|
||
};
|
||
|
||
/**
|
||
* Check if card is active.
|
||
*
|
||
* Cards become active when they are shown in a {@link OO.ui.IndexLayout index layout} that is configured to display
|
||
* only one card at a time. Additional CSS is applied to the card's tab item to reflect the active state.
|
||
*
|
||
* @return {boolean} Card is active
|
||
*/
|
||
OO.ui.CardLayout.prototype.isActive = function () {
|
||
return this.active;
|
||
};
|
||
|
||
/**
|
||
* Get tab item.
|
||
*
|
||
* The tab item allows users to access the card from the index's tab
|
||
* navigation. The tab item itself can be customized (with a label, level, etc.) using the #setupTabItem method.
|
||
*
|
||
* @return {OO.ui.TabOptionWidget|null} Tab option widget
|
||
*/
|
||
OO.ui.CardLayout.prototype.getTabItem = function () {
|
||
return this.tabItem;
|
||
};
|
||
|
||
/**
|
||
* Set or unset the tab item.
|
||
*
|
||
* Specify a {@link OO.ui.TabOptionWidget tab option} to set it,
|
||
* or `null` to clear the tab item. To customize the tab item itself (e.g., to set a label or tab
|
||
* level), use #setupTabItem instead of this method.
|
||
*
|
||
* @param {OO.ui.TabOptionWidget|null} tabItem Tab option widget, null to clear
|
||
* @chainable
|
||
*/
|
||
OO.ui.CardLayout.prototype.setTabItem = function ( tabItem ) {
|
||
this.tabItem = tabItem || null;
|
||
if ( tabItem ) {
|
||
this.setupTabItem();
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set up the tab item.
|
||
*
|
||
* Use this method to customize the tab item (e.g., to add a label or tab level). To set or unset
|
||
* the tab item itself (with a {@link OO.ui.TabOptionWidget tab option} or `null`), use
|
||
* the #setTabItem method instead.
|
||
*
|
||
* @param {OO.ui.TabOptionWidget} tabItem Tab option widget to set up
|
||
* @chainable
|
||
*/
|
||
OO.ui.CardLayout.prototype.setupTabItem = function () {
|
||
if ( this.label ) {
|
||
this.tabItem.setLabel( this.label );
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set the card to its 'active' state.
|
||
*
|
||
* Cards become active when they are shown in a index layout that is configured to display only one card at a time. Additional
|
||
* CSS is applied to the tab item to reflect the card's active state. Outside of the index
|
||
* context, setting the active state on a card does nothing.
|
||
*
|
||
* @param {boolean} active Card is active
|
||
* @fires active
|
||
*/
|
||
OO.ui.CardLayout.prototype.setActive = function ( active ) {
|
||
active = !!active;
|
||
|
||
if ( active !== this.active ) {
|
||
this.active = active;
|
||
this.$element.toggleClass( 'oo-ui-cardLayout-active', this.active );
|
||
this.emit( 'active', this.active );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* PageLayouts are used within {@link OO.ui.BookletLayout booklet layouts} to create pages that users can select and display
|
||
* from the booklet's optional {@link OO.ui.OutlineSelectWidget outline} navigation. Pages are usually not instantiated directly,
|
||
* rather extended to include the required content and functionality.
|
||
*
|
||
* Each page must have a unique symbolic name, which is passed to the constructor. In addition, the page's outline
|
||
* item is customized (with a label, outline level, etc.) using the #setupOutlineItem method. See
|
||
* {@link OO.ui.BookletLayout BookletLayout} for an example.
|
||
*
|
||
* @class
|
||
* @extends OO.ui.PanelLayout
|
||
*
|
||
* @constructor
|
||
* @param {string} name Unique symbolic name of page
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.PageLayout = function OoUiPageLayout( name, config ) {
|
||
// Allow passing positional parameters inside the config object
|
||
if ( OO.isPlainObject( name ) && config === undefined ) {
|
||
config = name;
|
||
name = config.name;
|
||
}
|
||
|
||
// Configuration initialization
|
||
config = $.extend( { scrollable: true }, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.PageLayout.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.name = name;
|
||
this.outlineItem = null;
|
||
this.active = false;
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-pageLayout' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.PageLayout, OO.ui.PanelLayout );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* An 'active' event is emitted when the page becomes active. Pages become active when they are
|
||
* shown in a booklet layout that is configured to display only one page at a time.
|
||
*
|
||
* @event active
|
||
* @param {boolean} active Page is active
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Get the symbolic name of the page.
|
||
*
|
||
* @return {string} Symbolic name of page
|
||
*/
|
||
OO.ui.PageLayout.prototype.getName = function () {
|
||
return this.name;
|
||
};
|
||
|
||
/**
|
||
* Check if page is active.
|
||
*
|
||
* Pages become active when they are shown in a {@link OO.ui.BookletLayout booklet layout} that is configured to display
|
||
* only one page at a time. Additional CSS is applied to the page's outline item to reflect the active state.
|
||
*
|
||
* @return {boolean} Page is active
|
||
*/
|
||
OO.ui.PageLayout.prototype.isActive = function () {
|
||
return this.active;
|
||
};
|
||
|
||
/**
|
||
* Get outline item.
|
||
*
|
||
* The outline item allows users to access the page from the booklet's outline
|
||
* navigation. The outline item itself can be customized (with a label, level, etc.) using the #setupOutlineItem method.
|
||
*
|
||
* @return {OO.ui.OutlineOptionWidget|null} Outline option widget
|
||
*/
|
||
OO.ui.PageLayout.prototype.getOutlineItem = function () {
|
||
return this.outlineItem;
|
||
};
|
||
|
||
/**
|
||
* Set or unset the outline item.
|
||
*
|
||
* Specify an {@link OO.ui.OutlineOptionWidget outline option} to set it,
|
||
* or `null` to clear the outline item. To customize the outline item itself (e.g., to set a label or outline
|
||
* level), use #setupOutlineItem instead of this method.
|
||
*
|
||
* @param {OO.ui.OutlineOptionWidget|null} outlineItem Outline option widget, null to clear
|
||
* @chainable
|
||
*/
|
||
OO.ui.PageLayout.prototype.setOutlineItem = function ( outlineItem ) {
|
||
this.outlineItem = outlineItem || null;
|
||
if ( outlineItem ) {
|
||
this.setupOutlineItem();
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set up the outline item.
|
||
*
|
||
* Use this method to customize the outline item (e.g., to add a label or outline level). To set or unset
|
||
* the outline item itself (with an {@link OO.ui.OutlineOptionWidget outline option} or `null`), use
|
||
* the #setOutlineItem method instead.
|
||
*
|
||
* @param {OO.ui.OutlineOptionWidget} outlineItem Outline option widget to set up
|
||
* @chainable
|
||
*/
|
||
OO.ui.PageLayout.prototype.setupOutlineItem = function () {
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set the page to its 'active' state.
|
||
*
|
||
* Pages become active when they are shown in a booklet layout that is configured to display only one page at a time. Additional
|
||
* CSS is applied to the outline item to reflect the page's active state. Outside of the booklet
|
||
* context, setting the active state on a page does nothing.
|
||
*
|
||
* @param {boolean} active Page is active
|
||
* @fires active
|
||
*/
|
||
OO.ui.PageLayout.prototype.setActive = function ( active ) {
|
||
active = !!active;
|
||
|
||
if ( active !== this.active ) {
|
||
this.active = active;
|
||
this.$element.toggleClass( 'oo-ui-pageLayout-active', active );
|
||
this.emit( 'active', this.active );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* StackLayouts contain a series of {@link OO.ui.PanelLayout panel layouts}. By default, only one panel is displayed
|
||
* at a time, though the stack layout can also be configured to show all contained panels, one after another,
|
||
* by setting the #continuous option to 'true'.
|
||
*
|
||
* @example
|
||
* // A stack layout with two panels, configured to be displayed continously
|
||
* var myStack = new OO.ui.StackLayout( {
|
||
* items: [
|
||
* new OO.ui.PanelLayout( {
|
||
* $content: $( '<p>Panel One</p>' ),
|
||
* padded: true,
|
||
* framed: true
|
||
* } ),
|
||
* new OO.ui.PanelLayout( {
|
||
* $content: $( '<p>Panel Two</p>' ),
|
||
* padded: true,
|
||
* framed: true
|
||
* } )
|
||
* ],
|
||
* continuous: true
|
||
* } );
|
||
* $( 'body' ).append( myStack.$element );
|
||
*
|
||
* @class
|
||
* @extends OO.ui.PanelLayout
|
||
* @mixins OO.ui.mixin.GroupElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [continuous=false] Show all panels, one after another. By default, only one panel is displayed at a time.
|
||
* @cfg {OO.ui.Layout[]} [items] Panel layouts to add to the stack layout.
|
||
*/
|
||
OO.ui.StackLayout = function OoUiStackLayout( config ) {
|
||
// Configuration initialization
|
||
config = $.extend( { scrollable: true }, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.StackLayout.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
|
||
|
||
// Properties
|
||
this.currentItem = null;
|
||
this.continuous = !!config.continuous;
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-stackLayout' );
|
||
if ( this.continuous ) {
|
||
this.$element.addClass( 'oo-ui-stackLayout-continuous' );
|
||
this.$element.on( 'scroll', OO.ui.debounce( this.onScroll.bind( this ), 250 ) );
|
||
}
|
||
if ( Array.isArray( config.items ) ) {
|
||
this.addItems( config.items );
|
||
}
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.StackLayout, OO.ui.PanelLayout );
|
||
OO.mixinClass( OO.ui.StackLayout, OO.ui.mixin.GroupElement );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* A 'set' event is emitted when panels are {@link #addItems added}, {@link #removeItems removed},
|
||
* {@link #clearItems cleared} or {@link #setItem displayed}.
|
||
*
|
||
* @event set
|
||
* @param {OO.ui.Layout|null} item Current panel or `null` if no panel is shown
|
||
*/
|
||
|
||
/**
|
||
* When used in continuous mode, this event is emitted when the user scrolls down
|
||
* far enough such that currentItem is no longer visible.
|
||
*
|
||
* @event visibleItemChange
|
||
* @param {OO.ui.PanelLayout} panel The next visible item in the layout
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle scroll events from the layout element
|
||
*
|
||
* @param {jQuery.Event} e
|
||
* @fires visibleItemChange
|
||
*/
|
||
OO.ui.StackLayout.prototype.onScroll = function () {
|
||
var currentRect,
|
||
len = this.items.length,
|
||
currentIndex = this.items.indexOf( this.currentItem ),
|
||
newIndex = currentIndex,
|
||
containerRect = this.$element[ 0 ].getBoundingClientRect();
|
||
|
||
if ( !containerRect || ( !containerRect.top && !containerRect.bottom ) ) {
|
||
// Can't get bounding rect, possibly not attached.
|
||
return;
|
||
}
|
||
|
||
function getRect( item ) {
|
||
return item.$element[ 0 ].getBoundingClientRect();
|
||
}
|
||
|
||
function isVisible( item ) {
|
||
var rect = getRect( item );
|
||
return rect.bottom > containerRect.top && rect.top < containerRect.bottom;
|
||
}
|
||
|
||
currentRect = getRect( this.currentItem );
|
||
|
||
if ( currentRect.bottom < containerRect.top ) {
|
||
// Scrolled down past current item
|
||
while ( ++newIndex < len ) {
|
||
if ( isVisible( this.items[ newIndex ] ) ) {
|
||
break;
|
||
}
|
||
}
|
||
} else if ( currentRect.top > containerRect.bottom ) {
|
||
// Scrolled up past current item
|
||
while ( --newIndex >= 0 ) {
|
||
if ( isVisible( this.items[ newIndex ] ) ) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
if ( newIndex !== currentIndex ) {
|
||
this.emit( 'visibleItemChange', this.items[ newIndex ] );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the current panel.
|
||
*
|
||
* @return {OO.ui.Layout|null}
|
||
*/
|
||
OO.ui.StackLayout.prototype.getCurrentItem = function () {
|
||
return this.currentItem;
|
||
};
|
||
|
||
/**
|
||
* Unset the current item.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.StackLayout} layout
|
||
* @fires set
|
||
*/
|
||
OO.ui.StackLayout.prototype.unsetCurrentItem = function () {
|
||
var prevItem = this.currentItem;
|
||
if ( prevItem === null ) {
|
||
return;
|
||
}
|
||
|
||
this.currentItem = null;
|
||
this.emit( 'set', null );
|
||
};
|
||
|
||
/**
|
||
* Add panel layouts to the stack layout.
|
||
*
|
||
* Panels will be added to the end of the stack layout array unless the optional index parameter specifies a different
|
||
* insertion point. Adding a panel that is already in the stack will move it to the end of the array or the point specified
|
||
* by the index.
|
||
*
|
||
* @param {OO.ui.Layout[]} items Panels to add
|
||
* @param {number} [index] Index of the insertion point
|
||
* @chainable
|
||
*/
|
||
OO.ui.StackLayout.prototype.addItems = function ( items, index ) {
|
||
// Update the visibility
|
||
this.updateHiddenState( items, this.currentItem );
|
||
|
||
// Mixin method
|
||
OO.ui.mixin.GroupElement.prototype.addItems.call( this, items, index );
|
||
|
||
if ( !this.currentItem && items.length ) {
|
||
this.setItem( items[ 0 ] );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Remove the specified panels from the stack layout.
|
||
*
|
||
* Removed panels are detached from the DOM, not removed, so that they may be reused. To remove all panels,
|
||
* you may wish to use the #clearItems method instead.
|
||
*
|
||
* @param {OO.ui.Layout[]} items Panels to remove
|
||
* @chainable
|
||
* @fires set
|
||
*/
|
||
OO.ui.StackLayout.prototype.removeItems = function ( items ) {
|
||
// Mixin method
|
||
OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
|
||
|
||
if ( items.indexOf( this.currentItem ) !== -1 ) {
|
||
if ( this.items.length ) {
|
||
this.setItem( this.items[ 0 ] );
|
||
} else {
|
||
this.unsetCurrentItem();
|
||
}
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Clear all panels from the stack layout.
|
||
*
|
||
* Cleared panels are detached from the DOM, not removed, so that they may be reused. To remove only
|
||
* a subset of panels, use the #removeItems method.
|
||
*
|
||
* @chainable
|
||
* @fires set
|
||
*/
|
||
OO.ui.StackLayout.prototype.clearItems = function () {
|
||
this.unsetCurrentItem();
|
||
OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Show the specified panel.
|
||
*
|
||
* If another panel is currently displayed, it will be hidden.
|
||
*
|
||
* @param {OO.ui.Layout} item Panel to show
|
||
* @chainable
|
||
* @fires set
|
||
*/
|
||
OO.ui.StackLayout.prototype.setItem = function ( item ) {
|
||
if ( item !== this.currentItem ) {
|
||
this.updateHiddenState( this.items, item );
|
||
|
||
if ( this.items.indexOf( item ) !== -1 ) {
|
||
this.currentItem = item;
|
||
this.emit( 'set', item );
|
||
} else {
|
||
this.unsetCurrentItem();
|
||
}
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Update the visibility of all items in case of non-continuous view.
|
||
*
|
||
* Ensure all items are hidden except for the selected one.
|
||
* This method does nothing when the stack is continuous.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.Layout[]} items Item list iterate over
|
||
* @param {OO.ui.Layout} [selectedItem] Selected item to show
|
||
*/
|
||
OO.ui.StackLayout.prototype.updateHiddenState = function ( items, selectedItem ) {
|
||
var i, len;
|
||
|
||
if ( !this.continuous ) {
|
||
for ( i = 0, len = items.length; i < len; i++ ) {
|
||
if ( !selectedItem || selectedItem !== items[ i ] ) {
|
||
items[ i ].$element.addClass( 'oo-ui-element-hidden' );
|
||
items[ i ].$element.attr( 'aria-hidden', 'true' );
|
||
}
|
||
}
|
||
if ( selectedItem ) {
|
||
selectedItem.$element.removeClass( 'oo-ui-element-hidden' );
|
||
selectedItem.$element.removeAttr( 'aria-hidden' );
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* 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)
|
||
* and its size is customized with the #menuSize config. The content area will fill all remaining space.
|
||
*
|
||
* @example
|
||
* var menuLayout = new OO.ui.MenuLayout( {
|
||
* position: 'top'
|
||
* } ),
|
||
* menuPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
|
||
* contentPanel = new OO.ui.PanelLayout( { padded: true, expanded: true, scrollable: true } ),
|
||
* select = new OO.ui.SelectWidget( {
|
||
* items: [
|
||
* new OO.ui.OptionWidget( {
|
||
* data: 'before',
|
||
* label: 'Before',
|
||
* } ),
|
||
* new OO.ui.OptionWidget( {
|
||
* data: 'after',
|
||
* label: 'After',
|
||
* } ),
|
||
* new OO.ui.OptionWidget( {
|
||
* data: 'top',
|
||
* label: 'Top',
|
||
* } ),
|
||
* new OO.ui.OptionWidget( {
|
||
* data: 'bottom',
|
||
* label: 'Bottom',
|
||
* } )
|
||
* ]
|
||
* } ).on( 'select', function ( item ) {
|
||
* menuLayout.setMenuPosition( item.getData() );
|
||
* } );
|
||
*
|
||
* menuLayout.$menu.append(
|
||
* menuPanel.$element.append( '<b>Menu panel</b>', select.$element )
|
||
* );
|
||
* menuLayout.$content.append(
|
||
* contentPanel.$element.append( '<b>Content panel</b>', '<p>Note that the menu is positioned relative to the content panel: top, bottom, after, before.</p>')
|
||
* );
|
||
* $( 'body' ).append( menuLayout.$element );
|
||
*
|
||
* If menu size needs to be overridden, it can be accomplished using CSS similar to the snippet
|
||
* below. MenuLayout's CSS will override the appropriate values with 'auto' or '0' to display the
|
||
* menu correctly. If `menuPosition` is known beforehand, CSS rules corresponding to other positions
|
||
* may be omitted.
|
||
*
|
||
* .oo-ui-menuLayout-menu {
|
||
* height: 200px;
|
||
* width: 200px;
|
||
* }
|
||
* .oo-ui-menuLayout-content {
|
||
* top: 200px;
|
||
* left: 200px;
|
||
* right: 200px;
|
||
* bottom: 200px;
|
||
* }
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Layout
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [showMenu=true] Show menu
|
||
* @cfg {string} [menuPosition='before'] Position of menu: `top`, `after`, `bottom` or `before`
|
||
*/
|
||
OO.ui.MenuLayout = function OoUiMenuLayout( config ) {
|
||
// Configuration initialization
|
||
config = $.extend( {
|
||
showMenu: true,
|
||
menuPosition: 'before'
|
||
}, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.MenuLayout.parent.call( this, config );
|
||
|
||
/**
|
||
* Menu DOM node
|
||
*
|
||
* @property {jQuery}
|
||
*/
|
||
this.$menu = $( '<div>' );
|
||
/**
|
||
* Content DOM node
|
||
*
|
||
* @property {jQuery}
|
||
*/
|
||
this.$content = $( '<div>' );
|
||
|
||
// Initialization
|
||
this.$menu
|
||
.addClass( 'oo-ui-menuLayout-menu' );
|
||
this.$content.addClass( 'oo-ui-menuLayout-content' );
|
||
this.$element
|
||
.addClass( 'oo-ui-menuLayout' )
|
||
.append( this.$content, this.$menu );
|
||
this.setMenuPosition( config.menuPosition );
|
||
this.toggleMenu( config.showMenu );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.MenuLayout, OO.ui.Layout );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Toggle menu.
|
||
*
|
||
* @param {boolean} showMenu Show menu, omit to toggle
|
||
* @chainable
|
||
*/
|
||
OO.ui.MenuLayout.prototype.toggleMenu = function ( showMenu ) {
|
||
showMenu = showMenu === undefined ? !this.showMenu : !!showMenu;
|
||
|
||
if ( this.showMenu !== showMenu ) {
|
||
this.showMenu = showMenu;
|
||
this.$element
|
||
.toggleClass( 'oo-ui-menuLayout-showMenu', this.showMenu )
|
||
.toggleClass( 'oo-ui-menuLayout-hideMenu', !this.showMenu );
|
||
this.$menu.attr( 'aria-hidden', this.showMenu ? 'false' : 'true' );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Check if menu is visible
|
||
*
|
||
* @return {boolean} Menu is visible
|
||
*/
|
||
OO.ui.MenuLayout.prototype.isMenuVisible = function () {
|
||
return this.showMenu;
|
||
};
|
||
|
||
/**
|
||
* Set menu position.
|
||
*
|
||
* @param {string} position Position of menu, either `top`, `after`, `bottom` or `before`
|
||
* @throws {Error} If position value is not supported
|
||
* @chainable
|
||
*/
|
||
OO.ui.MenuLayout.prototype.setMenuPosition = function ( position ) {
|
||
this.$element.removeClass( 'oo-ui-menuLayout-' + this.menuPosition );
|
||
this.menuPosition = position;
|
||
this.$element.addClass( 'oo-ui-menuLayout-' + position );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Get menu position.
|
||
*
|
||
* @return {string} Menu position
|
||
*/
|
||
OO.ui.MenuLayout.prototype.getMenuPosition = function () {
|
||
return this.menuPosition;
|
||
};
|
||
|
||
/**
|
||
* BookletLayouts contain {@link OO.ui.PageLayout page layouts} as well as
|
||
* an {@link OO.ui.OutlineSelectWidget outline} that allows users to easily navigate
|
||
* through the pages and select which one to display. By default, only one page is
|
||
* displayed at a time and the outline is hidden. When a user navigates to a new page,
|
||
* the booklet layout automatically focuses on the first focusable element, unless the
|
||
* default setting is changed. Optionally, booklets can be configured to show
|
||
* {@link OO.ui.OutlineControlsWidget controls} for adding, moving, and removing items.
|
||
*
|
||
* @example
|
||
* // Example of a BookletLayout that contains two PageLayouts.
|
||
*
|
||
* function PageOneLayout( name, config ) {
|
||
* PageOneLayout.parent.call( this, name, config );
|
||
* this.$element.append( '<p>First page</p><p>(This booklet has an outline, displayed on the left)</p>' );
|
||
* }
|
||
* OO.inheritClass( PageOneLayout, OO.ui.PageLayout );
|
||
* PageOneLayout.prototype.setupOutlineItem = function () {
|
||
* this.outlineItem.setLabel( 'Page One' );
|
||
* };
|
||
*
|
||
* function PageTwoLayout( name, config ) {
|
||
* PageTwoLayout.parent.call( this, name, config );
|
||
* this.$element.append( '<p>Second page</p>' );
|
||
* }
|
||
* OO.inheritClass( PageTwoLayout, OO.ui.PageLayout );
|
||
* PageTwoLayout.prototype.setupOutlineItem = function () {
|
||
* this.outlineItem.setLabel( 'Page Two' );
|
||
* };
|
||
*
|
||
* var page1 = new PageOneLayout( 'one' ),
|
||
* page2 = new PageTwoLayout( 'two' );
|
||
*
|
||
* var booklet = new OO.ui.BookletLayout( {
|
||
* outlined: true
|
||
* } );
|
||
*
|
||
* booklet.addPages ( [ page1, page2 ] );
|
||
* $( 'body' ).append( booklet.$element );
|
||
*
|
||
* @class
|
||
* @extends OO.ui.MenuLayout
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [continuous=false] Show all pages, one after another
|
||
* @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new page is displayed.
|
||
* @cfg {boolean} [outlined=false] Show the outline. The outline is used to navigate through the pages of the booklet.
|
||
* @cfg {boolean} [editable=false] Show controls for adding, removing and reordering pages
|
||
*/
|
||
OO.ui.BookletLayout = function OoUiBookletLayout( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.BookletLayout.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.currentPageName = null;
|
||
this.pages = {};
|
||
this.ignoreFocus = false;
|
||
this.stackLayout = new OO.ui.StackLayout( { continuous: !!config.continuous } );
|
||
this.$content.append( this.stackLayout.$element );
|
||
this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
|
||
this.outlineVisible = false;
|
||
this.outlined = !!config.outlined;
|
||
if ( this.outlined ) {
|
||
this.editable = !!config.editable;
|
||
this.outlineControlsWidget = null;
|
||
this.outlineSelectWidget = new OO.ui.OutlineSelectWidget();
|
||
this.outlinePanel = new OO.ui.PanelLayout( { scrollable: true } );
|
||
this.$menu.append( this.outlinePanel.$element );
|
||
this.outlineVisible = true;
|
||
if ( this.editable ) {
|
||
this.outlineControlsWidget = new OO.ui.OutlineControlsWidget(
|
||
this.outlineSelectWidget
|
||
);
|
||
}
|
||
}
|
||
this.toggleMenu( this.outlined );
|
||
|
||
// Events
|
||
this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
|
||
if ( this.outlined ) {
|
||
this.outlineSelectWidget.connect( this, { select: 'onOutlineSelectWidgetSelect' } );
|
||
this.scrolling = false;
|
||
this.stackLayout.connect( this, { visibleItemChange: 'onStackLayoutVisibleItemChange' } );
|
||
}
|
||
if ( this.autoFocus ) {
|
||
// Event 'focus' does not bubble, but 'focusin' does
|
||
this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
|
||
}
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-bookletLayout' );
|
||
this.stackLayout.$element.addClass( 'oo-ui-bookletLayout-stackLayout' );
|
||
if ( this.outlined ) {
|
||
this.outlinePanel.$element
|
||
.addClass( 'oo-ui-bookletLayout-outlinePanel' )
|
||
.append( this.outlineSelectWidget.$element );
|
||
if ( this.editable ) {
|
||
this.outlinePanel.$element
|
||
.addClass( 'oo-ui-bookletLayout-outlinePanel-editable' )
|
||
.append( this.outlineControlsWidget.$element );
|
||
}
|
||
}
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.BookletLayout, OO.ui.MenuLayout );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* A 'set' event is emitted when a page is {@link #setPage set} to be displayed by the booklet layout.
|
||
* @event set
|
||
* @param {OO.ui.PageLayout} page Current page
|
||
*/
|
||
|
||
/**
|
||
* An 'add' event is emitted when pages are {@link #addPages added} to the booklet layout.
|
||
*
|
||
* @event add
|
||
* @param {OO.ui.PageLayout[]} page Added pages
|
||
* @param {number} index Index pages were added at
|
||
*/
|
||
|
||
/**
|
||
* A 'remove' event is emitted when pages are {@link #clearPages cleared} or
|
||
* {@link #removePages removed} from the booklet.
|
||
*
|
||
* @event remove
|
||
* @param {OO.ui.PageLayout[]} pages Removed pages
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle stack layout focus.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Focusin event
|
||
*/
|
||
OO.ui.BookletLayout.prototype.onStackLayoutFocus = function ( e ) {
|
||
var name, $target;
|
||
|
||
// Find the page that an element was focused within
|
||
$target = $( e.target ).closest( '.oo-ui-pageLayout' );
|
||
for ( name in this.pages ) {
|
||
// Check for page match, exclude current page to find only page changes
|
||
if ( this.pages[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentPageName ) {
|
||
this.setPage( name );
|
||
break;
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle visibleItemChange events from the stackLayout
|
||
*
|
||
* The next visible page is set as the current page by selecting it
|
||
* in the outline
|
||
*
|
||
* @param {OO.ui.PageLayout} page The next visible page in the layout
|
||
*/
|
||
OO.ui.BookletLayout.prototype.onStackLayoutVisibleItemChange = function ( page ) {
|
||
// Set a flag to so that the resulting call to #onStackLayoutSet doesn't
|
||
// try and scroll the item into view again.
|
||
this.scrolling = true;
|
||
this.outlineSelectWidget.selectItemByData( page.getName() );
|
||
this.scrolling = false;
|
||
};
|
||
|
||
/**
|
||
* Handle stack layout set events.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.PanelLayout|null} page The page panel that is now the current panel
|
||
*/
|
||
OO.ui.BookletLayout.prototype.onStackLayoutSet = function ( page ) {
|
||
var layout = this;
|
||
if ( !this.scrolling && page ) {
|
||
page.scrollElementIntoView( {
|
||
complete: function () {
|
||
if ( layout.autoFocus ) {
|
||
layout.focus();
|
||
}
|
||
}
|
||
} );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Focus the first input in the current page.
|
||
*
|
||
* If no page is selected, the first selectable page will be selected.
|
||
* If the focus is already in an element on the current page, nothing will happen.
|
||
*
|
||
* @param {number} [itemIndex] A specific item to focus on
|
||
*/
|
||
OO.ui.BookletLayout.prototype.focus = function ( itemIndex ) {
|
||
var page,
|
||
items = this.stackLayout.getItems();
|
||
|
||
if ( itemIndex !== undefined && items[ itemIndex ] ) {
|
||
page = items[ itemIndex ];
|
||
} else {
|
||
page = this.stackLayout.getCurrentItem();
|
||
}
|
||
|
||
if ( !page && this.outlined ) {
|
||
this.selectFirstSelectablePage();
|
||
page = this.stackLayout.getCurrentItem();
|
||
}
|
||
if ( !page ) {
|
||
return;
|
||
}
|
||
// Only change the focus if is not already in the current page
|
||
if ( !OO.ui.contains( page.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
|
||
page.focus();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Find the first focusable input in the booklet layout and focus
|
||
* on it.
|
||
*/
|
||
OO.ui.BookletLayout.prototype.focusFirstFocusable = function () {
|
||
OO.ui.findFocusable( this.stackLayout.$element ).focus();
|
||
};
|
||
|
||
/**
|
||
* Handle outline widget select events.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.OptionWidget|null} item Selected item
|
||
*/
|
||
OO.ui.BookletLayout.prototype.onOutlineSelectWidgetSelect = function ( item ) {
|
||
if ( item ) {
|
||
this.setPage( item.getData() );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Check if booklet has an outline.
|
||
*
|
||
* @return {boolean} Booklet has an outline
|
||
*/
|
||
OO.ui.BookletLayout.prototype.isOutlined = function () {
|
||
return this.outlined;
|
||
};
|
||
|
||
/**
|
||
* Check if booklet has editing controls.
|
||
*
|
||
* @return {boolean} Booklet is editable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.isEditable = function () {
|
||
return this.editable;
|
||
};
|
||
|
||
/**
|
||
* Check if booklet has a visible outline.
|
||
*
|
||
* @return {boolean} Outline is visible
|
||
*/
|
||
OO.ui.BookletLayout.prototype.isOutlineVisible = function () {
|
||
return this.outlined && this.outlineVisible;
|
||
};
|
||
|
||
/**
|
||
* Hide or show the outline.
|
||
*
|
||
* @param {boolean} [show] Show outline, omit to invert current state
|
||
* @chainable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.toggleOutline = function ( show ) {
|
||
if ( this.outlined ) {
|
||
show = show === undefined ? !this.outlineVisible : !!show;
|
||
this.outlineVisible = show;
|
||
this.toggleMenu( show );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Get the page closest to the specified page.
|
||
*
|
||
* @param {OO.ui.PageLayout} page Page to use as a reference point
|
||
* @return {OO.ui.PageLayout|null} Page closest to the specified page
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getClosestPage = function ( page ) {
|
||
var next, prev, level,
|
||
pages = this.stackLayout.getItems(),
|
||
index = pages.indexOf( page );
|
||
|
||
if ( index !== -1 ) {
|
||
next = pages[ index + 1 ];
|
||
prev = pages[ index - 1 ];
|
||
// Prefer adjacent pages at the same level
|
||
if ( this.outlined ) {
|
||
level = this.outlineSelectWidget.getItemFromData( page.getName() ).getLevel();
|
||
if (
|
||
prev &&
|
||
level === this.outlineSelectWidget.getItemFromData( prev.getName() ).getLevel()
|
||
) {
|
||
return prev;
|
||
}
|
||
if (
|
||
next &&
|
||
level === this.outlineSelectWidget.getItemFromData( next.getName() ).getLevel()
|
||
) {
|
||
return next;
|
||
}
|
||
}
|
||
}
|
||
return prev || next || null;
|
||
};
|
||
|
||
/**
|
||
* Get the outline widget.
|
||
*
|
||
* If the booklet is not outlined, the method will return `null`.
|
||
*
|
||
* @return {OO.ui.OutlineSelectWidget|null} Outline widget, or null if the booklet is not outlined
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getOutline = function () {
|
||
return this.outlineSelectWidget;
|
||
};
|
||
|
||
/**
|
||
* Get the outline controls widget.
|
||
*
|
||
* If the outline is not editable, the method will return `null`.
|
||
*
|
||
* @return {OO.ui.OutlineControlsWidget|null} The outline controls widget.
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getOutlineControls = function () {
|
||
return this.outlineControlsWidget;
|
||
};
|
||
|
||
/**
|
||
* Get a page by its symbolic name.
|
||
*
|
||
* @param {string} name Symbolic name of page
|
||
* @return {OO.ui.PageLayout|undefined} Page, if found
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getPage = function ( name ) {
|
||
return this.pages[ name ];
|
||
};
|
||
|
||
/**
|
||
* Get the current page.
|
||
*
|
||
* @return {OO.ui.PageLayout|undefined} Current page, if found
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getCurrentPage = function () {
|
||
var name = this.getCurrentPageName();
|
||
return name ? this.getPage( name ) : undefined;
|
||
};
|
||
|
||
/**
|
||
* Get the symbolic name of the current page.
|
||
*
|
||
* @return {string|null} Symbolic name of the current page
|
||
*/
|
||
OO.ui.BookletLayout.prototype.getCurrentPageName = function () {
|
||
return this.currentPageName;
|
||
};
|
||
|
||
/**
|
||
* Add pages to the booklet layout
|
||
*
|
||
* When pages are added with the same names as existing pages, the existing pages will be
|
||
* automatically removed before the new pages are added.
|
||
*
|
||
* @param {OO.ui.PageLayout[]} pages Pages to add
|
||
* @param {number} index Index of the insertion point
|
||
* @fires add
|
||
* @chainable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.addPages = function ( pages, index ) {
|
||
var i, len, name, page, item, currentIndex,
|
||
stackLayoutPages = this.stackLayout.getItems(),
|
||
remove = [],
|
||
items = [];
|
||
|
||
// Remove pages with same names
|
||
for ( i = 0, len = pages.length; i < len; i++ ) {
|
||
page = pages[ i ];
|
||
name = page.getName();
|
||
|
||
if ( Object.prototype.hasOwnProperty.call( this.pages, name ) ) {
|
||
// Correct the insertion index
|
||
currentIndex = stackLayoutPages.indexOf( this.pages[ name ] );
|
||
if ( currentIndex !== -1 && currentIndex + 1 < index ) {
|
||
index--;
|
||
}
|
||
remove.push( this.pages[ name ] );
|
||
}
|
||
}
|
||
if ( remove.length ) {
|
||
this.removePages( remove );
|
||
}
|
||
|
||
// Add new pages
|
||
for ( i = 0, len = pages.length; i < len; i++ ) {
|
||
page = pages[ i ];
|
||
name = page.getName();
|
||
this.pages[ page.getName() ] = page;
|
||
if ( this.outlined ) {
|
||
item = new OO.ui.OutlineOptionWidget( { data: name } );
|
||
page.setOutlineItem( item );
|
||
items.push( item );
|
||
}
|
||
}
|
||
|
||
if ( this.outlined && items.length ) {
|
||
this.outlineSelectWidget.addItems( items, index );
|
||
this.selectFirstSelectablePage();
|
||
}
|
||
this.stackLayout.addItems( pages, index );
|
||
this.emit( 'add', pages, index );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Remove the specified pages from the booklet layout.
|
||
*
|
||
* To remove all pages from the booklet, you may wish to use the #clearPages method instead.
|
||
*
|
||
* @param {OO.ui.PageLayout[]} pages An array of pages to remove
|
||
* @fires remove
|
||
* @chainable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.removePages = function ( pages ) {
|
||
var i, len, name, page,
|
||
items = [];
|
||
|
||
for ( i = 0, len = pages.length; i < len; i++ ) {
|
||
page = pages[ i ];
|
||
name = page.getName();
|
||
delete this.pages[ name ];
|
||
if ( this.outlined ) {
|
||
items.push( this.outlineSelectWidget.getItemFromData( name ) );
|
||
page.setOutlineItem( null );
|
||
}
|
||
}
|
||
if ( this.outlined && items.length ) {
|
||
this.outlineSelectWidget.removeItems( items );
|
||
this.selectFirstSelectablePage();
|
||
}
|
||
this.stackLayout.removeItems( pages );
|
||
this.emit( 'remove', pages );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Clear all pages from the booklet layout.
|
||
*
|
||
* To remove only a subset of pages from the booklet, use the #removePages method.
|
||
*
|
||
* @fires remove
|
||
* @chainable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.clearPages = function () {
|
||
var i, len,
|
||
pages = this.stackLayout.getItems();
|
||
|
||
this.pages = {};
|
||
this.currentPageName = null;
|
||
if ( this.outlined ) {
|
||
this.outlineSelectWidget.clearItems();
|
||
for ( i = 0, len = pages.length; i < len; i++ ) {
|
||
pages[ i ].setOutlineItem( null );
|
||
}
|
||
}
|
||
this.stackLayout.clearItems();
|
||
|
||
this.emit( 'remove', pages );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set the current page by symbolic name.
|
||
*
|
||
* @fires set
|
||
* @param {string} name Symbolic name of page
|
||
*/
|
||
OO.ui.BookletLayout.prototype.setPage = function ( name ) {
|
||
var selectedItem,
|
||
$focused,
|
||
page = this.pages[ name ],
|
||
previousPage = this.currentPageName && this.pages[ this.currentPageName ];
|
||
|
||
if ( name !== this.currentPageName ) {
|
||
if ( this.outlined ) {
|
||
selectedItem = this.outlineSelectWidget.getSelectedItem();
|
||
if ( selectedItem && selectedItem.getData() !== name ) {
|
||
this.outlineSelectWidget.selectItemByData( name );
|
||
}
|
||
}
|
||
if ( page ) {
|
||
if ( previousPage ) {
|
||
previousPage.setActive( false );
|
||
// Blur anything focused if the next page doesn't have anything focusable.
|
||
// This is not needed if the next page has something focusable (because once it is focused
|
||
// this blur happens automatically). If the layout is non-continuous, this check is
|
||
// meaningless because the next page is not visible yet and thus can't hold focus.
|
||
if (
|
||
this.autoFocus &&
|
||
this.stackLayout.continuous &&
|
||
OO.ui.findFocusable( page.$element ).length !== 0
|
||
) {
|
||
$focused = previousPage.$element.find( ':focus' );
|
||
if ( $focused.length ) {
|
||
$focused[ 0 ].blur();
|
||
}
|
||
}
|
||
}
|
||
this.currentPageName = name;
|
||
page.setActive( true );
|
||
this.stackLayout.setItem( page );
|
||
if ( !this.stackLayout.continuous && previousPage ) {
|
||
// This should not be necessary, since any inputs on the previous page should have been
|
||
// blurred when it was hidden, but browsers are not very consistent about this.
|
||
$focused = previousPage.$element.find( ':focus' );
|
||
if ( $focused.length ) {
|
||
$focused[ 0 ].blur();
|
||
}
|
||
}
|
||
this.emit( 'set', page );
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Select the first selectable page.
|
||
*
|
||
* @chainable
|
||
*/
|
||
OO.ui.BookletLayout.prototype.selectFirstSelectablePage = function () {
|
||
if ( !this.outlineSelectWidget.getSelectedItem() ) {
|
||
this.outlineSelectWidget.selectItem( this.outlineSelectWidget.getFirstSelectableItem() );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* IndexLayouts contain {@link OO.ui.CardLayout card layouts} as well as
|
||
* {@link OO.ui.TabSelectWidget tabs} that allow users to easily navigate through the cards and
|
||
* select which one to display. By default, only one card is displayed at a time. When a user
|
||
* navigates to a new card, the index layout automatically focuses on the first focusable element,
|
||
* unless the default setting is changed.
|
||
*
|
||
* TODO: This class is similar to BookletLayout, we may want to refactor to reduce duplication
|
||
*
|
||
* @example
|
||
* // Example of a IndexLayout that contains two CardLayouts.
|
||
*
|
||
* function CardOneLayout( name, config ) {
|
||
* CardOneLayout.parent.call( this, name, config );
|
||
* this.$element.append( '<p>First card</p>' );
|
||
* }
|
||
* OO.inheritClass( CardOneLayout, OO.ui.CardLayout );
|
||
* CardOneLayout.prototype.setupTabItem = function () {
|
||
* this.tabItem.setLabel( 'Card one' );
|
||
* };
|
||
*
|
||
* var card1 = new CardOneLayout( 'one' ),
|
||
* card2 = new OO.ui.CardLayout( 'two', { label: 'Card two' } );
|
||
*
|
||
* card2.$element.append( '<p>Second card</p>' );
|
||
*
|
||
* var index = new OO.ui.IndexLayout();
|
||
*
|
||
* index.addCards ( [ card1, card2 ] );
|
||
* $( 'body' ).append( index.$element );
|
||
*
|
||
* @class
|
||
* @extends OO.ui.MenuLayout
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [continuous=false] Show all cards, one after another
|
||
* @cfg {boolean} [expanded=true] Expand the content panel to fill the entire parent element.
|
||
* @cfg {boolean} [autoFocus=true] Focus on the first focusable element when a new card is displayed.
|
||
*/
|
||
OO.ui.IndexLayout = function OoUiIndexLayout( config ) {
|
||
// Configuration initialization
|
||
config = $.extend( {}, config, { menuPosition: 'top' } );
|
||
|
||
// Parent constructor
|
||
OO.ui.IndexLayout.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.currentCardName = null;
|
||
this.cards = {};
|
||
this.ignoreFocus = false;
|
||
this.stackLayout = new OO.ui.StackLayout( {
|
||
continuous: !!config.continuous,
|
||
expanded: config.expanded
|
||
} );
|
||
this.$content.append( this.stackLayout.$element );
|
||
this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
|
||
|
||
this.tabSelectWidget = new OO.ui.TabSelectWidget();
|
||
this.tabPanel = new OO.ui.PanelLayout();
|
||
this.$menu.append( this.tabPanel.$element );
|
||
|
||
this.toggleMenu( true );
|
||
|
||
// Events
|
||
this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
|
||
this.tabSelectWidget.connect( this, { select: 'onTabSelectWidgetSelect' } );
|
||
if ( this.autoFocus ) {
|
||
// Event 'focus' does not bubble, but 'focusin' does
|
||
this.stackLayout.$element.on( 'focusin', this.onStackLayoutFocus.bind( this ) );
|
||
}
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-indexLayout' );
|
||
this.stackLayout.$element.addClass( 'oo-ui-indexLayout-stackLayout' );
|
||
this.tabPanel.$element
|
||
.addClass( 'oo-ui-indexLayout-tabPanel' )
|
||
.append( this.tabSelectWidget.$element );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.IndexLayout, OO.ui.MenuLayout );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* A 'set' event is emitted when a card is {@link #setCard set} to be displayed by the index layout.
|
||
* @event set
|
||
* @param {OO.ui.CardLayout} card Current card
|
||
*/
|
||
|
||
/**
|
||
* An 'add' event is emitted when cards are {@link #addCards added} to the index layout.
|
||
*
|
||
* @event add
|
||
* @param {OO.ui.CardLayout[]} card Added cards
|
||
* @param {number} index Index cards were added at
|
||
*/
|
||
|
||
/**
|
||
* A 'remove' event is emitted when cards are {@link #clearCards cleared} or
|
||
* {@link #removeCards removed} from the index.
|
||
*
|
||
* @event remove
|
||
* @param {OO.ui.CardLayout[]} cards Removed cards
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle stack layout focus.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Focusin event
|
||
*/
|
||
OO.ui.IndexLayout.prototype.onStackLayoutFocus = function ( e ) {
|
||
var name, $target;
|
||
|
||
// Find the card that an element was focused within
|
||
$target = $( e.target ).closest( '.oo-ui-cardLayout' );
|
||
for ( name in this.cards ) {
|
||
// Check for card match, exclude current card to find only card changes
|
||
if ( this.cards[ name ].$element[ 0 ] === $target[ 0 ] && name !== this.currentCardName ) {
|
||
this.setCard( name );
|
||
break;
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle stack layout set events.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.PanelLayout|null} card The card panel that is now the current panel
|
||
*/
|
||
OO.ui.IndexLayout.prototype.onStackLayoutSet = function ( card ) {
|
||
var layout = this;
|
||
if ( card ) {
|
||
card.scrollElementIntoView( {
|
||
complete: function () {
|
||
if ( layout.autoFocus ) {
|
||
layout.focus();
|
||
}
|
||
}
|
||
} );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Focus the first input in the current card.
|
||
*
|
||
* If no card is selected, the first selectable card will be selected.
|
||
* If the focus is already in an element on the current card, nothing will happen.
|
||
*
|
||
* @param {number} [itemIndex] A specific item to focus on
|
||
*/
|
||
OO.ui.IndexLayout.prototype.focus = function ( itemIndex ) {
|
||
var card,
|
||
items = this.stackLayout.getItems();
|
||
|
||
if ( itemIndex !== undefined && items[ itemIndex ] ) {
|
||
card = items[ itemIndex ];
|
||
} else {
|
||
card = this.stackLayout.getCurrentItem();
|
||
}
|
||
|
||
if ( !card ) {
|
||
this.selectFirstSelectableCard();
|
||
card = this.stackLayout.getCurrentItem();
|
||
}
|
||
if ( !card ) {
|
||
return;
|
||
}
|
||
// Only change the focus if is not already in the current page
|
||
if ( !OO.ui.contains( card.$element[ 0 ], this.getElementDocument().activeElement, true ) ) {
|
||
card.focus();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Find the first focusable input in the index layout and focus
|
||
* on it.
|
||
*/
|
||
OO.ui.IndexLayout.prototype.focusFirstFocusable = function () {
|
||
OO.ui.findFocusable( this.stackLayout.$element ).focus();
|
||
};
|
||
|
||
/**
|
||
* Handle tab widget select events.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.OptionWidget|null} item Selected item
|
||
*/
|
||
OO.ui.IndexLayout.prototype.onTabSelectWidgetSelect = function ( item ) {
|
||
if ( item ) {
|
||
this.setCard( item.getData() );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the card closest to the specified card.
|
||
*
|
||
* @param {OO.ui.CardLayout} card Card to use as a reference point
|
||
* @return {OO.ui.CardLayout|null} Card closest to the specified card
|
||
*/
|
||
OO.ui.IndexLayout.prototype.getClosestCard = function ( card ) {
|
||
var next, prev, level,
|
||
cards = this.stackLayout.getItems(),
|
||
index = cards.indexOf( card );
|
||
|
||
if ( index !== -1 ) {
|
||
next = cards[ index + 1 ];
|
||
prev = cards[ index - 1 ];
|
||
// Prefer adjacent cards at the same level
|
||
level = this.tabSelectWidget.getItemFromData( card.getName() ).getLevel();
|
||
if (
|
||
prev &&
|
||
level === this.tabSelectWidget.getItemFromData( prev.getName() ).getLevel()
|
||
) {
|
||
return prev;
|
||
}
|
||
if (
|
||
next &&
|
||
level === this.tabSelectWidget.getItemFromData( next.getName() ).getLevel()
|
||
) {
|
||
return next;
|
||
}
|
||
}
|
||
return prev || next || null;
|
||
};
|
||
|
||
/**
|
||
* Get the tabs widget.
|
||
*
|
||
* @return {OO.ui.TabSelectWidget} Tabs widget
|
||
*/
|
||
OO.ui.IndexLayout.prototype.getTabs = function () {
|
||
return this.tabSelectWidget;
|
||
};
|
||
|
||
/**
|
||
* Get a card by its symbolic name.
|
||
*
|
||
* @param {string} name Symbolic name of card
|
||
* @return {OO.ui.CardLayout|undefined} Card, if found
|
||
*/
|
||
OO.ui.IndexLayout.prototype.getCard = function ( name ) {
|
||
return this.cards[ name ];
|
||
};
|
||
|
||
/**
|
||
* Get the current card.
|
||
*
|
||
* @return {OO.ui.CardLayout|undefined} Current card, if found
|
||
*/
|
||
OO.ui.IndexLayout.prototype.getCurrentCard = function () {
|
||
var name = this.getCurrentCardName();
|
||
return name ? this.getCard( name ) : undefined;
|
||
};
|
||
|
||
/**
|
||
* Get the symbolic name of the current card.
|
||
*
|
||
* @return {string|null} Symbolic name of the current card
|
||
*/
|
||
OO.ui.IndexLayout.prototype.getCurrentCardName = function () {
|
||
return this.currentCardName;
|
||
};
|
||
|
||
/**
|
||
* Add cards to the index layout
|
||
*
|
||
* When cards are added with the same names as existing cards, the existing cards will be
|
||
* automatically removed before the new cards are added.
|
||
*
|
||
* @param {OO.ui.CardLayout[]} cards Cards to add
|
||
* @param {number} index Index of the insertion point
|
||
* @fires add
|
||
* @chainable
|
||
*/
|
||
OO.ui.IndexLayout.prototype.addCards = function ( cards, index ) {
|
||
var i, len, name, card, item, currentIndex,
|
||
stackLayoutCards = this.stackLayout.getItems(),
|
||
remove = [],
|
||
items = [];
|
||
|
||
// Remove cards with same names
|
||
for ( i = 0, len = cards.length; i < len; i++ ) {
|
||
card = cards[ i ];
|
||
name = card.getName();
|
||
|
||
if ( Object.prototype.hasOwnProperty.call( this.cards, name ) ) {
|
||
// Correct the insertion index
|
||
currentIndex = stackLayoutCards.indexOf( this.cards[ name ] );
|
||
if ( currentIndex !== -1 && currentIndex + 1 < index ) {
|
||
index--;
|
||
}
|
||
remove.push( this.cards[ name ] );
|
||
}
|
||
}
|
||
if ( remove.length ) {
|
||
this.removeCards( remove );
|
||
}
|
||
|
||
// Add new cards
|
||
for ( i = 0, len = cards.length; i < len; i++ ) {
|
||
card = cards[ i ];
|
||
name = card.getName();
|
||
this.cards[ card.getName() ] = card;
|
||
item = new OO.ui.TabOptionWidget( { data: name } );
|
||
card.setTabItem( item );
|
||
items.push( item );
|
||
}
|
||
|
||
if ( items.length ) {
|
||
this.tabSelectWidget.addItems( items, index );
|
||
this.selectFirstSelectableCard();
|
||
}
|
||
this.stackLayout.addItems( cards, index );
|
||
this.emit( 'add', cards, index );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Remove the specified cards from the index layout.
|
||
*
|
||
* To remove all cards from the index, you may wish to use the #clearCards method instead.
|
||
*
|
||
* @param {OO.ui.CardLayout[]} cards An array of cards to remove
|
||
* @fires remove
|
||
* @chainable
|
||
*/
|
||
OO.ui.IndexLayout.prototype.removeCards = function ( cards ) {
|
||
var i, len, name, card,
|
||
items = [];
|
||
|
||
for ( i = 0, len = cards.length; i < len; i++ ) {
|
||
card = cards[ i ];
|
||
name = card.getName();
|
||
delete this.cards[ name ];
|
||
items.push( this.tabSelectWidget.getItemFromData( name ) );
|
||
card.setTabItem( null );
|
||
}
|
||
if ( items.length ) {
|
||
this.tabSelectWidget.removeItems( items );
|
||
this.selectFirstSelectableCard();
|
||
}
|
||
this.stackLayout.removeItems( cards );
|
||
this.emit( 'remove', cards );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Clear all cards from the index layout.
|
||
*
|
||
* To remove only a subset of cards from the index, use the #removeCards method.
|
||
*
|
||
* @fires remove
|
||
* @chainable
|
||
*/
|
||
OO.ui.IndexLayout.prototype.clearCards = function () {
|
||
var i, len,
|
||
cards = this.stackLayout.getItems();
|
||
|
||
this.cards = {};
|
||
this.currentCardName = null;
|
||
this.tabSelectWidget.clearItems();
|
||
for ( i = 0, len = cards.length; i < len; i++ ) {
|
||
cards[ i ].setTabItem( null );
|
||
}
|
||
this.stackLayout.clearItems();
|
||
|
||
this.emit( 'remove', cards );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set the current card by symbolic name.
|
||
*
|
||
* @fires set
|
||
* @param {string} name Symbolic name of card
|
||
*/
|
||
OO.ui.IndexLayout.prototype.setCard = function ( name ) {
|
||
var selectedItem,
|
||
$focused,
|
||
card = this.cards[ name ],
|
||
previousCard = this.currentCardName && this.cards[ this.currentCardName ];
|
||
|
||
if ( name !== this.currentCardName ) {
|
||
selectedItem = this.tabSelectWidget.getSelectedItem();
|
||
if ( selectedItem && selectedItem.getData() !== name ) {
|
||
this.tabSelectWidget.selectItemByData( name );
|
||
}
|
||
if ( card ) {
|
||
if ( previousCard ) {
|
||
previousCard.setActive( false );
|
||
// Blur anything focused if the next card doesn't have anything focusable.
|
||
// This is not needed if the next card has something focusable (because once it is focused
|
||
// this blur happens automatically). If the layout is non-continuous, this check is
|
||
// meaningless because the next card is not visible yet and thus can't hold focus.
|
||
if (
|
||
this.autoFocus &&
|
||
this.stackLayout.continuous &&
|
||
OO.ui.findFocusable( card.$element ).length !== 0
|
||
) {
|
||
$focused = previousCard.$element.find( ':focus' );
|
||
if ( $focused.length ) {
|
||
$focused[ 0 ].blur();
|
||
}
|
||
}
|
||
}
|
||
this.currentCardName = name;
|
||
card.setActive( true );
|
||
this.stackLayout.setItem( card );
|
||
if ( !this.stackLayout.continuous && previousCard ) {
|
||
// This should not be necessary, since any inputs on the previous card should have been
|
||
// blurred when it was hidden, but browsers are not very consistent about this.
|
||
$focused = previousCard.$element.find( ':focus' );
|
||
if ( $focused.length ) {
|
||
$focused[ 0 ].blur();
|
||
}
|
||
}
|
||
this.emit( 'set', card );
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Select the first selectable card.
|
||
*
|
||
* @chainable
|
||
*/
|
||
OO.ui.IndexLayout.prototype.selectFirstSelectableCard = function () {
|
||
if ( !this.tabSelectWidget.getSelectedItem() ) {
|
||
this.tabSelectWidget.selectItem( this.tabSelectWidget.getFirstSelectableItem() );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* ToggleWidget implements basic behavior of widgets with an on/off state.
|
||
* Please see OO.ui.ToggleButtonWidget and OO.ui.ToggleSwitchWidget for examples.
|
||
*
|
||
* @abstract
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [value=false] The toggle’s initial on/off state.
|
||
* By default, the toggle is in the 'off' state.
|
||
*/
|
||
OO.ui.ToggleWidget = function OoUiToggleWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.ToggleWidget.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.value = null;
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-toggleWidget' );
|
||
this.setValue( !!config.value );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ToggleWidget, OO.ui.Widget );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* @event change
|
||
*
|
||
* A change event is emitted when the on/off state of the toggle changes.
|
||
*
|
||
* @param {boolean} value Value representing the new state of the toggle
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Get the value representing the toggle’s state.
|
||
*
|
||
* @return {boolean} The on/off state of the toggle
|
||
*/
|
||
OO.ui.ToggleWidget.prototype.getValue = function () {
|
||
return this.value;
|
||
};
|
||
|
||
/**
|
||
* Set the state of the toggle: `true` for 'on', `false' for 'off'.
|
||
*
|
||
* @param {boolean} value The state of the toggle
|
||
* @fires change
|
||
* @chainable
|
||
*/
|
||
OO.ui.ToggleWidget.prototype.setValue = function ( value ) {
|
||
value = !!value;
|
||
if ( this.value !== value ) {
|
||
this.value = value;
|
||
this.emit( 'change', value );
|
||
this.$element.toggleClass( 'oo-ui-toggleWidget-on', value );
|
||
this.$element.toggleClass( 'oo-ui-toggleWidget-off', !value );
|
||
this.$element.attr( 'aria-checked', value.toString() );
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* ToggleButtons are buttons that have a state (‘on’ or ‘off’) that is represented by a
|
||
* Boolean value. Like other {@link OO.ui.ButtonWidget buttons}, toggle buttons can be
|
||
* configured with {@link OO.ui.mixin.IconElement icons}, {@link OO.ui.mixin.IndicatorElement indicators},
|
||
* {@link OO.ui.mixin.TitledElement titles}, {@link OO.ui.mixin.FlaggedElement styling flags},
|
||
* and {@link OO.ui.mixin.LabelElement labels}. Please see
|
||
* the [OOjs UI documentation][1] on MediaWiki for more information.
|
||
*
|
||
* @example
|
||
* // Toggle buttons in the 'off' and 'on' state.
|
||
* var toggleButton1 = new OO.ui.ToggleButtonWidget( {
|
||
* label: 'Toggle Button off'
|
||
* } );
|
||
* var toggleButton2 = new OO.ui.ToggleButtonWidget( {
|
||
* label: 'Toggle Button on',
|
||
* value: true
|
||
* } );
|
||
* // Append the buttons to the DOM.
|
||
* $( 'body' ).append( toggleButton1.$element, toggleButton2.$element );
|
||
*
|
||
* [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Buttons_and_Switches#Toggle_buttons
|
||
*
|
||
* @class
|
||
* @extends OO.ui.ToggleWidget
|
||
* @mixins OO.ui.mixin.ButtonElement
|
||
* @mixins OO.ui.mixin.IconElement
|
||
* @mixins OO.ui.mixin.IndicatorElement
|
||
* @mixins OO.ui.mixin.LabelElement
|
||
* @mixins OO.ui.mixin.TitledElement
|
||
* @mixins OO.ui.mixin.FlaggedElement
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [value=false] The toggle button’s initial on/off
|
||
* state. By default, the button is in the 'off' state.
|
||
*/
|
||
OO.ui.ToggleButtonWidget = function OoUiToggleButtonWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.ToggleButtonWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.ButtonElement.call( this, $.extend( {}, config, { active: this.active } ) );
|
||
OO.ui.mixin.IconElement.call( this, config );
|
||
OO.ui.mixin.IndicatorElement.call( this, config );
|
||
OO.ui.mixin.LabelElement.call( this, config );
|
||
OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
|
||
OO.ui.mixin.FlaggedElement.call( this, config );
|
||
OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$button } ) );
|
||
|
||
// Events
|
||
this.connect( this, { click: 'onAction' } );
|
||
|
||
// Initialization
|
||
this.$button.append( this.$icon, this.$label, this.$indicator );
|
||
this.$element
|
||
.addClass( 'oo-ui-toggleButtonWidget' )
|
||
.append( this.$button );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ToggleButtonWidget, OO.ui.ToggleWidget );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.ButtonElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IconElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.IndicatorElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.LabelElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TitledElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.FlaggedElement );
|
||
OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle the button action being triggered.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.ToggleButtonWidget.prototype.onAction = function () {
|
||
this.setValue( !this.value );
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.ToggleButtonWidget.prototype.setValue = function ( value ) {
|
||
value = !!value;
|
||
if ( value !== this.value ) {
|
||
// Might be called from parent constructor before ButtonElement constructor
|
||
if ( this.$button ) {
|
||
this.$button.attr( 'aria-pressed', value.toString() );
|
||
}
|
||
this.setActive( value );
|
||
}
|
||
|
||
// Parent method
|
||
OO.ui.ToggleButtonWidget.parent.prototype.setValue.call( this, value );
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.ToggleButtonWidget.prototype.setButtonElement = function ( $button ) {
|
||
if ( this.$button ) {
|
||
this.$button.removeAttr( 'aria-pressed' );
|
||
}
|
||
OO.ui.mixin.ButtonElement.prototype.setButtonElement.call( this, $button );
|
||
this.$button.attr( 'aria-pressed', this.value.toString() );
|
||
};
|
||
|
||
/**
|
||
* ToggleSwitches are switches that slide on and off. Their state is represented by a Boolean
|
||
* value (`true` for ‘on’, and `false` otherwise, the default). The ‘off’ state is represented
|
||
* visually by a slider in the leftmost position.
|
||
*
|
||
* @example
|
||
* // Toggle switches in the 'off' and 'on' position.
|
||
* var toggleSwitch1 = new OO.ui.ToggleSwitchWidget();
|
||
* var toggleSwitch2 = new OO.ui.ToggleSwitchWidget( {
|
||
* value: true
|
||
* } );
|
||
*
|
||
* // Create a FieldsetLayout to layout and label switches
|
||
* var fieldset = new OO.ui.FieldsetLayout( {
|
||
* label: 'Toggle switches'
|
||
* } );
|
||
* fieldset.addItems( [
|
||
* new OO.ui.FieldLayout( toggleSwitch1, { label: 'Off', align: 'top' } ),
|
||
* new OO.ui.FieldLayout( toggleSwitch2, { label: 'On', align: 'top' } )
|
||
* ] );
|
||
* $( 'body' ).append( fieldset.$element );
|
||
*
|
||
* @class
|
||
* @extends OO.ui.ToggleWidget
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [value=false] The toggle switch’s initial on/off state.
|
||
* By default, the toggle switch is in the 'off' position.
|
||
*/
|
||
OO.ui.ToggleSwitchWidget = function OoUiToggleSwitchWidget( config ) {
|
||
// Parent constructor
|
||
OO.ui.ToggleSwitchWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.TabIndexedElement.call( this, config );
|
||
|
||
// Properties
|
||
this.dragging = false;
|
||
this.dragStart = null;
|
||
this.sliding = false;
|
||
this.$glow = $( '<span>' );
|
||
this.$grip = $( '<span>' );
|
||
|
||
// Events
|
||
this.$element.on( {
|
||
click: this.onClick.bind( this ),
|
||
keypress: this.onKeyPress.bind( this )
|
||
} );
|
||
|
||
// Initialization
|
||
this.$glow.addClass( 'oo-ui-toggleSwitchWidget-glow' );
|
||
this.$grip.addClass( 'oo-ui-toggleSwitchWidget-grip' );
|
||
this.$element
|
||
.addClass( 'oo-ui-toggleSwitchWidget' )
|
||
.attr( 'role', 'checkbox' )
|
||
.append( this.$glow, this.$grip );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ToggleSwitchWidget, OO.ui.ToggleWidget );
|
||
OO.mixinClass( OO.ui.ToggleSwitchWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle mouse click events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Mouse click event
|
||
*/
|
||
OO.ui.ToggleSwitchWidget.prototype.onClick = function ( e ) {
|
||
if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
|
||
this.setValue( !this.value );
|
||
}
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Handle key press events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key press event
|
||
*/
|
||
OO.ui.ToggleSwitchWidget.prototype.onKeyPress = function ( e ) {
|
||
if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
|
||
this.setValue( !this.value );
|
||
return false;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* OutlineControlsWidget is a set of controls for an {@link OO.ui.OutlineSelectWidget outline select widget}.
|
||
* Controls include moving items up and down, removing items, and adding different kinds of items.
|
||
*
|
||
* **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
* @mixins OO.ui.mixin.GroupElement
|
||
* @mixins OO.ui.mixin.IconElement
|
||
*
|
||
* @constructor
|
||
* @param {OO.ui.OutlineSelectWidget} outline Outline to control
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {Object} [abilities] List of abilties
|
||
* @cfg {boolean} [abilities.move=true] Allow moving movable items
|
||
* @cfg {boolean} [abilities.remove=true] Allow removing removable items
|
||
*/
|
||
OO.ui.OutlineControlsWidget = function OoUiOutlineControlsWidget( outline, config ) {
|
||
// Allow passing positional parameters inside the config object
|
||
if ( OO.isPlainObject( outline ) && config === undefined ) {
|
||
config = outline;
|
||
outline = config.outline;
|
||
}
|
||
|
||
// Configuration initialization
|
||
config = $.extend( { icon: 'add' }, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.OutlineControlsWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.GroupElement.call( this, config );
|
||
OO.ui.mixin.IconElement.call( this, config );
|
||
|
||
// Properties
|
||
this.outline = outline;
|
||
this.$movers = $( '<div>' );
|
||
this.upButton = new OO.ui.ButtonWidget( {
|
||
framed: false,
|
||
icon: 'collapse',
|
||
title: OO.ui.msg( 'ooui-outline-control-move-up' )
|
||
} );
|
||
this.downButton = new OO.ui.ButtonWidget( {
|
||
framed: false,
|
||
icon: 'expand',
|
||
title: OO.ui.msg( 'ooui-outline-control-move-down' )
|
||
} );
|
||
this.removeButton = new OO.ui.ButtonWidget( {
|
||
framed: false,
|
||
icon: 'remove',
|
||
title: OO.ui.msg( 'ooui-outline-control-remove' )
|
||
} );
|
||
this.abilities = { move: true, remove: true };
|
||
|
||
// Events
|
||
outline.connect( this, {
|
||
select: 'onOutlineChange',
|
||
add: 'onOutlineChange',
|
||
remove: 'onOutlineChange'
|
||
} );
|
||
this.upButton.connect( this, { click: [ 'emit', 'move', -1 ] } );
|
||
this.downButton.connect( this, { click: [ 'emit', 'move', 1 ] } );
|
||
this.removeButton.connect( this, { click: [ 'emit', 'remove' ] } );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-outlineControlsWidget' );
|
||
this.$group.addClass( 'oo-ui-outlineControlsWidget-items' );
|
||
this.$movers
|
||
.addClass( 'oo-ui-outlineControlsWidget-movers' )
|
||
.append( this.removeButton.$element, this.upButton.$element, this.downButton.$element );
|
||
this.$element.append( this.$icon, this.$group, this.$movers );
|
||
this.setAbilities( config.abilities || {} );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.OutlineControlsWidget, OO.ui.Widget );
|
||
OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.GroupElement );
|
||
OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.mixin.IconElement );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* @event move
|
||
* @param {number} places Number of places to move
|
||
*/
|
||
|
||
/**
|
||
* @event remove
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Set abilities.
|
||
*
|
||
* @param {Object} abilities List of abilties
|
||
* @param {boolean} [abilities.move] Allow moving movable items
|
||
* @param {boolean} [abilities.remove] Allow removing removable items
|
||
*/
|
||
OO.ui.OutlineControlsWidget.prototype.setAbilities = function ( abilities ) {
|
||
var ability;
|
||
|
||
for ( ability in this.abilities ) {
|
||
if ( abilities[ ability ] !== undefined ) {
|
||
this.abilities[ ability ] = !!abilities[ ability ];
|
||
}
|
||
}
|
||
|
||
this.onOutlineChange();
|
||
};
|
||
|
||
/**
|
||
* Handle outline change events.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.OutlineControlsWidget.prototype.onOutlineChange = function () {
|
||
var i, len, firstMovable, lastMovable,
|
||
items = this.outline.getItems(),
|
||
selectedItem = this.outline.getSelectedItem(),
|
||
movable = this.abilities.move && selectedItem && selectedItem.isMovable(),
|
||
removable = this.abilities.remove && selectedItem && selectedItem.isRemovable();
|
||
|
||
if ( movable ) {
|
||
i = -1;
|
||
len = items.length;
|
||
while ( ++i < len ) {
|
||
if ( items[ i ].isMovable() ) {
|
||
firstMovable = items[ i ];
|
||
break;
|
||
}
|
||
}
|
||
i = len;
|
||
while ( i-- ) {
|
||
if ( items[ i ].isMovable() ) {
|
||
lastMovable = items[ i ];
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
this.upButton.setDisabled( !movable || selectedItem === firstMovable );
|
||
this.downButton.setDisabled( !movable || selectedItem === lastMovable );
|
||
this.removeButton.setDisabled( !removable );
|
||
};
|
||
|
||
/**
|
||
* OutlineOptionWidget is an item in an {@link OO.ui.OutlineSelectWidget OutlineSelectWidget}.
|
||
*
|
||
* Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}, which contain
|
||
* {@link OO.ui.PageLayout page layouts}. See {@link OO.ui.BookletLayout BookletLayout}
|
||
* for an example.
|
||
*
|
||
* @class
|
||
* @extends OO.ui.DecoratedOptionWidget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {number} [level] Indentation level
|
||
* @cfg {boolean} [movable] Allow modification from {@link OO.ui.OutlineControlsWidget outline controls}.
|
||
*/
|
||
OO.ui.OutlineOptionWidget = function OoUiOutlineOptionWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.OutlineOptionWidget.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.level = 0;
|
||
this.movable = !!config.movable;
|
||
this.removable = !!config.removable;
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-outlineOptionWidget' );
|
||
this.setLevel( config.level );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.OutlineOptionWidget, OO.ui.DecoratedOptionWidget );
|
||
|
||
/* Static Properties */
|
||
|
||
OO.ui.OutlineOptionWidget.static.highlightable = true;
|
||
|
||
OO.ui.OutlineOptionWidget.static.scrollIntoViewOnSelect = true;
|
||
|
||
OO.ui.OutlineOptionWidget.static.levelClass = 'oo-ui-outlineOptionWidget-level-';
|
||
|
||
OO.ui.OutlineOptionWidget.static.levels = 3;
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Check if item is movable.
|
||
*
|
||
* Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
|
||
*
|
||
* @return {boolean} Item is movable
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.isMovable = function () {
|
||
return this.movable;
|
||
};
|
||
|
||
/**
|
||
* Check if item is removable.
|
||
*
|
||
* Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
|
||
*
|
||
* @return {boolean} Item is removable
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.isRemovable = function () {
|
||
return this.removable;
|
||
};
|
||
|
||
/**
|
||
* Get indentation level.
|
||
*
|
||
* @return {number} Indentation level
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.getLevel = function () {
|
||
return this.level;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.setPressed = function ( state ) {
|
||
OO.ui.OutlineOptionWidget.parent.prototype.setPressed.call( this, state );
|
||
if ( this.constructor.static.pressable ) {
|
||
this.pressed = !!state;
|
||
if ( this.pressed ) {
|
||
this.setFlags( 'progressive' );
|
||
} else if ( !this.selected ) {
|
||
this.clearFlags();
|
||
}
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set movability.
|
||
*
|
||
* Movability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
|
||
*
|
||
* @param {boolean} movable Item is movable
|
||
* @chainable
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.setMovable = function ( movable ) {
|
||
this.movable = !!movable;
|
||
this.updateThemeClasses();
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set removability.
|
||
*
|
||
* Removability is used by {@link OO.ui.OutlineControlsWidget outline controls}.
|
||
*
|
||
* @param {boolean} removable Item is removable
|
||
* @chainable
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.setRemovable = function ( removable ) {
|
||
this.removable = !!removable;
|
||
this.updateThemeClasses();
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.setSelected = function ( state ) {
|
||
OO.ui.OutlineOptionWidget.parent.prototype.setSelected.call( this, state );
|
||
if ( this.constructor.static.selectable ) {
|
||
this.selected = !!state;
|
||
if ( this.selected ) {
|
||
this.setFlags( 'progressive' );
|
||
} else {
|
||
this.clearFlags();
|
||
}
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Set indentation level.
|
||
*
|
||
* @param {number} [level=0] Indentation level, in the range of [0,#maxLevel]
|
||
* @chainable
|
||
*/
|
||
OO.ui.OutlineOptionWidget.prototype.setLevel = function ( level ) {
|
||
var levels = this.constructor.static.levels,
|
||
levelClass = this.constructor.static.levelClass,
|
||
i = levels;
|
||
|
||
this.level = level ? Math.max( 0, Math.min( levels - 1, level ) ) : 0;
|
||
while ( i-- ) {
|
||
if ( this.level === i ) {
|
||
this.$element.addClass( levelClass + i );
|
||
} else {
|
||
this.$element.removeClass( levelClass + i );
|
||
}
|
||
}
|
||
this.updateThemeClasses();
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* OutlineSelectWidget is a structured list that contains {@link OO.ui.OutlineOptionWidget outline options}
|
||
* A set of controls can be provided with an {@link OO.ui.OutlineControlsWidget outline controls} widget.
|
||
*
|
||
* **Currently, this class is only used by {@link OO.ui.BookletLayout booklet layouts}.**
|
||
*
|
||
* @class
|
||
* @extends OO.ui.SelectWidget
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.OutlineSelectWidget = function OoUiOutlineSelectWidget( config ) {
|
||
// Parent constructor
|
||
OO.ui.OutlineSelectWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.TabIndexedElement.call( this, config );
|
||
|
||
// Events
|
||
this.$element.on( {
|
||
focus: this.bindKeyDownListener.bind( this ),
|
||
blur: this.unbindKeyDownListener.bind( this )
|
||
} );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-outlineSelectWidget' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.OutlineSelectWidget, OO.ui.SelectWidget );
|
||
OO.mixinClass( OO.ui.OutlineSelectWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/**
|
||
* ButtonOptionWidget is a special type of {@link OO.ui.mixin.ButtonElement button element} that
|
||
* can be selected and configured with data. The class is
|
||
* used with OO.ui.ButtonSelectWidget to create a selection of button options. Please see the
|
||
* [OOjs UI documentation on MediaWiki] [1] for more information.
|
||
*
|
||
* [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Button_selects_and_options
|
||
*
|
||
* @class
|
||
* @extends OO.ui.OptionWidget
|
||
* @mixins OO.ui.mixin.ButtonElement
|
||
* @mixins OO.ui.mixin.IconElement
|
||
* @mixins OO.ui.mixin.IndicatorElement
|
||
* @mixins OO.ui.mixin.TitledElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.ButtonOptionWidget = function OoUiButtonOptionWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.ButtonOptionWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.ButtonElement.call( this, config );
|
||
OO.ui.mixin.IconElement.call( this, config );
|
||
OO.ui.mixin.IndicatorElement.call( this, config );
|
||
OO.ui.mixin.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-buttonOptionWidget' );
|
||
this.$button.append( this.$icon, this.$label, this.$indicator );
|
||
this.$element.append( this.$button );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ButtonOptionWidget, OO.ui.OptionWidget );
|
||
OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.ButtonElement );
|
||
OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IconElement );
|
||
OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.IndicatorElement );
|
||
OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.mixin.TitledElement );
|
||
|
||
/* Static Properties */
|
||
|
||
// Allow button mouse down events to pass through so they can be handled by the parent select widget
|
||
OO.ui.ButtonOptionWidget.static.cancelButtonMouseDownEvents = false;
|
||
|
||
OO.ui.ButtonOptionWidget.static.highlightable = false;
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.ButtonOptionWidget.prototype.setSelected = function ( state ) {
|
||
OO.ui.ButtonOptionWidget.parent.prototype.setSelected.call( this, state );
|
||
|
||
if ( this.constructor.static.selectable ) {
|
||
this.setActive( state );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* ButtonSelectWidget is a {@link OO.ui.SelectWidget select widget} that contains
|
||
* button options and is used together with
|
||
* OO.ui.ButtonOptionWidget. The ButtonSelectWidget provides an interface for
|
||
* highlighting, choosing, and selecting mutually exclusive options. Please see
|
||
* the [OOjs UI documentation on MediaWiki] [1] for more information.
|
||
*
|
||
* @example
|
||
* // Example: A ButtonSelectWidget that contains three ButtonOptionWidgets
|
||
* var option1 = new OO.ui.ButtonOptionWidget( {
|
||
* data: 1,
|
||
* label: 'Option 1',
|
||
* title: 'Button option 1'
|
||
* } );
|
||
*
|
||
* var option2 = new OO.ui.ButtonOptionWidget( {
|
||
* data: 2,
|
||
* label: 'Option 2',
|
||
* title: 'Button option 2'
|
||
* } );
|
||
*
|
||
* var option3 = new OO.ui.ButtonOptionWidget( {
|
||
* data: 3,
|
||
* label: 'Option 3',
|
||
* title: 'Button option 3'
|
||
* } );
|
||
*
|
||
* var buttonSelect=new OO.ui.ButtonSelectWidget( {
|
||
* items: [ option1, option2, option3 ]
|
||
* } );
|
||
* $( 'body' ).append( buttonSelect.$element );
|
||
*
|
||
* [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options
|
||
*
|
||
* @class
|
||
* @extends OO.ui.SelectWidget
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.ButtonSelectWidget = function OoUiButtonSelectWidget( config ) {
|
||
// Parent constructor
|
||
OO.ui.ButtonSelectWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.TabIndexedElement.call( this, config );
|
||
|
||
// Events
|
||
this.$element.on( {
|
||
focus: this.bindKeyDownListener.bind( this ),
|
||
blur: this.unbindKeyDownListener.bind( this )
|
||
} );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-buttonSelectWidget' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ButtonSelectWidget, OO.ui.SelectWidget );
|
||
OO.mixinClass( OO.ui.ButtonSelectWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/**
|
||
* TabOptionWidget is an item in a {@link OO.ui.TabSelectWidget TabSelectWidget}.
|
||
*
|
||
* Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}, which contain
|
||
* {@link OO.ui.CardLayout card layouts}. See {@link OO.ui.IndexLayout IndexLayout}
|
||
* for an example.
|
||
*
|
||
* @class
|
||
* @extends OO.ui.OptionWidget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.TabOptionWidget = function OoUiTabOptionWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.TabOptionWidget.parent.call( this, config );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-tabOptionWidget' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.TabOptionWidget, OO.ui.OptionWidget );
|
||
|
||
/* Static Properties */
|
||
|
||
OO.ui.TabOptionWidget.static.highlightable = false;
|
||
|
||
/**
|
||
* TabSelectWidget is a list that contains {@link OO.ui.TabOptionWidget tab options}
|
||
*
|
||
* **Currently, this class is only used by {@link OO.ui.IndexLayout index layouts}.**
|
||
*
|
||
* @class
|
||
* @extends OO.ui.SelectWidget
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.TabSelectWidget = function OoUiTabSelectWidget( config ) {
|
||
// Parent constructor
|
||
OO.ui.TabSelectWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.TabIndexedElement.call( this, config );
|
||
|
||
// Events
|
||
this.$element.on( {
|
||
focus: this.bindKeyDownListener.bind( this ),
|
||
blur: this.unbindKeyDownListener.bind( this )
|
||
} );
|
||
|
||
// Initialization
|
||
this.$element.addClass( 'oo-ui-tabSelectWidget' );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.TabSelectWidget, OO.ui.SelectWidget );
|
||
OO.mixinClass( OO.ui.TabSelectWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/**
|
||
* CapsuleItemWidgets are used within a {@link OO.ui.CapsuleMultiselectWidget
|
||
* CapsuleMultiselectWidget} to display the selected items.
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
* @mixins OO.ui.mixin.ItemWidget
|
||
* @mixins OO.ui.mixin.LabelElement
|
||
* @mixins OO.ui.mixin.FlaggedElement
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
*/
|
||
OO.ui.CapsuleItemWidget = function OoUiCapsuleItemWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.CapsuleItemWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.ItemWidget.call( this );
|
||
OO.ui.mixin.LabelElement.call( this, config );
|
||
OO.ui.mixin.FlaggedElement.call( this, config );
|
||
OO.ui.mixin.TabIndexedElement.call( this, config );
|
||
|
||
// Events
|
||
this.closeButton = new OO.ui.ButtonWidget( {
|
||
framed: false,
|
||
indicator: 'clear',
|
||
tabIndex: -1
|
||
} ).on( 'click', this.onCloseClick.bind( this ) );
|
||
|
||
this.on( 'disable', function ( disabled ) {
|
||
this.closeButton.setDisabled( disabled );
|
||
}.bind( this ) );
|
||
|
||
// Initialization
|
||
this.$element
|
||
.on( {
|
||
click: this.onClick.bind( this ),
|
||
keydown: this.onKeyDown.bind( this )
|
||
} )
|
||
.addClass( 'oo-ui-capsuleItemWidget' )
|
||
.append( this.$label, this.closeButton.$element );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.CapsuleItemWidget, OO.ui.Widget );
|
||
OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.ItemWidget );
|
||
OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.LabelElement );
|
||
OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.FlaggedElement );
|
||
OO.mixinClass( OO.ui.CapsuleItemWidget, OO.ui.mixin.TabIndexedElement );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle close icon clicks
|
||
*/
|
||
OO.ui.CapsuleItemWidget.prototype.onCloseClick = function () {
|
||
var element = this.getElementGroup();
|
||
|
||
if ( element && $.isFunction( element.removeItems ) ) {
|
||
element.removeItems( [ this ] );
|
||
element.focus();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle click event for the entire capsule
|
||
*/
|
||
OO.ui.CapsuleItemWidget.prototype.onClick = function () {
|
||
var element = this.getElementGroup();
|
||
|
||
if ( !this.isDisabled() && element && $.isFunction( element.editItem ) ) {
|
||
element.editItem( this );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle keyDown event for the entire capsule
|
||
*/
|
||
OO.ui.CapsuleItemWidget.prototype.onKeyDown = function ( e ) {
|
||
var element = this.getElementGroup();
|
||
|
||
if ( e.keyCode === OO.ui.Keys.BACKSPACE || e.keyCode === OO.ui.Keys.DELETE ) {
|
||
element.removeItems( [ this ] );
|
||
element.focus();
|
||
return false;
|
||
} else if ( e.keyCode === OO.ui.Keys.ENTER ) {
|
||
element.editItem( this );
|
||
return false;
|
||
} else if ( e.keyCode === OO.ui.Keys.LEFT ) {
|
||
element.getPreviousItem( this ).focus();
|
||
} else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
|
||
element.getNextItem( this ).focus();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Focuses the capsule
|
||
*/
|
||
OO.ui.CapsuleItemWidget.prototype.focus = function () {
|
||
this.$element.focus();
|
||
};
|
||
|
||
/**
|
||
* CapsuleMultiselectWidgets are something like a {@link OO.ui.ComboBoxInputWidget combo box widget}
|
||
* that allows for selecting multiple values.
|
||
*
|
||
* For more information about menus and options, please see the [OOjs UI documentation on MediaWiki][1].
|
||
*
|
||
* @example
|
||
* // Example: A CapsuleMultiselectWidget.
|
||
* var capsule = new OO.ui.CapsuleMultiselectWidget( {
|
||
* label: 'CapsuleMultiselectWidget',
|
||
* selected: [ 'Option 1', 'Option 3' ],
|
||
* menu: {
|
||
* items: [
|
||
* new OO.ui.MenuOptionWidget( {
|
||
* data: 'Option 1',
|
||
* label: 'Option One'
|
||
* } ),
|
||
* new OO.ui.MenuOptionWidget( {
|
||
* data: 'Option 2',
|
||
* label: 'Option Two'
|
||
* } ),
|
||
* new OO.ui.MenuOptionWidget( {
|
||
* data: 'Option 3',
|
||
* label: 'Option Three'
|
||
* } ),
|
||
* new OO.ui.MenuOptionWidget( {
|
||
* data: 'Option 4',
|
||
* label: 'Option Four'
|
||
* } ),
|
||
* new OO.ui.MenuOptionWidget( {
|
||
* data: 'Option 5',
|
||
* label: 'Option Five'
|
||
* } )
|
||
* ]
|
||
* }
|
||
* } );
|
||
* $( 'body' ).append( capsule.$element );
|
||
*
|
||
* [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets/Selects_and_Options#Menu_selects_and_options
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
* @mixins OO.ui.mixin.GroupElement
|
||
* @mixins OO.ui.mixin.PopupElement
|
||
* @mixins OO.ui.mixin.TabIndexedElement
|
||
* @mixins OO.ui.mixin.IndicatorElement
|
||
* @mixins OO.ui.mixin.IconElement
|
||
* @uses OO.ui.CapsuleItemWidget
|
||
* @uses OO.ui.FloatingMenuSelectWidget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {boolean} [allowArbitrary=false] Allow data items to be added even if not present in the menu.
|
||
* @cfg {Object} [menu] (required) Configuration options to pass to the
|
||
* {@link OO.ui.MenuSelectWidget menu select widget}.
|
||
* @cfg {Object} [popup] Configuration options to pass to the {@link OO.ui.PopupWidget popup widget}.
|
||
* If specified, this popup will be shown instead of the menu (but the menu
|
||
* will still be used for item labels and allowArbitrary=false). The widgets
|
||
* in the popup should use {@link #addItemsFromData} or {@link #addItems} as necessary.
|
||
* @cfg {jQuery} [$overlay=this.$element] Render the menu or popup into a separate layer.
|
||
* This configuration is useful in cases where the expanded menu is larger than
|
||
* its containing `<div>`. The specified overlay layer is usually on top of
|
||
* the containing `<div>` and has a larger area. By default, the menu uses
|
||
* relative positioning.
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget = function OoUiCapsuleMultiselectWidget( config ) {
|
||
var $tabFocus;
|
||
|
||
// Parent constructor
|
||
OO.ui.CapsuleMultiselectWidget.parent.call( this, config );
|
||
|
||
// Configuration initialization
|
||
config = $.extend( {
|
||
allowArbitrary: false,
|
||
$overlay: this.$element
|
||
}, config );
|
||
|
||
// Properties (must be set before mixin constructor calls)
|
||
this.$input = config.popup ? null : $( '<input>' );
|
||
this.$handle = $( '<div>' );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.GroupElement.call( this, config );
|
||
if ( config.popup ) {
|
||
config.popup = $.extend( {}, config.popup, {
|
||
align: 'forwards',
|
||
anchor: false
|
||
} );
|
||
OO.ui.mixin.PopupElement.call( this, config );
|
||
$tabFocus = $( '<span>' );
|
||
OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: $tabFocus } ) );
|
||
} else {
|
||
this.popup = null;
|
||
$tabFocus = null;
|
||
OO.ui.mixin.TabIndexedElement.call( this, $.extend( {}, config, { $tabIndexed: this.$input } ) );
|
||
}
|
||
OO.ui.mixin.IndicatorElement.call( this, config );
|
||
OO.ui.mixin.IconElement.call( this, config );
|
||
|
||
// Properties
|
||
this.$content = $( '<div>' );
|
||
this.allowArbitrary = config.allowArbitrary;
|
||
this.$overlay = config.$overlay;
|
||
this.menu = new OO.ui.FloatingMenuSelectWidget( $.extend(
|
||
{
|
||
widget: this,
|
||
$input: this.$input,
|
||
$container: this.$element,
|
||
filterFromInput: true,
|
||
disabled: this.isDisabled()
|
||
},
|
||
config.menu
|
||
) );
|
||
|
||
// Events
|
||
if ( this.popup ) {
|
||
$tabFocus.on( {
|
||
focus: this.onFocusForPopup.bind( this )
|
||
} );
|
||
this.popup.$element.on( 'focusout', this.onPopupFocusOut.bind( this ) );
|
||
if ( this.popup.$autoCloseIgnore ) {
|
||
this.popup.$autoCloseIgnore.on( 'focusout', this.onPopupFocusOut.bind( this ) );
|
||
}
|
||
this.popup.connect( this, {
|
||
toggle: function ( visible ) {
|
||
$tabFocus.toggle( !visible );
|
||
}
|
||
} );
|
||
} else {
|
||
this.$input.on( {
|
||
focus: this.onInputFocus.bind( this ),
|
||
blur: this.onInputBlur.bind( this ),
|
||
'propertychange change click mouseup keydown keyup input cut paste select focus':
|
||
OO.ui.debounce( this.updateInputSize.bind( this ) ),
|
||
keydown: this.onKeyDown.bind( this ),
|
||
keypress: this.onKeyPress.bind( this )
|
||
} );
|
||
}
|
||
this.menu.connect( this, {
|
||
choose: 'onMenuChoose',
|
||
toggle: 'onMenuToggle',
|
||
add: 'onMenuItemsChange',
|
||
remove: 'onMenuItemsChange'
|
||
} );
|
||
this.$handle.on( {
|
||
mousedown: this.onMouseDown.bind( this )
|
||
} );
|
||
|
||
// Initialization
|
||
if ( this.$input ) {
|
||
this.$input.prop( 'disabled', this.isDisabled() );
|
||
this.$input.attr( {
|
||
role: 'combobox',
|
||
'aria-autocomplete': 'list'
|
||
} );
|
||
this.updateInputSize();
|
||
}
|
||
if ( config.data ) {
|
||
this.setItemsFromData( config.data );
|
||
}
|
||
this.$content.addClass( 'oo-ui-capsuleMultiselectWidget-content' )
|
||
.append( this.$group );
|
||
this.$group.addClass( 'oo-ui-capsuleMultiselectWidget-group' );
|
||
this.$handle.addClass( 'oo-ui-capsuleMultiselectWidget-handle' )
|
||
.append( this.$indicator, this.$icon, this.$content );
|
||
this.$element.addClass( 'oo-ui-capsuleMultiselectWidget' )
|
||
.append( this.$handle );
|
||
if ( this.popup ) {
|
||
this.$content.append( $tabFocus );
|
||
this.$overlay.append( this.popup.$element );
|
||
} else {
|
||
this.$content.append( this.$input );
|
||
this.$overlay.append( this.menu.$element );
|
||
}
|
||
this.onMenuItemsChange();
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.CapsuleMultiselectWidget, OO.ui.Widget );
|
||
OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.GroupElement );
|
||
OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.PopupElement );
|
||
OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.TabIndexedElement );
|
||
OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IndicatorElement );
|
||
OO.mixinClass( OO.ui.CapsuleMultiselectWidget, OO.ui.mixin.IconElement );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* @event change
|
||
*
|
||
* A change event is emitted when the set of selected items changes.
|
||
*
|
||
* @param {Mixed[]} datas Data of the now-selected items
|
||
*/
|
||
|
||
/**
|
||
* @event resize
|
||
*
|
||
* A resize event is emitted when the widget's dimensions change to accomodate newly added items or
|
||
* current user input.
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Construct a OO.ui.CapsuleItemWidget (or a subclass thereof) from given label and data.
|
||
* May return `null` if the given label and data are not valid.
|
||
*
|
||
* @protected
|
||
* @param {Mixed} data Custom data of any type.
|
||
* @param {string} label The label text.
|
||
* @return {OO.ui.CapsuleItemWidget|null}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.createItemWidget = function ( data, label ) {
|
||
if ( label === '' ) {
|
||
return null;
|
||
}
|
||
return new OO.ui.CapsuleItemWidget( { data: data, label: label } );
|
||
};
|
||
|
||
/**
|
||
* Get the data of the items in the capsule
|
||
*
|
||
* @return {Mixed[]}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.getItemsData = function () {
|
||
return this.getItems().map( function ( item ) {
|
||
return item.data;
|
||
} );
|
||
};
|
||
|
||
/**
|
||
* Set the items in the capsule by providing data
|
||
*
|
||
* @chainable
|
||
* @param {Mixed[]} datas
|
||
* @return {OO.ui.CapsuleMultiselectWidget}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.setItemsFromData = function ( datas ) {
|
||
var widget = this,
|
||
menu = this.menu,
|
||
items = this.getItems();
|
||
|
||
$.each( datas, function ( i, data ) {
|
||
var j, label,
|
||
item = menu.getItemFromData( data );
|
||
|
||
if ( item ) {
|
||
label = item.label;
|
||
} else if ( widget.allowArbitrary ) {
|
||
label = String( data );
|
||
} else {
|
||
return;
|
||
}
|
||
|
||
item = null;
|
||
for ( j = 0; j < items.length; j++ ) {
|
||
if ( items[ j ].data === data && items[ j ].label === label ) {
|
||
item = items[ j ];
|
||
items.splice( j, 1 );
|
||
break;
|
||
}
|
||
}
|
||
if ( !item ) {
|
||
item = widget.createItemWidget( data, label );
|
||
}
|
||
if ( item ) {
|
||
widget.addItems( [ item ], i );
|
||
}
|
||
} );
|
||
|
||
if ( items.length ) {
|
||
widget.removeItems( items );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Add items to the capsule by providing their data
|
||
*
|
||
* @chainable
|
||
* @param {Mixed[]} datas
|
||
* @return {OO.ui.CapsuleMultiselectWidget}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.addItemsFromData = function ( datas ) {
|
||
var widget = this,
|
||
menu = this.menu,
|
||
items = [];
|
||
|
||
$.each( datas, function ( i, data ) {
|
||
var item;
|
||
|
||
if ( !widget.getItemFromData( data ) ) {
|
||
item = menu.getItemFromData( data );
|
||
if ( item ) {
|
||
item = widget.createItemWidget( data, item.label );
|
||
} else if ( widget.allowArbitrary ) {
|
||
item = widget.createItemWidget( data, String( data ) );
|
||
}
|
||
if ( item ) {
|
||
items.push( item );
|
||
}
|
||
}
|
||
} );
|
||
|
||
if ( items.length ) {
|
||
this.addItems( items );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Add items to the capsule by providing a label
|
||
*
|
||
* @param {string} label
|
||
* @return {boolean} Whether the item was added or not
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.addItemFromLabel = function ( label ) {
|
||
var item, items;
|
||
item = this.menu.getItemFromLabel( label, true );
|
||
if ( item ) {
|
||
this.addItemsFromData( [ item.data ] );
|
||
return true;
|
||
} else if ( this.allowArbitrary ) {
|
||
items = this.getItems();
|
||
this.addItemsFromData( [ label ] );
|
||
return !OO.compare( this.getItems(), items );
|
||
}
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Remove items by data
|
||
*
|
||
* @chainable
|
||
* @param {Mixed[]} datas
|
||
* @return {OO.ui.CapsuleMultiselectWidget}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.removeItemsFromData = function ( datas ) {
|
||
var widget = this,
|
||
items = [];
|
||
|
||
$.each( datas, function ( i, data ) {
|
||
var item = widget.getItemFromData( data );
|
||
if ( item ) {
|
||
items.push( item );
|
||
}
|
||
} );
|
||
|
||
if ( items.length ) {
|
||
this.removeItems( items );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.addItems = function ( items ) {
|
||
var same, i, l,
|
||
oldItems = this.items.slice();
|
||
|
||
OO.ui.mixin.GroupElement.prototype.addItems.call( this, items );
|
||
|
||
if ( this.items.length !== oldItems.length ) {
|
||
same = false;
|
||
} else {
|
||
same = true;
|
||
for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
|
||
same = same && this.items[ i ] === oldItems[ i ];
|
||
}
|
||
}
|
||
if ( !same ) {
|
||
this.emit( 'change', this.getItemsData() );
|
||
this.updateIfHeightChanged();
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Removes the item from the list and copies its label to `this.$input`.
|
||
*
|
||
* @param {Object} item
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.editItem = function ( item ) {
|
||
this.$input.val( item.label );
|
||
this.updateInputSize();
|
||
this.focus();
|
||
this.removeItems( [ item ] );
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.removeItems = function ( items ) {
|
||
var same, i, l,
|
||
oldItems = this.items.slice();
|
||
|
||
OO.ui.mixin.GroupElement.prototype.removeItems.call( this, items );
|
||
|
||
if ( this.items.length !== oldItems.length ) {
|
||
same = false;
|
||
} else {
|
||
same = true;
|
||
for ( i = 0, l = oldItems.length; same && i < l; i++ ) {
|
||
same = same && this.items[ i ] === oldItems[ i ];
|
||
}
|
||
}
|
||
if ( !same ) {
|
||
this.emit( 'change', this.getItemsData() );
|
||
this.updateIfHeightChanged();
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.clearItems = function () {
|
||
if ( this.items.length ) {
|
||
OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
|
||
this.emit( 'change', this.getItemsData() );
|
||
this.updateIfHeightChanged();
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Given an item, returns the item after it. If its the last item,
|
||
* returns `this.$input`. If no item is passed, returns the very first
|
||
* item.
|
||
*
|
||
* @param {OO.ui.CapsuleItemWidget} [item]
|
||
* @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.getNextItem = function ( item ) {
|
||
var itemIndex;
|
||
|
||
if ( item === undefined ) {
|
||
return this.items[ 0 ];
|
||
}
|
||
|
||
itemIndex = this.items.indexOf( item );
|
||
if ( itemIndex < 0 ) { // Item not in list
|
||
return false;
|
||
} else if ( itemIndex === this.items.length - 1 ) { // Last item
|
||
return this.$input;
|
||
} else {
|
||
return this.items[ itemIndex + 1 ];
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Given an item, returns the item before it. If its the first item,
|
||
* returns `this.$input`. If no item is passed, returns the very last
|
||
* item.
|
||
*
|
||
* @param {OO.ui.CapsuleItemWidget} [item]
|
||
* @return {OO.ui.CapsuleItemWidget|jQuery|boolean}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.getPreviousItem = function ( item ) {
|
||
var itemIndex;
|
||
|
||
if ( item === undefined ) {
|
||
return this.items[ this.items.length - 1 ];
|
||
}
|
||
|
||
itemIndex = this.items.indexOf( item );
|
||
if ( itemIndex < 0 ) { // Item not in list
|
||
return false;
|
||
} else if ( itemIndex === 0 ) { // First item
|
||
return this.$input;
|
||
} else {
|
||
return this.items[ itemIndex - 1 ];
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the capsule widget's menu.
|
||
*
|
||
* @return {OO.ui.MenuSelectWidget} Menu widget
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.getMenu = function () {
|
||
return this.menu;
|
||
};
|
||
|
||
/**
|
||
* Handle focus events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onInputFocus = function () {
|
||
if ( !this.isDisabled() ) {
|
||
this.menu.toggle( true );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle blur events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onInputBlur = function () {
|
||
this.addItemFromLabel( this.$input.val() );
|
||
this.clearInput();
|
||
};
|
||
|
||
/**
|
||
* Handle focus events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onFocusForPopup = function () {
|
||
if ( !this.isDisabled() ) {
|
||
this.popup.setSize( this.$handle.width() );
|
||
this.popup.toggle( true );
|
||
OO.ui.findFocusable( this.popup.$element ).focus();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handles popup focus out events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Focus out event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onPopupFocusOut = function () {
|
||
var widget = this.popup;
|
||
|
||
setTimeout( function () {
|
||
if (
|
||
widget.isVisible() &&
|
||
!OO.ui.contains( widget.$element[ 0 ], document.activeElement, true ) &&
|
||
( !widget.$autoCloseIgnore || !widget.$autoCloseIgnore.has( document.activeElement ).length )
|
||
) {
|
||
widget.toggle( false );
|
||
}
|
||
} );
|
||
};
|
||
|
||
/**
|
||
* Handle mouse down events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Mouse down event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onMouseDown = function ( e ) {
|
||
if ( e.which === OO.ui.MouseButtons.LEFT ) {
|
||
this.focus();
|
||
return false;
|
||
} else {
|
||
this.updateInputSize();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle key press events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key press event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onKeyPress = function ( e ) {
|
||
if ( !this.isDisabled() ) {
|
||
if ( e.which === OO.ui.Keys.ESCAPE ) {
|
||
this.clearInput();
|
||
return false;
|
||
}
|
||
|
||
if ( !this.popup ) {
|
||
this.menu.toggle( true );
|
||
if ( e.which === OO.ui.Keys.ENTER ) {
|
||
if ( this.addItemFromLabel( this.$input.val() ) ) {
|
||
this.clearInput();
|
||
}
|
||
return false;
|
||
}
|
||
|
||
// Make sure the input gets resized.
|
||
setTimeout( this.updateInputSize.bind( this ), 0 );
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle key down events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key down event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onKeyDown = function ( e ) {
|
||
if (
|
||
!this.isDisabled() &&
|
||
this.$input.val() === '' &&
|
||
this.items.length
|
||
) {
|
||
// 'keypress' event is not triggered for Backspace
|
||
if ( e.keyCode === OO.ui.Keys.BACKSPACE ) {
|
||
if ( e.metaKey || e.ctrlKey ) {
|
||
this.removeItems( this.items.slice( -1 ) );
|
||
} else {
|
||
this.editItem( this.items[ this.items.length - 1 ] );
|
||
}
|
||
return false;
|
||
} else if ( e.keyCode === OO.ui.Keys.LEFT ) {
|
||
this.getPreviousItem().focus();
|
||
} else if ( e.keyCode === OO.ui.Keys.RIGHT ) {
|
||
this.getNextItem().focus();
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Update the dimensions of the text input field to encompass all available area.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Event of some sort
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.updateInputSize = function () {
|
||
var $lastItem, direction, contentWidth, currentWidth, bestWidth;
|
||
if ( !this.isDisabled() ) {
|
||
this.$input.css( 'width', '1em' );
|
||
$lastItem = this.$group.children().last();
|
||
direction = OO.ui.Element.static.getDir( this.$handle );
|
||
contentWidth = this.$input[ 0 ].scrollWidth;
|
||
currentWidth = this.$input.width();
|
||
|
||
if ( contentWidth < currentWidth ) {
|
||
// All is fine, don't perform expensive calculations
|
||
return;
|
||
}
|
||
|
||
if ( !$lastItem.length ) {
|
||
bestWidth = this.$content.innerWidth();
|
||
} else {
|
||
bestWidth = direction === 'ltr' ?
|
||
this.$content.innerWidth() - $lastItem.position().left - $lastItem.outerWidth() :
|
||
$lastItem.position().left;
|
||
}
|
||
// Some safety margin for sanity, because I *really* don't feel like finding out where the few
|
||
// pixels this is off by are coming from.
|
||
bestWidth -= 10;
|
||
if ( contentWidth > bestWidth ) {
|
||
// This will result in the input getting shifted to the next line
|
||
bestWidth = this.$content.innerWidth() - 10;
|
||
}
|
||
this.$input.width( Math.floor( bestWidth ) );
|
||
this.updateIfHeightChanged();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Determine if widget height changed, and if so, update menu position and emit 'resize' event.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.updateIfHeightChanged = function () {
|
||
var height = this.$element.height();
|
||
if ( height !== this.height ) {
|
||
this.height = height;
|
||
this.menu.position();
|
||
this.emit( 'resize' );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle menu choose events.
|
||
*
|
||
* @private
|
||
* @param {OO.ui.OptionWidget} item Chosen item
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onMenuChoose = function ( item ) {
|
||
if ( item && item.isVisible() ) {
|
||
this.addItemsFromData( [ item.getData() ] );
|
||
this.clearInput();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle menu toggle events.
|
||
*
|
||
* @private
|
||
* @param {boolean} isVisible Menu toggle event
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
|
||
this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-open', isVisible );
|
||
};
|
||
|
||
/**
|
||
* Handle menu item change events.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.onMenuItemsChange = function () {
|
||
this.setItemsFromData( this.getItemsData() );
|
||
this.$element.toggleClass( 'oo-ui-capsuleMultiselectWidget-empty', this.menu.isEmpty() );
|
||
};
|
||
|
||
/**
|
||
* Clear the input field
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.clearInput = function () {
|
||
if ( this.$input ) {
|
||
this.$input.val( '' );
|
||
this.updateInputSize();
|
||
}
|
||
if ( this.popup ) {
|
||
this.popup.toggle( false );
|
||
}
|
||
this.menu.toggle( false );
|
||
this.menu.selectItem();
|
||
this.menu.highlightItem();
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.setDisabled = function ( disabled ) {
|
||
var i, len;
|
||
|
||
// Parent method
|
||
OO.ui.CapsuleMultiselectWidget.parent.prototype.setDisabled.call( this, disabled );
|
||
|
||
if ( this.$input ) {
|
||
this.$input.prop( 'disabled', this.isDisabled() );
|
||
}
|
||
if ( this.menu ) {
|
||
this.menu.setDisabled( this.isDisabled() );
|
||
}
|
||
if ( this.popup ) {
|
||
this.popup.setDisabled( this.isDisabled() );
|
||
}
|
||
|
||
if ( this.items ) {
|
||
for ( i = 0, len = this.items.length; i < len; i++ ) {
|
||
this.items[ i ].updateDisabled();
|
||
}
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Focus the widget
|
||
*
|
||
* @chainable
|
||
* @return {OO.ui.CapsuleMultiselectWidget}
|
||
*/
|
||
OO.ui.CapsuleMultiselectWidget.prototype.focus = function () {
|
||
if ( !this.isDisabled() ) {
|
||
if ( this.popup ) {
|
||
this.popup.setSize( this.$handle.width() );
|
||
this.popup.toggle( true );
|
||
OO.ui.findFocusable( this.popup.$element ).focus();
|
||
} else {
|
||
this.updateInputSize();
|
||
this.menu.toggle( true );
|
||
this.$input.focus();
|
||
}
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* @class
|
||
* @deprecated since 0.17.3; use OO.ui.CapsuleMultiselectWidget instead
|
||
*/
|
||
OO.ui.CapsuleMultiSelectWidget = OO.ui.CapsuleMultiselectWidget;
|
||
|
||
/**
|
||
* SelectFileWidgets allow for selecting files, using the HTML5 File API. These
|
||
* widgets can be configured with {@link OO.ui.mixin.IconElement icons} and {@link
|
||
* OO.ui.mixin.IndicatorElement indicators}.
|
||
* Please see the [OOjs UI documentation on MediaWiki] [1] for more information and examples.
|
||
*
|
||
* @example
|
||
* // Example of a file select widget
|
||
* var selectFile = new OO.ui.SelectFileWidget();
|
||
* $( 'body' ).append( selectFile.$element );
|
||
*
|
||
* [1]: https://www.mediawiki.org/wiki/OOjs_UI/Widgets
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
* @mixins OO.ui.mixin.IconElement
|
||
* @mixins OO.ui.mixin.IndicatorElement
|
||
* @mixins OO.ui.mixin.PendingElement
|
||
* @mixins OO.ui.mixin.LabelElement
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {string[]|null} [accept=null] MIME types to accept. null accepts all types.
|
||
* @cfg {string} [placeholder] Text to display when no file is selected.
|
||
* @cfg {string} [notsupported] Text to display when file support is missing in the browser.
|
||
* @cfg {boolean} [droppable=true] Whether to accept files by drag and drop.
|
||
* @cfg {boolean} [showDropTarget=false] Whether to show a drop target. Requires droppable to be true.
|
||
* @cfg {number} [thumbnailSizeLimit=20] File size limit in MiB above which to not try and show a
|
||
* preview (for performance)
|
||
*/
|
||
OO.ui.SelectFileWidget = function OoUiSelectFileWidget( config ) {
|
||
var dragHandler;
|
||
|
||
// Configuration initialization
|
||
config = $.extend( {
|
||
accept: null,
|
||
placeholder: OO.ui.msg( 'ooui-selectfile-placeholder' ),
|
||
notsupported: OO.ui.msg( 'ooui-selectfile-not-supported' ),
|
||
droppable: true,
|
||
showDropTarget: false,
|
||
thumbnailSizeLimit: 20
|
||
}, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.SelectFileWidget.parent.call( this, config );
|
||
|
||
// Mixin constructors
|
||
OO.ui.mixin.IconElement.call( this, config );
|
||
OO.ui.mixin.IndicatorElement.call( this, config );
|
||
OO.ui.mixin.PendingElement.call( this, $.extend( {}, config, { $pending: this.$info } ) );
|
||
OO.ui.mixin.LabelElement.call( this, config );
|
||
|
||
// Properties
|
||
this.$info = $( '<span>' );
|
||
this.showDropTarget = config.showDropTarget;
|
||
this.thumbnailSizeLimit = config.thumbnailSizeLimit;
|
||
this.isSupported = this.constructor.static.isSupported();
|
||
this.currentFile = null;
|
||
if ( Array.isArray( config.accept ) ) {
|
||
this.accept = config.accept;
|
||
} else {
|
||
this.accept = null;
|
||
}
|
||
this.placeholder = config.placeholder;
|
||
this.notsupported = config.notsupported;
|
||
this.onFileSelectedHandler = this.onFileSelected.bind( this );
|
||
|
||
this.selectButton = new OO.ui.ButtonWidget( {
|
||
classes: [ 'oo-ui-selectFileWidget-selectButton' ],
|
||
label: OO.ui.msg( 'ooui-selectfile-button-select' ),
|
||
disabled: this.disabled || !this.isSupported
|
||
} );
|
||
|
||
this.clearButton = new OO.ui.ButtonWidget( {
|
||
classes: [ 'oo-ui-selectFileWidget-clearButton' ],
|
||
framed: false,
|
||
icon: 'close',
|
||
disabled: this.disabled
|
||
} );
|
||
|
||
// Events
|
||
this.selectButton.$button.on( {
|
||
keypress: this.onKeyPress.bind( this )
|
||
} );
|
||
this.clearButton.connect( this, {
|
||
click: 'onClearClick'
|
||
} );
|
||
if ( config.droppable ) {
|
||
dragHandler = this.onDragEnterOrOver.bind( this );
|
||
this.$element.on( {
|
||
dragenter: dragHandler,
|
||
dragover: dragHandler,
|
||
dragleave: this.onDragLeave.bind( this ),
|
||
drop: this.onDrop.bind( this )
|
||
} );
|
||
}
|
||
|
||
// Initialization
|
||
this.addInput();
|
||
this.$label.addClass( 'oo-ui-selectFileWidget-label' );
|
||
this.$info
|
||
.addClass( 'oo-ui-selectFileWidget-info' )
|
||
.append( this.$icon, this.$label, this.clearButton.$element, this.$indicator );
|
||
|
||
if ( config.droppable && config.showDropTarget ) {
|
||
this.selectButton.setIcon( 'upload' );
|
||
this.$thumbnail = $( '<div>' ).addClass( 'oo-ui-selectFileWidget-thumbnail' );
|
||
this.setPendingElement( this.$thumbnail );
|
||
this.$element
|
||
.addClass( 'oo-ui-selectFileWidget-dropTarget oo-ui-selectFileWidget' )
|
||
.on( {
|
||
click: this.onDropTargetClick.bind( this )
|
||
} )
|
||
.append(
|
||
this.$thumbnail,
|
||
this.$info,
|
||
this.selectButton.$element,
|
||
$( '<span>' )
|
||
.addClass( 'oo-ui-selectFileWidget-dropLabel' )
|
||
.text( OO.ui.msg( 'ooui-selectfile-dragdrop-placeholder' ) )
|
||
);
|
||
} else {
|
||
this.$element
|
||
.addClass( 'oo-ui-selectFileWidget' )
|
||
.append( this.$info, this.selectButton.$element );
|
||
}
|
||
this.updateUI();
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.SelectFileWidget, OO.ui.Widget );
|
||
OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IconElement );
|
||
OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.IndicatorElement );
|
||
OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.PendingElement );
|
||
OO.mixinClass( OO.ui.SelectFileWidget, OO.ui.mixin.LabelElement );
|
||
|
||
/* Static Properties */
|
||
|
||
/**
|
||
* Check if this widget is supported
|
||
*
|
||
* @static
|
||
* @return {boolean}
|
||
*/
|
||
OO.ui.SelectFileWidget.static.isSupported = function () {
|
||
var $input;
|
||
if ( OO.ui.SelectFileWidget.static.isSupportedCache === null ) {
|
||
$input = $( '<input>' ).attr( 'type', 'file' );
|
||
OO.ui.SelectFileWidget.static.isSupportedCache = $input[ 0 ].files !== undefined;
|
||
}
|
||
return OO.ui.SelectFileWidget.static.isSupportedCache;
|
||
};
|
||
|
||
OO.ui.SelectFileWidget.static.isSupportedCache = null;
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* @event change
|
||
*
|
||
* A change event is emitted when the on/off state of the toggle changes.
|
||
*
|
||
* @param {File|null} value New value
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Get the current value of the field
|
||
*
|
||
* @return {File|null}
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.getValue = function () {
|
||
return this.currentFile;
|
||
};
|
||
|
||
/**
|
||
* Set the current value of the field
|
||
*
|
||
* @param {File|null} file File to select
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.setValue = function ( file ) {
|
||
if ( this.currentFile !== file ) {
|
||
this.currentFile = file;
|
||
this.updateUI();
|
||
this.emit( 'change', this.currentFile );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Focus the widget.
|
||
*
|
||
* Focusses the select file button.
|
||
*
|
||
* @chainable
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.focus = function () {
|
||
this.selectButton.$button[ 0 ].focus();
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* Update the user interface when a file is selected or unselected
|
||
*
|
||
* @protected
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.updateUI = function () {
|
||
var $label;
|
||
if ( !this.isSupported ) {
|
||
this.$element.addClass( 'oo-ui-selectFileWidget-notsupported' );
|
||
this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
|
||
this.setLabel( this.notsupported );
|
||
} else {
|
||
this.$element.addClass( 'oo-ui-selectFileWidget-supported' );
|
||
if ( this.currentFile ) {
|
||
this.$element.removeClass( 'oo-ui-selectFileWidget-empty' );
|
||
$label = $( [] );
|
||
$label = $label.add(
|
||
$( '<span>' )
|
||
.addClass( 'oo-ui-selectFileWidget-fileName' )
|
||
.text( this.currentFile.name )
|
||
);
|
||
this.setLabel( $label );
|
||
|
||
if ( this.showDropTarget ) {
|
||
this.pushPending();
|
||
this.loadAndGetImageUrl().done( function ( url ) {
|
||
this.$thumbnail.css( 'background-image', 'url( ' + url + ' )' );
|
||
}.bind( this ) ).fail( function () {
|
||
this.$thumbnail.append(
|
||
new OO.ui.IconWidget( {
|
||
icon: 'attachment',
|
||
classes: [ 'oo-ui-selectFileWidget-noThumbnail-icon' ]
|
||
} ).$element
|
||
);
|
||
}.bind( this ) ).always( function () {
|
||
this.popPending();
|
||
}.bind( this ) );
|
||
this.$element.off( 'click' );
|
||
}
|
||
} else {
|
||
if ( this.showDropTarget ) {
|
||
this.$element.off( 'click' );
|
||
this.$element.on( {
|
||
click: this.onDropTargetClick.bind( this )
|
||
} );
|
||
this.$thumbnail
|
||
.empty()
|
||
.css( 'background-image', '' );
|
||
}
|
||
this.$element.addClass( 'oo-ui-selectFileWidget-empty' );
|
||
this.setLabel( this.placeholder );
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* If the selected file is an image, get its URL and load it.
|
||
*
|
||
* @return {jQuery.Promise} Promise resolves with the image URL after it has loaded
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.loadAndGetImageUrl = function () {
|
||
var deferred = $.Deferred(),
|
||
file = this.currentFile,
|
||
reader = new FileReader();
|
||
|
||
if (
|
||
file &&
|
||
( OO.getProp( file, 'type' ) || '' ).indexOf( 'image/' ) === 0 &&
|
||
file.size < this.thumbnailSizeLimit * 1024 * 1024
|
||
) {
|
||
reader.onload = function ( event ) {
|
||
var img = document.createElement( 'img' );
|
||
img.addEventListener( 'load', function () {
|
||
if (
|
||
img.naturalWidth === 0 ||
|
||
img.naturalHeight === 0 ||
|
||
img.complete === false
|
||
) {
|
||
deferred.reject();
|
||
} else {
|
||
deferred.resolve( event.target.result );
|
||
}
|
||
} );
|
||
img.src = event.target.result;
|
||
};
|
||
reader.readAsDataURL( file );
|
||
} else {
|
||
deferred.reject();
|
||
}
|
||
|
||
return deferred.promise();
|
||
};
|
||
|
||
/**
|
||
* Add the input to the widget
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.addInput = function () {
|
||
if ( this.$input ) {
|
||
this.$input.remove();
|
||
}
|
||
|
||
if ( !this.isSupported ) {
|
||
this.$input = null;
|
||
return;
|
||
}
|
||
|
||
this.$input = $( '<input>' ).attr( 'type', 'file' );
|
||
this.$input.on( 'change', this.onFileSelectedHandler );
|
||
this.$input.on( 'click', function ( e ) {
|
||
// Prevents dropTarget to get clicked which calls
|
||
// a click on this input
|
||
e.stopPropagation();
|
||
} );
|
||
this.$input.attr( {
|
||
tabindex: -1
|
||
} );
|
||
if ( this.accept ) {
|
||
this.$input.attr( 'accept', this.accept.join( ', ' ) );
|
||
}
|
||
this.selectButton.$button.append( this.$input );
|
||
};
|
||
|
||
/**
|
||
* Determine if we should accept this file
|
||
*
|
||
* @private
|
||
* @param {string} mimeType File MIME type
|
||
* @return {boolean}
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.isAllowedType = function ( mimeType ) {
|
||
var i, mimeTest;
|
||
|
||
if ( !this.accept || !mimeType ) {
|
||
return true;
|
||
}
|
||
|
||
for ( i = 0; i < this.accept.length; i++ ) {
|
||
mimeTest = this.accept[ i ];
|
||
if ( mimeTest === mimeType ) {
|
||
return true;
|
||
} else if ( mimeTest.substr( -2 ) === '/*' ) {
|
||
mimeTest = mimeTest.substr( 0, mimeTest.length - 1 );
|
||
if ( mimeType.substr( 0, mimeTest.length ) === mimeTest ) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Handle file selection from the input
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onFileSelected = function ( e ) {
|
||
var file = OO.getProp( e.target, 'files', 0 ) || null;
|
||
|
||
if ( file && !this.isAllowedType( file.type ) ) {
|
||
file = null;
|
||
}
|
||
|
||
this.setValue( file );
|
||
this.addInput();
|
||
};
|
||
|
||
/**
|
||
* Handle clear button click events.
|
||
*
|
||
* @private
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onClearClick = function () {
|
||
this.setValue( null );
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Handle key press events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key press event
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onKeyPress = function ( e ) {
|
||
if ( this.isSupported && !this.isDisabled() && this.$input &&
|
||
( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER )
|
||
) {
|
||
this.$input.click();
|
||
return false;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle drop target click events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key press event
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onDropTargetClick = function () {
|
||
if ( this.isSupported && !this.isDisabled() && this.$input ) {
|
||
this.$input.click();
|
||
return false;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle drag enter and over events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Drag event
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onDragEnterOrOver = function ( e ) {
|
||
var itemOrFile,
|
||
droppableFile = false,
|
||
dt = e.originalEvent.dataTransfer;
|
||
|
||
e.preventDefault();
|
||
e.stopPropagation();
|
||
|
||
if ( this.isDisabled() || !this.isSupported ) {
|
||
this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
|
||
dt.dropEffect = 'none';
|
||
return false;
|
||
}
|
||
|
||
// DataTransferItem and File both have a type property, but in Chrome files
|
||
// have no information at this point.
|
||
itemOrFile = OO.getProp( dt, 'items', 0 ) || OO.getProp( dt, 'files', 0 );
|
||
if ( itemOrFile ) {
|
||
if ( this.isAllowedType( itemOrFile.type ) ) {
|
||
droppableFile = true;
|
||
}
|
||
// dt.types is Array-like, but not an Array
|
||
} else if ( Array.prototype.indexOf.call( OO.getProp( dt, 'types' ) || [], 'Files' ) !== -1 ) {
|
||
// File information is not available at this point for security so just assume
|
||
// it is acceptable for now.
|
||
// https://bugzilla.mozilla.org/show_bug.cgi?id=640534
|
||
droppableFile = true;
|
||
}
|
||
|
||
this.$element.toggleClass( 'oo-ui-selectFileWidget-canDrop', droppableFile );
|
||
if ( !droppableFile ) {
|
||
dt.dropEffect = 'none';
|
||
}
|
||
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* Handle drag leave events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Drag event
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onDragLeave = function () {
|
||
this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
|
||
};
|
||
|
||
/**
|
||
* Handle drop events
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Drop event
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.onDrop = function ( e ) {
|
||
var file = null,
|
||
dt = e.originalEvent.dataTransfer;
|
||
|
||
e.preventDefault();
|
||
e.stopPropagation();
|
||
this.$element.removeClass( 'oo-ui-selectFileWidget-canDrop' );
|
||
|
||
if ( this.isDisabled() || !this.isSupported ) {
|
||
return false;
|
||
}
|
||
|
||
file = OO.getProp( dt, 'files', 0 );
|
||
if ( file && !this.isAllowedType( file.type ) ) {
|
||
file = null;
|
||
}
|
||
if ( file ) {
|
||
this.setValue( file );
|
||
}
|
||
|
||
return false;
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.SelectFileWidget.prototype.setDisabled = function ( disabled ) {
|
||
OO.ui.SelectFileWidget.parent.prototype.setDisabled.call( this, disabled );
|
||
if ( this.selectButton ) {
|
||
this.selectButton.setDisabled( disabled );
|
||
}
|
||
if ( this.clearButton ) {
|
||
this.clearButton.setDisabled( disabled );
|
||
}
|
||
return this;
|
||
};
|
||
|
||
/**
|
||
* SearchWidgets combine a {@link OO.ui.TextInputWidget text input field}, where users can type a search query,
|
||
* and a menu of search results, which is displayed beneath the query
|
||
* field. Unlike {@link OO.ui.mixin.LookupElement lookup menus}, search result menus are always visible to the user.
|
||
* Users can choose an item from the menu or type a query into the text field to search for a matching result item.
|
||
* In general, search widgets are used inside a separate {@link OO.ui.Dialog dialog} window.
|
||
*
|
||
* Each time the query is changed, the search result menu is cleared and repopulated. Please see
|
||
* the [OOjs UI demos][1] for an example.
|
||
*
|
||
* [1]: https://tools.wmflabs.org/oojs-ui/oojs-ui/demos/#dialogs-mediawiki-vector-ltr
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {string|jQuery} [placeholder] Placeholder text for query input
|
||
* @cfg {string} [value] Initial query value
|
||
*/
|
||
OO.ui.SearchWidget = function OoUiSearchWidget( config ) {
|
||
// Configuration initialization
|
||
config = config || {};
|
||
|
||
// Parent constructor
|
||
OO.ui.SearchWidget.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.query = new OO.ui.TextInputWidget( {
|
||
icon: 'search',
|
||
placeholder: config.placeholder,
|
||
value: config.value
|
||
} );
|
||
this.results = new OO.ui.SelectWidget();
|
||
this.$query = $( '<div>' );
|
||
this.$results = $( '<div>' );
|
||
|
||
// Events
|
||
this.query.connect( this, {
|
||
change: 'onQueryChange',
|
||
enter: 'onQueryEnter'
|
||
} );
|
||
this.query.$input.on( 'keydown', this.onQueryKeydown.bind( this ) );
|
||
|
||
// Initialization
|
||
this.$query
|
||
.addClass( 'oo-ui-searchWidget-query' )
|
||
.append( this.query.$element );
|
||
this.$results
|
||
.addClass( 'oo-ui-searchWidget-results' )
|
||
.append( this.results.$element );
|
||
this.$element
|
||
.addClass( 'oo-ui-searchWidget' )
|
||
.append( this.$results, this.$query );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.SearchWidget, OO.ui.Widget );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Handle query key down events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key down event
|
||
*/
|
||
OO.ui.SearchWidget.prototype.onQueryKeydown = function ( e ) {
|
||
var highlightedItem, nextItem,
|
||
dir = e.which === OO.ui.Keys.DOWN ? 1 : ( e.which === OO.ui.Keys.UP ? -1 : 0 );
|
||
|
||
if ( dir ) {
|
||
highlightedItem = this.results.getHighlightedItem();
|
||
if ( !highlightedItem ) {
|
||
highlightedItem = this.results.getSelectedItem();
|
||
}
|
||
nextItem = this.results.getRelativeSelectableItem( highlightedItem, dir );
|
||
this.results.highlightItem( nextItem );
|
||
nextItem.scrollElementIntoView();
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle select widget select events.
|
||
*
|
||
* Clears existing results. Subclasses should repopulate items according to new query.
|
||
*
|
||
* @private
|
||
* @param {string} value New value
|
||
*/
|
||
OO.ui.SearchWidget.prototype.onQueryChange = function () {
|
||
// Reset
|
||
this.results.clearItems();
|
||
};
|
||
|
||
/**
|
||
* Handle select widget enter key events.
|
||
*
|
||
* Chooses highlighted item.
|
||
*
|
||
* @private
|
||
* @param {string} value New value
|
||
*/
|
||
OO.ui.SearchWidget.prototype.onQueryEnter = function () {
|
||
var highlightedItem = this.results.getHighlightedItem();
|
||
if ( highlightedItem ) {
|
||
this.results.chooseItem( highlightedItem );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Get the query input.
|
||
*
|
||
* @return {OO.ui.TextInputWidget} Query input
|
||
*/
|
||
OO.ui.SearchWidget.prototype.getQuery = function () {
|
||
return this.query;
|
||
};
|
||
|
||
/**
|
||
* Get the search results menu.
|
||
*
|
||
* @return {OO.ui.SelectWidget} Menu of search results
|
||
*/
|
||
OO.ui.SearchWidget.prototype.getResults = function () {
|
||
return this.results;
|
||
};
|
||
|
||
/**
|
||
* NumberInputWidgets combine a {@link OO.ui.TextInputWidget text input} (where a value
|
||
* can be entered manually) and two {@link OO.ui.ButtonWidget button widgets}
|
||
* (to adjust the value in increments) to allow the user to enter a number.
|
||
*
|
||
* @example
|
||
* // Example: A NumberInputWidget.
|
||
* var numberInput = new OO.ui.NumberInputWidget( {
|
||
* label: 'NumberInputWidget',
|
||
* input: { value: 5 },
|
||
* min: 1,
|
||
* max: 10
|
||
* } );
|
||
* $( 'body' ).append( numberInput.$element );
|
||
*
|
||
* @class
|
||
* @extends OO.ui.Widget
|
||
*
|
||
* @constructor
|
||
* @param {Object} [config] Configuration options
|
||
* @cfg {Object} [input] Configuration options to pass to the {@link OO.ui.TextInputWidget text input widget}.
|
||
* @cfg {Object} [minusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget decrementing button widget}.
|
||
* @cfg {Object} [plusButton] Configuration options to pass to the {@link OO.ui.ButtonWidget incrementing button widget}.
|
||
* @cfg {boolean} [isInteger=false] Whether the field accepts only integer values.
|
||
* @cfg {number} [min=-Infinity] Minimum allowed value
|
||
* @cfg {number} [max=Infinity] Maximum allowed value
|
||
* @cfg {number} [step=1] Delta when using the buttons or up/down arrow keys
|
||
* @cfg {number|null} [pageStep] Delta when using the page-up/page-down keys. Defaults to 10 times #step.
|
||
* @cfg {boolean} [showButtons=true] Whether to show the plus and minus buttons.
|
||
*/
|
||
OO.ui.NumberInputWidget = function OoUiNumberInputWidget( config ) {
|
||
// Configuration initialization
|
||
config = $.extend( {
|
||
isInteger: false,
|
||
min: -Infinity,
|
||
max: Infinity,
|
||
step: 1,
|
||
pageStep: null,
|
||
showButtons: true
|
||
}, config );
|
||
|
||
// Parent constructor
|
||
OO.ui.NumberInputWidget.parent.call( this, config );
|
||
|
||
// Properties
|
||
this.input = new OO.ui.TextInputWidget( $.extend(
|
||
{
|
||
disabled: this.isDisabled(),
|
||
type: 'number'
|
||
},
|
||
config.input
|
||
) );
|
||
if ( config.showButtons ) {
|
||
this.minusButton = new OO.ui.ButtonWidget( $.extend(
|
||
{
|
||
disabled: this.isDisabled(),
|
||
tabIndex: -1,
|
||
classes: [ 'oo-ui-numberInputWidget-minusButton' ],
|
||
label: '−'
|
||
},
|
||
config.minusButton
|
||
) );
|
||
this.plusButton = new OO.ui.ButtonWidget( $.extend(
|
||
{
|
||
disabled: this.isDisabled(),
|
||
tabIndex: -1,
|
||
classes: [ 'oo-ui-numberInputWidget-plusButton' ],
|
||
label: '+'
|
||
},
|
||
config.plusButton
|
||
) );
|
||
}
|
||
|
||
// Events
|
||
this.input.connect( this, {
|
||
change: this.emit.bind( this, 'change' ),
|
||
enter: this.emit.bind( this, 'enter' )
|
||
} );
|
||
this.input.$input.on( {
|
||
keydown: this.onKeyDown.bind( this ),
|
||
'wheel mousewheel DOMMouseScroll': this.onWheel.bind( this )
|
||
} );
|
||
if ( config.showButtons ) {
|
||
this.plusButton.connect( this, {
|
||
click: [ 'onButtonClick', +1 ]
|
||
} );
|
||
this.minusButton.connect( this, {
|
||
click: [ 'onButtonClick', -1 ]
|
||
} );
|
||
}
|
||
|
||
// Initialization
|
||
this.setIsInteger( !!config.isInteger );
|
||
this.setRange( config.min, config.max );
|
||
this.setStep( config.step, config.pageStep );
|
||
|
||
this.$field = $( '<div>' ).addClass( 'oo-ui-numberInputWidget-field' )
|
||
.append( this.input.$element );
|
||
this.$element.addClass( 'oo-ui-numberInputWidget' ).append( this.$field );
|
||
if ( config.showButtons ) {
|
||
this.$field
|
||
.prepend( this.minusButton.$element )
|
||
.append( this.plusButton.$element );
|
||
this.$element.addClass( 'oo-ui-numberInputWidget-buttoned' );
|
||
}
|
||
this.input.setValidation( this.validateNumber.bind( this ) );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.NumberInputWidget, OO.ui.Widget );
|
||
|
||
/* Events */
|
||
|
||
/**
|
||
* A `change` event is emitted when the value of the input changes.
|
||
*
|
||
* @event change
|
||
*/
|
||
|
||
/**
|
||
* An `enter` event is emitted when the user presses 'enter' inside the text box.
|
||
*
|
||
* @event enter
|
||
*/
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* Set whether only integers are allowed
|
||
*
|
||
* @param {boolean} flag
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.setIsInteger = function ( flag ) {
|
||
this.isInteger = !!flag;
|
||
this.input.setValidityFlag();
|
||
};
|
||
|
||
/**
|
||
* Get whether only integers are allowed
|
||
*
|
||
* @return {boolean} Flag value
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.getIsInteger = function () {
|
||
return this.isInteger;
|
||
};
|
||
|
||
/**
|
||
* Set the range of allowed values
|
||
*
|
||
* @param {number} min Minimum allowed value
|
||
* @param {number} max Maximum allowed value
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.setRange = function ( min, max ) {
|
||
if ( min > max ) {
|
||
throw new Error( 'Minimum (' + min + ') must not be greater than maximum (' + max + ')' );
|
||
}
|
||
this.min = min;
|
||
this.max = max;
|
||
this.input.setValidityFlag();
|
||
};
|
||
|
||
/**
|
||
* Get the current range
|
||
*
|
||
* @return {number[]} Minimum and maximum values
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.getRange = function () {
|
||
return [ this.min, this.max ];
|
||
};
|
||
|
||
/**
|
||
* Set the stepping deltas
|
||
*
|
||
* @param {number} step Normal step
|
||
* @param {number|null} pageStep Page step. If null, 10 * step will be used.
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.setStep = function ( step, pageStep ) {
|
||
if ( step <= 0 ) {
|
||
throw new Error( 'Step value must be positive' );
|
||
}
|
||
if ( pageStep === null ) {
|
||
pageStep = step * 10;
|
||
} else if ( pageStep <= 0 ) {
|
||
throw new Error( 'Page step value must be positive' );
|
||
}
|
||
this.step = step;
|
||
this.pageStep = pageStep;
|
||
};
|
||
|
||
/**
|
||
* Get the current stepping values
|
||
*
|
||
* @return {number[]} Step and page step
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.getStep = function () {
|
||
return [ this.step, this.pageStep ];
|
||
};
|
||
|
||
/**
|
||
* Get the current value of the widget
|
||
*
|
||
* @return {string}
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.getValue = function () {
|
||
return this.input.getValue();
|
||
};
|
||
|
||
/**
|
||
* Get the current value of the widget as a number
|
||
*
|
||
* @return {number} May be NaN, or an invalid number
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.getNumericValue = function () {
|
||
return +this.input.getValue();
|
||
};
|
||
|
||
/**
|
||
* Set the value of the widget
|
||
*
|
||
* @param {string} value Invalid values are allowed
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.setValue = function ( value ) {
|
||
this.input.setValue( value );
|
||
};
|
||
|
||
/**
|
||
* Adjust the value of the widget
|
||
*
|
||
* @param {number} delta Adjustment amount
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.adjustValue = function ( delta ) {
|
||
var n, v = this.getNumericValue();
|
||
|
||
delta = +delta;
|
||
if ( isNaN( delta ) || !isFinite( delta ) ) {
|
||
throw new Error( 'Delta must be a finite number' );
|
||
}
|
||
|
||
if ( isNaN( v ) ) {
|
||
n = 0;
|
||
} else {
|
||
n = v + delta;
|
||
n = Math.max( Math.min( n, this.max ), this.min );
|
||
if ( this.isInteger ) {
|
||
n = Math.round( n );
|
||
}
|
||
}
|
||
|
||
if ( n !== v ) {
|
||
this.setValue( n );
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Validate input
|
||
*
|
||
* @private
|
||
* @param {string} value Field value
|
||
* @return {boolean}
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.validateNumber = function ( value ) {
|
||
var n = +value;
|
||
if ( isNaN( n ) || !isFinite( n ) ) {
|
||
return false;
|
||
}
|
||
|
||
/* eslint-disable no-bitwise */
|
||
if ( this.isInteger && ( n | 0 ) !== n ) {
|
||
return false;
|
||
}
|
||
/* eslint-enable no-bitwise */
|
||
|
||
if ( n < this.min || n > this.max ) {
|
||
return false;
|
||
}
|
||
|
||
return true;
|
||
};
|
||
|
||
/**
|
||
* Handle mouse click events.
|
||
*
|
||
* @private
|
||
* @param {number} dir +1 or -1
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.onButtonClick = function ( dir ) {
|
||
this.adjustValue( dir * this.step );
|
||
};
|
||
|
||
/**
|
||
* Handle mouse wheel events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} event
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.onWheel = function ( event ) {
|
||
var delta = 0;
|
||
|
||
if ( !this.isDisabled() && this.input.$input.is( ':focus' ) ) {
|
||
// Standard 'wheel' event
|
||
if ( event.originalEvent.deltaMode !== undefined ) {
|
||
this.sawWheelEvent = true;
|
||
}
|
||
if ( event.originalEvent.deltaY ) {
|
||
delta = -event.originalEvent.deltaY;
|
||
} else if ( event.originalEvent.deltaX ) {
|
||
delta = event.originalEvent.deltaX;
|
||
}
|
||
|
||
// Non-standard events
|
||
if ( !this.sawWheelEvent ) {
|
||
if ( event.originalEvent.wheelDeltaX ) {
|
||
delta = -event.originalEvent.wheelDeltaX;
|
||
} else if ( event.originalEvent.wheelDeltaY ) {
|
||
delta = event.originalEvent.wheelDeltaY;
|
||
} else if ( event.originalEvent.wheelDelta ) {
|
||
delta = event.originalEvent.wheelDelta;
|
||
} else if ( event.originalEvent.detail ) {
|
||
delta = -event.originalEvent.detail;
|
||
}
|
||
}
|
||
|
||
if ( delta ) {
|
||
delta = delta < 0 ? -1 : 1;
|
||
this.adjustValue( delta * this.step );
|
||
}
|
||
|
||
return false;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Handle key down events.
|
||
*
|
||
* @private
|
||
* @param {jQuery.Event} e Key down event
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.onKeyDown = function ( e ) {
|
||
if ( !this.isDisabled() ) {
|
||
switch ( e.which ) {
|
||
case OO.ui.Keys.UP:
|
||
this.adjustValue( this.step );
|
||
return false;
|
||
case OO.ui.Keys.DOWN:
|
||
this.adjustValue( -this.step );
|
||
return false;
|
||
case OO.ui.Keys.PAGEUP:
|
||
this.adjustValue( this.pageStep );
|
||
return false;
|
||
case OO.ui.Keys.PAGEDOWN:
|
||
this.adjustValue( -this.pageStep );
|
||
return false;
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.NumberInputWidget.prototype.setDisabled = function ( disabled ) {
|
||
// Parent method
|
||
OO.ui.NumberInputWidget.parent.prototype.setDisabled.call( this, disabled );
|
||
|
||
if ( this.input ) {
|
||
this.input.setDisabled( this.isDisabled() );
|
||
}
|
||
if ( this.minusButton ) {
|
||
this.minusButton.setDisabled( this.isDisabled() );
|
||
}
|
||
if ( this.plusButton ) {
|
||
this.plusButton.setDisabled( this.isDisabled() );
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
}( OO ) );
|