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