PromucFlow_constructor/app/client/src/components/designSystems/appsmith/TextInputComponent.tsx
2019-11-13 11:34:11 +00:00

79 lines
2.0 KiB
TypeScript

import React from "react";
import styled from "styled-components";
import { WrappedFieldInputProps, WrappedFieldMetaProps } from "redux-form";
import { IconName, InputGroup, MaybeElement } from "@blueprintjs/core";
import { ComponentProps } from "./BaseComponent";
const TextInput = styled(InputGroup)`
flex: 1;
&&& input {
border: 1px solid ${props => props.theme.colors.inputInactiveBorders};
border-radius: 4px;
box-shadow: none;
height: 32px;
background-color: ${props => props.theme.colors.textOnDarkBG};
&:focus {
border-color: ${props => props.theme.colors.secondary};
background-color: ${props => props.theme.colors.textOnDarkBG};
outline: 0;
}
}
&&&&.bp3-input-group .bp3-input:not(:first-child) {
padding-left: 35px;
}
.bp3-icon {
border-radius: 4px 0 0 4px;
margin: 0;
height: 32px;
width: 30px;
display: flex;
align-items: center;
justify-content: center;
background-color: #eef2f5;
svg {
height: 20px;
width: 20px;
path {
fill: #979797;
}
}
}
`;
const InputContainer = styled.div`
display: flex;
flex: 1;
flex-direction: column;
`;
const ErrorText = styled.span`
height: 10px;
padding: 3px;
font-size: 10px;
color: ${props => props.theme.colors.error};
`;
export interface TextInputProps {
placeholderMessage?: string;
input?: Partial<WrappedFieldInputProps>;
meta?: WrappedFieldMetaProps;
icon?: IconName | MaybeElement;
showError?: boolean;
}
export const BaseTextInput = (props: TextInputProps) => {
const { placeholderMessage, input, meta, icon, showError } = props;
return (
<InputContainer>
<TextInput {...input} placeholder={placeholderMessage} leftIcon={icon} />
{showError && <ErrorText>{meta && meta.touched && meta.error}</ErrorText>}
</InputContainer>
);
};
const TextInputComponent = (props: TextInputProps & ComponentProps) => {
return <BaseTextInput {...props} />;
};
export default TextInputComponent;