mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
19f3e6cdae
* Refac: rewrite transfer search with hook
* [CodeFactor] Apply fixes to commit 3ad857f
[ci skip] [skip ci]
* chore: minor change in search
Co-authored-by: codefactor-io <support@codefactor.io>
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import * as React from 'react';
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
import SearchOutlined from '@ant-design/icons/SearchOutlined';
|
|
|
|
import Input from '../input';
|
|
|
|
export interface TransferSearchProps {
|
|
prefixCls?: string;
|
|
placeholder?: string;
|
|
onChange?: (e: React.FormEvent<HTMLElement>) => void;
|
|
handleClear?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
value?: string;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export default function Search(props: TransferSearchProps) {
|
|
const { placeholder = '', value, prefixCls, disabled, onChange, handleClear } = props;
|
|
|
|
const handleChange = React.useCallback(
|
|
(e: React.ChangeEvent<HTMLInputElement>) => {
|
|
onChange?.(e);
|
|
},
|
|
[onChange],
|
|
);
|
|
|
|
const handleClearFn = (e: React.MouseEvent<HTMLAnchorElement>) => {
|
|
e.preventDefault();
|
|
if (!disabled && handleClear) {
|
|
handleClear(e);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Input
|
|
placeholder={placeholder}
|
|
className={prefixCls}
|
|
value={value}
|
|
onChange={handleChange}
|
|
disabled={disabled}
|
|
/>
|
|
{value && value.length > 0 ? (
|
|
<a className={`${prefixCls}-action`} onClick={handleClearFn}>
|
|
<CloseCircleFilled />
|
|
</a>
|
|
) : (
|
|
<span className={`${prefixCls}-action`}>
|
|
<SearchOutlined />
|
|
</span>
|
|
)}
|
|
</>
|
|
);
|
|
}
|