78 lines
No EOL
1.8 KiB
JavaScript
78 lines
No EOL
1.8 KiB
JavaScript
angular.module('SeHub')
|
|
.controller('mainController', ['$scope', '$rootScope', 'apiService', '$cookies', '$location', function($scope, $rootScope, apiService, $cookies, $location) {
|
|
|
|
var token = $cookies['com.sehub.www'];
|
|
|
|
$scope.loadingData = true;
|
|
$scope.isInRegisterMode = false;
|
|
|
|
apiService.getUserByToken(token).success(function(data) {
|
|
if (data.message == 'No User Found') {
|
|
console.error("No User Found!");
|
|
}
|
|
$scope.loadingData = false;
|
|
$scope.user = data;
|
|
console.log(data);
|
|
if ($scope.user.isFirstLogin) {
|
|
$scope.menuObj = {};
|
|
$scope.isInRegisterMode = true;
|
|
$scope.loadingData = false;
|
|
$location.path('/register')
|
|
} else {
|
|
$location.path('/home')
|
|
}
|
|
|
|
})
|
|
|
|
$scope.menuItems = [{
|
|
"title": "Home",
|
|
"icon": "fa fa-home",
|
|
"style": "selected",
|
|
"route": "/home"
|
|
}, {
|
|
"title": "My Campuses",
|
|
"icon": "fa fa-university",
|
|
"style": "",
|
|
"route": "/campuses"
|
|
}, {
|
|
"title": "My Classes",
|
|
"icon": "fa fa-graduation-cap",
|
|
"style": "",
|
|
"route": "/campuses"
|
|
}, {
|
|
"title": "My Projects",
|
|
"icon": "fa fa-cube",
|
|
"style": "",
|
|
"route": "/campuses"
|
|
}, {
|
|
"title": "Tasks",
|
|
"icon": "fa fa-clipboard",
|
|
"style": "",
|
|
"route": "/campuses"
|
|
}, {
|
|
"title": "Settings",
|
|
"icon": "fa fa-cogs",
|
|
"style": "",
|
|
"route": "/Settings"
|
|
}, {
|
|
"title": "Log Out",
|
|
"icon": "fa fa-power-off",
|
|
"style": "",
|
|
"route": "/logout"
|
|
}];
|
|
|
|
$scope.menuClicked = function(item){
|
|
var route = ""
|
|
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 = "";
|
|
}
|
|
};
|
|
$location.path(route);
|
|
}
|
|
|
|
|
|
}]); |