-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.vue
103 lines (85 loc) · 2.18 KB
/
main.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<template>
<select>
<slot></slot>
</select>
</template>
<script>
import $ from 'jquery'
if (!$().selectize) {
require('selectize')
}
export default {
props: {
disabled: {
type: Boolean,
default: false,
},
options: {
type: Array,
default: () => ([]),
},
settings: {
type: Object,
default: () => ({}),
},
value: {
default: null,
},
},
data: () => ({
instance: null,
onChange: false,
}),
mounted() {
this.instance = $(this.$el).selectize({
onInitialize: () => {
this.setValue()
this.setDisabled()
},
onChange: (value) => {
this.onChange = true
this.$emit('input', value)
},
...this.mergedSettings,
})[0].selectize
},
destroyed() {
if (this.instance) {
this.instance.destroy()
}
},
methods: {
setValue() {
this.$el.selectize.setValue(this.value, true)
},
setDisabled() {
if (this.disabled) {
this.$el.selectize.disable()
} else {
this.$el.selectize.enable()
}
},
},
computed: {
mergedSettings() {
return $.extend(this.settings, $(this.$el).data(), {
options: this.options,
})
},
},
watch: {
disabled(value) {
this.setDisabled()
},
options(options) {
this.instance.updateOption(this.instance.getValue(), options)
},
value(value) {
if (! this.onChange) {
this.setValue()
}
this.onChange = false
},
},
}
</script>