ant-design/components/transfer/search.tsx

58 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +08:00
import React from 'react';
2015-12-23 23:12:20 +08:00
import Icon from '../icon';
import Input from '../input';
2016-07-07 20:25:03 +08:00
export interface SearchProps {
2016-07-13 11:14:24 +08:00
prefixCls?: string;
placeholder?: string;
2016-10-19 17:51:33 +08:00
onChange?: (e: React.FormEvent<any>) => void;
handleClear?: (e: React.MouseEvent<any>) => void;
value?: any;
}
export default class Search extends React.Component<SearchProps, any> {
static defaultProps = {
placeholder: '',
2016-07-13 11:14:24 +08:00
};
handleChange = (e) => {
2016-10-24 16:30:38 +08:00
const onChange = this.props.onChange;
if (onChange) {
onChange(e);
}
2015-11-26 16:07:11 +08:00
}
handleClear = (e) => {
2016-01-13 16:28:36 +08:00
e.preventDefault();
2016-10-24 16:30:38 +08:00
const handleClear = this.props.handleClear;
if (handleClear) {
handleClear(e);
}
2016-01-13 16:28:36 +08:00
}
2015-11-26 16:07:11 +08:00
render() {
const { placeholder, value, prefixCls } = this.props;
const icon = (value && value.length > 0) ? (
<a href="#" className={`${prefixCls}-action`} onClick={this.handleClear}>
<Icon type="cross-circle" />
</a>
) : (
<span className={`${prefixCls}-action`}><Icon type="search" /></span>
);
return (
<div>
<Input
placeholder={placeholder}
className={prefixCls}
value={value}
ref="input"
onChange={this.handleChange}
/>
{icon}
</div>
);
2015-11-25 23:17:06 +08:00
}
}