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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* CodeQ: an online programming tutor.
Copyright (C) 2015 UL FRI
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/**
* Created by markop on 9/29/15.
*
*/
(function(){
"use strict";
var jqScreen = $("#screen_profile"),
jqBtnChangePass = $("#change_pass_profile"),
jqBtnGoBack = $("#btnProfileGoBack");
codeq.profile = {
};
codeq.globalStateMachine.register('profile',{
'jqScreen': jqScreen,
'isModal': true,
'enter': function(){
jqBtnChangePass.on('click',function(){
codeq.globalStateMachine.transition('changePassword');
});
jqBtnGoBack.on('click',function(){
history.back();//forces a transition to the previous state
});
if(codeq.samlLogin) $('#loggedInViaSamlSpan').css("display","");//show the span if we actually logged in with SAML
jqScreen.css('display', '');
$('#disabled').css('display', 'none');
codeq.comms.getUserStat()
.then(function (data) {
if (data.code !== 0) throw new Error('GetUserStat failed, code: ' + data.code + ', message: ' + data.message);
data = data.stat;
var columns = ['language', 'problem_group', 'problems_count', 'done', 'in_progress'],
items='<thead><tr>',
tr_gui = codeq.tr.getDictionary('gui');
$.each(columns, function( key, val ) {
items+='<th data-tkey="'+ val + '">'+tr_gui[val][codeq.settings['gui_lang']]+'</th>';
});
items+='</tr></thead>';
$.each( data, function( object, row ) {
items+='<tr>';
if(row['problem_group']) {
$.each( columns, function( key, val ) {
items+='<td style="white-space: nowrap">'+row[val]||""+'</td>';
});
}
else {
$.each( columns, function( key, val ) {
items+='<td style="white-space: nowrap"><strong>'+(row[val]==null?'(all)':row[val])+'</strong></td>';
});
}
items+='</td>';
});
$('#table1').html(items)
})
.fail(function (reason) {
codeq.log.error('GetUserStat failed: ' + reason, reason);
alert('GetUserStat failed: ' + reason);
})
.done();
},
'exit' : function(){
jqBtnChangePass.off('click');
jqBtnGoBack.off('click');
jqScreen.css('display', 'none');
$('#loggedInViaSamlSpan').css("display","none");
}
});
})();
|