You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

import React from 'react';
9 years ago
import Icon from '../icon';
import Input from '../input';
9 years ago
function noop() {
}
9 years ago
export interface SearchProps {
prefixCls?: string;
placeholder?: string;
onChange?: (e: React.FormEvent) => void;
handleClear?: (e: React.MouseEvent) => void;
value?: any;
}
export default class Search extends React.Component<SearchProps, any> {
static defaultProps = {
placeholder: '',
onChange: noop,
handleClear: noop,
};
handleChange = (e) => {
this.props.onChange(e);
}
handleClear = (e) => {
e.preventDefault();
this.props.handleClear(e);
}
render() {
const { placeholder, value, prefixCls } = this.props;
return (
<div>
<Input placeholder={placeholder} className={prefixCls} value={value} ref="input"
onChange={this.handleChange}
/>
{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>
}
</div>
);
9 years ago
}
}