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.
51 lines
1.3 KiB
51 lines
1.3 KiB
import initDefaultProps from '../_util/props-util/initDefaultProps';
|
|
import SearchOutlined from '@ant-design/icons-vue/SearchOutlined';
|
|
import Input from '../input';
|
|
import type { ExtractPropTypes } from 'vue';
|
|
import { defineComponent } from 'vue';
|
|
import type { ChangeEvent } from '../_util/EventInterface';
|
|
|
|
export const transferSearchProps = {
|
|
prefixCls: String,
|
|
placeholder: String,
|
|
value: String,
|
|
handleClear: Function,
|
|
disabled: { type: Boolean, default: undefined },
|
|
onChange: Function,
|
|
};
|
|
|
|
export type TransferSearchProps = Partial<ExtractPropTypes<typeof transferSearchProps>>;
|
|
|
|
export default defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
name: 'Search',
|
|
inheritAttrs: false,
|
|
props: initDefaultProps(transferSearchProps, {
|
|
placeholder: '',
|
|
}),
|
|
emits: ['change'],
|
|
setup(props, { emit }) {
|
|
const handleChange = (e: ChangeEvent) => {
|
|
emit('change', e);
|
|
if (e.target.value === '') {
|
|
props.handleClear?.();
|
|
}
|
|
};
|
|
|
|
return () => {
|
|
const { placeholder, value, prefixCls, disabled } = props;
|
|
return (
|
|
<Input
|
|
placeholder={placeholder}
|
|
class={prefixCls}
|
|
value={value}
|
|
onChange={handleChange}
|
|
disabled={disabled}
|
|
allowClear
|
|
v-slots={{ prefix: () => <SearchOutlined /> }}
|
|
/>
|
|
);
|
|
};
|
|
},
|
|
});
|