PromucFlow_constructor/app/client/src/components/propertyControls/InputTextControl.tsx
Satish Gandham 83538ad74d
feat: Bundle optimization and first load improvements (#21667)
Co-authored-by: Ivan Akulov <mail@iamakulov.com>
Co-authored-by: Satish Gandham <hello@satishgandham.com>
Co-authored-by: Ivan Akulov <iamakulov@outlook.com>
Co-authored-by: Aishwarya UR <aishwarya@appsmith.com>
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: somangshu <somangshu.goswami1508@gmail.com>
2023-05-11 10:56:03 +05:30

145 lines
3.8 KiB
TypeScript

import React, { useContext } from "react";
import type { ControlProps } from "./BaseControl";
import BaseControl from "./BaseControl";
import { StyledDynamicInput } from "./StyledControls";
import type { InputType } from "components/constants";
import type { CodeEditorExpected } from "components/editorComponents/CodeEditor";
import {
CodeEditorBorder,
EditorModes,
EditorSize,
EditorTheme,
TabBehaviour,
} from "components/editorComponents/CodeEditor/EditorConfig";
import { CollapseContext } from "pages/Editor/PropertyPane/PropertySection";
import LazyCodeEditor from "../editorComponents/LazyCodeEditor";
import type { AdditionalDynamicDataTree } from "utils/autocomplete/customTreeTypeDefCreator";
export function InputText(props: {
label: string;
value: string;
onBlur?: () => void;
onChange: (event: React.ChangeEvent<HTMLTextAreaElement> | string) => void;
onFocus?: () => void;
evaluatedValue?: any;
expected?: CodeEditorExpected;
placeholder?: string;
dataTreePath?: string;
additionalAutocomplete?: AdditionalDynamicDataTree;
theme?: EditorTheme;
hideEvaluatedValue?: boolean;
}) {
const {
dataTreePath,
evaluatedValue,
expected,
hideEvaluatedValue,
label,
onBlur,
onChange,
onFocus,
placeholder,
value,
} = props;
//subscribing to context to help re-render component on Property section open or close
const isOpen = useContext(CollapseContext);
return (
<StyledDynamicInput>
<LazyCodeEditor
additionalDynamicData={props.additionalAutocomplete}
border={CodeEditorBorder.ALL_SIDE}
dataTreePath={dataTreePath}
evaluatedPopUpLabel={label}
evaluatedValue={evaluatedValue}
expected={expected}
hideEvaluatedValue={hideEvaluatedValue}
hoverInteraction
input={{
value: value,
onChange: onChange,
}}
isEditorHidden={!isOpen}
mode={EditorModes.TEXT_WITH_BINDING}
onEditorBlur={onBlur}
onEditorFocus={onFocus}
placeholder={placeholder}
size={EditorSize.EXTENDED}
tabBehaviour={TabBehaviour.INDENT}
theme={props.theme || EditorTheme.LIGHT}
/>
</StyledDynamicInput>
);
}
class InputTextControl extends BaseControl<InputControlProps> {
render() {
const {
additionalAutoComplete,
dataTreePath,
defaultValue,
expected,
hideEvaluatedValue,
label,
onBlur,
onFocus,
placeholderText,
propertyValue,
} = this.props;
return (
<InputText
additionalAutocomplete={additionalAutoComplete}
dataTreePath={dataTreePath}
expected={expected}
hideEvaluatedValue={hideEvaluatedValue}
label={label}
onBlur={onBlur}
onChange={this.onTextChange}
onFocus={onFocus}
placeholder={placeholderText}
theme={this.props.theme}
value={propertyValue !== undefined ? propertyValue : defaultValue}
/>
);
}
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, true);
};
static getControlType() {
return "INPUT_TEXT";
}
}
export interface InputControlProps extends ControlProps {
placeholderText: string;
inputType: InputType;
validationMessage?: string;
isDisabled?: boolean;
defaultValue?: any;
onFocus?: () => void;
onBlur?: () => void;
}
export default InputTextControl;