iview/src/components/auto-complete/auto-complete.vue

167 lines
4.8 KiB
Vue
Raw Normal View History

2017-08-23 14:42:54 +08:00
<template>
<i-select
ref="select"
class="ivu-auto-complete"
:label="label"
:disabled="disabled"
:clearable="clearable"
:placeholder="placeholder"
:size="size"
2018-01-19 18:18:20 +08:00
:placement="placement"
2017-08-23 14:42:54 +08:00
filterable
remote
auto-complete
:remote-method="remoteMethod"
@on-change="handleChange"
:transfer="transfer">
<slot name="input">
<i-input
2017-09-22 15:29:50 +08:00
:element-id="elementId"
2017-08-23 14:42:54 +08:00
ref="input"
slot="input"
v-model="currentValue"
2017-09-19 16:45:02 +08:00
:name="name"
2017-08-23 14:42:54 +08:00
:placeholder="placeholder"
:disabled="disabled"
:size="size"
2017-08-24 13:49:33 +08:00
:icon="inputIcon"
2017-08-23 14:42:54 +08:00
@on-click="handleClear"
@on-focus="handleFocus"
@on-blur="handleBlur"></i-input>
</slot>
<slot>
<i-option v-for="item in filteredData" :value="item" :key="item">{{ item }}</i-option>
</slot>
</i-select>
</template>
<script>
import iSelect from '../select/select.vue';
import iOption from '../select/option.vue';
import iInput from '../input/input.vue';
import { oneOf } from '../../utils/assist';
2017-08-23 15:19:32 +08:00
import Emitter from '../../mixins/emitter';
2017-08-23 14:42:54 +08:00
export default {
name: 'AutoComplete',
2017-08-23 15:19:32 +08:00
mixins: [ Emitter ],
2017-08-23 14:42:54 +08:00
components: { iSelect, iOption, iInput },
props: {
value: {
type: [String, Number],
default: ''
},
label: {
type: [String, Number],
default: ''
},
data: {
type: Array,
default: () => []
},
disabled: {
type: Boolean,
default: false
},
clearable: {
type: Boolean,
default: false
},
placeholder: {
type: String
},
size: {
validator (value) {
return oneOf(value, ['small', 'large', 'default']);
}
},
2017-08-24 13:49:33 +08:00
icon: {
type: String
},
2017-08-23 14:42:54 +08:00
filterMethod: {
type: [Function, Boolean],
default: false
},
2018-01-19 18:18:20 +08:00
placement: {
validator (value) {
return oneOf(value, ['top', 'bottom']);
},
default: 'bottom'
},
2017-08-23 14:42:54 +08:00
transfer: {
type: Boolean,
default: false
2017-09-19 16:45:02 +08:00
},
name: {
type: String
2017-09-22 15:29:50 +08:00
},
elementId: {
type: String
2017-08-23 14:42:54 +08:00
}
},
data () {
return {
2017-08-23 15:51:08 +08:00
currentValue: this.value,
disableEmitChange: false // for Form reset
2017-08-23 14:42:54 +08:00
};
},
computed: {
2017-08-24 13:49:33 +08:00
inputIcon () {
let icon = '';
if (this.clearable && this.currentValue) {
icon = 'ios-close';
} else if (this.icon) {
icon = this.icon;
}
return icon;
2017-08-23 14:42:54 +08:00
},
filteredData () {
if (this.filterMethod) {
return this.data.filter(item => this.filterMethod(this.currentValue, item));
} else {
return this.data;
}
}
},
watch: {
value (val) {
if(this.currentValue !== val){
this.disableEmitChange = true;
}
2017-08-23 14:42:54 +08:00
this.currentValue = val;
},
currentValue (val) {
this.$refs.select.query = val;
this.$emit('input', val);
2017-08-23 15:51:08 +08:00
if (this.disableEmitChange) {
this.disableEmitChange = false;
return;
}
2017-08-23 14:42:54 +08:00
this.$emit('on-change', val);
2017-08-23 15:19:32 +08:00
this.dispatch('FormItem', 'on-form-change', val);
2017-08-23 14:42:54 +08:00
}
},
methods: {
remoteMethod (query) {
this.$emit('on-search', query);
},
handleChange (val) {
this.currentValue = val;
this.$refs.select.model = val;
this.$refs.input.blur();
this.$emit('on-select', val);
},
handleFocus () {
this.$refs.select.visible = true;
},
handleBlur () {
this.$refs.select.visible = false;
},
handleClear () {
2017-08-24 14:07:12 +08:00
if (!this.clearable) return;
2017-08-23 14:42:54 +08:00
this.currentValue = '';
this.$refs.select.model = '';
}
}
};
</script>