forked from catalyst/totara-mod-ojt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluate.js
222 lines (199 loc) · 8.23 KB
/
evaluate.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
* Copyright (C) 2015 onwards Catalyst IT
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Eugene Venter <[email protected]>
* @package mod_ojt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
M.mod_ojt_evaluate = M.mod_ojt_evaluate || {
Y: null,
// optional php params and defaults defined here, args passed to init method
// below will override these values
config: {},
/**
* module initialisation method called by php js_init_call()
*
* @param object YUI instance
* @param string args supplied in JSON format
*/
init: function(Y, args) {
// save a reference to the Y instance (all of its dependencies included)
this.Y = Y;
var ojtobj = this;
// if defined, parse args into this module's config object
if (args) {
var jargs = Y.JSON.parse(args);
for (var a in jargs) {
if (Y.Object.owns(jargs, a)) {
this.config[a] = jargs[a];
}
}
}
// check jQuery dependency is available
if (typeof $ === 'undefined') {
throw new Error('M.mod_ojt_evaluate.init()-> jQuery dependency required for this module.');
}
var config = this.config;
// Init ojt completion toggles.
$('.ojt-completion-toggle').on('click', function () {
var completionimg = $(this);
var itemid = $(this).closest('.ojt-eval-actions').attr('ojt-item-id');
$.ajax({
url: M.cfg.wwwroot+'/mod/ojt/evaluatesave.php',
type: 'POST',
data: {
'sesskey' : M.cfg.sesskey,
'action': 'togglecompletion',
'bid': config.ojtid,
'userid': config.userid,
'id': itemid
},
beforeSend: function() {
ojtobj.replaceIcon(completionimg, 'loading');
},
success: function(data) {
if (data.item.status == config.OJT_COMPLETE) {
ojtobj.replaceIcon(completionimg, 'completion-manual-y');
} else {
ojtobj.replaceIcon(completionimg, 'completion-manual-n');
}
// Update the topic's completion too.
ojtobj.setTopicStatusIcon(data.topic.status, $('#ojt-topic-'+data.topic.topicid+' .ojt-topic-status'));
// Update modified string.
$('.mod-ojt-modifiedstr[ojt-item-id='+itemid+']').html(data.modifiedstr);
$(completionimg).next('.ojt-completion-comment').focus();
},
error: function (data) {
console.log(data);
alert('Error saving completion...');
}
});
});
// Init comment inputs
$('.ojt-completion-comment').change(function () {
var commentinput = this;
var itemid = $(this).attr('ojt-item-id');
$.ajax({
url: M.cfg.wwwroot+'/mod/ojt/evaluatesave.php',
type: 'POST',
data: {
'sesskey' : M.cfg.sesskey,
'action': 'savecomment',
'bid': config.ojtid,
'userid': config.userid,
'id': itemid,
'comment': $(commentinput).val()
},
success: function(data) {
// Update comment text box, so we can get the date in there too
$(commentinput).val(data.item.comment);
// Update the comment print box
$('.ojt-completion-comment-print[ojt-item-id='+itemid+']').html(data.item.comment);
$('.mod-ojt-modifiedstr[ojt-item-id='+itemid+']').html(data.modifiedstr);
},
error: function (data) {
console.log(data);
alert('Error saving comment...');
}
});
});
// Init completion witness toggle.
$('.ojt-witness-toggle').on('click', function () {
var completionimg = $(this);
var itemid = $(this).closest('.ojt-witness-item').attr('ojt-item-id');
$.ajax({
url: M.cfg.wwwroot+'/mod/ojt/witnesssave.php',
type: 'POST',
data: {
'sesskey' : M.cfg.sesskey,
'bid': config.ojtid,
'userid': config.userid,
'id': itemid
},
beforeSend: function() {
ojtobj.replaceIcon(completionimg, 'loading');
},
success: function(data) {
if (data.item.witnessedby > 0) {
ojtobj.replaceIcon(completionimg, 'completion-manual-y');
} else {
ojtobj.replaceIcon(completionimg, 'completion-manual-n');
}
// Update the topic's completion too.
ojtobj.setTopicStatusIcon(data.topic.status, $('#ojt-topic-'+data.topic.topicid+' .ojt-topic-status'));
// Update modified string.
$('.mod-ojt-witnessedstr[ojt-item-id='+itemid+']').html(data.modifiedstr);
},
error: function (data) {
console.log(data);
alert('Error saving witness data...');
}
});
});
// Init topic signoffs
$('.ojt-topic-signoff-toggle').on('click', function () {
var signoffimg = $(this);
var topicid = $(this).closest('.mod-ojt-topic-signoff');
var topicid = $(topicid).attr('ojt-topic-id');
$.ajax({
url: M.cfg.wwwroot+'/mod/ojt/evaluatesignoff.php',
type: 'POST',
data: {
'sesskey' : M.cfg.sesskey,
'bid': config.ojtid,
'userid': config.userid,
'id': topicid
},
beforeSend: function() {
ojtobj.replaceIcon(signoffimg, 'loading');
},
success: function(data) {
if (data.topicsignoff.signedoff) {
ojtobj.replaceIcon(signoffimg, 'completion-manual-y');
} else {
ojtobj.replaceIcon(signoffimg, 'completion-manual-n');
}
$('.mod-ojt-topic-signoff[ojt-topic-id='+topicid+'] .mod-ojt-topic-modifiedstr').html(data.modifiedstr);
},
error: function (data) {
console.log(data);
alert('Error saving signoff...');
}
});
});
}, // init
replaceIcon: function (icon, newiconname) {
require(['core/templates'], function (templates) {
templates.renderIcon(newiconname).done(function (html) {
icon.attr('data-flex-icon', $(html).attr('data-flex-icon'));
icon.attr('class', $(html).attr('class'));
});
});
},
setTopicStatusIcon: function (topicstatus, statuscontainer) {
var iconname = 'times-danger';
if (topicstatus == this.config.OJT_COMPLETE) {
iconname = 'check-success';
} else if (topicstatus == this.config.OJT_REQUIREDCOMPLETE) {
iconname = 'check-warning';
}
require(['core/templates'], function (templates) {
templates.renderIcon(iconname).done(function (html) {
statuscontainer.html(html);
});
});
},
}