import React from "react"; import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget"; import { WidgetType } from "constants/WidgetConstants"; import RadioGroupComponent from "components/designSystems/blueprint/RadioGroupComponent"; import { EventType } from "constants/ActionConstants"; import { WidgetPropertyValidationType, BASE_WIDGET_VALIDATION, } from "utils/ValidationFactory"; import { VALIDATION_TYPES } from "constants/WidgetValidation"; import { TriggerPropertiesMap } from "utils/WidgetFactory"; class RadioGroupWidget extends BaseWidget { static getPropertyValidationMap(): WidgetPropertyValidationType { return { ...BASE_WIDGET_VALIDATION, label: VALIDATION_TYPES.TEXT, options: VALIDATION_TYPES.OPTIONS_DATA, selectedOptionValue: VALIDATION_TYPES.TEXT, defaultOptionValue: VALIDATION_TYPES.TEXT, isRequired: VALIDATION_TYPES.BOOLEAN, // onSelectionChange: VALIDATION_TYPES.ACTION_SELECTOR, }; } static getDerivedPropertiesMap() { return { selectedOption: "{{_.find(this.options, { value: this.selectedOptionValue })}}", isValid: `{{ this.isRequired ? !!this.selectedOptionValue : true }}`, value: `{{this.selectedOptionValue}}`, }; } static getTriggerPropertyMap(): TriggerPropertiesMap { return { onSelectionChange: true, }; } static getDefaultPropertiesMap(): Record { return { selectedOptionValue: "defaultOptionValue", }; } static getMetaPropertiesMap(): Record { return { selectedOptionValue: undefined, }; } getPageView() { return ( ); } onRadioSelectionChange = (updatedValue: string) => { super.updateWidgetMetaProperty("selectedOptionValue", updatedValue); if (this.props.onSelectionChange) { super.executeAction({ dynamicString: this.props.onSelectionChange, event: { type: EventType.ON_OPTION_CHANGE, }, }); } }; getWidgetType(): WidgetType { return "RADIO_GROUP_WIDGET"; } } export interface RadioOption { label: string; value: string; id: string; } export interface RadioGroupWidgetProps extends WidgetProps { label: string; options: RadioOption[]; selectedOptionValue: string; onSelectionChange: string; defaultOptionValue: string; isRequired?: boolean; } export default RadioGroupWidget;