1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
function HomeController()
{
// bind event listeners to button clicks //
var that = this;
// handle user logout //
$('#btn-logout').click(function(){ that.attemptLogout(); });
// confirm account deletion //
$('#account-form-btn1').click(function(){$('.modal-confirm').modal('show')});
// handle account deletion //
$('.modal-confirm .submit').click(function(){ that.deleteAccount(); });
this.deleteAccount = function()
{
$('.modal-confirm').modal('hide');
var that = this;
$.ajax({
url: '/delete',
type: 'POST',
data: { id: $('#userId').val()},
success: function(data){
that.showLockedAlert('Your account has been deleted.<br>Redirecting you back to the homepage.');
},
error: function(jqXHR){
console.log(jqXHR.responseText+' :: '+jqXHR.statusText);
}
});
}
this.attemptLogout = function()
{
var that = this;
$.ajax({
url: "/home",
type: "POST",
data: {logout : true},
success: function(data){
that.showLockedAlert('You are now logged out.<br>Redirecting you back to the homepage.');
},
error: function(jqXHR){
console.log(jqXHR.responseText+' :: '+jqXHR.statusText);
}
});
}
this.showLockedAlert = function(msg){
$('.modal-alert').modal({ show : false, keyboard : false, backdrop : 'static' });
$('.modal-alert .modal-header h3').text('Success!');
$('.modal-alert .modal-body p').html(msg);
$('.modal-alert').modal('show');
$('.modal-alert button').click(function(){window.location.href = '/';})
setTimeout(function(){window.location.href = '/';}, 3000);
}
}
HomeController.prototype.onUpdateSuccess = function()
{
$('.modal-alert').modal({ show : false, keyboard : true, backdrop : true });
$('.modal-alert .modal-header h3').text('Success!');
$('.modal-alert .modal-body p').html('Your account has been updated.');
$('.modal-alert').modal('show');
$('.modal-alert button').off('click');
}
|