Files
twenty/front/src/modules/ui/components/inputs/TextInput.tsx
T

54 lines
1.4 KiB
TypeScript

import { ChangeEvent, useState } from 'react';
import styled from '@emotion/styled';
type OwnProps = {
value: string;
onChange?: (text: string) => void;
placeholder?: string;
fullWidth?: boolean;
};
const StyledInput = styled.input<{ fullWidth: boolean }>`
background-color: ${({ theme }) => theme.lighterBackgroundTransparent};
border: 1px solid ${({ theme }) => theme.lightBorder};
border-radius: 4px;
padding: ${({ theme }) => theme.spacing(2)} ${({ theme }) =>
theme.spacing(3)};
color: ${({ theme }) => theme.text80};
outline: none;
width: ${({ fullWidth, theme }) =>
fullWidth ? `calc(100% - ${theme.spacing(6)})` : 'auto'};
&::placeholder,
&::-webkit-input-placeholder {
color: ${({ theme }) => theme.text30}
font-family: ${({ theme }) => theme.fontFamily};;
font-weight: ${({ theme }) => theme.fontWeightMedium};
}
margin-bottom: ${({ theme }) => theme.spacing(3)};
`;
export function TextInput({
value,
onChange,
placeholder,
fullWidth,
}: OwnProps): JSX.Element {
const [internalValue, setInternalValue] = useState(value);
return (
<StyledInput
fullWidth={fullWidth ?? false}
value={internalValue}
placeholder={placeholder}
onChange={(event: ChangeEvent<HTMLInputElement>) => {
setInternalValue(event.target.value);
if (onChange) {
onChange(event.target.value);
}
}}
/>
);
}