se-hub/templates/js/controllers/mainController.js

93 lines
2.4 KiB
JavaScript
Raw Normal View History

2015-05-09 19:00:14 +00:00
angular.module('SeHub')
.controller('mainController',
['$scope', '$rootScope', 'dataService', 'apiService', '$cookies',
'$cookieStore', '$location', '$window',
2015-05-09 19:00:14 +00:00
function($scope, $rootScope, dataService, apiService, $cookies, $cookieStore, $location, $window) {
2015-06-17 21:04:36 +00:00
top.setIsEnterd = true;
2015-06-17 17:14:53 +00:00
var token = $cookies['com.sehub.www'];
2015-05-09 19:00:14 +00:00
2015-06-17 17:14:53 +00:00
$scope.loadingData = true;
$scope.isInRegisterMode = false;
apiService.getUserByToken(token).success(function(data, status) {
if (status == 204) {
2015-06-17 17:14:53 +00:00
console.error("No User Found!");
$cookieStore.remove('com.sehub.www');
window.location = 'http://se-hub.appstpot.com/';
2015-06-17 17:14:53 +00:00
}
$scope.loadingData = false;
2015-06-17 17:14:53 +00:00
$scope.user = data;
$scope.menuItems = [{
"title": "Dash Board",
"icon": "fa fa-tachometer",
"style": "selected",
"route": "/home"
}, {
2015-06-27 12:08:17 +00:00
"title": "Explore",
"icon": "fa fa-compass",
"style": "",
"route": "/campuses"
}, {
"title": "My Projects",
"icon": "fa fa-cube",
"style": "",
"route": "/myProjects"
}, {
"title": "Tasks",
"icon": "fa fa-clipboard",
"style": "",
"route": "/tasks"
}, {
"title": "Profile",
"icon": "fa fa-cogs",
"style": "",
"route": "/profile/" + $scope.user.id.toString()
}, {
"title": "Log Out",
"icon": "fa fa-power-off",
"style": "",
"route": "/logout"
}];
dataService.initService($scope); //Start Data Sync Service (For User)
2015-06-17 17:14:53 +00:00
if ($scope.user.isFirstLogin) {
$scope.menuObj = {};
$scope.isInRegisterMode = true;
$scope.loadingData = false;
$location.path('/register')
} else {
$location.path('/home')
}
}).error(function(err){
console.error(err);
$cookieStore.remove('com.sehub.www');
window.location = DEBUG ? 'http://localhost:8080' : 'http://se-hub.appstpot.com/';
});
2015-05-09 19:00:14 +00:00
2015-06-17 17:14:53 +00:00
$scope.menuClicked = function(item) {
var route = ""
if (item.title == "Log Out") {
console.info('Logging Out!');
$cookieStore.remove('com.sehub.www');
$window.location.href = 'http://se-hub.appspot.com'; // Reference to 'welcome' page
}
2015-06-17 17:14:53 +00:00
for (var i = $scope.menuItems.length - 1; i >= 0; i--) {
if ($scope.menuItems[i].title === item.title) {
$scope.menuItems[i].style = "selected";
route = $scope.menuItems[i].route;
} else {
$scope.menuItems[i].style = "";
}
};
2015-06-17 21:04:36 +00:00
top.setIsEnterd = false;
2015-06-17 17:14:53 +00:00
$location.path(route);
}
2015-06-17 17:14:53 +00:00
}
]);