1
1
import { isArray } from '../utils/array' ;
2
2
import { keys } from '../utils/object' ;
3
3
4
+ function isObject ( obj ) {
5
+ return obj && ( { } ) . toString . call ( obj ) === '[object Object]' ;
6
+ }
7
+
4
8
export default {
5
9
props : {
6
10
options : {
@@ -26,50 +30,48 @@ export default {
26
30
formOptions ( ) {
27
31
let options = this . options || [ ] ;
28
32
33
+ const valueField = this . valueField || 'value' ;
34
+ const textField = this . textField || 'text' ;
35
+ const disabledField = this . disabledField || 'disabled' ;
36
+
29
37
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 ) ) {
33
41
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
37
45
} ;
38
46
}
39
-
40
47
return {
41
48
text : String ( option ) ,
42
49
value : option ,
43
50
disabled : false
44
51
} ;
45
52
} ) ;
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 => {
49
56
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
+ } ;
60
65
}
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
+ } ;
69
71
} ) ;
70
72
}
71
- // Return nomalized options array
72
- return options ;
73
+ // Option unsupported type
74
+ return [ ] ;
73
75
}
74
76
}
75
77
} ;
0 commit comments