jquery-ui/ui/jquery.ui.selectmenu.js

459 lines
11 KiB
JavaScript
Raw Normal View History

2011-09-01 22:21:09 +00:00
/*
* jQuery UI Selectmenu @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Selectmenu
*
* Depends:
* jquery.ui.core.js
* jquery.ui.widget.js
* jquery.ui.position.js
* jquery.ui.menu.js
*/
(function( $, undefined ) {
$.widget( "ui.selectmenu", {
version: "@VERSION",
defaultElement: "<select>",
options: {
2011-09-22 19:20:49 +00:00
dropdown: true,
2011-09-01 22:21:09 +00:00
appendTo: "body",
position: {
my: "left top",
at: "left bottom",
collision: "none"
},
// callbacks
open: null,
focus: null,
select: null,
close: null,
change: null
2011-09-01 22:21:09 +00:00
},
_create: function() {
// set a default id value, generate a new random one if not set by developer
var selectmenuId = this.element.attr( 'id' ) || 'ui-selectmenu-' + Math.random().toString( 16 ).slice( 2, 10 );
2011-11-18 16:14:38 +00:00
// array of button and menu id's
this.ids = { id: selectmenuId, button: selectmenuId + '-button', menu: selectmenuId + '-menu' };
2011-11-18 16:14:38 +00:00
// catch click event of the label
this._bind({
'click': function( event ) {
2011-10-11 23:38:30 +00:00
this.button.focus();
event.preventDefault();
}
});
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
this._drawButton();
this._bind( this.button, this._buttonEvents );
this._hoverable( this.button );
this._focusable( this.button );
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
this._drawMenu();
2012-01-27 22:11:31 +00:00
if ( this.options.disabled ) {
this.disable();
}
},
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
_drawButton: function() {
2011-11-18 16:14:38 +00:00
var tabindex = this.element.attr( 'tabindex' );
// hide original select tag
this.element.hide();
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
// create button
2011-10-11 23:38:30 +00:00
this.button = $( '<a />', {
'class': 'ui-button ui-widget ui-state-default ui-corner-all',
href: '#' + this.ids.id,
tabindex: ( tabindex ? tabindex : this.options.disabled ? -1 : 0 ),
id: this.ids.button,
width: this.element.outerWidth(),
role: 'combobox',
'aria-expanded': false,
'aria-autocomplete': 'list',
'aria-owns': this.ids.menu,
'aria-haspopup': true
});
this.button.prepend( $( '<span class="ui-icon ' + ( this.options.dropdown ? 'ui-icon-triangle-1-s' : 'ui-icon-triangle-2-n-s' ) + '"/>' ) );
this.buttonText = $( '<span />', {
'class': 'ui-selectmenu-text' ,
html: this.element.find( "option:selected" ).text() || '&nbsp;'
2011-09-22 19:20:49 +00:00
})
.appendTo( this.button );
2011-11-18 16:14:38 +00:00
// wrap and insert new button
2012-01-22 19:25:27 +00:00
this.buttonWrap = $( '<span />', {
'class': 'ui-selectmenu-button'
})
2011-10-11 23:38:30 +00:00
.append( this.button )
2011-11-18 16:14:38 +00:00
.insertAfter( this.element );
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() {
var that = this;
2011-11-18 16:14:38 +00:00
// create menu portion, append to body
2011-10-11 23:38:30 +00:00
this.menu = $( '<ul />', {
'aria-hidden': true,
'aria-labelledby': this.ids.button,
id: this.ids.menu
});
2011-11-18 16:14:38 +00:00
// set width
if ( this.options.dropdown ) {
2011-10-11 23:38:30 +00:00
var setWidth = this.button.outerWidth();
2011-09-28 20:22:36 +00:00
} else {
var setWidth = this.buttonText.width() + parseFloat( this.buttonText.css( "padding-left" ) ) || 0 + parseFloat( this.buttonText.css( "margin-left" ) || 0 );
}
2011-10-17 20:04:14 +00:00
// wrap menu
2012-01-22 19:25:27 +00:00
this.menuWrap = $( '<div />', {
'class': 'ui-selectmenu-menu',
width: setWidth
})
2011-10-11 23:38:30 +00:00
.append( this.menu )
.appendTo( this.options.appendTo );
2011-11-18 16:14:38 +00:00
// init menu widget
this.menu.menu({
select: function( event, ui ) {
var item = ui.item.data( "item.selectmenu" );
2012-01-27 22:11:31 +00:00
that._select( item, event );
2012-01-27 22:11:31 +00:00
if ( that.isOpen ) {
event.preventDefault();
that.close( event );
}
},
focus: function( event, ui ) {
var item = ui.item.data( "item.selectmenu" );
2011-11-18 16:14:38 +00:00
if ( that.focus !== undefined ) {
if ( item.index != that.focus ) {
that._trigger( "focus", event, { item: item } );
}
if ( !that.isOpen ) {
that._select( item, event );
}
}
that.focus = item.index;
}
})
// change ARIA role
2012-01-22 18:19:37 +00:00
.attr( 'role', 'listbox' );
2012-01-27 22:11:31 +00:00
// change menu styles?
this._setOption( "dropdown", this.options.dropdown );
2011-11-18 16:14:38 +00:00
// document click closes menu
this._bind( document, {
2012-01-22 19:25:27 +00:00
click: function( event ) {
if ( this.isOpen && !$( event.target ).closest( "#" + this.ids.button).length ) {
this.close( event );
}
}
2011-11-18 16:14:38 +00:00
});
},
2011-11-18 16:14:38 +00:00
refresh: function() {
2011-10-11 23:38:30 +00:00
this.menu.empty();
2011-11-18 16:14:38 +00:00
var options = this.element.find( 'option' );
if ( options.length ) {
this._readOptions( options );
this._renderMenu( this.menu, this.items );
2012-01-27 22:11:31 +00:00
this.menu.menu( "refresh" );
this.menuItems = this.menu.find( "li" ).not( '.ui-selectmenu-optgroup' );
2011-11-18 16:14:38 +00:00
// adjust ARIA
this.menuItems.find( 'a' ).attr( 'role', 'option' );
2012-01-27 22:11:31 +00:00
// select current item
var item = this._getSelectedItem();
this.menu.menu( "focus", null, item );
this._setSelected( item.data( "item.selectmenu" ) );
2012-01-27 22:11:31 +00:00
// set disabled state
this._setOption( "disabled", this._getCreateOptions()[ 'disabled' ] );
}
2011-11-18 16:14:38 +00:00
},
open: function( event ) {
if ( !this.options.disabled ) {
2012-01-27 22:11:31 +00:00
this._toggleButtonStyle();
2011-11-18 16:14:38 +00:00
this.menuWrap.addClass( 'ui-selectmenu-open' );
this.menu.attr("aria-hidden", false);
2012-01-22 18:19:37 +00:00
this.button.attr("aria-expanded", true);
2012-01-27 22:11:31 +00:00
// check if menu has items
if ( this.items ) {
var currentItem = this._getSelectedItem();
// needs to be fired after the document click event has closed all other Selectmenus
// otherwise the current item is not indicated
// TODO check if this should be handled by Menu
this._delay( function(){
this.menu.menu( "focus", event, currentItem );
}, 1);
2012-01-27 22:11:31 +00:00
if ( !this.options.dropdown ) {
// center current item
if ( this.menu.outerHeight() < this.menu.prop( "scrollHeight" ) ) {
this.menuWrap.css( "left" , -10000 );
this.menu.scrollTop( this.menu.scrollTop() + currentItem.position().top - this.menu.outerHeight()/2 + currentItem.outerHeight()/2 );
this.menuWrap.css( "left" , "auto" );
2012-01-27 22:11:31 +00:00
}
$.extend( this.options.position, {
my: "left top",
at: "left top",
// calculate offset
offset: "0 " + ( this.menu.offset().top - currentItem.offset().top + ( this.button.outerHeight() - currentItem.outerHeight() ) / 2 )
});
}
}
2011-11-18 16:14:38 +00:00
this.menuWrap
.zIndex( this.element.zIndex() + 1 )
.position( $.extend({
2011-10-11 23:38:30 +00:00
of: this.button
}, this.options.position ));
2011-11-18 16:14:38 +00:00
this.isOpen = true;
this._trigger( "open", event );
}
2011-11-18 16:14:38 +00:00
},
close: function( event ) {
if ( this.isOpen ) {
this._toggleButtonStyle();
2011-11-18 16:14:38 +00:00
2011-10-11 23:38:30 +00:00
this.menuWrap.removeClass( 'ui-selectmenu-open' );
2012-01-22 18:19:37 +00:00
this.menu.attr( "aria-hidden", true );
this.button.attr( "aria-expanded", false );
2012-01-27 22:11:31 +00:00
this.isOpen = false;
this._trigger( "close", event );
2011-09-22 19:20:49 +00:00
}
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
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 ) {
if ( item.optgroup != currentOptgroup ) {
var optgroup = $( '<li />', {
'class': 'ui-selectmenu-optgroup',
html: item.optgroup,
// prevents clicks on this header to close the menu
// TODO try to improve this, check how autocomplete handles it
click: function( event ){
event.stopPropagation();
}
});
if ( item.element.parent( "optgroup" ).attr( "disabled" ) ) optgroup.addClass( 'ui-state-disabled' );
ul.append( optgroup );
2011-09-01 22:21:09 +00:00
currentOptgroup = item.optgroup;
}
2011-09-28 21:59:23 +00:00
that._renderItem( ul, item );
2011-09-01 22:21:09 +00:00
});
},
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
_renderItem: function( ul, item) {
var li = $( "<li />" ).data( "item.selectmenu", item );
if ( item.disabled ) {
li.addClass( 'ui-state-disabled' ).html( item.label );
} else {
li.append( $( "<a />", {
html: item.label,
href: '#'
})
);
2011-11-18 16:14:38 +00:00
}
return li.appendTo( ul );
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 ) {
if ( direction == "first" || direction == "last" ) {
// set focus manually for first or last item
2012-01-22 19:25:27 +00:00
this.menu.menu( "focus", event, this.menuItems[ direction ]() );
} else {
// move to and focus next or prev item
2012-01-27 22:11:31 +00:00
this.menu.menu( direction, event );
}
2011-09-24 00:04:06 +00:00
},
2011-11-18 16:14:38 +00:00
_getSelectedItem: function() {
2012-01-22 19:25:27 +00:00
return this.menuItems.eq( this.element[0].selectedIndex );
},
2011-11-18 16:14:38 +00:00
2011-09-24 00:04:06 +00:00
_toggle: function( event ) {
2011-11-18 16:14:38 +00:00
if ( this.isOpen ) {
2011-09-24 00:04:06 +00:00
this.close( event );
2011-11-18 16:14:38 +00:00
} else {
2011-09-24 00:04:06 +00:00
this.open( event );
}
},
2011-11-18 16:14:38 +00:00
_buttonEvents: {
focus: function( event ) {
// init Menu on first focus
this.refresh();
this.button.unbind( "focus." + this.widgetName );
},
click: function( event ) {
this._toggle( event );
event.preventDefault();
},
keydown: function( event ) {
var prevDef = true;
switch (event.keyCode) {
case $.ui.keyCode.TAB:
case $.ui.keyCode.ESCAPE:
if ( this.isOpen ) {
this.close( event );
}
prevDef = false;
break;
case $.ui.keyCode.ENTER:
if ( this.isOpen ) {
this.menu.menu( "select", event );
2011-11-18 16:14:38 +00:00
}
break;
case $.ui.keyCode.UP:
if ( event.altKey ) {
this._toggle( event );
} else {
this._move( "previous", event );
}
break;
case $.ui.keyCode.DOWN:
if ( event.altKey ) {
this._toggle( event );
} else {
this._move( "next", event );
}
break;
case $.ui.keyCode.LEFT:
this._move( "previous", 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 );
prevDef = false;
}
if ( prevDef ) {
event.preventDefault();
}
}
2011-11-18 16:14:38 +00:00
},
2012-01-27 22:11:31 +00:00
_select: function( item, event ) {
var oldIndex = this.element[0].selectedIndex;
// change native select element
this.element[0].selectedIndex = item.index;
this._setSelected( item );
this._trigger( "select", event, { item: item } );
if ( item.index != oldIndex ) {
this._trigger( "change", event, { item: item } );
}
},
2012-01-27 22:11:31 +00:00
_setSelected: function( item ) {
2012-01-22 18:19:37 +00:00
// update button text
this.buttonText.html( item.label );
2012-01-22 18:19:37 +00:00
// change ARIA attr
2012-01-22 19:25:27 +00:00
this.menuItems.find("a").attr( "aria-selected", false );
this._getSelectedItem().find("a").attr( "aria-selected", true );
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 ) {
this._super( key, value );
2011-11-18 16:14:38 +00:00
2011-09-01 22:21:09 +00:00
if ( key === "appendTo" ) {
2011-10-11 23:38:30 +00:00
this.menuWrap.appendTo( $( value || "body", this.element[0].ownerDocument )[0] );
2011-09-01 22:21:09 +00:00
}
if ( key === "dropdown" ) {
this.menu.toggleClass( 'ui-corner-bottom', value ).toggleClass( 'ui-corner-all', !value );
}
if ( key === "disabled" ) {
this.menu.menu( "option", "disabled", value );
if ( value ) {
this.element.attr( "disabled", "disabled" );
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.element.removeAttr( "disabled" );
this.button.attr( "tabindex", 0 );
}
}
2011-09-01 22:21:09 +00:00
},
2012-01-27 22:11:31 +00:00
_toggleButtonStyle: function() {
if ( this.options.dropdown ) {
this.button.toggleClass( 'ui-corner-top', !this.isOpen ).toggleClass( 'ui-corner-all', this.isOpen );
}
},
2012-01-27 22:11:31 +00:00
_getCreateOptions: function() {
return { disabled: !!this.element.attr( 'disabled' ) };
},
_readOptions: function( options ) {
2011-11-18 16:14:38 +00:00
var data = [];
$.each( options, function( index, item ) {
var option = $( item ),
optgroup = option.parent( "optgroup" );
data.push({
element: option,
index: index,
value: option.attr( 'value' ),
label: option.text() || '&nbsp;',
optgroup: optgroup.attr( "label" ) || false,
disabled: optgroup.attr( "disabled" ) || option.attr( "disabled" )
2011-09-24 02:44:13 +00:00
});
});
this.items = data;
2011-09-01 22:21:09 +00:00
},
2011-11-18 16:14:38 +00:00
2011-09-24 00:04:06 +00:00
_destroy: function() {
2011-10-11 23:38:30 +00:00
this.menuWrap.remove();
this.buttonWrap.remove();
this.element.show();
}
2011-09-01 22:21:09 +00:00
});
}( jQuery ));