mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
75 lines
1.6 KiB
TypeScript
75 lines
1.6 KiB
TypeScript
import './InputWithLabel.styles.scss';
|
|
|
|
import { Button, Input, Typography } from 'antd';
|
|
import cx from 'classnames';
|
|
import { X } from 'lucide-react';
|
|
import { useState } from 'react';
|
|
|
|
function InputWithLabel({
|
|
label,
|
|
initialValue,
|
|
placeholder,
|
|
type,
|
|
onClose,
|
|
labelAfter,
|
|
onChange,
|
|
className,
|
|
closeIcon,
|
|
}: {
|
|
label: string;
|
|
initialValue?: string | number;
|
|
placeholder: string;
|
|
type?: string;
|
|
onClose?: () => void;
|
|
labelAfter?: boolean;
|
|
onChange: (value: string) => void;
|
|
className?: string;
|
|
closeIcon?: React.ReactNode;
|
|
}): JSX.Element {
|
|
const [inputValue, setInputValue] = useState<string>(
|
|
initialValue ? initialValue.toString() : '',
|
|
);
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>): void => {
|
|
setInputValue(e.target.value);
|
|
onChange?.(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className={cx('input-with-label', className, {
|
|
labelAfter,
|
|
})}
|
|
>
|
|
{!labelAfter && <Typography.Text className="label">{label}</Typography.Text>}
|
|
<Input
|
|
className="input"
|
|
placeholder={placeholder}
|
|
type={type}
|
|
value={inputValue}
|
|
onChange={handleChange}
|
|
name={label.toLowerCase()}
|
|
/>
|
|
{labelAfter && <Typography.Text className="label">{label}</Typography.Text>}
|
|
{onClose && (
|
|
<Button
|
|
className="periscope-btn ghost close-btn"
|
|
icon={closeIcon || <X size={16} />}
|
|
onClick={onClose}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
InputWithLabel.defaultProps = {
|
|
type: 'text',
|
|
onClose: undefined,
|
|
labelAfter: false,
|
|
initialValue: undefined,
|
|
className: undefined,
|
|
closeIcon: undefined,
|
|
};
|
|
|
|
export default InputWithLabel;
|