jquery-ui/ui/selectmenu.js

658 lines
15 KiB
JavaScript
Raw Normal View History

/*!
2011-09-01 22:21:09 +00:00
* jQuery UI Selectmenu @VERSION
2012-07-16 18:36:01 +00:00
* http://jqueryui.com
2011-09-01 22:21:09 +00:00
*
* Copyright jQuery Foundation and other contributors
2012-08-11 17:57:17 +00:00
* Released under the MIT license.
2011-09-01 22:21:09 +00:00
* http://jquery.org/license
*/
//>>label: Selectmenu
//>>group: Widgets
//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
//>>docs: http://api.jqueryui.com/selectmenu/
//>>demos: http://jqueryui.com/selectmenu/
2014-02-21 19:56:13 +00:00
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define([
"jquery",
"./core",
"./widget",
"./position",
"./menu"
], factory );
} else {
// Browser globals
factory( jQuery );
}
}(function( $ ) {
2011-09-01 22:21:09 +00:00
return $.widget( "ui.selectmenu", {
2011-09-01 22:21:09 +00:00
version: "@VERSION",
defaultElement: "<select>",
options: {
appendTo: null,
disabled: null,
icons: {
button: "ui-icon-triangle-1-s"
},
2011-09-01 22:21:09 +00:00
position: {
my: "left top",
at: "left bottom",
collision: "none"
},
width: null,
2011-09-01 22:21:09 +00:00
// callbacks
change: null,
close: null,
focus: null,
open: null,
select: null
2011-09-01 22:21:09 +00:00
},
_create: function() {
2012-11-12 22:06:05 +00:00
var selectmenuId = this.element.uniqueId().attr( "id" );
this.ids = {
element: selectmenuId,
button: selectmenuId + "-button",
menu: selectmenuId + "-menu"
2013-04-29 19:54:36 +00:00
};
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
this._drawButton();
this._drawMenu();
2012-01-27 22:11:31 +00:00
this._rendered = false;
this.menuItems = $();
if ( this.options.disabled ) {
this.disable();
}
},
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
_drawButton: function() {
var that = this,
item = this._parseOption(
this.element.find( "option:selected" ),
this.element[ 0 ].selectedIndex
);
2013-09-16 18:45:48 +00:00
// Associate existing label with the new button
2013-04-29 19:54:36 +00:00
this.label = $( "label[for='" + this.ids.element + "']" ).attr( "for", this.ids.button );
this._on( this.label, {
click: function( event ) {
this.button.focus();
event.preventDefault();
}
});
2011-11-18 16:14:38 +00:00
2013-09-16 18:45:48 +00:00
// Hide original select element
this.element.hide();
2011-11-18 16:14:38 +00:00
// Create button
this.button = $( "<span>", {
"class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all",
tabindex: this.options.disabled ? -1 : 0,
id: this.ids.button,
2012-11-12 22:06:05 +00:00
role: "combobox",
"aria-expanded": "false",
2012-11-12 22:06:05 +00:00
"aria-autocomplete": "list",
"aria-owns": this.ids.menu,
"aria-haspopup": "true",
title: this.element.attr( "title" )
})
2014-04-08 15:17:32 +00:00
.insertAfter( this.element );
$( "<span>", {
"class": "ui-icon " + this.options.icons.button
2014-04-08 15:17:32 +00:00
})
.prependTo( this.button );
this.buttonItem = this._renderButtonItem( item )
2014-04-08 15:17:32 +00:00
.appendTo( this.button );
this._resizeButton();
2011-11-18 16:14:38 +00:00
this._on( this.button, this._buttonEvents );
this.button.one( "focusin", function() {
2014-04-08 15:17:32 +00:00
// Delay rendering the menu items until the button receives focus.
// The menu may have already been rendered via a programmatic open.
if ( !that._rendered ) {
2014-04-08 15:17:32 +00:00
that._refreshMenu();
}
});
this._hoverable( this.button );
this._focusable( this.button );
2011-09-01 22:21:09 +00:00
},
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
_drawMenu: function() {
2013-05-30 19:25:36 +00:00
var that = this;
2011-11-18 16:14:38 +00:00
2013-09-16 18:45:48 +00:00
// Create menu
2012-11-29 19:10:05 +00:00
this.menu = $( "<ul>", {
"aria-hidden": "true",
2012-11-12 22:06:05 +00:00
"aria-labelledby": this.ids.button,
id: this.ids.menu
});
2011-11-18 16:14:38 +00:00
// Wrap menu
2012-11-29 19:10:05 +00:00
this.menuWrap = $( "<div>", {
"class": "ui-selectmenu-menu ui-front"
2013-09-16 18:45:48 +00:00
})
2014-04-08 15:17:32 +00:00
.append( this.menu )
.appendTo( this._appendTo() );
2011-11-18 16:14:38 +00:00
2013-09-16 18:45:48 +00:00
// Initialize menu widget
2014-04-08 15:17:32 +00:00
this.menuInstance = this.menu
.menu({
role: "listbox",
select: function( event, ui ) {
event.preventDefault();
// support: IE8
// If the item was selected via a click, the text selection
// will be destroyed in IE
that._setSelection();
2014-04-08 15:17:32 +00:00
that._select( ui.item.data( "ui-selectmenu-item" ), event );
},
focus: function( event, ui ) {
var item = ui.item.data( "ui-selectmenu-item" );
// Prevent inital focus from firing and check if its a newly focused item
if ( that.focusIndex != null && item.index !== that.focusIndex ) {
that._trigger( "focus", event, { item: item } );
if ( !that.isOpen ) {
that._select( item, event );
}
}
2014-04-08 15:17:32 +00:00
that.focusIndex = item.index;
2014-04-08 15:17:32 +00:00
that.button.attr( "aria-activedescendant",
that.menuItems.eq( item.index ).attr( "id" ) );
}
})
.menu( "instance" );
2012-01-27 22:11:31 +00:00
2013-09-16 18:45:48 +00:00
// Adjust menu styles to dropdown
2014-04-08 15:17:32 +00:00
this.menu
.addClass( "ui-corner-bottom" )
.removeClass( "ui-corner-all" );
2011-11-18 16:14:38 +00:00
2014-04-08 15:17:32 +00:00
// Don't close the menu on mouseleave
this.menuInstance._off( this.menu, "mouseleave" );
// Cancel the menu's collapseAll on document click
this.menuInstance._closeOnDocumentClick = function() {
return false;
};
2014-04-08 15:17:32 +00:00
// Selects often contain empty items, but never contain dividers
this.menuInstance._isDivider = function() {
return false;
2013-12-18 19:11:29 +00:00
};
},
2011-11-18 16:14:38 +00:00
refresh: function() {
this._refreshMenu();
this.buttonItem.replaceWith(
this.buttonItem = this._renderButtonItem(
// Fall back to an empty object in case there are no options
this._getSelectedItem().data( "ui-selectmenu-item" ) || {}
)
);
if ( !this.options.width ) {
this._resizeButton();
}
},
_refreshMenu: function() {
2012-05-24 16:30:39 +00:00
var item,
2012-11-12 22:06:05 +00:00
options = this.element.find( "option" );
this.menu.empty();
2014-04-08 15:17:32 +00:00
this._parseOptions( options );
this._renderMenu( this.menu, this.items );
2012-01-27 22:11:31 +00:00
2013-09-16 18:45:48 +00:00
this.menuInstance.refresh();
this.menuItems = this.menu.find( "li" )
.not( ".ui-selectmenu-optgroup" )
.find( ".ui-menu-item-wrapper" );
2011-11-18 16:14:38 +00:00
this._rendered = true;
if ( !options.length ) {
return;
}
item = this._getSelectedItem();
2013-09-16 18:45:48 +00:00
// Update the menu to have the correct item focused
this.menuInstance.focus( null, item );
this._setAria( item.data( "ui-selectmenu-item" ) );
2013-08-31 09:50:53 +00:00
// Set disabled state
2013-09-16 18:45:48 +00:00
this._setOption( "disabled", this.element.prop( "disabled" ) );
2011-11-18 16:14:38 +00:00
},
open: function( event ) {
if ( this.options.disabled ) {
return;
}
2013-09-16 18:45:48 +00:00
// If this is the first time the menu is being opened, render the items
if ( !this._rendered ) {
this._refreshMenu();
} else {
// Menu clears focus on close, reset focus to selected item
this.menu.find( ".ui-state-focus" ).removeClass( "ui-state-focus" );
2013-09-16 18:45:48 +00:00
this.menuInstance.focus( null, this._getSelectedItem() );
}
// If there are no options, don't open the menu
if ( !this.menuItems.length ) {
return;
}
this.isOpen = true;
this._toggleAttr();
this._resizeMenu();
this._position();
this._on( this.document, this._documentClick );
this._trigger( "open", event );
2011-11-18 16:14:38 +00:00
},
_position: function() {
this.menuWrap.position( $.extend( { of: this.button }, this.options.position ) );
},
2011-11-18 16:14:38 +00:00
close: function( event ) {
if ( !this.isOpen ) {
return;
2011-09-22 19:20:49 +00:00
}
this.isOpen = false;
this._toggleAttr();
this.range = null;
this._off( this.document );
this._trigger( "close", event );
2011-09-01 22:21:09 +00:00
},
2011-11-18 16:14:38 +00:00
2011-10-17 20:13:36 +00:00
widget: function() {
return this.button;
},
menuWidget: function() {
return this.menu;
2011-10-17 20:13:36 +00:00
},
2011-11-18 16:14:38 +00:00
_renderButtonItem: function( item ) {
var buttonItem = $( "<span>", {
"class": "ui-selectmenu-text"
});
this._setText( buttonItem, item.label );
return buttonItem;
},
2011-09-01 22:21:09 +00:00
_renderMenu: function( ul, items ) {
2011-09-28 21:59:23 +00:00
var that = this,
2011-09-01 22:21:09 +00:00
currentOptgroup = "";
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
$.each( items, function( index, item ) {
2012-05-24 16:30:39 +00:00
if ( item.optgroup !== currentOptgroup ) {
2013-01-02 18:52:18 +00:00
$( "<li>", {
2013-10-09 23:01:41 +00:00
"class": "ui-selectmenu-optgroup ui-menu-divider" +
2014-04-08 15:17:32 +00:00
( item.element.parent( "optgroup" ).prop( "disabled" ) ?
2013-09-16 18:45:48 +00:00
" ui-state-disabled" :
"" ),
text: item.optgroup
2013-09-16 18:45:48 +00:00
})
2014-04-08 15:17:32 +00:00
.appendTo( ul );
2011-09-01 22:21:09 +00:00
currentOptgroup = item.optgroup;
}
2014-04-08 15:17:32 +00:00
that._renderItemData( ul, item );
2011-09-01 22:21:09 +00:00
});
},
2011-11-18 16:14:38 +00:00
_renderItemData: function( ul, item ) {
return this._renderItem( ul, item ).data( "ui-selectmenu-item", item );
},
_renderItem: function( ul, item ) {
var li = $( "<li>" ),
wrapper = $( "<div>", {
title: item.element.attr( "title" )
});
if ( item.disabled ) {
2012-11-12 22:06:05 +00:00
li.addClass( "ui-state-disabled" );
2011-11-18 16:14:38 +00:00
}
this._setText( wrapper, item.label );
return li.append( wrapper ).appendTo( ul );
},
2011-11-18 16:14:38 +00:00
_setText: function( element, value ) {
if ( value ) {
element.text( value );
} else {
element.html( "&#160;" );
}
2011-09-01 22:21:09 +00:00
},
2011-11-18 16:14:38 +00:00
2012-01-27 22:11:31 +00:00
_move: function( direction, event ) {
2014-04-08 15:17:32 +00:00
var item, next,
filter = ".ui-menu-item";
if ( this.isOpen ) {
item = this.menuItems.eq( this.focusIndex ).parent( "li" );
} else {
item = this.menuItems.eq( this.element[ 0 ].selectedIndex ).parent( "li" );
filter += ":not(.ui-state-disabled)";
}
2012-05-16 18:41:24 +00:00
if ( direction === "first" || direction === "last" ) {
next = item[ direction === "first" ? "prevAll" : "nextAll" ]( filter ).eq( -1 );
} else {
next = item[ direction + "All" ]( filter ).eq( 0 );
}
if ( next.length ) {
2014-04-08 15:17:32 +00:00
this.menuInstance.focus( event, next );
}
2011-09-24 00:04:06 +00:00
},
2011-11-18 16:14:38 +00:00
_getSelectedItem: function() {
return this.menuItems.eq( this.element[ 0 ].selectedIndex ).parent( "li" );
},
2011-11-18 16:14:38 +00:00
2011-09-24 00:04:06 +00:00
_toggle: function( event ) {
2014-04-08 15:17:32 +00:00
this[ this.isOpen ? "close" : "open" ]( event );
2011-09-24 00:04:06 +00:00
},
2011-11-18 16:14:38 +00:00
_setSelection: function() {
var selection;
if ( !this.range ) {
return;
}
if ( window.getSelection ) {
selection = window.getSelection();
selection.removeAllRanges();
selection.addRange( this.range );
// support: IE8
} else {
this.range.select();
}
// support: IE
// Setting the text selection kills the button focus in IE, but
// restoring the focus doesn't kill the selection.
this.button.focus();
},
_documentClick: {
mousedown: function( event ) {
2014-04-08 15:17:32 +00:00
if ( !this.isOpen ) {
return;
}
if ( !$( event.target ).closest( ".ui-selectmenu-menu, #" + this.ids.button ).length ) {
this.close( event );
}
}
},
_buttonEvents: {
// Prevent text selection from being reset when interacting with the selectmenu (#10144)
mousedown: function() {
var selection;
if ( window.getSelection ) {
selection = window.getSelection();
if ( selection.rangeCount ) {
this.range = selection.getRangeAt( 0 );
}
// support: IE8
} else {
this.range = document.selection.createRange();
}
},
click: function( event ) {
this._setSelection();
this._toggle( event );
},
keydown: function( event ) {
2013-09-16 18:45:48 +00:00
var preventDefault = true;
switch ( event.keyCode ) {
case $.ui.keyCode.TAB:
case $.ui.keyCode.ESCAPE:
2013-09-16 18:45:48 +00:00
this.close( event );
preventDefault = false;
break;
case $.ui.keyCode.ENTER:
if ( this.isOpen ) {
this._selectFocusedItem( event );
2011-11-18 16:14:38 +00:00
}
break;
case $.ui.keyCode.UP:
if ( event.altKey ) {
this._toggle( event );
} else {
this._move( "prev", event );
}
break;
case $.ui.keyCode.DOWN:
if ( event.altKey ) {
this._toggle( event );
} else {
this._move( "next", event );
}
break;
2013-03-07 19:10:56 +00:00
case $.ui.keyCode.SPACE:
if ( this.isOpen ) {
this._selectFocusedItem( event );
} else {
this._toggle( event );
2013-03-07 19:10:56 +00:00
}
break;
case $.ui.keyCode.LEFT:
this._move( "prev", event );
break;
case $.ui.keyCode.RIGHT:
this._move( "next", event );
2012-01-27 22:11:31 +00:00
break;
case $.ui.keyCode.HOME:
case $.ui.keyCode.PAGE_UP:
this._move( "first", event );
break;
case $.ui.keyCode.END:
case $.ui.keyCode.PAGE_DOWN:
this._move( "last", event );
break;
default:
2011-10-11 23:38:30 +00:00
this.menu.trigger( event );
2013-09-16 18:45:48 +00:00
preventDefault = false;
}
2013-09-16 18:45:48 +00:00
if ( preventDefault ) {
event.preventDefault();
}
}
2011-11-18 16:14:38 +00:00
},
2012-01-27 22:11:31 +00:00
_selectFocusedItem: function( event ) {
var item = this.menuItems.eq( this.focusIndex ).parent( "li" );
if ( !item.hasClass( "ui-state-disabled" ) ) {
this._select( item.data( "ui-selectmenu-item" ), event );
}
},
2012-01-27 22:11:31 +00:00
_select: function( item, event ) {
var oldIndex = this.element[ 0 ].selectedIndex;
2013-09-16 18:45:48 +00:00
// Change native select element
this.element[ 0 ].selectedIndex = item.index;
this.buttonItem.replaceWith( this.buttonItem = this._renderButtonItem( item ) );
this._setAria( item );
this._trigger( "select", event, { item: item } );
2012-05-16 18:41:24 +00:00
if ( item.index !== oldIndex ) {
this._trigger( "change", event, { item: item } );
}
2013-09-16 18:45:48 +00:00
this.close( event );
},
2012-01-27 22:11:31 +00:00
_setAria: function( item ) {
2013-10-09 23:01:41 +00:00
var id = this.menuItems.eq( item.index ).attr( "id" );
this.button.attr({
"aria-labelledby": id,
"aria-activedescendant": id
});
this.menu.attr( "aria-activedescendant", id );
2012-01-12 21:01:49 +00:00
},
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
_setOption: function( key, value ) {
if ( key === "icons" ) {
this.button.find( "span.ui-icon" )
.removeClass( this.options.icons.button )
.addClass( value.button );
}
this._super( key, value );
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
if ( key === "appendTo" ) {
this.menuWrap.appendTo( this._appendTo() );
2011-09-01 22:21:09 +00:00
}
2014-04-08 15:17:32 +00:00
if ( key === "disabled" ) {
2013-09-16 18:45:48 +00:00
this.menuInstance.option( "disabled", value );
this.button
2013-09-16 18:45:48 +00:00
.toggleClass( "ui-state-disabled", value )
.attr( "aria-disabled", value );
2013-09-16 18:45:48 +00:00
this.element.prop( "disabled", value );
if ( value ) {
2011-10-11 23:38:30 +00:00
this.button.attr( "tabindex", -1 );
2011-10-17 20:04:54 +00:00
this.close();
} else {
this.button.attr( "tabindex", 0 );
}
}
2014-04-08 15:17:32 +00:00
if ( key === "width" ) {
this._resizeButton();
}
2011-09-01 22:21:09 +00:00
},
2012-01-27 22:11:31 +00:00
_appendTo: function() {
var element = this.options.appendTo;
if ( element ) {
element = element.jquery || element.nodeType ?
$( element ) :
this.document.find( element ).eq( 0 );
}
if ( !element || !element[ 0 ] ) {
element = this.element.closest( ".ui-front" );
}
if ( !element.length ) {
2013-04-29 20:36:37 +00:00
element = this.document[ 0 ].body;
}
return element;
},
2013-11-13 20:26:48 +00:00
_toggleAttr: function() {
2013-09-16 18:45:48 +00:00
this.button
.toggleClass( "ui-corner-top", this.isOpen )
2014-04-08 15:17:32 +00:00
.toggleClass( "ui-corner-all", !this.isOpen )
.attr( "aria-expanded", this.isOpen );
2012-11-12 22:06:05 +00:00
this.menuWrap.toggleClass( "ui-selectmenu-open", this.isOpen );
2013-09-16 18:45:48 +00:00
this.menu.attr( "aria-hidden", !this.isOpen );
},
_resizeButton: function() {
var width = this.options.width;
if ( !width ) {
width = this.element.show().outerWidth();
this.element.hide();
}
this.button.outerWidth( width );
},
_resizeMenu: function() {
this.menu.outerWidth( Math.max(
this.button.outerWidth(),
2014-04-08 15:17:32 +00:00
// support: IE10
// IE10 wraps long text (possibly a rounding bug)
// so we add 1px to avoid the wrapping
this.menu.width( "" ).outerWidth() + 1
) );
},
_getCreateOptions: function() {
2013-09-16 18:45:48 +00:00
return { disabled: this.element.prop( "disabled" ) };
},
2014-04-08 15:17:32 +00:00
_parseOptions: function( options ) {
var that = this,
data = [];
2014-04-08 15:17:32 +00:00
options.each(function( index, item ) {
data.push( that._parseOption( $( item ), index ) );
});
this.items = data;
2011-09-01 22:21:09 +00:00
},
2011-11-18 16:14:38 +00:00
_parseOption: function( option, index ) {
var optgroup = option.parent( "optgroup" );
return {
element: option,
index: index,
value: option.val(),
label: option.text(),
optgroup: optgroup.attr( "label" ) || "",
disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" )
};
},
2011-09-24 00:04:06 +00:00
_destroy: function() {
2011-10-11 23:38:30 +00:00
this.menuWrap.remove();
this.button.remove();
this.element.show();
this.element.removeUniqueId();
2013-04-29 19:54:36 +00:00
this.label.attr( "for", this.ids.element );
}
2011-09-01 22:21:09 +00:00
});
2014-02-21 19:56:13 +00:00
}));