PromucFlow_constructor/app/client/src/pages/propertyControls/InputTextControl.tsx

28 lines
771 B
TypeScript
Raw Normal View History

import React from "react";
import BaseControl, { ControlProps } from "./BaseControl";
import { ControlType } from "../../constants/PropertyControlConstants";
import { InputGroup } from "@blueprintjs/core";
import { InputType } from "../../widgets/InputWidget";
class InputTextControl extends BaseControl<InputControlProps> {
render() {
return <InputGroup onChange={this.onTextChange} />;
}
onTextChange(event: React.ChangeEvent<HTMLInputElement>) {
this.updateProperty(this.props.propertyName, event.target.value);
}
getControlType(): ControlType {
return "INPUT_TEXT";
}
}
export interface InputControlProps extends ControlProps {
placeholderText: string;
inputType: InputType;
isDisabled?: boolean;
}
export default InputTextControl;