ant-design/components/transfer/search.tsx

61 lines
1.4 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
2015-12-23 23:12:20 +08:00
import Icon from '../icon';
import Input from '../input';
2017-12-14 10:49:44 +08:00
export interface TransferSearchProps {
2016-07-13 11:14:24 +08:00
prefixCls?: string;
placeholder?: string;
onChange?: (e: React.FormEvent<HTMLElement>) => void;
handleClear?: (e: React.MouseEvent<HTMLElement>) => void;
value?: string;
disabled?: boolean;
}
2017-12-14 10:49:44 +08:00
export default class Search extends React.Component<TransferSearchProps, any> {
static defaultProps = {
placeholder: '',
2016-07-13 11:14:24 +08:00
};
2017-11-20 17:41:32 +08:00
handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
2018-06-30 21:56:41 +08:00
const { onChange } = this.props;
2016-10-24 16:30:38 +08:00
if (onChange) {
onChange(e);
}
2018-12-07 16:17:45 +08:00
};
2015-11-26 16:07:11 +08:00
2017-11-20 17:41:32 +08:00
handleClear = (e: React.MouseEvent<HTMLAnchorElement>) => {
2016-01-13 16:28:36 +08:00
e.preventDefault();
const { handleClear, disabled } = this.props;
if (!disabled && handleClear) {
2016-10-24 16:30:38 +08:00
handleClear(e);
}
2018-12-07 16:17:45 +08:00
};
2016-01-13 16:28:36 +08:00
2015-11-26 16:07:11 +08:00
render() {
const { placeholder, value, prefixCls, disabled } = this.props;
2018-12-07 16:17:45 +08:00
const icon =
value && value.length > 0 ? (
<a href="#" className={`${prefixCls}-action`} onClick={this.handleClear}>
<Icon type="close-circle" theme="filled" />
</a>
) : (
<span className={`${prefixCls}-action`}>
<Icon type="search" />
</span>
);
return (
<div>
<Input
placeholder={placeholder}
className={prefixCls}
value={value}
onChange={this.handleChange}
disabled={disabled}
/>
{icon}
</div>
);
2015-11-25 23:17:06 +08:00
}
}