// (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 { AddonModDataEntryField, AddonModDataField, AddonModDataSearchEntriesAdvancedFieldFormatted, AddonModDataSubfieldData, } from '@addons/mod/data/services/data'; import { AddonModDataFieldHandler } from '@addons/mod/data/services/data-fields-delegate'; import { Injectable, Type } from '@angular/core'; import { CoreFormFields } from '@singletons/form'; import { makeSingleton, Translate } from '@singletons'; import type { AddonModDataFieldPluginBaseComponent } from '@addons/mod/data/classes/base-field-plugin-component'; /** * Handler for checkbox data field plugin. */ @Injectable({ providedIn: 'root' }) export class AddonModDataFieldRadiobuttonHandlerService implements AddonModDataFieldHandler { name = 'AddonModDataFieldRadiobuttonHandler'; type = 'radiobutton'; /** * @inheritdoc */ async getComponent(): Promise> { const { AddonModDataFieldRadiobuttonComponent } = await import('../component/radiobutton'); return AddonModDataFieldRadiobuttonComponent; } /** * @inheritdoc */ getFieldSearchData( field: AddonModDataField, inputData: CoreFormFields, ): AddonModDataSearchEntriesAdvancedFieldFormatted[] { const fieldName = 'f_' + field.id; if (inputData[fieldName]) { return [{ name: fieldName, value: inputData[fieldName], }]; } return []; } /** * @inheritdoc */ getFieldEditData(field: AddonModDataField, inputData: CoreFormFields): AddonModDataSubfieldData[] { const fieldName = 'f_' + field.id; return [{ fieldid: field.id, value: inputData[fieldName] || '', }]; } /** * @inheritdoc */ hasFieldDataChanged( field: AddonModDataField, inputData: CoreFormFields, originalFieldData: AddonModDataEntryField, ): boolean { const fieldName = 'f_' + field.id; const input = inputData[fieldName] || ''; const content = originalFieldData?.content || ''; return input != content; } /** * @inheritdoc */ getFieldsNotifications(field: AddonModDataField, inputData: AddonModDataSubfieldData[]): string | undefined { if (field.required && (!inputData || !inputData.length || !inputData[0].value)) { return Translate.instant('addon.mod_data.errormustsupplyvalue'); } } /** * @inheritdoc */ overrideData(originalContent: AddonModDataEntryField, offlineContent: CoreFormFields): AddonModDataEntryField { originalContent.content = offlineContent[''] || ''; return originalContent; } /** * @inheritdoc */ async isEnabled(): Promise { return true; } } export const AddonModDataFieldRadiobuttonHandler = makeSingleton(AddonModDataFieldRadiobuttonHandlerService);