/** * Tab constructor * * @param tabId * Tab ID * @param tabName * Tab name * @return Nothing */ var Tab = function(tabId) { this.tabId = tabId; this.tabName = null; this.tab = null; }; /** * Initialize the tab * * @param tabName * Tab name to initialize * @return Nothing */ Tab.prototype.init = function() { // Create a division containing the tab this.tab = $('
'); var tabList = $('' + msg + '
'); infoBar.append(msg); return infoBar; } /** * Create a loader * * @param loaderId * Loader ID * @return Nothing */ function createLoader(loaderId) { var loader = $('
');
return loader;
}
/**
* Create a button
*
* @param name
* Name of the button
* @return Nothing
*/
function createButton(name) {
var button = $('');
return button;
}
/**
* Create a menu
*
* @param items
* An array of items to go into the menu
* @return A division containing the menu
*/
function createMenu(items) {
var menu = $('');
// Loop through each item
for ( var i in items) {
// Append item to menu
var item = $('');
// If it is a sub menu
if (items[i] instanceof Array) {
// 1st index = Sub menu title
item.append(items[i][0]);
// 2nd index = Sub menu
item.append(items[i][1]);
} else {
item.append(items[i]);
}
// Do not add border for 1st item
if (i > 0) {
item.css( {
'border-left' : '1px solid #BDBDBD'
});
}
menu.append(item);
}
return menu;
}
/**
* Initialize the page
*
* @return Nothing
*/
function initPage() {
// Load javascripts
// TODO: We need to determine which page needs which script
// and load less
includeJs("js/jquery/jquery.dataTables.min.js");
includeJs("js/jquery/jquery.form.js");
includeJs("js/jquery/jquery.jeditable.js");
includeJs("js/jquery/jquery.autocomplete.js");
includeJs("js/jquery/jquery.contextmenu.js");
includeJs("js/jquery/jquery.cookie.js");
includeJs("js/jquery/jquery-impromptu.3.0.min.js");
includeJs("js/jquery/superfish.js");
includeJs("js/jquery/hoverIntent.js");
includeJs("js/jquery/jquery.tree.js");
includeJs("js/configure/configure.js");
includeJs("js/monitor/monitor.js");
includeJs("js/nodes/nodes.js");
includeJs("js/provision/provision.js");
// Get the page being loaded
var url = window.location.pathname;
var page = url.replace('/xcat/', '');
var headers = $('#header ul li a');
// Show the page
$("#content").children().remove();
if (page == 'index.php') {
headers.eq(0).css('background-color', '#A9D0F5');
loadNodesPage();
} else if (page == 'configure.php') {
headers.eq(1).css('background-color', '#A9D0F5');
loadConfigPage();
} else if (page == 'provision.php') {
headers.eq(2).css('background-color', '#A9D0F5');
loadProvisionPage();
} else if (page == 'monitor.php') {
headers.eq(3).css('background-color', '#A9D0F5');
loadMonitorPage();
} else {
headers.eq(0).css('background-color', '#A9D0F5');
loadNodesPage();
}
}
/**
* Include javascript file in
*
* @param file
* File to include
* @return Nothing
*/
function includeJs(file) {
var script = $("head script[src='" + file + "']");
// If does not contain the javascript
if (!script.length) {
// Append the javascript to
var script = $('');
script.attr( {
type : 'text/javascript',
src : file
})
$('head').append(script);
}
}
/**
* Reset the javascript files in to its original content
*
* @param file
* File to include
* @return Nothing
*/
function resetJs() {
var scripts = $('head script');
for ( var i = 0; i < scripts.length; i++) {
var file = scripts.eq(i).attr('src');
// Remove ipmi, blade, hmc, ivm, fsp javascripts
if (file == 'js/custom/ipmi.js') {
scripts.eq(i).remove();
} else if (file == 'js/custom/blade.js') {
scripts.eq(i).remove();
} else if (file == 'js/custom/hmc.js') {
scripts.eq(i).remove();
} else if (file == 'js/custom/ivm.js') {
scripts.eq(i).remove();
} else if (file == 'js/custom/fsp.js') {
scripts.eq(i).remove();
} else if (file == 'js/custom/zvm.js') {
scripts.eq(i).remove();
}
}
}