Skip to content

Commit 12a4219

Browse files
VdustRmarcosmoura
authored andcommitted
fix(MdInput): avoid InputEvent object from @input event (#1196)
* fix(MdInput): Avoid InputEvent object from @input event fix #1160 * fix(MdField): `$emit` missing `this` * fix(MdSelect): declare all MdSelect properties in `data()` and make `MdSelect.modelValue` synced wit * feat(MdField): make 'v-model'/'value' in MdFile, MdInput, MdSelect, MdTextarea optional `MdSelect` could be switched between single and multiple fix #1150 * feat(MdSelect): one way update with `value` * fix(MdOption): let value avaiable to be `0` fix #1203 * fix(MdField): set value default as null * fix(MdField): Remove value default #1196 (comment) * style(MdSelect): brackets for if statement execute block #1196 (comment)
1 parent d1f9424 commit 12a4219

File tree

4 files changed

+89
-44
lines changed

4 files changed

+89
-44
lines changed

src/components/MdField/MdFieldMixin.js

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
export default {
22
props: {
3-
value: {
4-
required: true
5-
},
3+
value: {},
64
placeholder: String,
75
maxlength: [String, Number],
86
readonly: Boolean,
97
required: Boolean,
108
disabled: Boolean,
119
mdCounter: [String, Number]
1210
},
13-
data: () => ({
14-
textareaHeight: false
15-
}),
11+
data () {
12+
return {
13+
localValue: this.value,
14+
textareaHeight: false
15+
}
16+
},
1617
computed: {
1718
model: {
1819
get () {
19-
return this.value
20+
return this.localValue
2021
},
2122
set (value) {
2223
if (value.constructor.name.toLowerCase() !== 'inputevent') {
2324
this.$nextTick(() => {
24-
this.$emit('input', value)
25+
this.localValue = value
2526
})
2627
}
2728
}
@@ -66,6 +67,12 @@ export default {
6667
},
6768
mdCounter () {
6869
this.setMaxlength()
70+
},
71+
localValue (val) {
72+
this.$emit('input', val)
73+
},
74+
value (val) {
75+
this.localValue = val
6976
}
7077
},
7178
methods: {
@@ -87,7 +94,7 @@ export default {
8794
}
8895
}
8996
},
90-
setFieldValue (value) {
97+
setFieldValue () {
9198
this.MdField.value = this.model
9299
},
93100
setPlaceholder () {

src/components/MdField/MdInput/MdInput.vue

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class="md-input"
44
v-model="model"
55
v-bind="attributes"
6-
v-on="$listeners"
6+
v-on="listeners"
77
@focus="onFocus"
88
@blur="onBlur">
99
</template>
@@ -33,6 +33,12 @@
3333
},
3434
isPassword () {
3535
return this.type === 'password'
36+
},
37+
listeners () {
38+
return {
39+
...this.$listeners,
40+
input: event => this.$emit('input', event.target.value)
41+
}
3642
}
3743
},
3844
watch: {

src/components/MdField/MdSelect/MdOption.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
return this.MdOptgroup.disabled || this.disabled
4040
},
4141
key () {
42-
return this.value || this.uniqueId
42+
let isSet = (this.value || this.value === 0)
43+
return isSet ? this.value : this.uniqueId
4344
},
4445
inputLabel () {
4546
return this.MdSelect.label

src/components/MdField/MdSelect/MdSelect.vue

+64-33
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
:disabled="disabled"
1717
:required="required"
1818
:placeholder="placeholder"
19-
v-on="$listeners"
19+
v-on="inputListeners"
2020
v-bind="$attrs"
2121
@focus.prevent="onFocus"
2222
@blur.prevent="removeHighlight"
@@ -75,35 +75,43 @@
7575
name: String
7676
},
7777
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+
}
9298
}
93-
}),
99+
},
94100
provide () {
95101
const MdSelect = this.MdSelect
96102
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-
103103
return { MdSelect }
104104
},
105+
computed: {
106+
inputListeners () {
107+
return {
108+
...this.$listeners,
109+
input: undefined
110+
}
111+
}
112+
},
105113
watch: {
106-
value: {
114+
localValue: {
107115
immediate: true,
108116
handler () {
109117
this.setFieldContent()
@@ -113,7 +121,11 @@
113121
immediate: true,
114122
handler (isMultiple) {
115123
this.MdSelect.multiple = isMultiple
124+
this.$nextTick(() => this.initialLocalValueByDefault())
116125
}
126+
},
127+
model () {
128+
this.MdSelect.modelValue = this.model
117129
}
118130
},
119131
methods: {
@@ -180,14 +192,19 @@
180192
this.showSelect = true
181193
}
182194
},
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
190206
}
207+
this.localValue = this.arrayAccessorRemove(this.localValue, index)
191208
},
192209
setValue (newValue) {
193210
this.model = newValue
@@ -198,7 +215,7 @@
198215
this.MdSelect.label = newLabel
199216
},
200217
setContentByValue () {
201-
const textContent = this.MdSelect.items[this.value]
218+
const textContent = this.MdSelect.items[this.localValue]
202219
203220
if (textContent) {
204221
this.setContent(textContent)
@@ -209,13 +226,16 @@
209226
setMultipleValue (value) {
210227
const newValue = value
211228
212-
this.toggleArrayValue(this.model, newValue)
229+
this.toggleArrayValue(newValue)
213230
this.setFieldValue()
214231
},
215232
setMultipleContentByValue () {
233+
if (!this.localValue) {
234+
this.initialLocalValueByDefault()
235+
}
216236
let content = []
217237
218-
this.value.forEach(item => {
238+
this.localValue.forEach(item => {
219239
const textContent = this.MdSelect.items[item]
220240
221241
if (textContent) {
@@ -231,6 +251,17 @@
231251
} else {
232252
this.setContentByValue()
233253
}
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+
}
234265
}
235266
},
236267
async mounted () {

0 commit comments

Comments
 (0)