var theProject; var ui = {}; function onLoad() { var params = URL.getParameters(); if ("project" in params) { theProject = { id: parseInt(params.project) }; reinitializeProjectData(initializeUI); } } $(onLoad); function initializeUI() { document.title = theProject.metadata.name + " - Gridworks"; $('').text(theProject.metadata.name).addClass("app-path-section").appendTo($("#path")); $('').text(" project").appendTo($("#path")); var body = $("#body").empty(); var table = document.createElement("table"); $(table).attr("cellspacing", 20).css("width", "100%"); body.append(table); var tr = table.insertRow(0); var tdLeft = tr.insertCell(0); var tdRight = tr.insertCell(1); tdLeft.setAttribute("width", "82%"); tdRight.setAttribute("width", "18%"); ui.viewPanel = $('
').appendTo(tdLeft); ui.facetPanel = $('
').appendTo(tdRight); ui.historyPanel = $('
').addClass("history-panel").appendTo(document.body); ui.processPanel = $('
').addClass("process-panel").appendTo(document.body); ui.menuBarPanel = $('
'); $("#header").after(ui.menuBarPanel); ui.browsingEngine = new BrowsingEngine(ui.facetPanel); ui.processWidget = new ProcessWidget(ui.processPanel); ui.historyWidget = new HistoryWidget(ui.historyPanel); ui.dataTableView = new DataTableView(ui.viewPanel); ui.menuBar = new MenuBar(ui.menuBarPanel); } function reinitializeProjectData(f) { Ajax.chainGetJSON( "/command/get-project-metadata?" + $.param({ project: theProject.id }), null, function(data) { theProject.metadata = data; }, "/command/get-column-model?" + $.param({ project: theProject.id }), null, function(data) { theProject.columnModel = data; for (var i = 0; i < theProject.columnModel.columns.length; i++) { theProject.columnModel.columns[i].collapsed = false; } }, f ); }