PromucFlow_constructor/app/client/src/components/formControls/BaseControl.tsx
Hetu Nandu 13c59ee80f Datasource bug fixes
- Prefill datasource title
- Decrease field width
- Save button should have loading state
- Back button in form screen
- Right align save button
- Add new plugin images
and other fixes
2020-04-28 06:52:53 +00:00

40 lines
953 B
TypeScript

import { Component } from "react";
import { ControlType } from "constants/PropertyControlConstants";
import { InputType } from "widgets/InputWidget";
abstract class BaseControl<P extends ControlProps, S = {}> extends Component<
P,
S
> {
abstract getControlType(): ControlType;
}
export interface ControlBuilder<T extends ControlProps> {
buildPropertyControl(controlProps: T): JSX.Element;
}
export interface ControlProps extends ControlData, ControlFunctions {
key?: string;
extraData?: ControlData[];
}
export interface ControlData {
id: string;
label: string;
configProperty: string;
helpText?: string;
isJSConvertible?: boolean;
controlType: ControlType;
propertyValue?: any;
isValid: boolean;
validationMessage?: string;
dataType?: InputType;
isRequired?: boolean;
}
export interface ControlFunctions {
onPropertyChange?: (propertyName: string, propertyValue: string) => void;
}
export default BaseControl;