KONTOLODON
/
var
/
www
/
ojs-3.3.0-13
/
lib
/
pkp
/
js
/
controllers
/
grid
/
users
/
reviewer
/
form
/
Nama File / Folder
Size
Action
AddReviewerFormHandler.js
3.266KB
Hapus
Edit
Rename
EditReviewFormHandler.js
2.757KB
Hapus
Edit
Rename
<=Back
/** * @file js/controllers/grid/users/reviewer/form/AddReviewerFormHandler.js * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class AddReviewerFormHandler * @ingroup js_controllers_grid_users_reviewer_form * * @brief Handle the Add Reviewer form (and template for message body). */ (function($) { /** * @constructor * * @extends $.pkp.controllers.grid.users.reviewer.form.EditReviewFormHandler * * @param {jQueryObject} $form the wrapped HTML form element. * @param {Object} options form options. */ $.pkp.controllers.grid.users.reviewer.form. AddReviewerFormHandler = function($form, options) { this.parent($form, options); // Set the URL to retrieve templates from. if (options.templateUrl) { this.templateUrl_ = options.templateUrl; } // Attach form elements events. $form.find('#template').change( this.callbackWrapper(this.selectTemplateHandler_)); }; $.pkp.classes.Helper.inherits( $.pkp.controllers.grid.users.reviewer.form. AddReviewerFormHandler, $.pkp.controllers.grid.users.reviewer.form. EditReviewFormHandler); // // Private properties // /** * The URL to use to retrieve template bodies * @private * @type {string?} */ $.pkp.controllers.grid.users.reviewer.form. AddReviewerFormHandler.prototype.templateUrl_ = null; // // Protected methods // /** * Show the "no files" warning. * @protected */ $.pkp.controllers.grid.users.reviewer.form.AddReviewerFormHandler. prototype.showWarning = function() { // Call the parent showWarning to show the warning this.parent('showWarning'); // Ask the reviewer form footer handler to expand the file // list extras-on-demand if it isn't already expanded. this.getHtmlElement().find('#reviewerFormFooter') .trigger('expandFileList'); }; // // Private methods // /** * Respond to an "item selected" call by triggering a published event. * * @param {HTMLElement} sourceElement The element that * issued the event. * @param {Event} event The triggering event. * @private */ $.pkp.controllers.grid.users.reviewer.form. AddReviewerFormHandler.prototype.selectTemplateHandler_ = function(sourceElement, event) { var $form = this.getHtmlElement(); $.post(this.templateUrl_, $form.find('#template').serialize(), this.callbackWrapper(this.updateTemplate), 'json'); }; /** * Internal callback to replace the textarea with the contents of the * template body. * * @param {HTMLElement} formElement The wrapped HTML form. * @param {Object} jsonData The data returned from the server. * @return {boolean} The response status. */ $.pkp.controllers.grid.users.reviewer.form. AddReviewerFormHandler.prototype.updateTemplate = function(formElement, jsonData) { var $form = this.getHtmlElement(), processedJsonData = this.handleJson(jsonData), $textarea = $form.find('textarea[name="personalMessage"]'), editor = tinyMCE.EditorManager.get(/** @type {string} */ ($textarea.attr('id'))); if (processedJsonData !== false) { if (processedJsonData.content !== '') { editor.setContent(processedJsonData.content); } } return processedJsonData.status; }; }(jQuery));
Liking