芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/calendar/amd/src/modal_event_form.js
// 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
. /** * Contain the logic for the quick add or update event modal. * * @module calendar/modal_quick_add_event * @class modal_quick_add_event * @package core * @copyright 2017 Ryan Wyllie
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define([ 'jquery', 'core/event', 'core/str', 'core/notification', 'core/templates', 'core/custom_interaction_events', 'core/modal', 'core/modal_registry', 'core/fragment', 'core_calendar/events', 'core_calendar/repository' ], function( $, Event, Str, Notification, Templates, CustomEvents, Modal, ModalRegistry, Fragment, CalendarEvents, Repository ) { var registered = false; var SELECTORS = { SAVE_BUTTON: '[data-action="save"]', LOADING_ICON_CONTAINER: '[data-region="loading-icon-container"]', }; /** * Constructor for the Modal. * * @param {object} root The root jQuery element for the modal */ var ModalEventForm = function(root) { Modal.call(this, root); this.eventId = null; this.startTime = null; this.courseId = null; this.categoryId = null; this.contextId = null; this.reloadingBody = false; this.reloadingTitle = false; this.saveButton = this.getFooter().find(SELECTORS.SAVE_BUTTON); }; ModalEventForm.TYPE = 'core_calendar-modal_event_form'; ModalEventForm.prototype = Object.create(Modal.prototype); ModalEventForm.prototype.constructor = ModalEventForm; /** * Set the context id to the given value. * * @method setContextId * @param {Number} id The event id */ ModalEventForm.prototype.setContextId = function(id) { this.contextId = id; }; /** * Retrieve the current context id, if any. * * @method getContextId * @return {Number|null} The event id */ ModalEventForm.prototype.getContextId = function() { return this.contextId; }; /** * Set the course id to the given value. * * @method setCourseId * @param {int} id The event id */ ModalEventForm.prototype.setCourseId = function(id) { this.courseId = id; }; /** * Retrieve the current course id, if any. * * @method getCourseId * @return {int|null} The event id */ ModalEventForm.prototype.getCourseId = function() { return this.courseId; }; /** * Set the category id to the given value. * * @method setCategoryId * @param {int} id The event id */ ModalEventForm.prototype.setCategoryId = function(id) { this.categoryId = id; }; /** * Retrieve the current category id, if any. * * @method getCategoryId * @return {int|null} The event id */ ModalEventForm.prototype.getCategoryId = function() { return this.categoryId; }; /** * Check if the modal has an course id. * * @method hasCourseId * @return {bool} */ ModalEventForm.prototype.hasCourseId = function() { return this.courseId !== null; }; /** * Check if the modal has an category id. * * @method hasCategoryId * @return {bool} */ ModalEventForm.prototype.hasCategoryId = function() { return this.categoryId !== null; }; /** * Set the event id to the given value. * * @method setEventId * @param {int} id The event id */ ModalEventForm.prototype.setEventId = function(id) { this.eventId = id; }; /** * Retrieve the current event id, if any. * * @method getEventId * @return {int|null} The event id */ ModalEventForm.prototype.getEventId = function() { return this.eventId; }; /** * Check if the modal has an event id. * * @method hasEventId * @return {bool} */ ModalEventForm.prototype.hasEventId = function() { return this.eventId !== null; }; /** * Set the start time to the given value. * * @method setStartTime * @param {int} time The start time */ ModalEventForm.prototype.setStartTime = function(time) { this.startTime = time; }; /** * Retrieve the current start time, if any. * * @method getStartTime * @return {int|null} The start time */ ModalEventForm.prototype.getStartTime = function() { return this.startTime; }; /** * Check if the modal has start time. * * @method hasStartTime * @return {bool} */ ModalEventForm.prototype.hasStartTime = function() { return this.startTime !== null; }; /** * Get the form element from the modal. * * @method getForm * @return {object} */ ModalEventForm.prototype.getForm = function() { return this.getBody().find('form'); }; /** * Disable the buttons in the footer. * * @method disableButtons */ ModalEventForm.prototype.disableButtons = function() { this.saveButton.prop('disabled', true); }; /** * Enable the buttons in the footer. * * @method enableButtons */ ModalEventForm.prototype.enableButtons = function() { this.saveButton.prop('disabled', false); }; /** * Reload the title for the modal to the appropriate value * depending on whether we are creating a new event or * editing an existing event. * * @method reloadTitleContent * @return {object} A promise resolved with the new title text */ ModalEventForm.prototype.reloadTitleContent = function() { if (this.reloadingTitle) { return this.titlePromise; } this.reloadingTitle = true; if (this.hasEventId()) { this.titlePromise = Str.get_string('editevent', 'calendar'); } else { this.titlePromise = Str.get_string('newevent', 'calendar'); } this.titlePromise.then(function(string) { this.setTitle(string); return string; }.bind(this)) .always(function() { this.reloadingTitle = false; return; }.bind(this)) .fail(Notification.exception); return this.titlePromise; }; /** * Send a request to the server to get the event_form in a fragment * and render the result in the body of the modal. * * If serialised form data is provided then it will be sent in the * request to the server to have the form rendered with the data. This * is used when the form had a server side error and we need the server * to re-render it for us to display the error to the user. * * @method reloadBodyContent * @param {string} formData The serialised form data * @return {object} A promise resolved with the fragment html and js from */ ModalEventForm.prototype.reloadBodyContent = function(formData) { if (this.reloadingBody) { return this.bodyPromise; } this.reloadingBody = true; this.disableButtons(); var args = {}; if (this.hasEventId()) { args.eventid = this.getEventId(); } if (this.hasStartTime()) { args.starttime = this.getStartTime(); } if (this.hasCourseId()) { args.courseid = this.getCourseId(); } if (this.hasCategoryId()) { args.categoryid = this.getCategoryId(); } if (typeof formData !== 'undefined') { args.formdata = formData; } this.bodyPromise = Fragment.loadFragment('calendar', 'event_form', this.getContextId(), args); this.setBody(this.bodyPromise); this.bodyPromise.then(function() { this.enableButtons(); return; }.bind(this)) .fail(Notification.exception) .always(function() { this.reloadingBody = false; return; }.bind(this)) .fail(Notification.exception); return this.bodyPromise; }; /** * Reload both the title and body content. * * @method reloadAllContent * @return {object} promise */ ModalEventForm.prototype.reloadAllContent = function() { return $.when(this.reloadTitleContent(), this.reloadBodyContent()); }; /** * Kick off a reload the modal content before showing it. This * is to allow us to re-use the same modal for creating and * editing different events within the page. * * We do the reload when showing the modal rather than hiding it * to save a request to the server if the user closes the modal * and never re-opens it. * * @method show */ ModalEventForm.prototype.show = function() { this.reloadAllContent(); Modal.prototype.show.call(this); }; /** * Clear the event id from the modal when it's closed so * that it is loaded fresh next time it's displayed. * * The event id will be set by the calling code if it wants * to edit a specific event. * * @method hide */ ModalEventForm.prototype.hide = function() { Modal.prototype.hide.call(this); this.setEventId(null); this.setStartTime(null); this.setCourseId(null); this.setCategoryId(null); }; /** * Get the serialised form data. * * @method getFormData * @return {string} serialised form data */ ModalEventForm.prototype.getFormData = function() { return this.getForm().serialize(); }; /** * Send the form data to the server to create or update * an event. * * If there is a server side validation error then we re-request the * rendered form (with the data) from the server in order to get the * server side errors to display. * * On success the modal is hidden and the page is reloaded so that the * new event will display. * * @method save * @return {object} A promise */ ModalEventForm.prototype.save = function() { var invalid, loadingContainer = this.saveButton.find(SELECTORS.LOADING_ICON_CONTAINER); // Now the change events have run, see if there are any "invalid" form fields. invalid = this.getForm().find('[aria-invalid="true"]'); // If we found invalid fields, focus on the first one and do not submit via ajax. if (invalid.length) { invalid.first().focus(); return; } loadingContainer.removeClass('hidden'); this.disableButtons(); var formData = this.getFormData(); // Send the form data to the server for processing. return Repository.submitCreateUpdateForm(formData) .then(function(response) { if (response.validationerror) { // If there was a server side validation error then // we need to re-request the rendered form from the server // in order to display the error for the user. this.reloadBodyContent(formData); return; } else { // Check whether this was a new event or not. // The hide function unsets the form data so grab this before the hide. var isExisting = this.hasEventId(); // No problemo! Our work here is done. this.hide(); // Trigger the appropriate calendar event so that the view can be updated. if (isExisting) { $('body').trigger(CalendarEvents.updated, [response.event]); } else { $('body').trigger(CalendarEvents.created, [response.event]); } } return; }.bind(this)) .always(function() { // Regardless of success or error we should always stop // the loading icon and re-enable the buttons. loadingContainer.addClass('hidden'); this.enableButtons(); return; }.bind(this)) .fail(Notification.exception); }; /** * Set up all of the event handling for the modal. * * @method registerEventListeners */ ModalEventForm.prototype.registerEventListeners = function() { // Apply parent event listeners. Modal.prototype.registerEventListeners.call(this); // When the user clicks the save button we trigger the form submission. We need to // trigger an actual submission because there is some JS code in the form that is // listening for this event and doing some stuff (e.g. saving draft areas etc). this.getModal().on(CustomEvents.events.activate, SELECTORS.SAVE_BUTTON, function(e, data) { this.getForm().submit(); data.originalEvent.preventDefault(); e.stopPropagation(); }.bind(this)); // Catch the submit event before it is actually processed by the browser and // prevent the submission. We'll take it from here. this.getModal().on('submit', function(e) { Event.notifyFormSubmitAjax(this.getForm()[0]); this.save(); // Stop the form from actually submitting and prevent it's // propagation because we have already handled the event. e.preventDefault(); e.stopPropagation(); }.bind(this)); }; // Automatically register with the modal registry the first time this module is imported so that you can create modals // of this type using the modal factory. if (!registered) { ModalRegistry.register(ModalEventForm.TYPE, ModalEventForm, 'calendar/modal_event_form'); registered = true; } return ModalEventForm; });