@@ -44,11 +44,11 @@ internals.definitions.prototype.append = function (definitionName, definition, c
44
44
out = definitionName ;
45
45
} else {
46
46
// create new definition
47
- out = internals . append ( null , definition , currentCollection , settings ) ;
47
+ out = internals . append ( definitionName , definition , currentCollection , true , settings ) ;
48
48
}
49
49
} else {
50
50
// create new definition
51
- out = internals . append ( definitionName , definition , currentCollection , settings ) ;
51
+ out = internals . append ( definitionName , definition , currentCollection , false , settings ) ;
52
52
}
53
53
54
54
return out ;
@@ -64,7 +64,7 @@ internals.definitions.prototype.append = function (definitionName, definition, c
64
64
* @param {Object } settings
65
65
* @return {String }
66
66
*/
67
- internals . append = function ( definitionName , definition , currentCollection , settings ) {
67
+ internals . append = function ( definitionName , definition , currentCollection , forceDynamicName , settings ) {
68
68
69
69
let out ;
70
70
let foundDefinitionName ;
@@ -79,7 +79,17 @@ internals.append = function (definitionName, definition, currentCollection, sett
79
79
out = foundDefinitionName ;
80
80
} else {
81
81
// else create a new item using definitionName or next model number
82
- out = definitionName || internals . nextModelName ( currentCollection ) ;
82
+ if ( forceDynamicName ) {
83
+ if ( settings . definitionPrefix === 'useLabel' ) {
84
+ out = internals . nextModelName ( definitionName + ' ' , currentCollection ) ;
85
+ }
86
+ else {
87
+ out = internals . nextModelName ( 'Model ' , currentCollection ) ;
88
+ }
89
+ }
90
+ else {
91
+ out = definitionName || internals . nextModelName ( 'Model ' , currentCollection ) ;
92
+ }
83
93
currentCollection [ out ] = definition ;
84
94
}
85
95
return out ;
@@ -126,22 +136,22 @@ internals.hash = function (obj) {
126
136
/**
127
137
* creates a new unique model name
128
138
*
139
+ * @param {String } nextModelNamePrefix
129
140
* @param {Object } currentCollection
130
141
* @return {String }
131
142
*/
132
- internals . nextModelName = function ( currentCollection ) {
133
-
143
+ internals . nextModelName = function ( nextModelNamePrefix , currentCollection ) {
134
144
let highest = 0 ;
135
145
let key ;
136
146
for ( key in currentCollection ) {
137
- if ( Utilities . startsWith ( key , 'Model' ) ) {
138
- let num = parseInt ( key . replace ( 'Model' , '' ) , 10 ) ;
147
+ if ( Utilities . startsWith ( key , nextModelNamePrefix ) ) {
148
+ let num = parseInt ( key . replace ( nextModelNamePrefix , '' ) , 10 ) || 0 ;
139
149
if ( num && num > highest ) {
140
150
highest = num ;
141
151
}
142
152
}
143
153
}
144
- return 'Model ' + ( highest + 1 ) ;
154
+ return nextModelNamePrefix + ( highest + 1 ) ;
145
155
} ;
146
156
147
157
0 commit comments