(function($) { $.entwine('ss', function($){ /** * Vertical CMS menu with two levels, built from a nested unordered list. * The (optional) second level is collapsible, hiding its children. * The whole menu (including second levels) is collapsible as well, * exposing only a preview for every menu item in order to save space. * In this "preview/collapsed" mode, the secondary menu hovers over the menu item, * rather than expanding it. * * Example: * * * * Custom Events: * - 'select': Fires when a menu item is selected (on any level). */ $('.cms-menu-list').entwine({ onmatch: function() { var self = this; $('.cms-container').bind('afterstatechange', function(e, data) { var controller = data.xhr.getResponseHeader('X-Controller'); if(controller) { var item = self.find('li#Menu-' + controller); if(!item.hasClass('current')) item.select(); } self.updateItems(); }); // Sync collapsed state with parent panel this.parents('.cms-panel:first').bind('toggle', function(e) { self.toggleClass('collapsed', $(this).hasClass('collapsed')); }); // Select default element (which might reveal children in hidden parents) this.find('li.current').select(); this.updateItems(); this._super(); }, updateItems: function() { // Hide "edit page" commands unless the section is activated var editPageItem = this.find('#Menu-CMSMain'); editPageItem[editPageItem.is('.current') ? 'show' : 'hide'](); } }); $('.cms-menu-list .toggle').entwine({ onclick: function(e) { this.getMenuItem().toggle(); e.preventDefault(); } }); $('.cms-menu-list li').entwine({ toggle: function() { this[this.hasClass('opened') ? 'close' : 'open'](); }, open: function() { var parent = this.getMenuItem(); if(parent) parent.open(); this.addClass('opened').find('ul').show(); }, close: function() { this.removeClass('opened').find('ul').hide(); }, select: function() { var parent = this.getMenuItem(); this.addClass('current').open(); // Remove "current" class from all siblings and their children this.siblings().removeClass('current').close(); this.siblings().find('li').removeClass('current'); if(parent) parent.addClass('current').siblings().removeClass('current'); this.getMenu().updateItems(); this.trigger('select'); } }); $('.cms-menu-list *').entwine({ getMenu: function() { return this.parents('.cms-menu-list:first'); } }); $('.cms-menu-list li *').entwine({ getMenuItem: function() { return this.parents('li:first'); } }); /** * Both primary and secondary nav. */ $('.cms-menu-list li a').entwine({ onclick: function(e) { // Only catch left clicks, in order to allow opening in tabs. // Ignore external links, fallback to standard link behaviour if(e.which > 1 || this.is(':external')) return; e.preventDefault(); var item = this.getMenuItem(); var url = this.attr('href'); if(this.is(':internal')) url = $('base').attr('href') + url; var children = item.find('li'); if(children.length) { children.first().find('a').click(); } else { // Load URL, but give the loading logic an opportunity to veto the action // (e.g. because of unsaved changes) if(!$('.cms-container').loadPanel(url)) return false; } item.select(); } }); }); // Internal Helper $.expr[':'].internal = function(obj){return obj.href.match(/^mailto\:/) || (obj.hostname == location.hostname);}; $.expr[':'].external = function(obj){return !$(obj).is(':internal')}; }(jQuery));