Skip to content

Commit 1b17df3

Browse files
authored
fix(form-options): Handle object special cases (#1099)
Handle case where object format is missing value and/or text keys
1 parent b4e0750 commit 1b17df3

File tree

1 file changed

+32
-30
lines changed

1 file changed

+32
-30
lines changed

lib/mixins/form-options.js

+32-30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import { isArray } from '../utils/array';
22
import { keys } from '../utils/object';
33

4+
function isObject(obj) {
5+
return obj && ({}).toString.call(obj) === '[object Object]';
6+
}
7+
48
export default {
59
props: {
610
options: {
@@ -26,50 +30,48 @@ export default {
2630
formOptions() {
2731
let options = this.options || [];
2832

33+
const valueField = this.valueField || 'value';
34+
const textField = this.textField || 'text';
35+
const disabledField = this.disabledField || 'disabled';
36+
2937
if (isArray(options)) {
30-
// Normalize flat arrays to Array of Objects
31-
options = options.map(option => {
32-
if (typeof option === 'object') {
38+
// Normalize flat-ish arrays to Array of Objects
39+
return options.map(option => {
40+
if (isObject(option)) {
3341
return {
34-
value: option[this.valueField],
35-
text: option[this.textField],
36-
disabled: option[this.disabledField] || false
42+
value: option[valueField],
43+
text: String(option[textField]),
44+
disabled: option[disabledField] || false
3745
};
3846
}
39-
4047
return {
4148
text: String(option),
4249
value: option,
4350
disabled: false
4451
};
4552
});
46-
} else {
47-
// Normalize Objects keys to Array of Objects
48-
options = keys(options).map(key => {
53+
} else if (isObject(options)) {
54+
// Normalize Objects to Array of Objects
55+
return keys(options).map(key => {
4956
let option = options[key] || {};
50-
51-
// Resolve text
52-
if (typeof option !== 'object') {
53-
option = {[this.textField]: String(option)};
54-
}
55-
// Resolve text field (uses key as text if not provided)
56-
if (option[this.textField] === 0) {
57-
option.text = option[this.textField];
58-
} else {
59-
option.text = option[this.textField] || key;
57+
if (isObject(option)) {
58+
const value = option[valueField];
59+
const text = option[textField];
60+
return {
61+
text: typeof text === 'undefined' ? key : String(text),
62+
value: typeof value === 'undefined' ? key : value,
63+
disabled: option[disabledField] || false
64+
};
6065
}
61-
62-
// Resolve value (uses null/undef value if not provided)
63-
option.value = option[this.valueField];
64-
65-
// Resolve disabled
66-
option.disabled = option[this.disabledField] || false;
67-
68-
return option;
66+
return {
67+
text: String(option),
68+
value: key,
69+
disabled: false
70+
};
6971
});
7072
}
71-
// Return nomalized options array
72-
return options;
73+
// Option unsupported type
74+
return [];
7375
}
7476
}
7577
};

0 commit comments

Comments
 (0)