import React, { lazy, Suspense } from "react"; import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget"; import { WidgetType } from "constants/WidgetConstants"; import { EventType } from "constants/ActionConstants"; import { WidgetPropertyValidationType } from "utils/ValidationFactory"; import { VALIDATION_TYPES } from "constants/WidgetValidation"; import { TriggerPropertiesMap, DerivedPropertiesMap, } from "utils/WidgetFactory"; import Skeleton from "components/utils/Skeleton"; import * as Sentry from "@sentry/react"; import { retryPromise } from "utils/AppsmithUtils"; import withMeta, { WithMeta } from "./MetaHOC"; const RichTextEditorComponent = lazy(() => retryPromise(() => import( /* webpackChunkName: "rte",webpackPrefetch: 2 */ "components/designSystems/appsmith/RichTextEditorComponent" ), ), ); class RichTextEditorWidget extends BaseWidget< RichTextEditorWidgetProps, WidgetState > { static getPropertyValidationMap(): WidgetPropertyValidationType { return { text: VALIDATION_TYPES.TEXT, placeholder: VALIDATION_TYPES.TEXT, defaultValue: VALIDATION_TYPES.TEXT, isDisabled: VALIDATION_TYPES.BOOLEAN, isVisible: VALIDATION_TYPES.BOOLEAN, // onTextChange: VALIDATION_TYPES.ACTION_SELECTOR, }; } static getTriggerPropertyMap(): TriggerPropertiesMap { return { onTextChange: true, }; } static getMetaPropertiesMap(): Record { return { text: undefined, }; } static getDefaultPropertiesMap(): Record { return { text: "defaultText", }; } static getDerivedPropertiesMap(): DerivedPropertiesMap { return { value: `{{this.text}}`, }; } onValueChange = (text: string) => { this.props.updateWidgetMetaProperty("text", text); if (this.props.onTextChange) { super.executeAction({ dynamicString: this.props.onTextChange, event: { type: EventType.ON_TEXT_CHANGE, }, }); } }; getPageView() { return ( }> ); } getWidgetType(): WidgetType { return "RICH_TEXT_EDITOR_WIDGET"; } } export interface RichTextEditorWidgetProps extends WidgetProps, WithMeta { defaultText?: string; text?: string; placeholder?: string; onTextChange?: string; isDisabled?: boolean; isVisible?: boolean; } export default RichTextEditorWidget; export const ProfiledRichTextEditorWidget = Sentry.withProfiler( withMeta(RichTextEditorWidget), );