15a6d7e2e0
- tab system in dashboard is working with scroll - createMessage - logic fixed (display in progress)
182 lines
No EOL
4.6 KiB
JavaScript
182 lines
No EOL
4.6 KiB
JavaScript
angular.module('SeHub')
|
|
.controller('homeController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function ($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
|
|
{
|
|
$scope.isStudent = false;
|
|
$scope.addMsg = false;
|
|
$scope.msgToPost = "";
|
|
$scope.oldText = "";
|
|
$scope.messages = [];
|
|
$scope.messagesDisplay = [];
|
|
$scope.courses = [];
|
|
$scope.campuses = [];
|
|
$scope.msg = {};
|
|
$scope.courseObj = {};
|
|
// $scope.course = ""; // should be "" ? // {} ??
|
|
|
|
$rootScope.seToken = $cookies['com.sehub.www'];
|
|
var token = $rootScope.seToken;
|
|
var imagePath = $scope.user.avatar_url;
|
|
|
|
if($scope.user.isLecturer)
|
|
{
|
|
$scope.isStudent = false;
|
|
console.log("Lecturer Mode!");
|
|
}
|
|
else
|
|
{
|
|
$scope.isStudent = true;
|
|
console.log("Student Mode!");
|
|
}
|
|
|
|
$scope.addMessageClicked = function()
|
|
{
|
|
$scope.addMsg = true; // Reveal the "POST" Button
|
|
}
|
|
$scope.postMessageClicked = function() // Posting the message itself
|
|
{
|
|
console.log($scope.courseObj);
|
|
if($scope.msg.msgToAdd != null && $scope.courseObj.courseName)
|
|
{
|
|
console.log("NOW");
|
|
|
|
jsonNewMsg = {
|
|
'groupId': $scope.courseObj.id, // TODO Should be ===> $scope.courseObj.id
|
|
'message': $scope.msg.msgToAdd
|
|
};
|
|
|
|
apiService.createMessage(token, jsonNewMsg).success(function(data)
|
|
{
|
|
console.log("create Msg!");
|
|
}).error(function(err)
|
|
{
|
|
console.log("Error Below");
|
|
console.log(err);
|
|
});
|
|
|
|
console.log($scope.msg.msgToAdd);
|
|
$scope.messages.push({"text": $scope.msg.msgToAdd});
|
|
}
|
|
else
|
|
{
|
|
$mdDialog.show($mdDialog.alert().title('Error Creating Message').content('Message content or Course is missing')
|
|
.ariaLabel('Send Message alert dialog').ok('Try Again!').targetEvent()); // Pop-up alert
|
|
}
|
|
$scope.msg.msgToAdd = null;
|
|
}
|
|
|
|
$scope.displayTasks = function()
|
|
{
|
|
// apiService.getAllFutureTasks(token, courseId).success(function(data) // need to check courseId
|
|
// {
|
|
|
|
// }).error(function(err)
|
|
// {
|
|
|
|
// });
|
|
|
|
|
|
}
|
|
|
|
$scope.displayMessages = function()
|
|
{
|
|
// apiService.getMessagesByGroupId(token, $scope.courseObj.id).success(function(data)
|
|
// {
|
|
// $scope.messages = data;
|
|
// console.log($scope.messages);
|
|
// }).error(function(err)
|
|
// {
|
|
// console.log(err);
|
|
// });
|
|
}
|
|
|
|
|
|
$scope.getCampuses = function()
|
|
{
|
|
apiService.getCampusesByUser(token).success(function(data)
|
|
{
|
|
$scope.campuses = data;
|
|
$scope.getCourses(); // Get all the courses info
|
|
if($scope.messages)
|
|
{
|
|
$scope.displayMessages(); // // Display all messages in message feed and the latest one
|
|
}
|
|
}).error(function(err)
|
|
{
|
|
console.log("Error: " + err);
|
|
});
|
|
|
|
}
|
|
|
|
$scope.getCourses = function()
|
|
{
|
|
for(var i = 0; i < $scope.campuses.length; i++)
|
|
{
|
|
apiService.getAllCoursesByCampus(token, $scope.campuses[i].id).success(function(data) // Shows all classes from this campus
|
|
{
|
|
$scope.loadingData = false;
|
|
$scope.courses = data;
|
|
// console.log($scope.courses);
|
|
if($scope.courses && $scope.courses.length > 0)
|
|
{
|
|
$scope.coursesEmpty = false;
|
|
}
|
|
}).error(function(err)
|
|
{
|
|
console.log("Error: " + err);
|
|
});
|
|
}
|
|
}
|
|
|
|
$scope.clearAllClicked = function() // Clear Screen from text
|
|
{
|
|
$scope.messages = [];
|
|
}
|
|
|
|
$scope.chooseCourseClicked = function()
|
|
{
|
|
// console.log($scope.courseObj);
|
|
if($scope.courseObj)
|
|
{
|
|
for(var i = 0; i < $scope.courses.length; i++)
|
|
{
|
|
if($scope.courses[i].courseName === $scope.courseObj.name)
|
|
{
|
|
$scope.courseObj = $scope.courses[i];
|
|
}
|
|
}
|
|
}
|
|
console.log($scope.courseObj);
|
|
}
|
|
|
|
// $scope.chooseCourseClicked = function()
|
|
// {
|
|
// console.log("Click ");
|
|
// console.log($scope.choosenCourse);
|
|
// if($scope.choosenCourse)
|
|
// {
|
|
// console.log("here");
|
|
// $scope.courseObj = null;
|
|
// for(var i = 0; i < $scope.courses.length; i++)
|
|
// {
|
|
// if($scope.courses[i].courseName === $scope.choosenCourse)
|
|
// {
|
|
// $scope.courseObj = $scope.courses[i];
|
|
// console.log($scope.courseObj);
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
$scope.chooseProjectClicked = function()
|
|
{
|
|
console.log("choose project Clicked!!");
|
|
}
|
|
|
|
$scope.getCampuses(); // Get all the campuses info
|
|
|
|
// animation
|
|
|
|
// $scope.displayTasks(); // Display all tasks in task feed and the latest one
|
|
$scope.isEnterd = top.setIsEnterd;
|
|
|
|
}]); |