feat: migrate Search component

This commit is contained in:
chenjiahan
2020-08-16 15:08:28 +08:00
parent 322db54c77
commit 735acabcec
4 changed files with 124 additions and 157 deletions
+115
View File
@@ -0,0 +1,115 @@
// Utils
import { createNamespace } from '../utils';
import { preventDefault } from '../utils/dom/event';
// Components
import Field from '../field';
const [createComponent, bem, t] = createNamespace('search');
export default createComponent({
inheritAttrs: false,
props: {
label: String,
rightIcon: String,
modelValue: String,
actionText: String,
background: String,
showAction: Boolean,
clearTrigger: String,
shape: {
type: String,
default: 'square',
},
clearable: {
type: Boolean,
default: true,
},
leftIcon: {
type: String,
default: 'search',
},
},
emits: ['search', 'cancel', 'keypress'],
setup(props, { emit, slots }) {
return function () {
function Label() {
if (slots.label || props.label) {
return (
<div class={bem('label')}>
{slots.label ? slots.label() : props.label}
</div>
);
}
}
function Action() {
if (!props.showAction) {
return;
}
function onCancel() {
if (slots.action) {
return;
}
emit('update:modelValue', '');
emit('cancel');
}
return (
<div
class={bem('action')}
role="button"
tabindex="0"
onClick={onCancel}
>
{slots.action ? slots.action() : props.actionText || t('cancel')}
</div>
);
}
const fieldData = {
...this.$attrs,
onKeypress(event) {
// press enter
if (event.keyCode === 13) {
preventDefault(event);
emit('search', props.modelValue);
}
emit('keypress', event);
},
};
return (
<div
class={bem({ 'show-action': props.showAction })}
style={{ background: props.background }}
>
{slots.left?.()}
<div class={bem('content', props.shape)}>
{Label()}
<Field
type="search"
border={false}
leftIcon={props.leftIcon}
rightIcon={props.rightIcon}
clearable={props.clearable}
modelValue={props.modelValue}
clearTrigger={props.clearTrigger}
scopedSlots={{
'left-icon': slots['left-icon'],
'right-icon': slots['right-icon'],
}}
{...fieldData}
/>
</div>
{Action()}
</div>
);
};
},
});