@@ -21,9 +21,10 @@ import {
21
21
} from './app-config.service.js' ;
22
22
import { AppContextModule } from './app-context.module.js' ;
23
23
import { NODE_ENV } from '@nestjs-yalc/types/global.enum.js' ;
24
- import { ConfigModule , registerAs } from '@nestjs/config' ;
24
+ import { ConfigModule , ConfigService , registerAs } from '@nestjs/config' ;
25
25
import Joi from 'joi' ;
26
26
import { MODULE_OPTIONS_TOKEN } from '@nestjs/common/cache/cache.module-definition.js' ;
27
+ import { IGlobalOptions } from './app-bootstrap.helper.js' ;
27
28
28
29
const singletonDynamicModules = new Map < any , any > ( ) ;
29
30
@@ -68,11 +69,15 @@ export function envFilePathList(dirname: string = '.') {
68
69
return envFilePath ;
69
70
}
70
71
71
- function _metadataFactory (
72
+ /**
73
+ * Used for applications with controller/resolver support
74
+ * you should override it
75
+ */
76
+ export function yalcBaseAppModuleMetadataFactory (
72
77
module : any ,
73
78
appAlias : string ,
74
79
options ?: Omit < IYalcBaseAppOptions , 'module' > ,
75
- ) {
80
+ ) : IYalcBaseStaticModule {
76
81
const _options = {
77
82
// default values
78
83
isSingleton : false ,
@@ -100,9 +105,7 @@ function _metadataFactory(
100
105
] ;
101
106
102
107
if ( options ?. logger ) {
103
- _providers . push (
104
- LoggerServiceFactory ( appAlias , APP_LOGGER_SERVICE , appAlias ) ,
105
- ) ;
108
+ _providers . push ( LoggerServiceFactory ( APP_LOGGER_SERVICE , appAlias ) ) ;
106
109
}
107
110
108
111
const hasConfig = _options . extraConfigs || _options . configFactory ;
@@ -196,7 +199,7 @@ function _metadataFactory(
196
199
197
200
const _controllers : DynamicModule [ 'controllers' ] = [ ] ;
198
201
199
- if ( controllers && _options . isStandalone !== true ) {
202
+ if ( controllers ) {
200
203
_controllers . push ( ...controllers ) ;
201
204
}
202
205
@@ -212,24 +215,6 @@ function _metadataFactory(
212
215
return config ;
213
216
}
214
217
215
- /**
216
- * Used for applications with controller/resolver support
217
- * you should override it
218
- */
219
- export function yalcBaseAppModuleMetadataFactory (
220
- module : any ,
221
- appAlias : string ,
222
- options ?: Omit < IYalcBaseAppOptions , 'module' > ,
223
- ) : IYalcBaseStaticModule {
224
- const config = _metadataFactory ( module , appAlias , options ) ;
225
-
226
- if ( ! options || ! options . skipDefaultApp ) {
227
- config . imports . push ( YalcDefaultAppModule . forRoot ( appAlias , options ) ) ;
228
- }
229
-
230
- return config ;
231
- }
232
-
233
218
/**
234
219
* Util class that can be extended to create a NestJS application
235
220
*/
@@ -294,11 +279,13 @@ export class YalcBaseAppModule {
294
279
export class YalcDefaultAppModule {
295
280
static forRoot (
296
281
appAlias : string ,
297
- options ?: Omit < IYalcBaseAppOptions , 'module' > ,
282
+ imports : NonNullable < DynamicModule [ 'imports' ] > ,
283
+ options ?: IGlobalOptions ,
298
284
) {
299
- const imports : NonNullable < DynamicModule [ 'imports' ] > = [
285
+ const _imports : NonNullable < DynamicModule [ 'imports' ] > = [
300
286
EventEmitterModule . forRoot ( ) ,
301
287
AppContextModule ,
288
+ ...imports ,
302
289
] ;
303
290
304
291
const providers : NonNullable < DynamicModule [ 'providers' ] > = [
@@ -312,59 +299,35 @@ export class YalcDefaultAppModule {
312
299
} ,
313
300
] ;
314
301
315
- if ( options ?. logger ) {
316
- providers . push (
317
- LoggerServiceFactory ( appAlias , APP_LOGGER_SERVICE , appAlias ) ,
318
- {
319
- provide : SYSTEM_LOGGER_SERVICE ,
320
- useFactory : ( logger ) => logger ,
321
- inject : [ APP_LOGGER_SERVICE ] ,
302
+ providers . push (
303
+ LoggerServiceFactory ( APP_LOGGER_SERVICE , appAlias ) ,
304
+ {
305
+ provide : AppConfigService ,
306
+ useFactory : ( config : ConfigService ) => {
307
+ return new AppConfigService ( config , appAlias ) ;
322
308
} ,
323
- ) ;
324
- }
309
+ inject : [ ConfigService ] ,
310
+ } ,
311
+ {
312
+ provide : SYSTEM_LOGGER_SERVICE ,
313
+ useFactory : ( logger ) => logger ,
314
+ inject : [ APP_LOGGER_SERVICE ] ,
315
+ } ,
316
+ ) ;
325
317
326
318
const exports : NonNullable < DynamicModule [ 'exports' ] > = [
327
319
APP_OPTION_TOKEN ,
328
320
APP_ALIAS_TOKEN ,
329
321
] ;
330
322
331
- if ( options ?. logger ) {
332
- exports . push ( APP_LOGGER_SERVICE , SYSTEM_LOGGER_SERVICE ) ;
333
- }
323
+ exports . push ( APP_LOGGER_SERVICE , SYSTEM_LOGGER_SERVICE ) ;
334
324
335
- /**
336
- * This is a workaround to make sure that the DefaultAppModule is always injected
337
- * with the last configurations, basically the ones defined from the app itself
338
- *
339
- * NOTE: The best way is to use the isApp flag to always identify when a module is an App
340
- */
341
- const config = registerSingletonDynamicModule (
342
- true ,
343
- YalcDefaultAppModule ,
344
- { } ,
345
- ) ;
346
- const newConfig = yalcBaseAppModuleMetadataFactory (
347
- YalcDefaultAppModule ,
348
- `YalcDef-${ appAlias } ` ,
349
- {
350
- global : true ,
351
- isSingleton : false ,
352
- logger : false ,
353
- isStandalone : options ?. isStandalone ,
354
- skipDefaultApp : true ,
355
- skipDuplicateAppCheck : true ,
356
- imports,
357
- providers,
358
- exports,
359
- } ,
360
- ) as IYalcBaseDynamicModule ;
361
-
362
- Object . assign ( config , newConfig ) ;
363
-
364
- config . module = YalcDefaultAppModule ;
365
- config . global = true ;
366
- config . isSingleton = true ;
367
-
368
- return config ;
325
+ return {
326
+ exports,
327
+ providers,
328
+ imports : _imports ,
329
+ module : YalcDefaultAppModule ,
330
+ global : true ,
331
+ } ;
369
332
}
370
333
}
0 commit comments