PromucFlow_constructor/app/client/src/components/designSystems/blueprint/InputComponent.tsx

226 lines
6.1 KiB
TypeScript
Raw Normal View History

import React from "react";
import styled from "styled-components";
2020-02-06 07:01:25 +00:00
import { labelStyle } from "constants/DefaultTheme";
2019-11-25 05:07:27 +00:00
import { ComponentProps } from "components/designSystems/appsmith/BaseComponent";
2019-10-30 10:23:20 +00:00
import {
Intent,
NumericInput,
IconName,
InputGroup,
Button,
2019-10-31 05:28:11 +00:00
Label,
Text,
2020-01-14 09:50:42 +00:00
Classes,
ControlGroup,
2020-02-06 07:01:25 +00:00
TextArea,
2019-10-30 10:23:20 +00:00
} from "@blueprintjs/core";
2019-11-25 05:07:27 +00:00
import { InputType } from "widgets/InputWidget";
import { WIDGET_PADDING } from "constants/WidgetConstants";
2020-02-06 07:01:25 +00:00
import { Colors } from "constants/Colors";
2019-10-30 10:23:20 +00:00
/**
* All design system component specific logic goes here.
* Ex. Blueprint has a sperarate numeric input and text input so switching between them goes here
* Ex. To set the icon as currency, blue print takes in a set of defined types
* All generic logic like max characters for phone numbers should be 10, should go in the widget
*/
2020-02-06 07:01:25 +00:00
const InputComponentWrapper = styled(ControlGroup)<{ isTextArea: boolean }>`
2020-01-14 09:50:42 +00:00
&&&& {
2020-02-06 07:01:25 +00:00
.${Classes.INPUT} {
2020-01-17 12:34:58 +00:00
box-shadow: none;
2020-02-06 07:01:25 +00:00
border: 1px solid ${Colors.GEYSER_LIGHT};
border-radius: ${props => props.theme.radii[1]}px;
height: ${props => (props.isTextArea ? "100%" : "inherit")};
&:active {
border: 1px solid ${Colors.HIT_GRAY};
}
&:focus {
border: 3px solid ${Colors.MYSTIC};
}
2020-01-17 12:34:58 +00:00
}
2020-02-06 07:01:25 +00:00
.${Classes.INPUT_GROUP} {
2020-01-14 09:50:42 +00:00
display: block;
margin: 0;
}
2020-02-06 07:01:25 +00:00
.${Classes.CONTROL_GROUP} {
2020-01-14 09:50:42 +00:00
justify-content: flex-start;
}
2020-02-06 07:01:25 +00:00
height: ${props => (props.isTextArea ? "100%" : "auto")};
align-items: center;
label {
2020-01-28 08:21:22 +00:00
${labelStyle}
flex: 0 1 30%;
2020-02-06 07:01:25 +00:00
margin: 7px ${WIDGET_PADDING * 2}px 0 0;
text-align: right;
2020-02-06 07:01:25 +00:00
align-self: flex-start;
}
}
`;
2019-10-30 10:23:20 +00:00
class InputComponent extends React.Component<
InputComponentProps,
InputComponentState
> {
constructor(props: InputComponentProps) {
super(props);
this.state = { showPassword: false };
}
2020-02-06 07:01:25 +00:00
onTextChange = (
event:
| React.ChangeEvent<HTMLInputElement>
| React.ChangeEvent<HTMLTextAreaElement>,
) => {
2019-10-31 05:28:11 +00:00
this.props.onValueChange(event.target.value);
};
onNumberChange = (valueAsNum: number, valueAsString: string) => {
this.props.onValueChange(valueAsString);
};
isNumberInputType(inputType: InputType) {
return (
2019-11-05 05:09:50 +00:00
inputType === "INTEGER" ||
inputType === "NUMBER" ||
inputType === "CURRENCY"
2019-10-31 05:28:11 +00:00
);
}
getIcon(inputType: InputType) {
switch (inputType) {
case "PHONE_NUMBER":
return "phone";
case "SEARCH":
return "search";
case "EMAIL":
return "envelope";
default:
return undefined;
}
}
getType(inputType: InputType) {
switch (inputType) {
case "PASSWORD":
2020-01-14 09:50:42 +00:00
return this.state.showPassword ? "text" : "password";
2019-10-31 05:28:11 +00:00
case "EMAIL":
return "email";
case "SEARCH":
return "search";
default:
return "text";
}
}
2020-02-06 07:01:25 +00:00
private numericInputComponent = () => (
<NumericInput
placeholder={this.props.placeholder}
min={this.props.minNum}
max={this.props.maxNum}
maxLength={this.props.maxChars}
disabled={this.props.disabled}
intent={this.props.intent}
className={this.props.isLoading ? "bp3-skeleton" : Classes.FILL}
defaultValue={this.props.defaultValue}
onValueChange={this.onNumberChange}
leftIcon={
this.props.inputType === "PHONE_NUMBER" ? "phone" : this.props.leftIcon
}
type={this.props.inputType === "PHONE_NUMBER" ? "tel" : undefined}
allowNumericCharactersOnly
stepSize={this.props.stepSize}
/>
);
private textAreaInputComponent = (
<TextArea
placeholder={this.props.placeholder}
disabled={this.props.disabled}
maxLength={this.props.maxChars}
intent={this.props.intent}
onChange={this.onTextChange}
defaultValue={this.props.defaultValue}
className={this.props.isLoading ? "bp3-skeleton" : ""}
growVertically={false}
/>
);
private textInputComponent = (isTextArea: boolean) =>
isTextArea ? (
this.textAreaInputComponent
) : (
<InputGroup
placeholder={this.props.placeholder}
disabled={this.props.disabled}
maxLength={this.props.maxChars}
intent={this.props.intent}
onChange={this.onTextChange}
defaultValue={this.props.defaultValue}
className={this.props.isLoading ? "bp3-skeleton" : ""}
rightElement={
this.props.inputType === "PASSWORD" ? (
<Button
icon={"lock"}
onClick={() => {
this.setState({ showPassword: !this.state.showPassword });
}}
/>
) : (
undefined
)
}
type={this.getType(this.props.inputType)}
leftIcon={this.getIcon(this.props.inputType)}
/>
);
private renderInputComponent = (inputType: InputType, isTextArea: boolean) =>
this.isNumberInputType(inputType)
? this.numericInputComponent()
: this.textInputComponent(isTextArea);
2019-10-31 05:28:11 +00:00
2019-10-30 10:23:20 +00:00
render() {
return (
2020-02-06 07:01:25 +00:00
<InputComponentWrapper fill isTextArea={this.props.isTextArea}>
2020-01-28 11:46:04 +00:00
{this.props.label && (
2020-01-31 11:13:16 +00:00
<Label
className={
this.props.isLoading
? Classes.SKELETON
: Classes.TEXT_OVERFLOW_ELLIPSIS
}
>
{this.props.label}
2020-01-28 11:46:04 +00:00
</Label>
)}
2020-02-06 07:01:25 +00:00
{this.renderInputComponent(this.props.inputType, this.props.isTextArea)}
{this.props.errorMessage && <Text>{this.props.errorMessage}</Text>}
</InputComponentWrapper>
2019-10-30 10:23:20 +00:00
);
}
}
export interface InputComponentState {
showPassword?: boolean;
}
export interface InputComponentProps extends ComponentProps {
2019-10-31 05:28:11 +00:00
inputType: InputType;
2019-10-30 10:23:20 +00:00
disabled?: boolean;
intent?: Intent;
defaultValue?: string;
2019-10-31 05:28:11 +00:00
label: string;
2019-10-30 10:23:20 +00:00
leftIcon?: IconName;
allowNumericCharactersOnly?: boolean;
fill?: boolean;
2019-10-31 05:28:11 +00:00
errorMessage?: string;
maxChars?: number;
2019-10-30 10:23:20 +00:00
maxNum?: number;
minNum?: number;
2019-10-31 05:28:11 +00:00
onValueChange: (valueAsString: string) => void;
2019-10-30 10:23:20 +00:00
stepSize?: number;
placeholder?: string;
2019-12-03 04:41:10 +00:00
isLoading: boolean;
2020-02-06 07:01:25 +00:00
isTextArea: boolean;
2019-10-30 10:23:20 +00:00
}
export default InputComponent;