mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
78 lines
2 KiB
Vue
78 lines
2 KiB
Vue
|
<template>
|
||
|
<Select class="sn-select--search" :options="currentOptions" :placeholder="placeholder" @change="change" @blur="blur" @open="open" @close="close">
|
||
|
<input ref="focusElement" v-model="query" type="text" class="sn-select__search-input" :placeholder="searchPlaceholder" />
|
||
|
<span class="sn-select__value">{{ valueLabel || (placeholder || i18n.t('general.select')) }}</span>
|
||
|
<span class="sn-select__caret caret"></span>
|
||
|
</Select>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Select from './select.vue'
|
||
|
|
||
|
export default {
|
||
|
name: 'SelectSearch',
|
||
|
props: {
|
||
|
options: { type: Array, default: () => [] },
|
||
|
optionsUrl: { type: String },
|
||
|
placeholder: { type: String },
|
||
|
searchPlaceholder: { type: String }
|
||
|
},
|
||
|
components: { Select },
|
||
|
data() {
|
||
|
return {
|
||
|
value: null,
|
||
|
query: null,
|
||
|
currentOptions: null,
|
||
|
isOpen: false
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
this.currentOptions = this.options;
|
||
|
},
|
||
|
watch: {
|
||
|
query() {
|
||
|
if(!this.query) {
|
||
|
this.currentOptions = this.options;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (this.optionsUrl) {
|
||
|
this.fetchOptions();
|
||
|
} else {
|
||
|
this.currentOptions = this.options.filter((o) => o[1].toLowerCase().includes(this.query.toLowerCase()));
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
valueLabel() {
|
||
|
let option = this.options.find((o) => o[0] === this.value);
|
||
|
return option && option[1];
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
blur() {
|
||
|
this.$emit('blur');
|
||
|
},
|
||
|
change(value) {
|
||
|
this.value = value;
|
||
|
this.$emit('change', this.value);
|
||
|
},
|
||
|
open() {
|
||
|
this.isOpen = true;
|
||
|
this.$emit('open');
|
||
|
},
|
||
|
close() {
|
||
|
this.isOpen = false;
|
||
|
this.$emit('close');
|
||
|
},
|
||
|
fetchOptions() {
|
||
|
$.get(`${this.optionsUrl}?query=${this.query}`,
|
||
|
(data) => {
|
||
|
this.currentOptions = data;
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|