Migrate to Astro base
This commit is contained in:
70
src/v1-check/components/Form/Input.tsx
Normal file
70
src/v1-check/components/Form/Input.tsx
Normal file
@@ -0,0 +1,70 @@
|
||||
import { type InputHTMLAttributes } from 'react';
|
||||
import styled from '@emotion/styled';
|
||||
import colors from 'v1-check/styles/colors';
|
||||
import { type InputSize, applySize } from 'v1-check/styles/dimensions';
|
||||
|
||||
type Orientation = 'horizontal' | 'vertical';
|
||||
|
||||
interface Props {
|
||||
id: string,
|
||||
value: string,
|
||||
label?: string,
|
||||
placeholder?: string,
|
||||
disabled?: boolean,
|
||||
size?: InputSize,
|
||||
orientation?: Orientation;
|
||||
handleChange: (nweVal: React.ChangeEvent<HTMLInputElement>) => void,
|
||||
};
|
||||
|
||||
type SupportedElements = HTMLInputElement | HTMLLabelElement | HTMLDivElement;
|
||||
interface StyledInputTypes extends InputHTMLAttributes<SupportedElements> {
|
||||
inputSize?: InputSize;
|
||||
orientation?: Orientation;
|
||||
};
|
||||
|
||||
const InputContainer = styled.div<StyledInputTypes>`
|
||||
display: flex;
|
||||
${props => props.orientation === 'vertical' ? 'flex-direction: column;' : ''};
|
||||
`;
|
||||
|
||||
const StyledInput = styled.input<StyledInputTypes>`
|
||||
background: ${colors.background};
|
||||
color: ${colors.textColor};
|
||||
border: none;
|
||||
border-radius: 0.25rem;
|
||||
font-family: PTMono;
|
||||
box-shadow: 3px 3px 0px ${colors.backgroundDarker};
|
||||
&:focus {
|
||||
outline: 1px solid ${colors.primary}
|
||||
}
|
||||
|
||||
${props => applySize(props.inputSize)};
|
||||
`;
|
||||
|
||||
const StyledLabel = styled.label<StyledInputTypes>`
|
||||
color: ${colors.textColor};
|
||||
${props => applySize(props.inputSize)};
|
||||
padding: 0;
|
||||
font-size: 1.6rem;
|
||||
`;
|
||||
|
||||
const Input = (inputProps: Props): JSX.Element => {
|
||||
|
||||
const { id, value, label, placeholder, disabled, size, orientation, handleChange } = inputProps;
|
||||
|
||||
return (
|
||||
<InputContainer orientation={orientation}>
|
||||
{ label && <StyledLabel htmlFor={id} inputSize={size}>{ label }</StyledLabel> }
|
||||
<StyledInput
|
||||
id={id}
|
||||
value={value}
|
||||
placeholder={placeholder}
|
||||
disabled={disabled}
|
||||
onChange={handleChange}
|
||||
inputSize={size}
|
||||
/>
|
||||
</InputContainer>
|
||||
);
|
||||
};
|
||||
|
||||
export default Input;
|
||||
Reference in New Issue
Block a user