2022-01-18 07:52:24 +00:00
|
|
|
import React from "react";
|
|
|
|
|
import styled from "styled-components";
|
|
|
|
|
import { labelStyle } from "constants/DefaultTheme";
|
|
|
|
|
import { ComponentProps } from "widgets/BaseComponent";
|
|
|
|
|
import {
|
|
|
|
|
FontStyleTypes,
|
|
|
|
|
TextSize,
|
|
|
|
|
TEXT_SIZES,
|
|
|
|
|
} from "constants/WidgetConstants";
|
|
|
|
|
import {
|
|
|
|
|
Alignment,
|
|
|
|
|
Intent,
|
|
|
|
|
NumericInput,
|
|
|
|
|
IconName,
|
|
|
|
|
InputGroup,
|
|
|
|
|
Label,
|
|
|
|
|
Classes,
|
|
|
|
|
ControlGroup,
|
|
|
|
|
TextArea,
|
|
|
|
|
Tag,
|
|
|
|
|
Position,
|
|
|
|
|
} from "@blueprintjs/core";
|
|
|
|
|
import Tooltip from "components/ads/Tooltip";
|
|
|
|
|
import { ReactComponent as HelpIcon } from "assets/icons/control/help.svg";
|
|
|
|
|
import { IconWrapper } from "constants/IconConstants";
|
|
|
|
|
|
|
|
|
|
import { Colors } from "constants/Colors";
|
|
|
|
|
import _, { isNil } from "lodash";
|
|
|
|
|
import {
|
|
|
|
|
createMessage,
|
|
|
|
|
INPUT_WIDGET_DEFAULT_VALIDATION_ERROR,
|
2022-02-11 18:08:46 +00:00
|
|
|
} from "@appsmith/constants/messages";
|
2022-01-18 07:52:24 +00:00
|
|
|
import { InputTypes } from "../constants";
|
|
|
|
|
|
|
|
|
|
// TODO(abhinav): All of the following imports should not be in widgets.
|
|
|
|
|
import ErrorTooltip from "components/editorComponents/ErrorTooltip";
|
|
|
|
|
import Icon from "components/ads/Icon";
|
|
|
|
|
import { InputType } from "widgets/InputWidget/constants";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* All design system component specific logic goes here.
|
|
|
|
|
* Ex. Blueprint has a separate 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const InputComponentWrapper = styled((props) => (
|
|
|
|
|
<ControlGroup
|
|
|
|
|
{..._.omit(props, [
|
|
|
|
|
"hasError",
|
|
|
|
|
"numeric",
|
|
|
|
|
"labelTextColor",
|
|
|
|
|
"allowCurrencyChange",
|
|
|
|
|
"compactMode",
|
|
|
|
|
"labelStyle",
|
|
|
|
|
"labelTextSize",
|
|
|
|
|
"multiline",
|
|
|
|
|
"numeric",
|
|
|
|
|
"inputType",
|
|
|
|
|
])}
|
|
|
|
|
/>
|
|
|
|
|
))<{
|
|
|
|
|
numeric: boolean;
|
|
|
|
|
multiline: string;
|
|
|
|
|
hasError: boolean;
|
|
|
|
|
allowCurrencyChange?: boolean;
|
|
|
|
|
disabled?: boolean;
|
|
|
|
|
inputType: InputType;
|
|
|
|
|
}>`
|
|
|
|
|
flex-direction: ${(props) => (props.compactMode ? "row" : "column")};
|
|
|
|
|
&&&& {
|
|
|
|
|
.currency-type-filter,
|
|
|
|
|
.country-type-filter {
|
|
|
|
|
width: fit-content;
|
|
|
|
|
height: 36px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 16;
|
|
|
|
|
&:hover {
|
|
|
|
|
border: 1px solid ${Colors.GREY_5} !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.${Classes.INPUT} {
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.inputType === InputTypes.CURRENCY &&
|
|
|
|
|
props.allowCurrencyChange &&
|
|
|
|
|
`
|
|
|
|
|
padding-left: 45px;`};
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.inputType === InputTypes.CURRENCY &&
|
|
|
|
|
!props.allowCurrencyChange &&
|
|
|
|
|
`
|
|
|
|
|
padding-left: 35px;`};
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.inputType === InputTypes.PHONE_NUMBER &&
|
|
|
|
|
`padding-left: 85px;
|
|
|
|
|
`};
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
border-color: ${({ hasError }) =>
|
|
|
|
|
hasError ? `${Colors.DANGER_SOLID} !important;` : `${Colors.GREY_3};`}
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
height: ${(props) => (props.multiline === "true" ? "100%" : "inherit")};
|
|
|
|
|
width: 100%;
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.numeric &&
|
|
|
|
|
`
|
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
|
${props.hasError ? "" : "border-right-width: 0px;"}
|
|
|
|
|
`}
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.inputType === "PASSWORD" &&
|
|
|
|
|
`
|
|
|
|
|
& + .bp3-input-action {
|
|
|
|
|
height: 36px;
|
|
|
|
|
width: 36px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
.password-input {
|
|
|
|
|
color: ${Colors.GREY_6};
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 100%;
|
|
|
|
|
svg {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: ${Colors.GREY_2};
|
|
|
|
|
color: ${Colors.GREY_10};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`}
|
|
|
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
|
|
|
&:active {
|
|
|
|
|
border-color: ${({ hasError }) =>
|
|
|
|
|
hasError ? Colors.DANGER_SOLID : Colors.HIT_GRAY};
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
border-left: 1px solid ${Colors.GREY_5};
|
|
|
|
|
border-right: 1px solid ${Colors.GREY_5};
|
|
|
|
|
border-color: ${Colors.GREY_5};
|
|
|
|
|
}
|
|
|
|
|
&:focus {
|
|
|
|
|
border-color: ${({ hasError }) =>
|
|
|
|
|
hasError ? Colors.DANGER_SOLID : Colors.MYSTIC};
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
border: 1px solid ${Colors.GREEN_1};
|
|
|
|
|
box-shadow: 0px 0px 0px 2px ${Colors.GREEN_2} !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:disabled {
|
|
|
|
|
background-color: ${Colors.GREY_1};
|
|
|
|
|
border: 1.2px solid ${Colors.GREY_3};
|
|
|
|
|
& + .bp3-input-action {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.${Classes.INPUT_GROUP} {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
.bp3-tag {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: #5c7080;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
&.${Classes.DISABLED} + .bp3-button-group.bp3-vertical {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
button {
|
|
|
|
|
background: ${Colors.GREY_1};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.${Classes.CONTROL_GROUP} {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
height: 100%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
label {
|
|
|
|
|
${labelStyle}
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
align-self: flex-start;
|
|
|
|
|
color: ${(props) => props.labelTextColor || "inherit"};
|
|
|
|
|
font-size: ${(props) => props.labelTextSize};
|
|
|
|
|
font-weight: ${(props) =>
|
|
|
|
|
props?.labelStyle?.includes(FontStyleTypes.BOLD) ? "bold" : "normal"};
|
|
|
|
|
font-style: ${(props) =>
|
|
|
|
|
props?.labelStyle?.includes(FontStyleTypes.ITALIC) ? "italic" : ""};
|
|
|
|
|
text-decoration: ${(props) =>
|
|
|
|
|
props?.labelStyle?.includes(FontStyleTypes.UNDERLINE)
|
|
|
|
|
? "underline"
|
|
|
|
|
: ""};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&&&& .bp3-input-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
> {
|
|
|
|
|
&.bp3-icon:first-child {
|
|
|
|
|
top: 3px;
|
|
|
|
|
}
|
|
|
|
|
input:not(:first-child) {
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
|
|
|
|
|
&:hover:not(:focus) {
|
|
|
|
|
border-left: 1px solid ${Colors.GREY_5};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
${(props) => {
|
|
|
|
|
if (props.inputType === InputTypes.PHONE_NUMBER) {
|
|
|
|
|
return `
|
|
|
|
|
> {
|
|
|
|
|
input:not(:first-child) {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
.currency-type-filter,
|
|
|
|
|
.currency-type-trigger,
|
|
|
|
|
.country-type-filter,
|
|
|
|
|
.country-type-trigger {
|
|
|
|
|
position: static;
|
|
|
|
|
background: rgb(255, 255, 255);
|
|
|
|
|
border-width: 1.2px 0px 1.2px 1.2px;
|
|
|
|
|
border-top-style: solid;
|
|
|
|
|
border-bottom-style: solid;
|
|
|
|
|
border-left-style: solid;
|
|
|
|
|
border-top-color: rgb(235, 235, 235);
|
|
|
|
|
border-bottom-color: rgb(235, 235, 235);
|
|
|
|
|
border-left-color: rgb(235, 235, 235);
|
|
|
|
|
border-image: initial;
|
|
|
|
|
color: rgb(9, 7, 7);
|
|
|
|
|
border-right-style: initial;
|
|
|
|
|
border-right-color: initial;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const StyledNumericInput = styled(NumericInput)`
|
|
|
|
|
&&&& .bp3-button-group.bp3-vertical {
|
|
|
|
|
border: 1.2px solid ${Colors.GREY_3};
|
|
|
|
|
border-left: none;
|
|
|
|
|
button {
|
|
|
|
|
background: ${Colors.WHITE};
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
min-width: 24px;
|
|
|
|
|
width: 24px;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
&:hover {
|
|
|
|
|
background: ${Colors.GREY_2};
|
|
|
|
|
span {
|
|
|
|
|
color: ${Colors.GREY_10};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:focus {
|
|
|
|
|
border: 1px solid ${Colors.GREEN_1};
|
|
|
|
|
box-shadow: 0px 0px 0px 2px ${Colors.GREEN_2};
|
|
|
|
|
}
|
|
|
|
|
span {
|
|
|
|
|
color: ${Colors.GREY_6};
|
|
|
|
|
svg {
|
|
|
|
|
width: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const ToolTipIcon = styled(IconWrapper)`
|
|
|
|
|
cursor: help;
|
|
|
|
|
margin-top: 1.5px;
|
|
|
|
|
&&&:hover {
|
|
|
|
|
svg {
|
|
|
|
|
path {
|
|
|
|
|
fill: #716e6e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const TextLableWrapper = styled.div<{
|
|
|
|
|
compactMode: boolean;
|
|
|
|
|
}>`
|
|
|
|
|
${(props) =>
|
|
|
|
|
props.compactMode ? "&&& {margin-right: 5px;}" : "width: 100%;"}
|
|
|
|
|
display: flex;
|
|
|
|
|
max-height: 20px;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const TextInputWrapper = styled.div`
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
type InputHTMLType = "TEXT" | "NUMBER" | "PASSWORD" | "EMAIL" | "TEL";
|
|
|
|
|
|
|
|
|
|
export const isNumberInputType = (inputHTMLType: InputHTMLType = "TEXT") => {
|
|
|
|
|
return inputHTMLType === "NUMBER";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class BaseInputComponent extends React.Component<
|
|
|
|
|
BaseInputComponentProps,
|
|
|
|
|
InputComponentState
|
|
|
|
|
> {
|
|
|
|
|
constructor(props: BaseInputComponentProps) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.state = { showPassword: false };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setFocusState = (isFocused: boolean) => {
|
|
|
|
|
this.props.onFocusChange(isFocused);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onTextChange = (
|
|
|
|
|
event:
|
|
|
|
|
| React.ChangeEvent<HTMLInputElement>
|
|
|
|
|
| React.ChangeEvent<HTMLTextAreaElement>,
|
|
|
|
|
) => {
|
|
|
|
|
this.props.onValueChange(event.target.value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onNumberChange = (valueAsNum: number, valueAsString: string) => {
|
|
|
|
|
this.props.onValueChange(valueAsString);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
getLeftIcon = () => {
|
|
|
|
|
if (this.props.iconName && this.props.iconAlign === "left") {
|
|
|
|
|
return this.props.iconName;
|
|
|
|
|
}
|
|
|
|
|
return this.props.leftIcon;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
getType(inputType: InputHTMLType = "TEXT") {
|
|
|
|
|
switch (inputType) {
|
|
|
|
|
case "PASSWORD":
|
|
|
|
|
return this.state.showPassword ? "text" : "password";
|
|
|
|
|
case "TEL":
|
|
|
|
|
return "tel";
|
|
|
|
|
case "EMAIL":
|
|
|
|
|
return "email";
|
|
|
|
|
default:
|
|
|
|
|
return "text";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onKeyDownTextArea = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
|
|
|
|
const isEnterKey = e.key === "Enter" || e.keyCode === 13;
|
|
|
|
|
const { disableNewLineOnPressEnterKey } = this.props;
|
|
|
|
|
if (isEnterKey && disableNewLineOnPressEnterKey && !e.shiftKey) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
if (typeof this.props.onKeyDown === "function") {
|
|
|
|
|
this.props.onKeyDown(e);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
|
|
|
if (typeof this.props.onKeyDown === "function") {
|
|
|
|
|
this.props.onKeyDown(e);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private numericInputComponent = () => {
|
|
|
|
|
const leftIcon = this.getLeftIcon();
|
|
|
|
|
const conditionalProps: Record<string, number> = {};
|
|
|
|
|
|
|
|
|
|
if (!isNil(this.props.maxNum)) {
|
|
|
|
|
conditionalProps.max = this.props.maxNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isNil(this.props.minNum)) {
|
|
|
|
|
conditionalProps.min = this.props.minNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<StyledNumericInput
|
|
|
|
|
allowNumericCharactersOnly
|
|
|
|
|
autoFocus={this.props.autoFocus}
|
|
|
|
|
className={this.props.isLoading ? "bp3-skeleton" : Classes.FILL}
|
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
|
intent={this.props.intent}
|
|
|
|
|
leftIcon={leftIcon}
|
|
|
|
|
majorStepSize={null}
|
|
|
|
|
minorStepSize={null}
|
|
|
|
|
onBlur={() => this.setFocusState(false)}
|
|
|
|
|
onFocus={() => this.setFocusState(true)}
|
|
|
|
|
onKeyDown={this.onKeyDown}
|
|
|
|
|
onValueChange={this.onNumberChange}
|
|
|
|
|
placeholder={this.props.placeholder}
|
|
|
|
|
stepSize={this.props.stepSize}
|
|
|
|
|
value={this.props.value}
|
|
|
|
|
{...conditionalProps}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private textAreaInputComponent = () => (
|
|
|
|
|
<TextArea
|
|
|
|
|
autoFocus={this.props.autoFocus}
|
|
|
|
|
className={this.props.isLoading ? "bp3-skeleton" : ""}
|
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
|
growVertically={false}
|
|
|
|
|
intent={this.props.intent}
|
|
|
|
|
maxLength={this.props.maxChars}
|
|
|
|
|
onBlur={() => this.setFocusState(false)}
|
|
|
|
|
onChange={this.onTextChange}
|
|
|
|
|
onFocus={() => this.setFocusState(true)}
|
|
|
|
|
onKeyDown={this.onKeyDownTextArea}
|
|
|
|
|
placeholder={this.props.placeholder}
|
|
|
|
|
style={{ resize: "none" }}
|
|
|
|
|
value={this.props.value}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
private textInputComponent = (isTextArea: boolean) =>
|
|
|
|
|
isTextArea ? (
|
|
|
|
|
this.textAreaInputComponent()
|
|
|
|
|
) : (
|
|
|
|
|
<InputGroup
|
|
|
|
|
autoFocus={this.props.autoFocus}
|
|
|
|
|
className={this.props.isLoading ? "bp3-skeleton" : ""}
|
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
|
intent={this.props.intent}
|
|
|
|
|
leftIcon={
|
|
|
|
|
this.props.iconName && this.props.iconAlign === "left"
|
|
|
|
|
? this.props.iconName
|
|
|
|
|
: this.props.leftIcon
|
|
|
|
|
}
|
|
|
|
|
maxLength={this.props.maxChars}
|
|
|
|
|
onBlur={() => this.setFocusState(false)}
|
|
|
|
|
onChange={this.onTextChange}
|
|
|
|
|
onFocus={() => this.setFocusState(true)}
|
|
|
|
|
onKeyDown={this.onKeyDown}
|
|
|
|
|
placeholder={this.props.placeholder}
|
|
|
|
|
rightElement={
|
|
|
|
|
this.props.inputType === "PASSWORD" ? (
|
|
|
|
|
<Icon
|
|
|
|
|
className="password-input"
|
|
|
|
|
name={this.state.showPassword ? "eye-off" : "eye-on"}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
this.setState({ showPassword: !this.state.showPassword });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
) : this.props.iconName && this.props.iconAlign === "right" ? (
|
|
|
|
|
<Tag icon={this.props.iconName} />
|
|
|
|
|
) : (
|
|
|
|
|
undefined
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
spellCheck={this.props.spellCheck}
|
|
|
|
|
type={this.getType(this.props.inputHTMLType)}
|
|
|
|
|
value={this.props.value}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
private renderInputComponent = (
|
|
|
|
|
inputHTMLType: InputHTMLType = "TEXT",
|
|
|
|
|
isTextArea: boolean,
|
|
|
|
|
) =>
|
|
|
|
|
isNumberInputType(inputHTMLType)
|
|
|
|
|
? this.numericInputComponent()
|
|
|
|
|
: this.textInputComponent(isTextArea);
|
|
|
|
|
|
|
|
|
|
onStepIncrement = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
this.props.onStep && this.props.onStep(1);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onStepDecrement = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
this.props.onStep && this.props.onStep(-1);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
if (isNumberInputType(this.props.inputHTMLType) && this.props.onStep) {
|
|
|
|
|
const element: any = document.querySelector(
|
|
|
|
|
`.appsmith_widget_${this.props.widgetId} .bp3-button-group`,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (element !== null && element.childNodes) {
|
|
|
|
|
element.childNodes[0].addEventListener(
|
|
|
|
|
"mousedown",
|
|
|
|
|
this.onStepIncrement,
|
|
|
|
|
);
|
|
|
|
|
element.childNodes[1].addEventListener(
|
|
|
|
|
"mousedown",
|
|
|
|
|
this.onStepDecrement,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
|
if (isNumberInputType(this.props.inputHTMLType) && this.props.onStep) {
|
|
|
|
|
const element: any = document.querySelectorAll(
|
|
|
|
|
`.appsmith_widget_${this.props.widgetId} .bp3-button`,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (element !== null && element.childNodes) {
|
|
|
|
|
element.childNodes[0].removeEventListener(
|
|
|
|
|
"click",
|
|
|
|
|
this.onStepIncrement,
|
|
|
|
|
);
|
|
|
|
|
element.childNodes[1].removeEventListener(
|
|
|
|
|
"click",
|
|
|
|
|
this.onStepDecrement,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
const {
|
|
|
|
|
label,
|
|
|
|
|
labelStyle,
|
|
|
|
|
labelTextColor,
|
|
|
|
|
labelTextSize,
|
|
|
|
|
tooltip,
|
|
|
|
|
} = this.props;
|
|
|
|
|
const showLabelHeader = label || tooltip;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<InputComponentWrapper
|
|
|
|
|
compactMode={this.props.compactMode}
|
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
|
fill
|
|
|
|
|
hasError={this.props.isInvalid}
|
|
|
|
|
inputType={this.props.inputType}
|
|
|
|
|
labelStyle={labelStyle}
|
|
|
|
|
labelTextColor={labelTextColor}
|
|
|
|
|
labelTextSize={labelTextSize ? TEXT_SIZES[labelTextSize] : "inherit"}
|
|
|
|
|
multiline={(!!this.props.multiline).toString()}
|
|
|
|
|
numeric={isNumberInputType(this.props.inputHTMLType)}
|
|
|
|
|
>
|
|
|
|
|
{showLabelHeader && (
|
|
|
|
|
<TextLableWrapper
|
|
|
|
|
className="t--input-label-wrapper"
|
|
|
|
|
compactMode={this.props.compactMode}
|
|
|
|
|
>
|
|
|
|
|
{this.props.label && (
|
|
|
|
|
<Label
|
|
|
|
|
className={`
|
|
|
|
|
t--input-widget-label ${
|
|
|
|
|
this.props.isLoading
|
|
|
|
|
? Classes.SKELETON
|
|
|
|
|
: Classes.TEXT_OVERFLOW_ELLIPSIS
|
|
|
|
|
}
|
|
|
|
|
`}
|
|
|
|
|
>
|
|
|
|
|
{this.props.label}
|
|
|
|
|
</Label>
|
|
|
|
|
)}
|
|
|
|
|
{this.props.tooltip && (
|
|
|
|
|
<Tooltip
|
|
|
|
|
content={this.props.tooltip}
|
|
|
|
|
hoverOpenDelay={200}
|
|
|
|
|
position={Position.TOP}
|
|
|
|
|
>
|
|
|
|
|
<ToolTipIcon
|
|
|
|
|
color={Colors.SILVER_CHALICE}
|
|
|
|
|
height={14}
|
|
|
|
|
width={14}
|
|
|
|
|
>
|
|
|
|
|
<HelpIcon className="t--input-widget-tooltip" />
|
|
|
|
|
</ToolTipIcon>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
)}
|
|
|
|
|
</TextLableWrapper>
|
|
|
|
|
)}
|
|
|
|
|
<TextInputWrapper>
|
|
|
|
|
<ErrorTooltip
|
|
|
|
|
isOpen={this.props.isInvalid && this.props.showError}
|
|
|
|
|
message={
|
|
|
|
|
this.props.errorMessage ||
|
|
|
|
|
createMessage(INPUT_WIDGET_DEFAULT_VALIDATION_ERROR)
|
|
|
|
|
}
|
|
|
|
|
>
|
|
|
|
|
{this.renderInputComponent(
|
|
|
|
|
this.props.inputHTMLType,
|
|
|
|
|
!!this.props.multiline,
|
|
|
|
|
)}
|
|
|
|
|
</ErrorTooltip>
|
|
|
|
|
</TextInputWrapper>
|
|
|
|
|
</InputComponentWrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface InputComponentState {
|
|
|
|
|
showPassword?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface BaseInputComponentProps extends ComponentProps {
|
|
|
|
|
value: string;
|
|
|
|
|
inputType: InputType;
|
|
|
|
|
inputHTMLType?: InputHTMLType;
|
|
|
|
|
disabled?: boolean;
|
|
|
|
|
intent?: Intent;
|
|
|
|
|
defaultValue?: string | number;
|
|
|
|
|
label: string;
|
|
|
|
|
labelTextColor?: string;
|
|
|
|
|
labelTextSize?: TextSize;
|
|
|
|
|
labelStyle?: string;
|
|
|
|
|
tooltip?: string;
|
|
|
|
|
leftIcon?: IconName | JSX.Element;
|
|
|
|
|
allowNumericCharactersOnly?: boolean;
|
|
|
|
|
fill?: boolean;
|
|
|
|
|
errorMessage?: string;
|
|
|
|
|
onValueChange: (valueAsString: string) => void;
|
|
|
|
|
stepSize?: number;
|
|
|
|
|
placeholder?: string;
|
|
|
|
|
isLoading: boolean;
|
|
|
|
|
multiline?: boolean;
|
|
|
|
|
compactMode: boolean;
|
|
|
|
|
isInvalid: boolean;
|
|
|
|
|
autoFocus?: boolean;
|
|
|
|
|
iconName?: IconName;
|
|
|
|
|
iconAlign?: Omit<Alignment, "center">;
|
|
|
|
|
showError: boolean;
|
|
|
|
|
onFocusChange: (state: boolean) => void;
|
|
|
|
|
disableNewLineOnPressEnterKey?: boolean;
|
|
|
|
|
onKeyDown?: (
|
|
|
|
|
e:
|
|
|
|
|
| React.KeyboardEvent<HTMLTextAreaElement>
|
|
|
|
|
| React.KeyboardEvent<HTMLInputElement>,
|
|
|
|
|
) => void;
|
|
|
|
|
maxChars?: number;
|
|
|
|
|
widgetId: string;
|
|
|
|
|
onStep?: (direction: number) => void;
|
|
|
|
|
spellCheck?: boolean;
|
|
|
|
|
maxNum?: number;
|
|
|
|
|
minNum?: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default BaseInputComponent;
|