ConceptPortal-public/rsconcept/frontend/src/components/ui/TextInput.tsx
2024-05-11 21:47:22 +03:00

64 lines
1.3 KiB
TypeScript

import clsx from 'clsx';
import { CProps } from '../props';
import Label from './Label';
interface TextInputProps extends CProps.Editor, CProps.Colors, CProps.Input {
dense?: boolean;
allowEnter?: boolean;
}
function preventEnterCapture(event: React.KeyboardEvent<HTMLInputElement>) {
if (event.key === 'Enter') {
event.preventDefault();
}
}
function TextInput({
id,
label,
dense,
noBorder,
noOutline,
allowEnter,
disabled,
className,
colors = 'clr-input',
onKeyDown,
...restProps
}: TextInputProps) {
return (
<div
className={clsx(
{
'flex flex-col gap-2': !dense,
'flex items-center gap-3': dense
},
dense && className
)}
>
<Label text={label} htmlFor={id} />
<input
id={id}
className={clsx(
'py-2',
'leading-tight truncate hover:text-clip',
{
'px-3': !noBorder || !disabled,
'flex-grow max-w-full': dense,
'border': !noBorder,
'clr-outline': !noOutline
},
colors,
!dense && className
)}
onKeyDown={!allowEnter && !onKeyDown ? preventEnterCapture : onKeyDown}
disabled={disabled}
{...restProps}
/>
</div>
);
}
export default TextInput;