Test
This commit is contained in:
commit
f4f2f50f21
2 changed files with 50 additions and 0 deletions
|
@ -49,6 +49,7 @@ mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','I
|
||||||
// Try to retrieve data for the first time
|
// Try to retrieve data for the first time
|
||||||
tryToRetrieveData();
|
tryToRetrieveData();
|
||||||
|
|
||||||
|
|
||||||
var displayMachine = function(){
|
var displayMachine = function(){
|
||||||
var machineNames = [];
|
var machineNames = [];
|
||||||
var i = 0;
|
var i = 0;
|
||||||
|
@ -112,6 +113,52 @@ mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','I
|
||||||
$scope.raiseShowMachineDetailsEvent($(this).attr('model-id'));
|
$scope.raiseShowMachineDetailsEvent($(this).attr('model-id'));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Function to call after pull all data about machines
|
||||||
|
var callMeAfterPullData=function(data){
|
||||||
|
//$scope.machines=Compute.getData().machines;
|
||||||
|
Loading.stop();
|
||||||
|
displayMachine();
|
||||||
|
};
|
||||||
|
|
||||||
|
var tryToRetrieveData = function () {
|
||||||
|
// If no data retrieve about machine and user is logged
|
||||||
|
if (Compute.getData().machines == null && Identity.isAlreadyLogin()) {
|
||||||
|
Loading.start(); // Show loading gif
|
||||||
|
Compute.pullData(callMeAfterPullData); // Retrieve data and call the callback
|
||||||
|
} else {
|
||||||
|
// Else if user is logged and data is already retrieve
|
||||||
|
// simply display data
|
||||||
|
if (Identity.isAlreadyLogin()) {
|
||||||
|
callMeAfterPullData(); // Display data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// On user login
|
||||||
|
$scope.$on('loginEvent', function () {
|
||||||
|
tryToRetrieveData();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Function to call from view to display the details of a machine
|
||||||
|
$scope.raiseShowMachineDetailsEvent = function (id) {
|
||||||
|
|
||||||
|
// Stop loading gif and display overlay
|
||||||
|
var callback = function () {
|
||||||
|
Loading.stop();
|
||||||
|
var data = Compute.getData();
|
||||||
|
|
||||||
|
$rootScope.$broadcast("showMachineDetailsEvent", data.machines[id], data.axioms);
|
||||||
|
|
||||||
|
};
|
||||||
|
Loading.start(); // Show loading gif
|
||||||
|
Compute.pullMachines(callback); // Retrieve machine info and display overlay
|
||||||
|
};
|
||||||
|
|
||||||
|
// Try to retrieve data for the first time
|
||||||
|
tryToRetrieveData();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//Read the adjacencyList and build the elements and the links according to it
|
//Read the adjacencyList and build the elements and the links according to it
|
||||||
function buildGraphFromAdjacencyList(adjacencyList) {
|
function buildGraphFromAdjacencyList(adjacencyList) {
|
||||||
|
@ -156,7 +203,9 @@ mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','I
|
||||||
var width = 130;
|
var width = 130;
|
||||||
var height = 80;
|
var height = 80;
|
||||||
var data = Compute.getData();
|
var data = Compute.getData();
|
||||||
|
|
||||||
//console.log(data.machines[vm[1]]);
|
//console.log(data.machines[vm[1]]);
|
||||||
|
|
||||||
if(data.machines[vm[1]].status == "ACTIVE"){
|
if(data.machines[vm[1]].status == "ACTIVE"){
|
||||||
return new joint.shapes.org.Member({
|
return new joint.shapes.org.Member({
|
||||||
id: vm[1],
|
id: vm[1],
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity','$rootScope', function ($scope, Image, Loading, Identity, $rootScope)
|
mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity','$rootScope', function ($scope, Image, Loading, Identity, $rootScope)
|
||||||
{
|
{
|
||||||
|
console.log("test");
|
||||||
// Update view
|
// Update view
|
||||||
var callMeAfterGetImage = function () {
|
var callMeAfterGetImage = function () {
|
||||||
$scope.images = Image.getData().images;
|
$scope.images = Image.getData().images;
|
||||||
|
|
Loading…
Add table
Reference in a new issue