ant-design-vue/components/transfer/search.jsx

59 lines
1.4 KiB
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import PropTypes from '../_util/vue-types';
import { initDefaultProps, getOptionProps } from '../_util/props-util';
import Icon from '../icon';
import Input from '../input';
2018-04-07 00:20:45 +08:00
export const TransferSearchProps = {
prefixCls: PropTypes.string,
placeholder: PropTypes.string,
value: PropTypes.any,
2018-05-18 21:21:31 +08:00
handleClear: PropTypes.func,
disabled: PropTypes.bool,
2019-01-12 11:33:27 +08:00
};
2018-04-07 00:20:45 +08:00
export default {
name: 'Search',
props: initDefaultProps(TransferSearchProps, {
placeholder: '',
}),
methods: {
2019-01-12 11:33:27 +08:00
handleChange(e) {
this.$emit('change', e);
2018-04-07 00:20:45 +08:00
},
2019-01-12 11:33:27 +08:00
handleClear2(e) {
e.preventDefault();
const { handleClear, disabled } = this.$props;
if (!disabled && handleClear) {
2019-01-12 11:33:27 +08:00
handleClear(e);
2018-05-18 21:21:31 +08:00
}
2018-04-07 00:20:45 +08:00
},
},
2019-01-12 11:33:27 +08:00
render() {
const { placeholder, value, prefixCls, disabled } = getOptionProps(this);
const icon =
value && value.length > 0 ? (
<a href="#" class={`${prefixCls}-action`} onClick={this.handleClear2}>
<Icon type="close-circle" theme="filled" />
</a>
) : (
<span class={`${prefixCls}-action`}>
<Icon type="search" />
</span>
);
2018-04-07 00:20:45 +08:00
return (
<div>
<Input
placeholder={placeholder}
class={prefixCls}
value={value}
2019-01-12 11:33:27 +08:00
ref="input"
2018-04-07 00:20:45 +08:00
onChange={this.handleChange}
disabled={disabled}
2018-04-07 00:20:45 +08:00
/>
{icon}
</div>
2019-01-12 11:33:27 +08:00
);
2018-04-07 00:20:45 +08:00
},
2019-01-12 11:33:27 +08:00
};