/** * Copyright 2014 IBM Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. **/ RED.menu = (function() { var menuItems = {}; function createMenuItem(opt) { var item; function setState() { var savedStateActive = isSavedStateActive(opt.id); if (savedStateActive) { link.addClass("active"); opt.onselect.call(opt, true); } else if (savedStateActive === false) { link.removeClass("active"); opt.onselect.call(opt, false); } else if (opt.hasOwnProperty("selected")) { if (opt.selected) { link.addClass("active"); } else { link.removeClass("active"); } opt.onselect.call(opt, opt.selected); } } if (opt === null) { item = $('
  • '); } else { item = $('
  • '); var linkContent = ''; if (opt.toggle) { linkContent += ''; linkContent += ''; } if (opt.icon !== undefined) { if (/\.png/.test(opt.icon)) { linkContent += ' '; } else { linkContent += ' '; } } if (opt.sublabel) { linkContent += ''+opt.label+''+ ''+opt.sublabel+'' } else { linkContent += ''+opt.label+'' } linkContent += ''; var link = $(linkContent).appendTo(item); menuItems[opt.id] = opt; if (opt.onselect) { link.click(function() { if ($(this).parent().hasClass("disabled")) { return; } if (opt.toggle) { var selected = isSelected(opt.id); if (typeof opt.toggle === "string") { if (!selected) { for (var m in menuItems) { if (menuItems.hasOwnProperty(m)) { var mi = menuItems[m]; if (mi.id != opt.id && opt.toggle == mi.toggle) { setSelected(mi.id,false); } } } setSelected(opt.id,true); } } else { setSelected(opt.id, !selected); } } else { opt.onselect.call(opt); } }); setState(); } else if (opt.href) { link.attr("target","_blank").attr("href",opt.href); } else if (!opt.options) { item.addClass("disabled"); link.click(function(event) { event.preventDefault(); }); } if (opt.options) { item.addClass("dropdown-submenu pull-left"); var submenu = $('').appendTo(item); for (var i=0;i",{id:options.id+"-submenu", class:"dropdown-menu pull-right"}).insertAfter(button); for (var i=0;i