mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 16:32:18 +02:00
Merge branch 'MDL-79464-main' of https://github.com/mihailges/moodle
This commit is contained in:
commit
a2ddc972c5
@ -6,6 +6,6 @@
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @since 3.1
|
||||
*/
|
||||
define("mod_assign/grading_form_change_checker",["jquery"],(function($){return{saveFormState:function(selector){$(selector).trigger("save-form-state");var data=$(selector).serialize();$(selector).data("saved-form-state",data)},checkFormForChanges:function(selector){$(selector).trigger("save-form-state");var data=$(selector).serialize(),previousdata=$(selector).data("saved-form-state");return void 0!==previousdata&&previousdata!=data}}}));
|
||||
define("mod_assign/grading_form_change_checker",["jquery"],(function($){return{saveFormState:function(selector){$(selector).trigger("save-form-state");var data=$(selector).serialize();$(selector).data("saved-form-state",data)},checkFormForChanges:function(selector){$(selector).trigger("save-form-state");var data=$(selector).serialize(),previousdata=$(selector).data("saved-form-state");return!!$(selector).data("unresolved-error")||void 0!==previousdata&&previousdata!=data}}}));
|
||||
|
||||
//# sourceMappingURL=grading_form_change_checker.min.js.map
|
@ -1 +1 @@
|
||||
{"version":3,"file":"grading_form_change_checker.min.js","sources":["../src/grading_form_change_checker.js"],"sourcesContent":["// This file is part of Moodle - http://moodle.org/\n//\n// Moodle is free software: you can redistribute it and/or modify\n// it under the terms of the GNU General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// Moodle is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU General Public License for more details.\n//\n// You should have received a copy of the GNU General Public License\n// along with Moodle. If not, see <http://www.gnu.org/licenses/>.\n\n/**\n * Simple method to check for changes to a form between two points in time.\n *\n * @module mod_assign/grading_form_change_checker\n * @copyright 2016 Damyon Wiese <damyon@moodle.com>\n * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n * @since 3.1\n */\ndefine(['jquery'], function($) {\n\n return {\n /**\n * Save the values in the form to a data attribute so they can be compared later for changes.\n *\n * @method saveFormState\n * @param {String} selector The selector for the form element.\n */\n saveFormState: function(selector) {\n $(selector).trigger('save-form-state');\n var data = $(selector).serialize();\n $(selector).data('saved-form-state', data);\n },\n\n /**\n * Compare the current values in the form to the previously saved state.\n *\n * @method checkFormForChanges\n * @param {String} selector The selector for the form element.\n * @return {Boolean} True if there are changes to the form data.\n */\n checkFormForChanges: function(selector) {\n\n $(selector).trigger('save-form-state');\n\n var data = $(selector).serialize(),\n previousdata = $(selector).data('saved-form-state');\n\n if (typeof previousdata === 'undefined') {\n return false;\n }\n return (previousdata != data);\n }\n };\n});\n"],"names":["define","$","saveFormState","selector","trigger","data","serialize","checkFormForChanges","previousdata"],"mappings":";;;;;;;;AAuBAA,gDAAO,CAAC,WAAW,SAASC,SAEjB,CAOHC,cAAe,SAASC,UACpBF,EAAEE,UAAUC,QAAQ,uBAChBC,KAAOJ,EAAEE,UAAUG,YACvBL,EAAEE,UAAUE,KAAK,mBAAoBA,OAUzCE,oBAAqB,SAASJ,UAE1BF,EAAEE,UAAUC,QAAQ,uBAEhBC,KAAOJ,EAAEE,UAAUG,YACnBE,aAAeP,EAAEE,UAAUE,KAAK,gCAER,IAAjBG,cAGHA,cAAgBH"}
|
||||
{"version":3,"file":"grading_form_change_checker.min.js","sources":["../src/grading_form_change_checker.js"],"sourcesContent":["// This file is part of Moodle - http://moodle.org/\n//\n// Moodle is free software: you can redistribute it and/or modify\n// it under the terms of the GNU General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// Moodle is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU General Public License for more details.\n//\n// You should have received a copy of the GNU General Public License\n// along with Moodle. If not, see <http://www.gnu.org/licenses/>.\n\n/**\n * Simple method to check for changes to a form between two points in time.\n *\n * @module mod_assign/grading_form_change_checker\n * @copyright 2016 Damyon Wiese <damyon@moodle.com>\n * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n * @since 3.1\n */\ndefine(['jquery'], function($) {\n\n return {\n /**\n * Save the values in the form to a data attribute so they can be compared later for changes.\n *\n * @method saveFormState\n * @param {String} selector The selector for the form element.\n */\n saveFormState: function(selector) {\n $(selector).trigger('save-form-state');\n var data = $(selector).serialize();\n $(selector).data('saved-form-state', data);\n },\n\n /**\n * Compare the current values in the form to the previously saved state.\n *\n * @method checkFormForChanges\n * @param {String} selector The selector for the form element.\n * @return {Boolean} True if there are changes to the form data.\n */\n checkFormForChanges: function(selector) {\n\n $(selector).trigger('save-form-state');\n\n var data = $(selector).serialize(),\n previousdata = $(selector).data('saved-form-state'),\n unresolvederror = $(selector).data('unresolved-error');\n\n if (unresolvederror) {\n return true;\n }\n if (typeof previousdata === 'undefined') {\n return false;\n }\n return (previousdata != data);\n }\n };\n});\n"],"names":["define","$","saveFormState","selector","trigger","data","serialize","checkFormForChanges","previousdata"],"mappings":";;;;;;;;AAuBAA,gDAAO,CAAC,WAAW,SAASC,SAEjB,CAOHC,cAAe,SAASC,UACpBF,EAAEE,UAAUC,QAAQ,uBAChBC,KAAOJ,EAAEE,UAAUG,YACvBL,EAAEE,UAAUE,KAAK,mBAAoBA,OAUzCE,oBAAqB,SAASJ,UAE1BF,EAAEE,UAAUC,QAAQ,uBAEhBC,KAAOJ,EAAEE,UAAUG,YACnBE,aAAeP,EAAEE,UAAUE,KAAK,4BACdJ,EAAEE,UAAUE,KAAK,0BAKX,IAAjBG,cAGHA,cAAgBH"}
|
2
mod/assign/amd/build/grading_panel.min.js
vendored
2
mod/assign/amd/build/grading_panel.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -48,8 +48,12 @@ define(['jquery'], function($) {
|
||||
$(selector).trigger('save-form-state');
|
||||
|
||||
var data = $(selector).serialize(),
|
||||
previousdata = $(selector).data('saved-form-state');
|
||||
previousdata = $(selector).data('saved-form-state'),
|
||||
unresolvederror = $(selector).data('unresolved-error');
|
||||
|
||||
if (unresolvederror) {
|
||||
return true;
|
||||
}
|
||||
if (typeof previousdata === 'undefined') {
|
||||
return false;
|
||||
}
|
||||
|
@ -178,9 +178,16 @@ define([
|
||||
nextUserId = this._lastUserId;
|
||||
}
|
||||
if (response.length) {
|
||||
str.get_string('errorgradechangessaveddetail', 'mod_assign')
|
||||
.then(function(str) {
|
||||
Toast.add(str, {type: 'danger', delay: 4000});
|
||||
return str;
|
||||
})
|
||||
.catch(notification.exception);
|
||||
|
||||
// There was an error saving the grade. Re-render the form using the submitted data so we can show
|
||||
// validation errors.
|
||||
$(document).trigger('reset', [this._lastUserId, formdata]);
|
||||
$(document).trigger('reset', [this._lastUserId, formdata, true]);
|
||||
} else {
|
||||
str.get_string('gradechangessaveddetail', 'mod_assign')
|
||||
.then(function(str) {
|
||||
@ -212,15 +219,16 @@ define([
|
||||
* @param {Event} e
|
||||
* @param {Integer} userid
|
||||
* @param {Array} formdata
|
||||
* @param {Boolean} unresolvederror
|
||||
*/
|
||||
GradingPanel.prototype._resetForm = function(e, userid, formdata) {
|
||||
GradingPanel.prototype._resetForm = function(e, userid, formdata, unresolvederror) {
|
||||
// The form was cancelled - refresh with default values.
|
||||
var event = $.Event("custom");
|
||||
if (typeof userid == "undefined") {
|
||||
userid = this._lastUserId;
|
||||
}
|
||||
this._lastUserId = 0;
|
||||
this._refreshGradingPanel(event, userid, formdata);
|
||||
this._refreshGradingPanel(event, userid, formdata, -1, unresolvederror);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -300,8 +308,9 @@ define([
|
||||
* @param {Number} userid
|
||||
* @param {String} submissiondata serialised submission data.
|
||||
* @param {Integer} attemptnumber
|
||||
* @param {Boolean} unresolvederror
|
||||
*/
|
||||
GradingPanel.prototype._refreshGradingPanel = function(event, userid, submissiondata, attemptnumber) {
|
||||
GradingPanel.prototype._refreshGradingPanel = function(event, userid, submissiondata, attemptnumber, unresolvederror) {
|
||||
var contextid = this._region.attr('data-contextid');
|
||||
if (typeof submissiondata === 'undefined') {
|
||||
submissiondata = '';
|
||||
@ -309,6 +318,9 @@ define([
|
||||
if (typeof attemptnumber === 'undefined') {
|
||||
attemptnumber = -1;
|
||||
}
|
||||
if (typeof unresolvederror === 'undefined') {
|
||||
unresolvederror = false;
|
||||
}
|
||||
// Skip reloading if it is the same user.
|
||||
if (this._lastUserId == userid && this._lastAttemptNumber == attemptnumber && submissiondata === '') {
|
||||
return;
|
||||
@ -344,6 +356,9 @@ define([
|
||||
});
|
||||
$('[data-region="attempt-chooser"]').on('click', this._chooseAttempt.bind(this));
|
||||
this._addPopoutButtons('[data-region="grade-panel"] .gradeform');
|
||||
if (unresolvederror) {
|
||||
$('[data-region="grade-panel"] .gradeform').data('unresolved-error', true);
|
||||
}
|
||||
$(document).trigger('finish-loading-user');
|
||||
// Tell behat we are friends again.
|
||||
window.M.util.js_complete('mod-assign-loading-user');
|
||||
|
@ -220,6 +220,7 @@ $string['editingstatus'] = 'Editing status';
|
||||
$string['enabled'] = 'Enabled';
|
||||
$string['enabletimelimit'] = 'Enable timed assignments';
|
||||
$string['enabletimelimit_help'] = 'If enabled, you can set a time limit on assignment settings page.';
|
||||
$string['errorgradechangessaveddetail'] = 'The changes to the grade and feedback failed to save';
|
||||
$string['eventallsubmissionsdownloaded'] = 'All the submissions are being downloaded.';
|
||||
$string['eventassessablesubmitted'] = 'A submission has been submitted.';
|
||||
$string['eventbatchsetmarkerallocationviewed'] = 'Batch set marker allocation viewed';
|
||||
|
Loading…
x
Reference in New Issue
Block a user