Campus (In Explore) Looks and Feel
This commit is contained in:
parent
604c19af19
commit
14483a939f
3 changed files with 204 additions and 149 deletions
|
@ -1,6 +1,5 @@
|
|||
angular.module('SeHub')
|
||||
.controller('classController', ['$scope', '$routeParams', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function ($scope, $routeParams, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
|
||||
{
|
||||
.controller('classController', ['$scope', '$routeParams', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function($scope, $routeParams, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService, $rootScope) {
|
||||
var token = $cookies['com.sehub.www'];
|
||||
var classId = $routeParams.classId;
|
||||
$scope.project = {};
|
||||
|
@ -10,37 +9,60 @@ angular.module('SeHub')
|
|||
$scope.submitNewCourseClicked = false;
|
||||
$scope.loadingData = true;
|
||||
$scope.isInCourse = false;
|
||||
var startDate = null;
|
||||
var endDate = null;
|
||||
var nowDate = new Date();
|
||||
var one_day=1000*60*60*24;
|
||||
var dayDeltaOfCourse;
|
||||
var courseElapseTime;
|
||||
$scope.isCourseOver = false;
|
||||
$scope.createSctionStatus = "fa fa-angle-down";
|
||||
|
||||
$scope.displayProjects = function() {
|
||||
apiService.getCourseById(token, classId)
|
||||
.success(function(data) {
|
||||
startDate = new Date(data.startDate.year, data.startDate.month-1, data.startDate.day);
|
||||
endDate = new Date(data.endDate.year, data.endDate.month-1, data.endDate.day)
|
||||
$scope.course = data;
|
||||
$scope.course.startDate = startDate.toDateString();
|
||||
$scope.course.endDate = endDate.toDateString();
|
||||
dayDeltaOfCourse = (endDate.getTime() - startDate.getTime()) / one_day;
|
||||
courseElapseTime = (nowDate.getTime() - startDate.getTime()) / one_day;
|
||||
if(courseElapseTime < 0)
|
||||
courseElapseTime = 0;
|
||||
else if(courseElapseTime > dayDeltaOfCourse){
|
||||
$scope.isCourseOver = true;
|
||||
courseElapseTime = dayDeltaOfCourse;
|
||||
}
|
||||
$scope.courseTimePresentege = ((courseElapseTime/dayDeltaOfCourse) * 100).toString();
|
||||
console.log($scope.courseTimePresentege);
|
||||
|
||||
$scope.displayProjects = function()
|
||||
{
|
||||
apiService.getProjectsByCourse(token, classId).success(function(data) // Get all the campuses
|
||||
{
|
||||
$scope.loadingData = false;
|
||||
$scope.projects = data;
|
||||
if($scope.projects != null && $scope.projects.length > 0)
|
||||
{
|
||||
if ($scope.projects != null && $scope.projects.length > 0) {
|
||||
$scope.projectsEmpty = false;
|
||||
}
|
||||
init(); // Executing the function to initialize projects display
|
||||
console.log("project created! not rly!! " + classId);
|
||||
}).error(function(err)
|
||||
{
|
||||
console.log("Error: " + err);
|
||||
}).error(function(err) {
|
||||
console.error("Error: " + err);
|
||||
});
|
||||
})
|
||||
.error(function(err) {
|
||||
console.error("Error: " + err);
|
||||
})
|
||||
}
|
||||
$scope.joinCourse = function()
|
||||
{
|
||||
apiService.joinCourse(token, classId).success(function(data)
|
||||
{
|
||||
$scope.joinCourse = function() {
|
||||
apiService.joinCourse(token, classId).success(function(data) {
|
||||
$scope.isInCourse = true;
|
||||
$mdDialog.show($mdDialog.alert().title('Joined Course').content('You have successfully joined course.')
|
||||
.ariaLabel('Join course alert dialog').ok('Lets Start!').targetEvent())
|
||||
.then(function() {
|
||||
$location.path('/class/' + classId); // TODO TODO TODO
|
||||
}); // Pop-up alert
|
||||
}).error(function(err)
|
||||
{
|
||||
}).error(function(err) {
|
||||
$mdDialog.show($mdDialog.alert().title('Error Joining Course').content(err.message + '.')
|
||||
.ariaLabel('Join course alert dialog').ok('Try Again!').targetEvent()); // Pop-up alert
|
||||
// .then(function() {
|
||||
|
@ -49,20 +71,21 @@ angular.module('SeHub')
|
|||
});
|
||||
}
|
||||
|
||||
$scope.createProjectClicked = function()
|
||||
{
|
||||
$scope.createProjectClicked = function() {
|
||||
// console.log("project created! is it ?!???! " + classId);
|
||||
$scope.isCreateProjectClicked = !$scope.isCreateProjectClicked;
|
||||
if($scope.isCreateProjectClicked)
|
||||
$scope.createSctionStatus = "fa fa-angle-up";
|
||||
else
|
||||
$scope.createSctionStatus = "fa fa-angle-down";
|
||||
}
|
||||
|
||||
$scope.submitNewProject = function()
|
||||
{
|
||||
$scope.submitNewProject = function() {
|
||||
loadingData = true;
|
||||
// debugger;
|
||||
var intClassId = parseInt(classId);
|
||||
// console.log($scope);
|
||||
var jsonNewProj =
|
||||
{
|
||||
var jsonNewProj = {
|
||||
'projectName': $scope.project.projectName,
|
||||
'courseId': intClassId,
|
||||
'gitRepository': $scope.project.repoOwner + '/' + $scope.project.gitRepoName
|
||||
|
@ -73,8 +96,7 @@ angular.module('SeHub')
|
|||
jsonNewProj.logo_url = $scope.project.logoUrl;
|
||||
|
||||
|
||||
apiService.create(token, jsonNewProj).success(function(data)
|
||||
{
|
||||
apiService.create(token, jsonNewProj).success(function(data) {
|
||||
loadingData = false;
|
||||
projectId = data.id;
|
||||
$mdDialog.show($mdDialog.alert().title('Project Created').content('You have successfully created project.')
|
||||
|
@ -83,8 +105,7 @@ angular.module('SeHub')
|
|||
$location.path('/project/' + projectId); // TODO TODO TODO
|
||||
}); // Pop-up alert
|
||||
|
||||
}).error(function(err)
|
||||
{
|
||||
}).error(function(err) {
|
||||
console.log("Error: " + err.message);
|
||||
$mdDialog.show($mdDialog.alert().title('Error Creating Project').content('You have failed Creating the project.')
|
||||
.ariaLabel('Create project alert dialog').ok('Try Again!').targetEvent()); // Pop-up alert
|
||||
|
@ -92,14 +113,12 @@ angular.module('SeHub')
|
|||
|
||||
}
|
||||
|
||||
$scope.goToProject = function(projectId)
|
||||
{
|
||||
$scope.goToProject = function(projectId) {
|
||||
console.log("projects only from classID: " + projectId)
|
||||
$location.path('/project/' + projectId);
|
||||
}
|
||||
|
||||
var init = function()
|
||||
{
|
||||
var init = function() {
|
||||
$scope.arrayHolder = [];
|
||||
var tempArr = [];
|
||||
var sizeOfSmallArrays = 3;
|
||||
|
|
|
@ -190,8 +190,8 @@ service.factory('apiService', ['$http', function($http) {
|
|||
};
|
||||
return $http(req);
|
||||
},
|
||||
getCampuseById: function(token, id){
|
||||
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/courses/getCoursesById/" + id;
|
||||
getCourseById: function(token, id){
|
||||
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/courses/getCoursesById/" + token + "/" + id;
|
||||
req = {
|
||||
method: "GET",
|
||||
url: url
|
||||
|
|
|
@ -1,43 +1,38 @@
|
|||
<div class = "class">
|
||||
<h1 style="margin-left:15px"><i class="fa fa-graduation-cap"></i> Class {{project.courseName}}</h1>
|
||||
<div layout-paddig layout-margin class="loader" ng-if="loadingData">
|
||||
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
|
||||
<div layout="column" layout-align="center center" style="width:100%">
|
||||
<!-- Course Title -->
|
||||
<div flex>
|
||||
<h1 style="margin-left:15px">
|
||||
<i class="fa fa-graduation-cap"></i> Class {{project.courseName}}
|
||||
<span ng-if="isCourseOver"> - <i>This Course Is Over</i></span>
|
||||
</h1>
|
||||
</div>
|
||||
<div ng-if = "projectsEmpty && !loadingData" layout-padding layout-margin>
|
||||
You Are Not Related To Any Project.
|
||||
<!-- Course Time Line -->
|
||||
<div layout="row" layout-align="center center" style="width: 100%">
|
||||
<div>
|
||||
{{course.startDate}}
|
||||
</div>
|
||||
<div ng-if = "!projectsEmpty">
|
||||
<md-card class="cardAllProjects">
|
||||
<div flex ="99" class = "allProjectsShow" layout = "row" ng-repeat = "t in arrayHolder" value = "{{t}}" layout-padding>
|
||||
<div flex = "32" layout = "column" ng-repeat = "project in t" value = "{{project}}" layout-padding>
|
||||
<div ng-if="t.length != 1">
|
||||
<md-button ng-click = "goToProject(project.id)" style="width:100%; height:32%;" layout-padding class = "md-raised">
|
||||
{{project.projectName}}
|
||||
<div layout-align="center center" style=" width:70%;">
|
||||
<canvas layout-padding layout-margin id="project.projectName" class="chart chart-bar" data="project.info.stats.macro.data" labels="project.info.stats.macro.labels"></canvas>
|
||||
<div flex="70">
|
||||
<md-progress-linear md-mode="determinate" value="{{courseTimePresentege}}"></md-progress-linear>
|
||||
</div>
|
||||
</md-card>
|
||||
<div>
|
||||
{{course.endDate}}
|
||||
</div>
|
||||
<div ng-if="t.length == 1">
|
||||
<md-button ng-click = "goToProject(project.id)" style="width:32%; height:32%;" layout-padding class = "md-raised">
|
||||
{{project.projectName}}
|
||||
<!-- <div style="height:100%; width:32%;"> -->
|
||||
<canvas layout-padding layout-margin id="project.projectName" class="chart chart-bar" data="project.info.stats.macro.data" labels="project.info.stats.macro.labels"></canvas>
|
||||
<!-- </div> -->
|
||||
</md-card>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- Course Management Buttons -->
|
||||
<div layout-padding layout-margin layout="row" layout-align="left">
|
||||
<div ng-if="!isInCourse" layout-margin>
|
||||
<md-button ng-click = "joinCourse()" ng class = "md-raised md-primary" ng-disabled="isCourseOver"><i class="fa fa-plus"></i> Join Class</md-button>
|
||||
</div>
|
||||
</md-card>
|
||||
</div>
|
||||
</div>
|
||||
<div ng-if="!isInCourse" layout-padding layout-margin>
|
||||
<md-button ng-click = "joinCourse()" ng class = "md-raised md-primary"> Join Class</md-button>
|
||||
</div>
|
||||
<!-- <div ng-if = "user.isLecturer"> -->
|
||||
<md-content layout-padding layout-margin>
|
||||
<md-button ng-click="createProjectClicked()" ng class="md-raised md-primary">Create Project</md-button>
|
||||
<div layout-margin>
|
||||
<md-content>
|
||||
<md-button ng-click="createProjectClicked()" ng class="md-raised md-primary" ng-disabled="isCourseOver">Create Project <i ng-class="createSctionStatus"></i></md-button>
|
||||
</md-content>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Create Project Section -->
|
||||
<div ng-if = "isCreateProjectClicked">
|
||||
<md-card layout-padding style="width:60%">
|
||||
<div layout="column">
|
||||
|
@ -84,6 +79,47 @@
|
|||
</div>
|
||||
</md-card>
|
||||
</div>
|
||||
</div>
|
||||
<div layout-paddig layout-margin class="loader" ng-if="loadingData">
|
||||
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
|
||||
</div>
|
||||
<div ng-if = "projectsEmpty && !loadingData" layout-padding layout-margin>
|
||||
You Are Not Related To Any Project.
|
||||
</div>
|
||||
<div ng-if = "!projectsEmpty">
|
||||
<md-card class="cardAllProjects">
|
||||
<div flex ="99" class = "allProjectsShow" layout = "row" ng-repeat = "t in arrayHolder" value = "{{t}}" layout-padding>
|
||||
<div flex = "32" layout = "column" ng-repeat = "project in t" value = "{{project}}" layout-padding>
|
||||
<div ng-if="t.length != 1">
|
||||
<md-button ng-click = "goToProject(project.id)" style="width:100%; height:32%;" layout-padding class = "md-raised">
|
||||
<div style="height: 30%" layout="row">
|
||||
<div class="spacer"></div>
|
||||
<div>
|
||||
<img ng-src="{{project.logo_url}}" alt=""
|
||||
ng-if="project.logo_url" style="display: block;width:auto;height:100%;">
|
||||
<span ng-if="!project.logo_url">{{project.projectName}}</span>
|
||||
</div>
|
||||
<div class="spacer"></div>
|
||||
</div>
|
||||
<div layout-align="center center" style=" width:70%;">
|
||||
<canvas layout-padding layout-margin id="project.projectName" class="chart chart-bar" data="project.info.stats.macro.data" labels="project.info.stats.macro.labels"></canvas>
|
||||
</div>
|
||||
</md-card>
|
||||
</div>
|
||||
<div ng-if="t.length == 1">
|
||||
<md-button ng-click = "goToProject(project.id)" style="width:32%; height:32%;" layout-padding class = "md-raised">
|
||||
{{project.projectName}}
|
||||
<!-- <div style="height:100%; width:32%;"> -->
|
||||
<canvas layout-padding layout-margin id="project.projectName" class="chart chart-bar" data="project.info.stats.macro.data" labels="project.info.stats.macro.labels"></canvas>
|
||||
<!-- </div> -->
|
||||
</md-card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</md-card>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- </div> -->
|
||||
<div layout-margin>
|
||||
|
||||
|
|
Loading…
Reference in a new issue