forked from EVOgeek/Vmeda.Online
151 lines
5.4 KiB
TypeScript
151 lines
5.4 KiB
TypeScript
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
//
|
|
// 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 { Injectable } from '@angular/core';
|
|
import { CoreWSFile } from '@services/ws';
|
|
import { Translate } from '@singletons';
|
|
import { AddonModAssignAssign, AddonModAssignPlugin, AddonModAssignSavePluginData, AddonModAssignSubmission } from '../assign';
|
|
import { AddonModAssignFeedbackHandler } from '../feedback-delegate';
|
|
import { CoreFormFields } from '@singletons/form';
|
|
|
|
/**
|
|
* Default handler used when a feedback plugin doesn't have a specific implementation.
|
|
*/
|
|
@Injectable({ providedIn: 'root' })
|
|
export class AddonModAssignDefaultFeedbackHandler implements AddonModAssignFeedbackHandler {
|
|
|
|
name = 'AddonModAssignDefaultFeedbackHandler';
|
|
type = 'default';
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
discardDraft(assignId: number, userId: number, siteId?: string): void | Promise<void> {
|
|
// Nothing to do.
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
getDraft(
|
|
assignId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
userId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
siteId?: string, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): CoreFormFields | Promise<CoreFormFields | undefined> | undefined {
|
|
// Nothing to do.
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
getPluginFiles(
|
|
assign: AddonModAssignAssign, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
submission: AddonModAssignSubmission, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
plugin: AddonModAssignPlugin, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
siteId?: string, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): CoreWSFile[] | Promise<CoreWSFile[]> {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
getPluginName(plugin: AddonModAssignPlugin): string {
|
|
// Check if there's a translated string for the plugin.
|
|
const translationId = 'addon.mod_assign_feedback_' + plugin.type + '.pluginname';
|
|
const translation = Translate.instant(translationId);
|
|
|
|
if (translationId != translation) {
|
|
// Translation found, use it.
|
|
return translation;
|
|
}
|
|
|
|
// Fallback to WS string.
|
|
if (plugin.name) {
|
|
return plugin.name;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async hasDataChanged(
|
|
assign: AddonModAssignAssign, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
submission: AddonModAssignSubmission, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
plugin: AddonModAssignPlugin, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
inputData: CoreFormFields, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
userId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): Promise<boolean> {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
hasDraftData(assignId: number, userId: number, siteId?: string): boolean | Promise<boolean> {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async isEnabled(): Promise<boolean> {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async prefetch(
|
|
assign: AddonModAssignAssign, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
submission: AddonModAssignSubmission, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
plugin: AddonModAssignPlugin, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
siteId?: string, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
prepareFeedbackData(
|
|
assignId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
userId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
plugin: AddonModAssignPlugin, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
pluginData: AddonModAssignSavePluginData, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
siteId?: string, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): void | Promise<void> {
|
|
// Nothing to do.
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
saveDraft(
|
|
assignId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
userId: number, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
plugin: AddonModAssignPlugin, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
data: CoreFormFields, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
siteId?: string, // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): void | Promise<void> {
|
|
// Nothing to do.
|
|
}
|
|
|
|
}
|