mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 13:38:32 +01:00
236 lines
9.3 KiB
JavaScript
236 lines
9.3 KiB
JavaScript
M.mod_assign = {};
|
|
|
|
M.mod_assign.init_tree = function(Y, expand_all, htmlid) {
|
|
var treeElement = Y.one('#'+htmlid);
|
|
if (treeElement) {
|
|
Y.use('yui2-treeview', 'node-event-simulate', function(Y) {
|
|
var tree = new Y.YUI2.widget.TreeView(htmlid);
|
|
|
|
tree.subscribe("clickEvent", function(node, event) {
|
|
// We want normal clicking which redirects to url.
|
|
return false;
|
|
});
|
|
|
|
tree.subscribe("enterKeyPressed", function(node) {
|
|
// We want keyboard activation to trigger a click on the first link.
|
|
Y.one(node.getContentEl()).one('a').simulate('click');
|
|
return false;
|
|
});
|
|
|
|
if (expand_all) {
|
|
tree.expandAll();
|
|
}
|
|
tree.render();
|
|
});
|
|
}
|
|
};
|
|
|
|
M.mod_assign.init_grading_table = function(Y) {
|
|
Y.use('node', function(Y) {
|
|
const checkboxes = Y.all('td.c0 input');
|
|
let rowelement;
|
|
checkboxes.each(function(node) {
|
|
node.on('change', function(e) {
|
|
rowelement = e.currentTarget.get('parentNode').get('parentNode');
|
|
if (e.currentTarget.get('checked')) {
|
|
rowelement.removeClass('unselectedrow');
|
|
rowelement.addClass('selectedrow');
|
|
} else {
|
|
rowelement.removeClass('selectedrow');
|
|
rowelement.addClass('unselectedrow');
|
|
}
|
|
});
|
|
|
|
rowelement = node.get('parentNode').get('parentNode');
|
|
if (node.get('checked')) {
|
|
rowelement.removeClass('unselectedrow');
|
|
rowelement.addClass('selectedrow');
|
|
} else {
|
|
rowelement.removeClass('selectedrow');
|
|
rowelement.addClass('unselectedrow');
|
|
}
|
|
});
|
|
|
|
const selectall = Y.one('th.c0 input');
|
|
if (selectall) {
|
|
selectall.on('change', function(e) {
|
|
Y.all('td.c0 input[type="checkbox"]').each(function(node) {
|
|
rowelement = node.get('parentNode').get('parentNode');
|
|
if (e.currentTarget.get('checked')) {
|
|
node.set('checked', true);
|
|
rowelement.removeClass('unselectedrow');
|
|
rowelement.addClass('selectedrow');
|
|
} else {
|
|
node.set('checked', false);
|
|
rowelement.removeClass('selectedrow');
|
|
rowelement.addClass('unselectedrow');
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
const batchform = Y.one('form.gradingbatchoperationsform');
|
|
if (batchform) {
|
|
batchform.on('submit', function(e) {
|
|
M.util.js_pending('mod_assign/module.js:batch:submit');
|
|
let selectedusers = [];
|
|
checkboxes.each(function(node) {
|
|
if (node.get('checked')) {
|
|
selectedusers.push(node.get('value'));
|
|
}
|
|
});
|
|
|
|
const operation = Y.one('#id_operation');
|
|
const usersinput = Y.one('input.selectedusers');
|
|
usersinput.set('value', selectedusers.join(','));
|
|
if (selectedusers.length === 0) {
|
|
alert(M.util.get_string('nousersselected', 'assign'));
|
|
e.preventDefault();
|
|
} else {
|
|
let action = operation.get('value');
|
|
const prefix = 'plugingradingbatchoperation_';
|
|
let confirmmessage = false;
|
|
if (action.indexOf(prefix) === 0) {
|
|
const pluginaction = action.slice(prefix.length);
|
|
const plugin = pluginaction.split('_')[0];
|
|
action = pluginaction.slice(plugin.length + 1);
|
|
confirmmessage = M.util.get_string('batchoperationconfirm' + action, 'assignfeedback_' + plugin);
|
|
} else if (action === 'message') {
|
|
e.preventDefault();
|
|
require(['core_message/message_send_bulk'], function(BulkSender) {
|
|
BulkSender.showModal(selectedusers, function() {
|
|
document.getElementById('page-header').scrollIntoView();
|
|
});
|
|
});
|
|
} else {
|
|
confirmmessage = M.util.get_string('batchoperationconfirm' + operation.get('value'), 'assign');
|
|
}
|
|
// Complete here the action (js_complete event) when we send a bulk message, or we have a confirmation message.
|
|
// When the confirmation dialogue is completed, the event is fired.
|
|
if (action === 'message' || confirmmessage !== false && !confirm(confirmmessage)) {
|
|
M.util.js_complete('mod_assign/module.js:batch:submit');
|
|
e.preventDefault();
|
|
}
|
|
// Note: Do not js_complete. The page being reloaded will empty it.
|
|
}
|
|
});
|
|
}
|
|
|
|
var quickgrade = Y.all('.gradingtable .quickgrade');
|
|
quickgrade.each(function(quick) {
|
|
quick.on('change', function(e) {
|
|
this.get('parentNode').addClass('quickgrademodified');
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
M.mod_assign.init_grading_options = function(Y) {
|
|
Y.use('node', function(Y) {
|
|
var paginationelement = Y.one('#id_perpage');
|
|
paginationelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
var filterelement = Y.one('#id_filter');
|
|
if (filterelement) {
|
|
filterelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
var markerfilterelement = Y.one('#id_markerfilter');
|
|
if (markerfilterelement) {
|
|
markerfilterelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
var workflowfilterelement = Y.one('#id_workflowfilter');
|
|
if (workflowfilterelement) {
|
|
workflowfilterelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
var quickgradingelement = Y.one('#id_quickgrading');
|
|
if (quickgradingelement) {
|
|
quickgradingelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
var showonlyactiveenrolelement = Y.one('#id_showonlyactiveenrol');
|
|
if (showonlyactiveenrolelement) {
|
|
showonlyactiveenrolelement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
var downloadasfolderselement = Y.one('#id_downloadasfolders');
|
|
if (downloadasfolderselement) {
|
|
downloadasfolderselement.on('change', function(e) {
|
|
Y.one('form.gradingoptionsform').submit();
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
M.mod_assign.init_plugin_summary = function(Y, subtype, type, submissionid) {
|
|
var suffix = subtype + '_' + type + '_' + submissionid;
|
|
var classname = 'contract_' + suffix;
|
|
var contract = Y.one('.' + classname);
|
|
if (contract) {
|
|
contract.on('click', function(e) {
|
|
e.preventDefault();
|
|
var link = e.currentTarget || e.target;
|
|
var linkclasses = link.getAttribute('class').split(' ');
|
|
var thissuffix = '';
|
|
for (var i = 0; i < linkclasses.length; i++) {
|
|
classname = linkclasses[i];
|
|
if (classname.indexOf('contract_') == 0) {
|
|
thissuffix = classname.substr(9);
|
|
}
|
|
}
|
|
var fullclassname = 'full_' + thissuffix;
|
|
var full = Y.one('.' + fullclassname);
|
|
if (full) {
|
|
full.hide(false);
|
|
}
|
|
var summaryclassname = 'summary_' + thissuffix;
|
|
var summary = Y.one('.' + summaryclassname);
|
|
if (summary) {
|
|
summary.show(false);
|
|
summary.one('a.expand_' + thissuffix).focus();
|
|
}
|
|
});
|
|
}
|
|
classname = 'expand_' + suffix;
|
|
var expand = Y.one('.' + classname);
|
|
|
|
var full = Y.one('.full_' + suffix);
|
|
if (full) {
|
|
full.hide(false);
|
|
full.toggleClass('hidefull');
|
|
}
|
|
if (expand) {
|
|
expand.on('click', function(e) {
|
|
e.preventDefault();
|
|
var link = e.currentTarget || e.target;
|
|
var linkclasses = link.getAttribute('class').split(' ');
|
|
var thissuffix = '';
|
|
for (var i = 0; i < linkclasses.length; i++) {
|
|
classname = linkclasses[i];
|
|
if (classname.indexOf('expand_') == 0) {
|
|
thissuffix = classname.substr(7);
|
|
}
|
|
}
|
|
var summaryclassname = 'summary_' + thissuffix;
|
|
var summary = Y.one('.' + summaryclassname);
|
|
if (summary) {
|
|
summary.hide(false);
|
|
}
|
|
var fullclassname = 'full_' + thissuffix;
|
|
full = Y.one('.' + fullclassname);
|
|
if (full) {
|
|
full.show(false);
|
|
full.one('a.contract_' + thissuffix).focus();
|
|
}
|
|
});
|
|
}
|
|
};
|