summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRobert Zorko <robertz@gurucue.com>2015-10-14 15:29:12 +0200
committerRobert Zorko <robertz@gurucue.com>2015-10-14 15:29:12 +0200
commit751ee468a0f996da42bccc65a9dfee5a7b243352 (patch)
tree2da3d1617e6a9b7f2d2b2e0ecc53f79ad4a5b266 /js
parent2fe1ceebd6287ed4835798c82498834102cb7e18 (diff)
moved the cahnged pass popup to its own screen and enabled the change pass btn in the profile screen
Diffstat (limited to 'js')
-rw-r--r--js/codeq/change_password.js50
-rw-r--r--js/codeq/login.js11
-rw-r--r--js/codeq/navigation.js4
-rw-r--r--js/codeq/profile.js30
-rw-r--r--js/codeq/signup.js22
5 files changed, 79 insertions, 38 deletions
diff --git a/js/codeq/change_password.js b/js/codeq/change_password.js
new file mode 100644
index 0000000..c08c2d2
--- /dev/null
+++ b/js/codeq/change_password.js
@@ -0,0 +1,50 @@
+/**
+ * Created by robert on 10/14/15.
+ */
+(function(){
+
+ var jqNew = $("#modalChangePasswordNew"),
+ jqVerify = $("#modalChangePasswordVerify"),
+ jqCancelBtn = $("#cancel_change_pass_button"),
+ jqChangePassForm = $('#formChangePassword');
+
+ codeq.globalStateMachine.register('changePassword',{
+ 'enter': function(){
+ jqCancelBtn.on('click',function(){
+ history.back();//forces a transition to the previous state
+ });
+ jqChangePassForm.on('submit',function(event) {
+
+ if (jqNew.val() != jqVerify.val()) {
+ alert('Passwords do not match.');
+ }
+ else {
+ codeq.comms.changePassword(jqNew.val())
+ .then(function (data) {
+ if (data.code !== 0) throw new Error('Password change failed, code: ' + data.code + ', message: ' + data.message);
+ alert('Password changed.');
+ history.back();//force to return to previous state
+ })
+ .fail(function (reason) {
+ codeq.log.error('Password change failed: ' + reason, reason);
+ alert('Password change failed: ' + reason);
+ })
+ .done();
+ }
+ event.preventDefault(); // Prevent the form from submitting via the browser.
+ });
+
+
+ $("#screen_change_pass").css('display', '');
+ $('#disabled').css('display', 'none');
+ },
+ 'exit' : function(){
+ jqChangePassForm.off('submit');
+ jqCancelBtn.off('click');
+ $("#screen_change_pass").css('display', 'none');
+ jqNew.val('');
+ jqVerify.val('');
+ }
+ });
+
+})();
diff --git a/js/codeq/login.js b/js/codeq/login.js
index 53a422c..29dd87b 100644
--- a/js/codeq/login.js
+++ b/js/codeq/login.js
@@ -3,6 +3,9 @@
*/
(function(){
+ var jqNavBarRight = $('.nav.navbar-nav.navbar-right'),
+ jqNavigationHomeBtn = $('#navigation-home');
+
var loginFun = function(){
$('#disabled').css('display', '');
$('#disabled').css('cursor', 'wait');
@@ -48,8 +51,8 @@
codeq.globalStateMachine.register('login',{
'enter': function(){
- $('#navigation-home').off('click');//remove the click listener of this element here
- $('.nav.navbar-nav.navbar-right').css('display','none');//hide settings etc.
+ jqNavigationHomeBtn.off('click');//remove the click listener of this element here
+ jqNavBarRight.css('display','none');//hide settings etc.
$('#signed-in-title').html('');
//setup the signup button
@@ -76,11 +79,11 @@
$('#signed-in-title').html($('#username').val());
$("#password").val('');
//re-enable the click listener
- $('#navigation-home').on('click', function(e){
+ jqNavigationHomeBtn.on('click', function(e){
codeq.globalStateMachine.transition('language');
e.preventDefault();
});
- $('.nav.navbar-nav.navbar-right').css('display','');
+ jqNavBarRight.css('display','');
//remove the listener from the signup button
$('#signup_button').off('click');
diff --git a/js/codeq/navigation.js b/js/codeq/navigation.js
index 58f0cf2..9b7a8f7 100644
--- a/js/codeq/navigation.js
+++ b/js/codeq/navigation.js
@@ -126,5 +126,9 @@
codeq.globalStateMachine.transition('profile');
e.preventDefault();//prevent this since we'll trigger a page reload otherwise
});
+ $('#change-password').on('click', function(e){
+ codeq.globalStateMachine.transition('changePassword');
+ e.preventDefault();//prevent this since we'll trigger a page reload otherwise
+ });
})();
diff --git a/js/codeq/profile.js b/js/codeq/profile.js
index 08a8883..3f4a274 100644
--- a/js/codeq/profile.js
+++ b/js/codeq/profile.js
@@ -4,31 +4,7 @@
(function(){
- $('#formChangePassword').submit(function(event) {
- var jqNew = $("#modalChangePasswordNew"),
- jqVerify = $("#modalChangePasswordVerify");
-
- if (jqNew.val() != jqVerify.val()) {
- alert('Passwords do not match.');
- }
- else {
- codeq.comms.changePassword(jqNew.val())
- .then(function (data) {
- if (data.code !== 0) throw new Error('Password change failed, code: ' + data.code + ', message: ' + data.message);
-
- $('#modalChangePassword').modal('hide');
- jqNew.val('');
- jqVerify.val('');
- alert('Password changed.');
- })
- .fail(function (reason) {
- codeq.log.error('Password change failed: ' + reason, reason);
- alert('Password change failed: ' + reason);
- })
- .done();
- }
- event.preventDefault(); // Prevent the form from submitting via the browser.
- });
+ var jqBtnChangePass = $("#change_pass_profile");
codeq.profile = {
};
@@ -74,9 +50,13 @@
alert('GetUserStat failed: ' + reason);
})
.done();
+ jqBtnChangePass.on('click',function(){
+ codeq.globalStateMachine.transition('changePassword');
+ });
},
'exit' : function(){
$("#screen_profile").css('display', 'none');
+ jqBtnChangePass.off('click');
}
});
})(); \ No newline at end of file
diff --git a/js/codeq/signup.js b/js/codeq/signup.js
index aab831f..bafd690 100644
--- a/js/codeq/signup.js
+++ b/js/codeq/signup.js
@@ -7,21 +7,25 @@
jqName = $("#modalSignUpName"),
jqEmail = $("#modalSignUpEmail"),
jqPassword = $("#modalSignUpPassword"),
- jqVerify = $("#modalSignUpVerify");
+ jqVerify = $("#modalSignUpVerify"),
+ jqFormSignUp = $('#formSignUp'),
+ jqExitSignUpBtn = $('#exit_signup_btn'),
+ jqNavBarRight = $('.nav.navbar-nav.navbar-right'),
+ jqNavigationHomeBtn = $('#navigation-home');
codeq.globalStateMachine.register('signup',{
'enter': function(){
- $('#navigation-home').off('click');//remove the click listener of this element here
- $('.nav.navbar-nav.navbar-right').css('display','none');//hide settings etc.
+ jqNavigationHomeBtn.off('click');//remove the click listener of this element here
+ jqNavBarRight.css('display','none');//hide settings etc.
$('#signed-in-title').html('');
$("#screen_signup").css('display', '');
$('#disabled').css('display', 'none');
- $('#exit_signup_btn').on('click',function(){
+ jqExitSignUpBtn.on('click',function(){
codeq.globalStateMachine.transition('login');
});
//prepare listener for successfull signup
- $('#formSignUp').on('submit',function(event) {
+ jqFormSignUp.on('submit',function(event) {
console.log($(this).serialize());
if (jqPassword.val() != jqVerify.val()) {
alert('Passwords do not match.');
@@ -51,15 +55,15 @@
'exit' : function(){
$("#screen_signup").css('display', 'none');
//re-enable the click listener
- $('#navigation-home').on('click', function(e){
+ jqNavigationHomeBtn.on('click', function(e){
codeq.globalStateMachine.transition('language');
e.preventDefault();
});
//disable listeners on stuff from this page only
- $('#exit_signup_btn').off('click');
- $('#formSignUp').off('submit');
+ jqExitSignUpBtn.off('click');
+ jqFormSignUp.off('submit');
//show the menu buttons
- $('.nav.navbar-nav.navbar-right').css('display','');
+ jqNavBarRight.css('display','');
jqUsername.val('');
jqName.val('');