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 _ from "lodash";
import {
createMessage,
INPUT_WIDGET_DEFAULT_VALIDATION_ERROR,
} from "constants/messages";
import { InputType, InputTypes } from "../constants";
import CurrencyTypeDropdown, {
CurrencyDropdownOptions,
getSelectedCurrency,
} from "./CurrencyCodeDropdown";
import ISDCodeDropdown, {
ISDCodeDropdownOptions,
getSelectedISDCode,
} from "./ISDCodeDropdown";
// TODO(abhinav): All of the following imports should not be in widgets.
import ErrorTooltip from "components/editorComponents/ErrorTooltip";
import Icon from "components/ads/Icon";
/**
* 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) => (
))<{
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;
position: absolute;
display: inline-block;
left: 0;
z-index: 16;
svg {
path {
fill: ${(props) => props.theme.colors.icon?.hover};
}
}
&: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;
}
&.${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"
: ""};
}
}
`;
const StyledNumericInput = styled(NumericInput)`
&&&& .bp3-input-group {
display: flex;
> {
&:first-child:not(input) {
position: static;
background: ${(props) =>
props.disabled ? Colors.GREY_1 : Colors.WHITE};
border: 1.2px solid ${Colors.GREY_3};
border-right: 0;
}
input:not(:first-child) {
padding-left: 5px;
border-left: 1px solid transparent;
z-index: 16;
line-height: 16px;
&:hover:not(:focus) {
border-left: 1px solid ${Colors.GREY_5};
}
}
}
}
&&&& .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;
`;
export const isNumberInputType = (inputType: InputType) => {
return (
inputType === "INTEGER" ||
inputType === "NUMBER" ||
inputType === "CURRENCY" ||
inputType === "PHONE_NUMBER"
);
};
class InputComponent extends React.Component<
InputComponentProps,
InputComponentState
> {
constructor(props: InputComponentProps) {
super(props);
this.state = { showPassword: false };
}
setFocusState = (isFocused: boolean) => {
this.props.onFocusChange(isFocused);
};
onTextChange = (
event:
| React.ChangeEvent
| React.ChangeEvent,
) => {
this.props.onValueChange(event.target.value);
};
onNumberChange = (valueAsNum: number, valueAsString: string) => {
if (this.props.inputType === InputTypes.CURRENCY) {
const fractionDigits = this.props.decimalsInCurrency || 0;
const currentIndexOfDecimal = valueAsString.indexOf(".");
const indexOfDecimal = valueAsString.length - fractionDigits - 1;
if (
valueAsString.includes(".") &&
currentIndexOfDecimal <= indexOfDecimal
) {
let value = valueAsString.split(",").join("");
if (value) {
const locale = navigator.languages?.[0] || "en-US";
const formatter = new Intl.NumberFormat(locale, {
style: "decimal",
minimumFractionDigits: fractionDigits,
});
const decimalValueArray = value.split(".");
//remove extra digits after decimal point
if (
this.props.decimalsInCurrency &&
decimalValueArray[1].length > this.props.decimalsInCurrency
) {
value =
decimalValueArray[0] +
"." +
decimalValueArray[1].substr(0, this.props.decimalsInCurrency);
}
const formattedValue = formatter.format(parseFloat(value));
this.props.onValueChange(formattedValue);
} else {
this.props.onValueChange("");
}
} else {
this.props.onValueChange(valueAsString);
}
} else {
this.props.onValueChange(valueAsString);
}
};
getLeftIcon = (inputType: InputType, disabled: boolean) => {
if (inputType === InputTypes.PHONE_NUMBER) {
const selectedISDCode = getSelectedISDCode(
this.props.phoneNumberCountryCode,
);
return (
);
} else if (inputType === InputTypes.CURRENCY) {
const selectedCurrencyCountryCode = getSelectedCurrency(
this.props.currencyCountryCode,
);
return (
);
} else if (this.props.iconName && this.props.iconAlign === "left") {
return this.props.iconName;
}
return this.props.leftIcon;
};
getIcon(inputType: InputType) {
switch (inputType) {
case "SEARCH":
return "search";
case "EMAIL":
return "envelope";
default:
return undefined;
}
}
getType(inputType: InputType) {
switch (inputType) {
case "PASSWORD":
return this.state.showPassword ? "text" : "password";
case "EMAIL":
return "email";
case "SEARCH":
return "search";
default:
return "text";
}
}
onKeyDownTextArea = (e: React.KeyboardEvent) => {
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) => {
if (typeof this.props.onKeyDown === "function") {
this.props.onKeyDown(e);
}
};
private numericInputComponent = () => {
const leftIcon = this.getLeftIcon(
this.props.inputType,
!!this.props.disabled,
);
const minorStepSize =
this.props.inputType === InputTypes.CURRENCY
? this.props.decimalsInCurrency || 0
: 0;
return (
this.setFocusState(false)}
onFocus={() => this.setFocusState(true)}
onKeyDown={this.onKeyDown}
onValueChange={this.onNumberChange}
placeholder={this.props.placeholder}
stepSize={minorStepSize === 0 ? this.props.stepSize : undefined}
value={this.props.value}
/>
);
};
private textAreaInputComponent = () => (