forked from gjbarnard/moodle-format_topcoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.js
402 lines (364 loc) · 15.4 KB
/
module.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/**
* Collapsed Topics Information
*
* A topic based format that solves the issue of the 'Scroll of Death' when a course has many topics. All topics
* except zero have a toggle that displays that topic. One or more topics can be displayed at any given time.
* Toggles are persistent on a per browser session per course basis but can be made to persist longer by a small
* code change. Full installation instructions, code adaptions and credits are included in the 'Readme.txt' file.
*
* @package course/format
* @subpackage topcoll
* @version See the value of '$plugin->version' in version.php.
* @copyright © 2009-onwards G J Barnard in respect to modifications of standard topics format.
* @author G J Barnard - gjbarnard at gmail dot com and {@link http://moodle.org/user/profile.php?id=442195}
* @link http://docs.moodle.org/en/Collapsed_Topics_course_format
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
*
* 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/>.
*/
// Cleaned through use of http://jshint.com/.
/**
* @namespace
*/
M.format_topcoll = M.format_topcoll || {};
// Namespace variables:
// A constant of 26 0's to be used to pad the storage state of the toggles when converting between base 2 and 36,
// this is to be compact.
M.format_topcoll.thesparezeros = "00000000000000000000000000";
M.format_topcoll.togglestate = false;
M.format_topcoll.courseid = 0;
M.format_topcoll.togglePersistence = 1; // Toggle persistence - 1 = on, 0 = off.
M.format_topcoll.ourYUI = false;
M.format_topcoll.numSections = 0;
M.format_topcoll.oneTopic = false;
M.format_topcoll.currentTopic = null; // For oneTopic when true represents the current open topic or null if none.
M.format_topcoll.currentTopicNum = false; // For oneTopic when true represents the current open topic number or 0 if none.
M.format_topcoll.userIsEditing = false;
// Namespace constants:....
M.format_topcoll.TOGGLE_6 = 1;
M.format_topcoll.TOGGLE_5 = 2;
M.format_topcoll.TOGGLE_4 = 4;
M.format_topcoll.TOGGLE_3 = 8;
M.format_topcoll.TOGGLE_2 = 16;
M.format_topcoll.TOGGLE_1 = 32;
/**
* Initialise with the information supplied from the course format 'format.php' so we can operate.
* @param {Object} Y YUI instance
* @param {String} theCourseId the id of the current course to allow for settings for each course.
* @param {String} theToggleState the current state of the toggles.
* @param {Integer} theNumSections the number of sections in the course.
* @param {Integer} theTogglePersistence Persistence on (1) or off (0).
* @param {Integer} theDefaultTogglePersistence Persistence all open (1) or all closed (0) when theToggleState is null.
* @param {Boolean} theOneTopic One toggle open at a time (true) or not (false).
* @param {Integer} theOneTopicToggle Number of the toggle that is open for one toggle open functionality.
* @param {Boolean} theUserIsEditing User is editing (true) or or not (false).
*/
M.format_topcoll.init = function(Y, theCourseId, theToggleState, theNumSections, theTogglePersistence,
theDefaultTogglePersistence, theOneTopic, theOneTopicToggle, theUserIsEditing) {
"use strict";
// Init.
this.ourYUI = Y;
this.courseid = theCourseId;
this.togglestate = theToggleState;
this.numSections = parseInt(theNumSections);
this.togglePersistence = theTogglePersistence;
this.oneTopic = theOneTopic;
this.userIsEditing = theUserIsEditing;
if ((this.togglestate !== null) && (this.togglePersistence == 1)) { // Toggle persistence - 1 = on, 0 = off.
if (this.is_old_preference(this.togglestate) === true) {
// Old preference, so convert to new.
this.convert_to_new_preference();
}
// Check we have enough digits for the number of toggles in case this has increased.
var numdigits = this.get_required_digits(this.numSections);
if (numdigits > this.togglestate.length) {
var dchar;
if (theDefaultTogglePersistence === 0) {
dchar = this.get_min_digit();
} else {
dchar = this.get_max_digit();
}
for (var i = this.togglestate.length; i < numdigits; i++) {
this.togglestate += dchar;
}
} else if (numdigits < this.togglestate.length) {
// Shorten to save space.
this.togglestate = this.togglestate.substring(0, numdigits);
}
} else {
// Reset to default.
if (theDefaultTogglePersistence === 0) {
this.resetState(this.get_min_digit());
} else {
this.resetState(this.get_max_digit());
}
}
// For some reason Y.delegate does not work on iPhones / iPad's on M3.1 with 'spans' instead of 'a' tags.
for (var togi = 1; togi <= this.numSections; togi++) {
// Cope with hidden / not shown toggles.
var toggle = Y.one("ul.ctopics #toggle-" + togi);
if (toggle) {
toggle.on('click', this.toggleClick, this);
}
}
if (this.oneTopic === false) {
// Event handlers for all opened / closed.
var allopen = Y.one("#toggles-all-opened");
if (allopen) {
allopen.on('click', this.allOpenClick);
}
var allclosed = Y.one("#toggles-all-closed");
if (allclosed) {
allclosed.on('click', this.allCloseClick);
}
} else {
if (theOneTopicToggle !== false) {
this.currentTopic = Y.one("ul.ctopics #toggle-" + theOneTopicToggle);
this.currentTopicNum = theOneTopicToggle;
}
}
};
M.format_topcoll.toggleClick = function(e) {
if (this.userIsEditing) {
var parentClasses = e.target.get('parentNode').getAttribute('class');
if ((parentClasses.indexOf('quickediticon') > -1) || (parentClasses.indexOf('inplaceeditable') > -1)) {
return;
}
}
var toggleIndex = parseInt(e.currentTarget.get('id').replace("toggle-", ""));
e.preventDefault();
this.toggle_topic(e.currentTarget, toggleIndex);
};
M.format_topcoll.allOpenClick = function(e) {
e.preventDefault();
M.format_topcoll.ourYUI.all(".toggledsection").addClass('sectionopen');
M.format_topcoll.ourYUI.all(".toggle span.the_toggle").addClass('toggle_open').removeClass('toggle_closed')
.setAttribute('aria-pressed', 'true');
M.format_topcoll.resetState(M.format_topcoll.get_max_digit());
M.format_topcoll.save_toggles();
};
M.format_topcoll.allCloseClick = function(e) {
e.preventDefault();
M.format_topcoll.ourYUI.all(".toggledsection").removeClass('sectionopen');
M.format_topcoll.ourYUI.all(".toggle span.the_toggle").addClass('toggle_closed').removeClass('toggle_open')
.setAttribute('aria-pressed', 'false');
M.format_topcoll.resetState(M.format_topcoll.get_min_digit());
M.format_topcoll.save_toggles();
};
M.format_topcoll.resetState = function(dchar) {
M.format_topcoll.togglestate = "";
var numdigits = M.format_topcoll.get_required_digits(M.format_topcoll.numSections);
for (var i = 0; i < numdigits; i++) {
M.format_topcoll.togglestate += dchar;
}
};
// Toggle functions
// Args - targetNode that initiated the call, toggleNum the number of the toggle.
M.format_topcoll.toggle_topic = function(targetNode, toggleNum) {
"use strict";
if (this.oneTopic === true) {
if ((this.currentTopicNum !== false) && (this.currentTopicNum != toggleNum)) {
var currentTarget = this.currentTopic.one('span.the_toggle');
currentTarget.addClass('toggle_closed').removeClass('toggle_open').setAttribute('aria-pressed', 'false');
this.currentTopic.next('.toggledsection').removeClass('sectionopen');
this.set_toggle_state(this.currentTopicNum, false);
this.currentTopic = null;
this.currentTopicNum = false;
}
}
var target = targetNode.one('span.the_toggle');
var state;
if (!target.hasClass('toggle_open')) {
target.addClass('toggle_open').removeClass('toggle_closed').setAttribute('aria-pressed', 'true');
targetNode.next('.toggledsection').addClass('sectionopen');
state = true;
if (this.oneTopic === true) {
this.currentTopic = targetNode;
this.currentTopicNum = toggleNum;
}
} else {
target.addClass('toggle_closed').removeClass('toggle_open').setAttribute('aria-pressed', 'false');
targetNode.next('.toggledsection').removeClass('sectionopen');
state = false;
if (this.oneTopic === true) {
this.currentTopic = null;
this.currentTopicNum = false;
}
}
this.set_toggle_state(toggleNum, state);
this.save_toggles();
};
/* Old maximum number of sections was 52, but as the conversion utilises integers which are 32 bit signed,
this must be broken into two string segments for the process to work. Therefore each 6 character base 36
string will represent 26 characters for part 1 and 27 for part 2 in base 2.
This is all required to save cookie space, so instead of using 53 bytes (characters) per course, only 12 are used.
Convert from a base 36 string to a base 2 string - effectively a private function.
Args - thirtysix - a 12 character string representing a base 36 number. */
M.format_topcoll.to2baseString = function(thirtysix) {
"use strict";
// Break apart the string because integers are signed 32 bit and therefore can only store 31 bits, therefore a
// 53 bit number will cause overflow / carry with loss of resolution.
var firstpart = parseInt(thirtysix.substring(0,6),36);
var secondpart = parseInt(thirtysix.substring(6,12),36);
var fps = firstpart.toString(2);
var sps = secondpart.toString(2);
// Add in preceding 0's if base 2 sub strings are not long enough.
if (fps.length < 26) {
// Need to PAD.
fps = this.thesparezeros.substring(0,(26 - fps.length)) + fps;
}
if (sps.length < 27) {
// Need to PAD.
sps = this.thesparezeros.substring(0,(27 - sps.length)) + sps;
}
return fps + sps;
};
/* Save the toggles - called from togglebinary and allToggle.
AJAX call to server to save the state of the toggles for this course for the current user if on. */
M.format_topcoll.save_toggles = function() {
"use strict";
if (this.togglePersistence == 1) { // Toggle persistence - 1 = on, 0 = off.
M.format_topcoll.set_user_preference('topcoll_toggle_' + this.courseid, this.togglestate);
}
};
// New base 64 code:....
M.format_topcoll.is_old_preference = function(pref) {
"use strict";
var retr = false;
var firstchar = pref[0];
if ((firstchar == '0') || (firstchar == '1')) {
retr = true;
}
return retr;
};
M.format_topcoll.convert_to_new_preference = function() {
"use strict";
var toggleBinary = this.to2baseString(this.togglestate);
var bin, value;
this.togglestate = "";
var logbintext = "";
for (var i = 1; i <= 43; i = i + 6) {
bin = toggleBinary.substring(i, i + 6);
value = parseInt(bin, 2);
this.togglestate += this.encode_value_to_character(value);
logbintext += bin + ' ';
}
bin = toggleBinary.substring(49, 53);
logbintext += bin + ' ';
value = parseInt(bin, 2);
// @codingStandardsIgnoreStart
value = value << 2; // jshint ignore:line
// @codingStandardsIgnoreEnd
this.togglestate += this.encode_value_to_character(value);
};
/**
* Sets the state of the requested Toggle number.
* int togglenum - The toggle number.
* boolean state - true or false.
*/
M.format_topcoll.set_toggle_state = function(togglenum, state) {
"use strict";
var togglecharpos = this.get_toggle_pos(togglenum);
var toggleflag = this.get_toggle_flag(togglenum, togglecharpos);
var value = this.decode_character_to_value(this.togglestate.charAt(togglecharpos - 1));
if (state === true) {
// @codingStandardsIgnoreStart
value |= toggleflag; // jshint ignore:line
// @codingStandardsIgnoreEnd
} else {
// @codingStandardsIgnoreStart
value &= ~toggleflag; // jshint ignore:line
// @codingStandardsIgnoreEnd
}
var newchar = this.encode_value_to_character(value);
var start = this.togglestate.substring(0,togglecharpos - 1);
var end = this.togglestate.substring(togglecharpos);
this.togglestate = start + newchar + end;
};
M.format_topcoll.get_required_digits = function(numtoggles) {
"use strict";
return this.get_toggle_pos(numtoggles);
};
M.format_topcoll.get_toggle_pos = function(togglenum) {
"use strict";
return Math.ceil(togglenum / 6);
};
M.format_topcoll.get_min_digit = function() {
"use strict";
return ':'; // Digit ':' is 58.
};
M.format_topcoll.get_max_digit = function() {
"use strict";
return 'y'; // Digit 'y' is 121.
};
M.format_topcoll.get_toggle_flag = function(togglenum, togglecharpos) {
"use strict";
var toggleflagpos = togglenum - ((togglecharpos - 1) * 6);
var flag;
switch (toggleflagpos) {
case 1:
flag = this.TOGGLE_1;
break;
case 2:
flag = this.TOGGLE_2;
break;
case 3:
flag = this.TOGGLE_3;
break;
case 4:
flag = this.TOGGLE_4;
break;
case 5:
flag = this.TOGGLE_5;
break;
case 6:
flag = this.TOGGLE_6;
break;
}
return flag;
};
M.format_topcoll.decode_character_to_value = function(character) {
"use strict";
return character.charCodeAt(0) - 58;
};
M.format_topcoll.encode_value_to_character = function(val) {
"use strict";
return String.fromCharCode(val + 58);
};
/**
* Makes a best effort to connect back to Moodle to update a user preference,
* however, there is no mechanism for finding out if the update succeeded.
*
* Before you can use this function in your JavsScript, you must have called
* user_preference_allow_ajax_update from moodlelib.php to tell Moodle that
* the update is allowed, and how to safely clean and submitted values.
*
* @param String name the name of the setting to update.
* @param String the value to set it to.
*/
M.format_topcoll.set_user_preference = function(name, value) {
YUI().use('io', function(Y) {
var url = M.cfg.wwwroot + '/course/format/topcoll/settopcollpref.php?sesskey=' + M.cfg.sesskey + '&pref=' + encodeURI(name) + '&value=' + encodeURI(value); // jshint ignore:line
// If we are a developer, ensure that failures are reported.
var cfg = {
method: 'get',
on: {}
};
if (M.cfg.developerdebug) {
cfg.on.failure = function() {
console.log("Error updating topcoll preference '" + name + "' using AJAX. Almost certainly your session has timed out. Clicking this link will repeat the AJAX call that failed so you can see the error: "); // jshint ignore:line
};
}
// Make the request.
Y.io(url, cfg);
});
};