// (C) Copyright 2015 Martin Dougiamas // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { Injector } from '@angular/core'; import { TranslateService } from '@ngx-translate/core'; import { AddonModAssignSubmissionHandler } from '../providers/submission-delegate'; /** * Base handler for submission plugins. * * This class is needed because parent classes cannot have @Injectable in Angular v6, so the default handler cannot be a * parent class. */ export class AddonModAssignBaseSubmissionHandler implements AddonModAssignSubmissionHandler { name = 'AddonModAssignBaseSubmissionHandler'; type = 'base'; constructor(protected translate: TranslateService) { } /** * Whether the plugin can be edited in offline for existing submissions. In general, this should return false if the * plugin uses Moodle filters. The reason is that the app only prefetches filtered data, and the user should edit * unfiltered data. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @return {boolean|Promise} Boolean or promise resolved with boolean: whether it can be edited in offline. */ canEditOffline(assign: any, submission: any, plugin: any): boolean | Promise { return false; } /** * Should clear temporary data for a cancelled submission. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {any} inputData Data entered by the user for the submission. */ clearTmpData(assign: any, submission: any, plugin: any, inputData: any): void { // Nothing to do. } /** * This function will be called when the user wants to create a new submission based on the previous one. * It should add to pluginData the data to send to server based in the data in plugin (previous attempt). * * @param {any} assign The assignment. * @param {any} plugin The plugin object. * @param {any} pluginData Object where to store the data to send. * @param {number} [userId] User ID. If not defined, site's current user. * @param {string} [siteId] Site ID. If not defined, current site. * @return {void|Promise} If the function is async, it should return a Promise resolved when done. */ copySubmissionData(assign: any, plugin: any, pluginData: any, userId?: number, siteId?: string): void | Promise { // Nothing to do. } /** * Delete any stored data for the plugin and submission. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {any} offlineData Offline data stored. * @param {string} [siteId] Site ID. If not defined, current site. * @return {void|Promise} If the function is async, it should return a Promise resolved when done. */ deleteOfflineData(assign: any, submission: any, plugin: any, offlineData: any, siteId?: string): void | Promise { // Nothing to do. } /** * Return the Component to use to display the plugin data, either in read or in edit mode. * It's recommended to return the class of the component, but you can also return an instance of the component. * * @param {Injector} injector Injector. * @param {any} plugin The plugin object. * @param {boolean} [edit] Whether the user is editing. * @return {any|Promise} The component (or promise resolved with component) to use, undefined if not found. */ getComponent(injector: Injector, plugin: any, edit?: boolean): any | Promise { // Nothing to do. } /** * Get files used by this plugin. * The files returned by this function will be prefetched when the user prefetches the assign. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {string} [siteId] Site ID. If not defined, current site. * @return {any[]|Promise} The files (or promise resolved with the files). */ getPluginFiles(assign: any, submission: any, plugin: any, siteId?: string): any[] | Promise { return []; } /** * Get a readable name to use for the plugin. * * @param {any} plugin The plugin object. * @return {string} The plugin name. */ getPluginName(plugin: any): string { // Check if there's a translated string for the plugin. const translationId = 'addon.mod_assign_submission_' + plugin.type + '.pluginname', translation = this.translate.instant(translationId); if (translationId != translation) { // Translation found, use it. return translation; } // Fallback to WS string. if (plugin.name) { return plugin.name; } } /** * Get the size of data (in bytes) this plugin will send to copy a previous submission. * * @param {any} assign The assignment. * @param {any} plugin The plugin object. * @return {number|Promise} The size (or promise resolved with size). */ getSizeForCopy(assign: any, plugin: any): number | Promise { return 0; } /** * Get the size of data (in bytes) this plugin will send to add or edit a submission. * * @param {any} assign The assignment. * @param {any} plugin The plugin object. * @return {number|Promise} The size (or promise resolved with size). */ getSizeForEdit(assign: any, plugin: any): number | Promise { return 0; } /** * Check if the submission data has changed for this plugin. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {any} inputData Data entered by the user for the submission. * @return {boolean|Promise} Boolean (or promise resolved with boolean): whether the data has changed. */ hasDataChanged(assign: any, submission: any, plugin: any, inputData: any): boolean | Promise { return false; } /** * Whether or not the handler is enabled on a site level. * * @return {boolean|Promise} True or promise resolved with true if enabled. */ isEnabled(): boolean | Promise { return true; } /** * Whether or not the handler is enabled for edit on a site level. * @return {boolean|Promise} Whether or not the handler is enabled for edit on a site level. */ isEnabledForEdit(): boolean | Promise { return false; } /** * Prefetch any required data for the plugin. * This should NOT prefetch files. Files to be prefetched should be returned by the getPluginFiles function. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {string} [siteId] Site ID. If not defined, current site. * @return {Promise} Promise resolved when done. */ prefetch(assign: any, submission: any, plugin: any, siteId?: string): Promise { return Promise.resolve(); } /** * Prepare and add to pluginData the data to send to the server based on the input data. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {any} inputData Data entered by the user for the submission. * @param {any} pluginData Object where to store the data to send. * @param {boolean} [offline] Whether the user is editing in offline. * @param {number} [userId] User ID. If not defined, site's current user. * @param {string} [siteId] Site ID. If not defined, current site. * @return {void|Promise} If the function is async, it should return a Promise resolved when done. */ prepareSubmissionData?(assign: any, submission: any, plugin: any, inputData: any, pluginData: any, offline?: boolean, userId?: number, siteId?: string): void | Promise { // Nothing to do. } /** * Prepare and add to pluginData the data to send to the server based on the offline data stored. * This will be used when performing a synchronization. * * @param {any} assign The assignment. * @param {any} submission The submission. * @param {any} plugin The plugin object. * @param {any} offlineData Offline data stored. * @param {any} pluginData Object where to store the data to send. * @param {string} [siteId] Site ID. If not defined, current site. * @return {void|Promise} If the function is async, it should return a Promise resolved when done. */ prepareSyncData?(assign: any, submission: any, plugin: any, offlineData: any, pluginData: any, siteId?: string) : void | Promise { // Nothing to do. } }