Fixing Register POPUP
This commit is contained in:
parent
522a71d9c4
commit
5f53e3ff85
1 changed files with 110 additions and 125 deletions
|
@ -1,12 +1,10 @@
|
||||||
angular.module('SeHub')
|
angular.module('SeHub')
|
||||||
.controller('registerController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function ($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
|
.controller('registerController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService, $rootScope) {
|
||||||
{
|
|
||||||
$scope.userHasNoName = false;
|
$scope.userHasNoName = false;
|
||||||
$scope.campusChecked = false;
|
$scope.campusChecked = false;
|
||||||
$scope.createCampusClicked = false;
|
$scope.createCampusClicked = false;
|
||||||
$scope.isEmpty = true; // if the academic email line is empty
|
$scope.isEmpty = true; // if the academic email line is empty
|
||||||
$scope.jsonCreateCampus =
|
$scope.jsonCreateCampus = {
|
||||||
{
|
|
||||||
"title": "Create Campus",
|
"title": "Create Campus",
|
||||||
"email": "email_ending",
|
"email": "email_ending",
|
||||||
"avatar": "self.avatar.url"
|
"avatar": "self.avatar.url"
|
||||||
|
@ -23,8 +21,7 @@ angular.module('SeHub')
|
||||||
console.error("No User Found!");
|
console.error("No User Found!");
|
||||||
console.log(data);
|
console.log(data);
|
||||||
|
|
||||||
if($scope.user.name === ";")
|
if ($scope.user.name === ";") {
|
||||||
{
|
|
||||||
$scope.user.name = "";
|
$scope.user.name = "";
|
||||||
$scope.user.name = $scope.user.username;
|
$scope.user.name = $scope.user.username;
|
||||||
$scope.userHasNoName = true;
|
$scope.userHasNoName = true;
|
||||||
|
@ -33,14 +30,12 @@ angular.module('SeHub')
|
||||||
apiService.getAllCampuses(token).success(function(data) // Get all the campuses
|
apiService.getAllCampuses(token).success(function(data) // Get all the campuses
|
||||||
{
|
{
|
||||||
$scope.campuses = data;
|
$scope.campuses = data;
|
||||||
}).error(function()
|
}).error(function() {
|
||||||
{
|
|
||||||
// TODO
|
// TODO
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.dropdownClicked = function()
|
$scope.dropdownClicked = function() {
|
||||||
{
|
|
||||||
if ($scope.campus) {
|
if ($scope.campus) {
|
||||||
$scope.campusChecked = true;
|
$scope.campusChecked = true;
|
||||||
$scope.campusObj = null;
|
$scope.campusObj = null;
|
||||||
|
@ -54,66 +49,58 @@ angular.module('SeHub')
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.submitClicked = function(ev)
|
$scope.submitClicked = function(ev) {
|
||||||
{
|
|
||||||
var emailValid = false;
|
var emailValid = false;
|
||||||
var jsonUpdateUser =
|
|
||||||
{
|
|
||||||
"lecturerStat": "$scope.user.isLecturer",
|
|
||||||
"campName": "$scope.campusName"
|
|
||||||
}
|
|
||||||
|
|
||||||
if($scope.user.AcMail != null)
|
if ($scope.user.AcMail != null) {
|
||||||
{
|
|
||||||
var fullMail = $scope.user.AcMail + $scope.campusObj.email_ending; // Holds the full academic email of the user
|
var fullMail = $scope.user.AcMail + $scope.campusObj.email_ending; // Holds the full academic email of the user
|
||||||
|
|
||||||
apiService.updateUser($scope.user.seToken, jsonUpdateUser).success(function(data)
|
apiService.updateUser(token, $scope.user).success(function(data) {
|
||||||
{
|
|
||||||
|
|
||||||
}).error(function()
|
}).error(function() {
|
||||||
{
|
|
||||||
// TODO Error
|
// TODO Error
|
||||||
console.log("Error occured on updateUser");
|
console.log("Error occured on updateUser");
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("Mail: " + fullMail);
|
console.log("Mail: " + fullMail);
|
||||||
|
|
||||||
apiService.sendValidationMail(token, fullMail).success(function(data)
|
apiService.sendValidationMail(token, fullMail).success(function(data) {
|
||||||
{
|
|
||||||
console.log("DONE - 200");
|
console.log("DONE - 200");
|
||||||
$mdDialog.show($mdDialog.alert().title('E-mail Verification').content('A verification e-mail has been sent to your email address.')
|
$mdDialog
|
||||||
.ariaLabel('Email verification alert dialog').ok('Got it!').targetEvent(ev)); // Pop-up alert for e-mail verification
|
.show($mdDialog.alert().title('E-mail Verification')
|
||||||
|
.content('A verification e-mail has been sent to your email address.')
|
||||||
|
.ariaLabel('Email verification alert dialog')
|
||||||
|
.ok('Got it!')
|
||||||
|
.targetEvent(ev))
|
||||||
|
.then(function() {
|
||||||
// TODO ADD- delete cookies and redirect only after pressed 'Got it'
|
// TODO ADD- delete cookies and redirect only after pressed 'Got it'
|
||||||
$cookieStore.remove("com.sehub.www"); // Removing the cookies
|
$cookieStore.remove("com.sehub.www"); // Removing the cookies
|
||||||
$window.location.href = 'http://se-hub.appspot.com'; // Reference to 'welcome' page
|
$window.location.href = 'http://se-hub.appspot.com'; // Reference to 'welcome' page
|
||||||
}).error(function()
|
|
||||||
{
|
}); // Pop-up alert for e-mail verification
|
||||||
|
}).error(function() {
|
||||||
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address.')
|
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address.')
|
||||||
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(ev));
|
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(ev));
|
||||||
});
|
});
|
||||||
}
|
} else // TODO Fix when success to show mdDialog until 'Got it' clicked
|
||||||
else // TODO Fix when success to show mdDialog until 'Got it' clicked
|
|
||||||
{
|
{
|
||||||
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address.')
|
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address.')
|
||||||
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(ev));
|
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(ev));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.createCampus = function(ev)
|
$scope.createCampus = function(ev) {
|
||||||
{
|
|
||||||
$scope.createCampusClicked = true;
|
$scope.createCampusClicked = true;
|
||||||
|
|
||||||
if (!$scope.isLecturer) // "!isLecturer" Means => I Am Lecturer; if i am a lecturer (when pressing -> getting last data value before pressing)
|
if (!$scope.isLecturer) // "!isLecturer" Means => I Am Lecturer; if i am a lecturer (when pressing -> getting last data value before pressing)
|
||||||
{
|
{
|
||||||
if($scope.user.campusMail != null)
|
if ($scope.user.campusMail != null) {
|
||||||
{
|
|
||||||
validateEmail($scope.user.campusMail); // Verify the email according to "xxx@name.suffix"
|
validateEmail($scope.user.campusMail); // Verify the email according to "xxx@name.suffix"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
validateEmail = function(email)
|
validateEmail = function(email) {
|
||||||
{
|
|
||||||
var result = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
|
var result = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
|
||||||
if (!result.test(email)) // TODO Fix when success to show mdDialog until 'Got it' clicked
|
if (!result.test(email)) // TODO Fix when success to show mdDialog until 'Got it' clicked
|
||||||
{
|
{
|
||||||
|
@ -123,16 +110,14 @@ angular.module('SeHub')
|
||||||
if (result.test(email)) // TODO Fix when success to show mdDialog until 'Got it' clicked
|
if (result.test(email)) // TODO Fix when success to show mdDialog until 'Got it' clicked
|
||||||
{
|
{
|
||||||
console.log("Im good");
|
console.log("Im good");
|
||||||
apiService.sendValidationMail(token, email).success(function(data)
|
apiService.sendValidationMail(token, email).success(function(data) {
|
||||||
{
|
|
||||||
console.log("DONE - 200");
|
console.log("DONE - 200");
|
||||||
$mdDialog.show($mdDialog.alert().title('E-mail Verification').content('A verification e-mail has been sent to your email address.')
|
$mdDialog.show($mdDialog.alert().title('E-mail Verification').content('A verification e-mail has been sent to your email address.')
|
||||||
.ariaLabel('Email verification alert dialog').ok('Got it!').targetEvent(email)); // Pop-up alert for e-mail verification
|
.ariaLabel('Email verification alert dialog').ok('Got it!').targetEvent(email)); // Pop-up alert for e-mail verification
|
||||||
// TODO ADD delete cookies and redirect only after pressed 'Got it'
|
// TODO ADD delete cookies and redirect only after pressed 'Got it'
|
||||||
$cookieStore.remove("com.sehub.www"); // Removing the cookies
|
$cookieStore.remove("com.sehub.www"); // Removing the cookies
|
||||||
$window.location.href = 'http://se-hub.appspot.com'; // Reference to 'welcome' page
|
$window.location.href = 'http://se-hub.appspot.com'; // Reference to 'welcome' page
|
||||||
}).error(function()
|
}).error(function() {
|
||||||
{
|
|
||||||
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address or in the campus name.')
|
$mdDialog.show($mdDialog.alert().title('Error - E-mail Verification').content('An error has occured in your e-mail address or in the campus name.')
|
||||||
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(email));
|
.ariaLabel('Email verification error alert dialog').ok('Got it!').targetEvent(email));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue