// (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 { Component } from '@angular/core'; import { AddonModDataFieldPluginBaseComponent } from '../../../classes/base-field-plugin-component'; import { AddonModDataEntryField, AddonModDataProvider } from '@addons/mod/data/services/data'; import { CoreTextUtils } from '@services/utils/text'; import { CoreWSFile } from '@services/ws'; /** * Component to render data number field. */ @Component({ selector: 'addon-mod-data-field-textarea', templateUrl: 'addon-mod-data-field-textarea.html', }) export class AddonModDataFieldTextareaComponent extends AddonModDataFieldPluginBaseComponent { component?: string; componentId?: number; /** * Format value to be shown. Replacing plugin file Urls. * * @param value Value to replace. * @return Replaced string to be rendered. */ format(value?: Partial): string { const files: CoreWSFile[] = (value && value.files) || []; return value ? CoreTextUtils.replacePluginfileUrls(value.content || '', files) : ''; } /** * Initialize field. */ protected init(): void { this.component = AddonModDataProvider.COMPONENT; this.componentId = this.database?.coursemodule; if (this.displayMode) { return; } let text: string | undefined; // Check if rich text editor is enabled. if (this.editMode) { text = this.format(this.value); } this.addControl('f_' + this.field.id, text); } }