-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.js
More file actions
236 lines (194 loc) · 8.42 KB
/
Copy pathmodule.js
File metadata and controls
236 lines (194 loc) · 8.42 KB
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
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* @package block_massaction
* @copyright 2013 University of Minnesota
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
M.block_massaction = {
sections : null
};
/**
* initialize the mass-action block
* @param {object} Y, the YUI instance
* @param {object} data, list of data from server
*
* @TODO: use M.util.get_string() for language strings from server side
*/
M.block_massaction.init = function(Y, data) {
var self = this;
this.Y = Y; // Keep a ref to YUI instance.
var mod_sel = new module_selector();
var sections = mod_sel.get_section_structure();
M.block_massaction.sections = sections;
// Add the section options to the select boxes.
var section_selector = document.getElementById('mod-massaction-control-section-list-select');
var section_moveto = document.getElementById('mod-massaction-control-section-list-moveto');
var section_dupto = document.getElementById('mod-massaction-control-section-list-dupto');
for (var section_number in sections) {
if (section_number == 0) { // General/first section.
var section_text = M.util.get_string('section_zero', 'block_massaction');
} else {
// Find the section name.
var sectionname_node = Y.one('#section-' + section_number + ' h3.sectionname');
if (sectionname_node != null) {
var section_text = sectionname_node.get('text');
} else {
// Determine the option text depending on course format.
switch (data.course_format) {
case 'weeks':
var section_text = M.util.get_string('week', 'block_massaction') + ' ' + section_number;
break;
case 'topics':
var section_text = M.util.get_string('topic', 'block_massaction') + ' ' + section_number;
break;
default:
var section_text = M.util.get_string('section', 'block_massaction') + ' ' + section_number;
break;
}
}
}
// Add to section selector.
var section_option = document.createElement('option');
section_option.text = section_text;
section_option.value = section_number;
section_option.disabled = sections[section_number].length == 0; //If has no module to select.
section_selector.options[section_selector.options.length] = section_option;
// Add to move-to-section.
var section_option = document.createElement('option');
section_option.text = section_text;
section_option.value = section_number;
section_moveto.options[section_moveto.options.length] = section_option;
// Add to dup-to-section.
var section_option = document.createElement('option');
section_option.text = section_text;
section_option.value = section_number;
section_dupto.options[section_dupto.options.length] = section_option;
}
// Attach event handler for the controls.
Y.on('change', function(e) { self.set_section_selection(true); },
'#mod-massaction-control-section-list-select');
Y.on('click', function(e) { self.set_section_selection(true, 'all'); },
'#mod-massaction-control-selectall');
Y.on('click', function(e) { self.set_section_selection(false, 'all'); },
'#mod-massaction-control-deselectall');
Y.on('click', function(e) { self.submit_action('moveleft'); },
'#mod-massaction-action-moveleft');
Y.on('click', function(e) { self.submit_action('moveright'); },
'#mod-massaction-action-moveright');
Y.on('click', function(e) { self.submit_action('hide'); },
'#mod-massaction-action-hide');
Y.on('click', function(e) { self.submit_action('show'); },
'#mod-massaction-action-show');
Y.on('click', function(e) { self.submit_action('delete'); },
'#mod-massaction-action-delete');
Y.on('change', function(e) { self.submit_action('moveto'); },
'#mod-massaction-control-section-list-moveto');
Y.on('change', function(e) { self.submit_action('dupto'); },
'#mod-massaction-control-section-list-dupto');
};
/**
* select all module checkboxes in section(s)
*
* @param {bool} value, value to set the checkboxes to
* @param {string} section_number, set to "all" to apply to all sections
*/
M.block_massaction.set_section_selection = function(value, section_number) {
var sections = this.sections;
var box_ids = [];
// See if we are toggling all sections.
if (typeof section_number != 'undefined' && section_number == 'all') {
for (var sec_id in sections) {
for (var j = 0; j < sections[sec_id].length; j++) {
box_ids.push(sections[sec_id][j].box_id);
}
}
} else {
var section_number = document.getElementById('mod-massaction-control-section-list-select').value;
if (section_number != 'all') {
for (var i = 0; i < sections[section_number].length; i++) {
box_ids.push(sections[section_number][i].box_id);
}
}
}
// Un/check the boxes.
for (var i = 0; i < box_ids.length; i++) {
document.getElementById(box_ids[i]).checked = value;
}
};
/**
* submit the selected action to server
*
* @TODO: if in AJAX mode, trigger event on the corresponding inline commands of
* each selected item, if available.
*
* @param {string} action
*/
M.block_massaction.submit_action = function(action) {
var submit_data = {'action' : action,
'module_ids' : []};
var sections = M.block_massaction.sections;
// Get the checked box IDs.
for (var sec_id in sections) {
for (var i = 0; i < sections[sec_id].length; i++) {
var checkbox = document.getElementById(sections[sec_id][i].box_id);
if (checkbox !== null && checkbox.checked) {
// Extract the module ID.
var name_comps = sections[sec_id][i].module_id.split('-');
submit_data.module_ids.push(name_comps[name_comps.length - 1]);
}
}
}
// Verify that at least one checkbox is checked.
if (submit_data.module_ids.length == 0) {
alert(M.util.get_string('noitemselected', 'block_massaction'));
return false;
}
// Prep the submission.
switch (action) {
case 'moveleft':
case 'moveright':
case 'hide':
case 'show':
break;
case 'delete':
// Confirm.
var numItems = submit_data.module_ids.length;
if (!confirm(M.util.get_string('confirmation', 'block_massaction', numItems))) {
return false;
}
break;
case 'moveto':
// Get the target section.
submit_data.moveto_target = document.getElementById('mod-massaction-control-section-list-moveto').value;
if (submit_data.moveto_target.replace(/ /g, '') == '') {
return false;
}
break;
case 'dupto':
// Get the target section.
submit_data.dupto_target = document.getElementById('mod-massaction-control-section-list-dupto').value;
if (submit_data.dupto_target.replace(/ /g, '') == '') {
return false;
}
break;
default:
alert('Unknown action: ' + action + '. Coding error.');
return false;
}
// Set the form value and submit.
document.getElementById('mod-massaction-control-request').value = this.Y.JSON.stringify(submit_data);
document.getElementById('mod-massaction-control-form').submit();
}