mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Install why-did-you-render to detect component updates #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
113 lines
2.7 KiB
TypeScript
113 lines
2.7 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
import { Search } from 'lucide-react';
|
|
|
|
export interface InputProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, type, ...props }, ref) => {
|
|
return (
|
|
<input
|
|
type={type}
|
|
className={cn(
|
|
'flex h-8 w-full rounded-md border border-input bg-colors-background-inverse-weak px-2 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
|
|
className,
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
},
|
|
);
|
|
Input.displayName = 'Input';
|
|
|
|
export interface ExpandedInputProps extends Omit<InputProps, 'prefix'> {
|
|
prefix?: React.ReactNode;
|
|
suffix?: React.ReactNode;
|
|
}
|
|
|
|
const ExpandedInput = ({
|
|
suffix,
|
|
prefix,
|
|
className,
|
|
...props
|
|
}: ExpandedInputProps) => {
|
|
return (
|
|
<div className="relative">
|
|
<span
|
|
className={cn({
|
|
['absolute left-3 top-[50%] translate-y-[-50%]']: prefix,
|
|
})}
|
|
>
|
|
{prefix}
|
|
</span>
|
|
<Input
|
|
className={cn({ 'pr-8': !!suffix, 'pl-8': !!prefix }, className)}
|
|
{...props}
|
|
></Input>
|
|
<span
|
|
className={cn({
|
|
['absolute right-3 top-[50%] translate-y-[-50%]']: suffix,
|
|
})}
|
|
>
|
|
{suffix}
|
|
</span>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const SearchInput = (props: InputProps) => {
|
|
return (
|
|
<ExpandedInput
|
|
prefix={<Search className="size-3.5" />}
|
|
{...props}
|
|
></ExpandedInput>
|
|
);
|
|
};
|
|
|
|
type Value = string | readonly string[] | number | undefined;
|
|
|
|
export const InnerBlurInput = React.forwardRef<
|
|
HTMLInputElement,
|
|
InputProps & { value: Value; onChange(value: Value): void }
|
|
>(({ value, onChange, ...props }, ref) => {
|
|
const [val, setVal] = React.useState<Value>();
|
|
|
|
const handleChange: React.ChangeEventHandler<HTMLInputElement> =
|
|
React.useCallback((e) => {
|
|
setVal(e.target.value);
|
|
}, []);
|
|
|
|
const handleBlur: React.FocusEventHandler<HTMLInputElement> =
|
|
React.useCallback(
|
|
(e) => {
|
|
onChange?.(e.target.value);
|
|
},
|
|
[onChange],
|
|
);
|
|
|
|
React.useEffect(() => {
|
|
setVal(value);
|
|
}, [value]);
|
|
|
|
return (
|
|
<Input
|
|
{...props}
|
|
value={val}
|
|
onBlur={handleBlur}
|
|
onChange={handleChange}
|
|
ref={ref}
|
|
></Input>
|
|
);
|
|
});
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
InnerBlurInput.whyDidYouRender = true;
|
|
}
|
|
|
|
export const BlurInput = React.memo(InnerBlurInput);
|
|
|
|
export { ExpandedInput, Input, SearchInput };
|