PromucFlow_constructor/app/client/src/components/propertyControls/InputTextControl.tsx
Piyush Mishra a4fe0a461e
Table Widget New Features (#2816)
- Each column has more options and can be configured in the property pane instead of the table
- Table level styles can now be set in the property pane
- Property sections are collapsible

Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in>
Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
Co-authored-by: hetunandu <hetu@appsmith.com>
2021-02-16 15:59:08 +05:30

121 lines
2.8 KiB
TypeScript

import React from "react";
import BaseControl, { ControlProps } from "./BaseControl";
import { StyledDynamicInput } from "./StyledControls";
import { InputType } from "widgets/InputWidget";
import CodeEditor from "components/editorComponents/CodeEditor";
import {
EditorModes,
EditorSize,
EditorTheme,
TabBehaviour,
} from "components/editorComponents/CodeEditor/EditorConfig";
export function InputText(props: {
label: string;
value: string;
onChange: (event: React.ChangeEvent<HTMLTextAreaElement> | string) => void;
isValid: boolean;
errorMessage?: string;
evaluatedValue?: any;
expected?: string;
placeholder?: string;
dataTreePath?: string;
additionalAutocomplete?: Record<string, Record<string, unknown>>;
}) {
const {
errorMessage,
expected,
value,
isValid,
onChange,
placeholder,
dataTreePath,
evaluatedValue,
} = props;
return (
<StyledDynamicInput>
<CodeEditor
input={{
value: value,
onChange: onChange,
}}
evaluatedValue={evaluatedValue}
expected={expected}
dataTreePath={dataTreePath}
meta={{
error: isValid ? "" : errorMessage,
touched: true,
}}
theme={EditorTheme.DARK}
mode={EditorModes.TEXT_WITH_BINDING}
tabBehaviour={TabBehaviour.INDENT}
size={EditorSize.EXTENDED}
placeholder={placeholder}
additionalDynamicData={props.additionalAutocomplete}
/>
</StyledDynamicInput>
);
}
class InputTextControl extends BaseControl<InputControlProps> {
render() {
const {
expected,
propertyValue,
isValid,
label,
placeholderText,
dataTreePath,
validationMessage,
defaultValue,
} = this.props;
return (
<InputText
label={label}
value={propertyValue ? propertyValue : defaultValue}
onChange={this.onTextChange}
isValid={isValid}
errorMessage={validationMessage}
expected={expected}
placeholder={placeholderText}
dataTreePath={dataTreePath}
/>
);
}
isNumberType(): boolean {
const { inputType } = this.props;
switch (inputType) {
case "CURRENCY":
case "INTEGER":
case "NUMBER":
case "PHONE_NUMBER":
return true;
default:
return false;
}
}
onTextChange = (event: React.ChangeEvent<HTMLTextAreaElement> | string) => {
let value = event;
if (typeof event !== "string") {
value = event.target.value;
}
this.updateProperty(this.props.propertyName, value);
};
static getControlType() {
return "INPUT_TEXT";
}
}
export interface InputControlProps extends ControlProps {
placeholderText: string;
inputType: InputType;
validationMessage?: string;
isDisabled?: boolean;
defaultValue?: any;
}
export default InputTextControl;