|
16 | 16 | :disabled="disabled"
|
17 | 17 | :required="required"
|
18 | 18 | :placeholder="placeholder"
|
19 |
| - v-on="$listeners" |
| 19 | + v-on="inputListeners" |
20 | 20 | v-bind="$attrs"
|
21 | 21 | @focus.prevent="onFocus"
|
22 | 22 | @blur.prevent="removeHighlight"
|
|
75 | 75 | name: String
|
76 | 76 | },
|
77 | 77 | inject: ['MdField'],
|
78 |
| - data: () => ({ |
79 |
| - uniqueId: 'md-select-menu-' + MdUuid(), |
80 |
| - menuStyles: {}, |
81 |
| - offset: { |
82 |
| - x: defaultOffset.x, |
83 |
| - y: 0 |
84 |
| - }, |
85 |
| - showSelect: true, |
86 |
| - didMount: false, |
87 |
| - MdSelect: { |
88 |
| - items: {}, |
89 |
| - label: null, |
90 |
| - multiple: false, |
91 |
| - modelValue: null |
| 78 | + data () { |
| 79 | + return { |
| 80 | + uniqueId: 'md-select-menu-' + MdUuid(), |
| 81 | + menuStyles: {}, |
| 82 | + offset: { |
| 83 | + x: defaultOffset.x, |
| 84 | + y: 0 |
| 85 | + }, |
| 86 | + showSelect: true, |
| 87 | + didMount: false, |
| 88 | + MdSelect: { |
| 89 | + items: {}, |
| 90 | + label: null, |
| 91 | + multiple: false, |
| 92 | + modelValue: this.model, |
| 93 | + setValue: this.setValue, |
| 94 | + setContent: this.setContent, |
| 95 | + setMultipleValue: this.setMultipleValue, |
| 96 | + setMultipleContent: this.setMultipleContent |
| 97 | + } |
92 | 98 | }
|
93 |
| - }), |
| 99 | + }, |
94 | 100 | provide () {
|
95 | 101 | const MdSelect = this.MdSelect
|
96 | 102 |
|
97 |
| - MdSelect.setValue = this.setValue |
98 |
| - MdSelect.setContent = this.setContent |
99 |
| - MdSelect.setMultipleValue = this.setMultipleValue |
100 |
| - MdSelect.setMultipleContent = this.setMultipleContent |
101 |
| - MdSelect.modelValue = this.model |
102 |
| -
|
103 | 103 | return { MdSelect }
|
104 | 104 | },
|
| 105 | + computed: { |
| 106 | + inputListeners () { |
| 107 | + return { |
| 108 | + ...this.$listeners, |
| 109 | + input: undefined |
| 110 | + } |
| 111 | + } |
| 112 | + }, |
105 | 113 | watch: {
|
106 |
| - value: { |
| 114 | + localValue: { |
107 | 115 | immediate: true,
|
108 | 116 | handler () {
|
109 | 117 | this.setFieldContent()
|
|
113 | 121 | immediate: true,
|
114 | 122 | handler (isMultiple) {
|
115 | 123 | this.MdSelect.multiple = isMultiple
|
| 124 | + this.$nextTick(() => this.initialLocalValueByDefault()) |
116 | 125 | }
|
| 126 | + }, |
| 127 | + model () { |
| 128 | + this.MdSelect.modelValue = this.model |
117 | 129 | }
|
118 | 130 | },
|
119 | 131 | methods: {
|
|
180 | 192 | this.showSelect = true
|
181 | 193 | }
|
182 | 194 | },
|
183 |
| - toggleArrayValue (array, value) { |
184 |
| - if (array.includes(value)) { |
185 |
| - const index = array.indexOf(value) |
186 |
| -
|
187 |
| - array.splice(index, 1) |
188 |
| - } else { |
189 |
| - array.push(value) |
| 195 | + arrayAccessorRemove (arr, index) { |
| 196 | + let before = arr.slice(0, index) |
| 197 | + let after = arr.slice(index + 1, arr.length) |
| 198 | + return before.concat(after) |
| 199 | + }, |
| 200 | + toggleArrayValue (value) { |
| 201 | + let index = this.localValue.indexOf(value) |
| 202 | + let includes = index > -1 |
| 203 | + if (!includes) { |
| 204 | + this.localValue = this.localValue.concat([value]) |
| 205 | + return |
190 | 206 | }
|
| 207 | + this.localValue = this.arrayAccessorRemove(this.localValue, index) |
191 | 208 | },
|
192 | 209 | setValue (newValue) {
|
193 | 210 | this.model = newValue
|
|
198 | 215 | this.MdSelect.label = newLabel
|
199 | 216 | },
|
200 | 217 | setContentByValue () {
|
201 |
| - const textContent = this.MdSelect.items[this.value] |
| 218 | + const textContent = this.MdSelect.items[this.localValue] |
202 | 219 |
|
203 | 220 | if (textContent) {
|
204 | 221 | this.setContent(textContent)
|
|
209 | 226 | setMultipleValue (value) {
|
210 | 227 | const newValue = value
|
211 | 228 |
|
212 |
| - this.toggleArrayValue(this.model, newValue) |
| 229 | + this.toggleArrayValue(newValue) |
213 | 230 | this.setFieldValue()
|
214 | 231 | },
|
215 | 232 | setMultipleContentByValue () {
|
| 233 | + if (!this.localValue) { |
| 234 | + this.initialLocalValueByDefault() |
| 235 | + } |
216 | 236 | let content = []
|
217 | 237 |
|
218 |
| - this.value.forEach(item => { |
| 238 | + this.localValue.forEach(item => { |
219 | 239 | const textContent = this.MdSelect.items[item]
|
220 | 240 |
|
221 | 241 | if (textContent) {
|
|
231 | 251 | } else {
|
232 | 252 | this.setContentByValue()
|
233 | 253 | }
|
| 254 | + }, |
| 255 | + initialLocalValueByDefault () { |
| 256 | + let isArray = Array.isArray(this.localValue) |
| 257 | + if (this.multiple && !isArray) { |
| 258 | + let isSet = this.localValue !== undefined && this.localValue !== null |
| 259 | + this.localValue = isSet ? [this.localValue] : [] |
| 260 | + return |
| 261 | + } |
| 262 | + if (!this.multiple && isArray) { |
| 263 | + this.localValue = this.localValue.length > 0 ? this.localValue[0] : null |
| 264 | + } |
234 | 265 | }
|
235 | 266 | },
|
236 | 267 | async mounted () {
|
|
0 commit comments