@@ -18,6 +18,7 @@ import {
18
18
AppConfig ,
19
19
ConfigIntegrationKind ,
20
20
ServerAppPromptConfig ,
21
+ ServiceWorkerConfigParams ,
21
22
} from '../models/AppConfig' ;
22
23
import {
23
24
AppUserConfigCustomLinkOptions ,
@@ -481,6 +482,39 @@ export class ConfigHelper {
481
482
} ;
482
483
}
483
484
485
+ public static getServiceWorkerValues (
486
+ userConfig : AppUserConfig ,
487
+ serverConfig : ServerAppConfig ,
488
+ ) : ServiceWorkerConfigParams {
489
+ const useUserOverride = userConfig . serviceWorkerOverrideForTypical ;
490
+
491
+ const path = useUserOverride
492
+ ? Utils . getValueOrDefault (
493
+ userConfig . path ,
494
+ serverConfig . config . serviceWorker . path ,
495
+ )
496
+ : serverConfig . config . serviceWorker . path ;
497
+
498
+ const serviceWorkerParam = useUserOverride
499
+ ? Utils . getValueOrDefault ( userConfig . serviceWorkerParam , {
500
+ scope : serverConfig . config . serviceWorker . registrationScope ,
501
+ } )
502
+ : { scope : serverConfig . config . serviceWorker . registrationScope } ;
503
+
504
+ const serviceWorkerPath = useUserOverride
505
+ ? Utils . getValueOrDefault (
506
+ userConfig . serviceWorkerPath ,
507
+ serverConfig . config . serviceWorker . workerName ,
508
+ )
509
+ : serverConfig . config . serviceWorker . workerName ;
510
+
511
+ return {
512
+ path,
513
+ serviceWorkerParam,
514
+ serviceWorkerPath,
515
+ } ;
516
+ }
517
+
484
518
public static getUserConfigForConfigIntegrationKind (
485
519
configIntegrationKind : ConfigIntegrationKind ,
486
520
userConfig : AppUserConfig ,
@@ -490,19 +524,20 @@ export class ConfigHelper {
490
524
configIntegrationKind ,
491
525
) ;
492
526
switch ( integrationCapabilities . configuration ) {
493
- case IntegrationConfigurationKind . Dashboard :
527
+ case IntegrationConfigurationKind . Dashboard : {
494
528
/*
495
529
Ignores code-based initialization configuration and uses dashboard configuration only.
496
530
*/
531
+ const { path, serviceWorkerPath, serviceWorkerParam } =
532
+ this . getServiceWorkerValues ( userConfig , serverConfig ) ;
533
+
497
534
return {
498
535
appId : serverConfig . app_id ,
499
536
autoRegister : false ,
500
537
autoResubscribe : serverConfig . config . autoResubscribe ,
501
- path : serverConfig . config . serviceWorker . path ,
502
- serviceWorkerPath : serverConfig . config . serviceWorker . workerName ,
503
- serviceWorkerParam : {
504
- scope : serverConfig . config . serviceWorker . registrationScope ,
505
- } ,
538
+ path,
539
+ serviceWorkerPath,
540
+ serviceWorkerParam,
506
541
subdomainName : serverConfig . config . siteInfo . proxyOrigin ,
507
542
promptOptions :
508
543
this . getPromptOptionsForDashboardConfiguration ( serverConfig ) ,
@@ -612,6 +647,7 @@ export class ConfigHelper {
612
647
unattributed : serverConfig . config . outcomes . unattributed ,
613
648
} ,
614
649
} ;
650
+ }
615
651
case IntegrationConfigurationKind . JavaScript : {
616
652
/*
617
653
Ignores dashboard configuration and uses code-based configuration only.
0 commit comments