diff options
author | Kris Borchers <kris.borchers@gmail.com> | 2011-12-07 10:19:55 -0800 |
---|---|---|
committer | Kris Borchers <kris.borchers@gmail.com> | 2011-12-07 10:19:55 -0800 |
commit | 1748b5f404c4a8ffe9d5bd8954aa0764fea27d70 (patch) | |
tree | 9b40ca1eb8dece4279614da04dc70a2e4baf540c /ui | |
parent | ce7918fc73c161ab237f052bad070e34250526be (diff) | |
parent | aa267fb606b20bb7caf09485cd8ae72d1027c647 (diff) | |
download | jquery-ui-1748b5f404c4a8ffe9d5bd8954aa0764fea27d70.tar.gz jquery-ui-1748b5f404c4a8ffe9d5bd8954aa0764fea27d70.zip |
Merge pull request #541 from kborchers/menubar_otherStructures
Menubar: Allow structures other than just UL/LI and combine the _next, _prev, _right and _left into _move
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.menubar.js | 101 |
1 files changed, 49 insertions, 52 deletions
diff --git a/ui/jquery.ui.menubar.js b/ui/jquery.ui.menubar.js index 673493366..6bc03ba4d 100644 --- a/ui/jquery.ui.menubar.js +++ b/ui/jquery.ui.menubar.js @@ -22,6 +22,8 @@ $.widget( "ui.menubar", { options: { autoExpand: false, buttons: false, + items: "li", + menuElement: "ul", menuIcon: false, position: { my: "left top", @@ -30,19 +32,21 @@ $.widget( "ui.menubar", { }, _create: function() { var that = this; - var items = this.items = this.element.children( "li" ) + this.menuItems = this.element.children( this.options.items ); + this.items = this.menuItems.children( "button, a" ); + + this.menuItems .addClass( "ui-menubar-item" ) - .attr( "role", "presentation" ) - .children( "button, a" ); + .attr( "role", "presentation" ); // let only the first item receive focus - items.slice(1).attr( "tabIndex", -1 ); + this.items.slice(1).attr( "tabIndex", -1 ); this.element .addClass( "ui-menubar ui-widget-header ui-helper-clearfix" ) .attr( "role", "menubar" ); - this._focusable( items ); - this._hoverable( items ); - items.next( "ul" ) + this._focusable( this.items ); + this._hoverable( this.items ); + this.items.siblings( this.options.menuElement ) .menu({ position: { within: this.options.position.within @@ -53,7 +57,8 @@ $.widget( "ui.menubar", { // TODO what is this targetting? there's probably a better way to access it $(event.target).prev().focus(); that._trigger( "select", event, ui ); - } + }, + menus: that.options.menuElement }) .hide() .attr({ @@ -66,19 +71,19 @@ $.widget( "ui.menubar", { return; switch ( event.keyCode ) { case $.ui.keyCode.LEFT: - that._left( event ); + that.previous( event ); event.preventDefault(); break; case $.ui.keyCode.RIGHT: - that._right( event ); + that.next( event ); event.preventDefault(); break; }; }); - items.each(function() { + this.items.each(function() { var input = $(this), // TODO menu var is only used on two places, doesn't quite justify the .each - menu = input.next( "ul" ); + menu = input.next( that.options.menuElement ); input.bind( "click.menubar focus.menubar mouseenter.menubar", function( event ) { // ignore triggered focus event @@ -109,11 +114,11 @@ $.widget( "ui.menubar", { event.preventDefault(); break; case $.ui.keyCode.LEFT: - that._prev( event, $( this ) ); + that.previous( event ); event.preventDefault(); break; case $.ui.keyCode.RIGHT: - that._next( event, $( this ) ); + that.next( event ); event.preventDefault(); break; } @@ -166,17 +171,16 @@ $.widget( "ui.menubar", { }, _destroy : function() { - var items = this.element.children( "li" ) + this.menuItems .removeClass( "ui-menubar-item" ) - .removeAttr( "role" ) - .children( "button, a" ); + .removeAttr( "role" ); this.element .removeClass( "ui-menubar ui-widget-header ui-helper-clearfix" ) .removeAttr( "role" ) .unbind( ".menubar" ); - items + this.items .unbind( ".menubar" ) .removeClass( "ui-button ui-widget ui-button-text-only ui-menubar-link ui-state-default" ) .removeAttr( "role" ) @@ -243,55 +247,48 @@ $.widget( "ui.menubar", { }, this.options.position ) ) .removeAttr( "aria-hidden" ) .attr( "aria-expanded", "true" ) - .menu("focus", event, menu.children( "li" ).first() ) + .menu("focus", event, menu.children( ".ui-menu-item" ).first() ) // TODO need a comment here why both events are triggered .focus() .focusin(); this.open = true; }, - // TODO refactor this and the next three methods - _prev: function( event, button ) { - button.attr( "tabIndex", -1 ); - var prev = button.parent().prevAll( "li" ).children( ".ui-button" ).eq( 0 ); - if ( prev.length ) { - prev.removeAttr( "tabIndex" )[0].focus(); - } else { - var lastItem = this.element.children( "li:last" ).children( ".ui-button:last" ); - lastItem.removeAttr( "tabIndex" )[0].focus(); - } + next: function( event ) { + this._move( "next", "first", event ); }, - _next: function( event, button ) { - button.attr( "tabIndex", -1 ); - var next = button.parent().nextAll( "li" ).children( ".ui-button" ).eq( 0 ); - if ( next.length ) { - next.removeAttr( "tabIndex")[0].focus(); - } else { - var firstItem = this.element.children( "li:first" ).children( ".ui-button:first" ); - firstItem.removeAttr( "tabIndex" )[0].focus(); - } + previous: function( event ) { + this._move( "prev", "last", event ); }, - // TODO rename to parent - _left: function( event ) { - var prev = this.active.parent().prevAll( "li:eq(0)" ).children( ".ui-menu" ).eq( 0 ); - if ( prev.length ) { - this._open( event, prev ); + _move: function( direction, filter, event ) { + var next, + wrapItem; + if ( this.open ) { + next = this.active.closest( ".ui-menubar-item" )[ direction + "All" ]( this.options.items ).first().children( ".ui-menu" ).eq( 0 ); + wrapItem = this.menuItems[ filter ]().children( ".ui-menu" ).eq( 0 ); } else { - var lastItem = this.element.children( "li:last" ).children( ".ui-menu:first" ); - this._open( event, lastItem ); + if ( event ) { + next = $( event.target ).closest( ".ui-menubar-item" )[ direction + "All" ]( this.options.items ).children( ".ui-menubar-link" ).eq( 0 ); + wrapItem = this.menuItems[ filter ]().children( ".ui-menubar-link" ).eq( 0 ); + } else { + next = wrapItem = this.menuItems.children( "a" ).eq( 0 ); + } } - }, - // TODO rename to child (or something like that) - _right: function( event ) { - var next = this.active.parent().nextAll( "li:eq(0)" ).children( ".ui-menu" ).eq( 0 ); if ( next.length ) { - this._open( event, next ); + if ( this.open ) { + this._open( event, next ); + } else { + next.removeAttr( "tabIndex")[0].focus(); + } } else { - var firstItem = this.element.children( "li:first" ).children( ".ui-menu:first" ); - this._open( event, firstItem ); + if ( this.open ) { + this._open( event, wrapItem ); + } else { + wrapItem.removeAttr( "tabIndex")[0].focus(); + } } } }); |