@@ -8,9 +8,10 @@ import { EmailsEndpoint } from 'src/app/types'
8
8
import { UserRecord } from 'src/app/types/record.local'
9
9
import { ShareEmailsDomainsComponentDialogInput } from 'src/app/cdk/interstitials/share-emails-domains/share-emails-domains.component'
10
10
import { InterstitialsService } from 'src/app/cdk/interstitials/interstitials.service'
11
- import { Observable } from 'rxjs'
11
+ import { EMPTY , Observable , of } from 'rxjs'
12
12
import { ShareEmailsDomainsDialogComponent } from 'src/app/cdk/interstitials/share-emails-domains/share-emails-domains-dialog.component'
13
13
import { TogglzService } from '../togglz/togglz.service'
14
+ import { filter , switchMap , tap } from 'rxjs/operators'
14
15
15
16
@Injectable ( {
16
17
providedIn : 'root' ,
@@ -24,54 +25,68 @@ export class LoginInterstitialsService {
24
25
private interstitialService : InterstitialsService ,
25
26
private toggleService : TogglzService
26
27
) {
27
- this . interstitialService
28
- . getInterstitialsViewed ( 'DOMAIN_INTERSTITIAL' )
29
- . subscribe ( ( viewed ) => {
30
- this . alreadySawSignDomainInterstitial = viewed
31
- } )
32
28
this . toggleService
33
29
. getStateOf ( 'LOGIN_DOMAINS_INTERSTITIAL' )
34
30
. subscribe ( ( state ) => {
35
31
this . loginDomainsInterstitialEnabled = state
36
32
} )
37
33
}
38
34
39
- checkLoginInterstitials ( userRecord : UserRecord ) : Observable < string [ ] > | void {
35
+ checkLoginInterstitials ( userRecord : UserRecord ) : Observable < string [ ] > {
36
+ if ( ! userRecord ?. userInfo ) {
37
+ return EMPTY
38
+ }
39
+
40
+ const isNotImpersonating =
41
+ userRecord . userInfo . REAL_USER_ORCID ===
42
+ userRecord . userInfo . EFFECTIVE_USER_ORCID
40
43
if (
41
- userRecord ?. userInfo &&
42
44
userRecord ?. emails ?. emailDomains &&
45
+ isNotImpersonating &&
46
+ ! this . userHasPublicDomains ( userRecord . emails ) &&
47
+ this . userHasPrivateDomains ( userRecord . emails ) &&
43
48
! this . alreadyCheckLoginInterstitials
44
49
) {
45
50
this . alreadyCheckLoginInterstitials = true
46
- const isNotImpersonating =
47
- userRecord . userInfo . REAL_USER_ORCID ===
48
- userRecord . userInfo . EFFECTIVE_USER_ORCID
49
-
50
- if (
51
- isNotImpersonating &&
52
- ! this . userHasPublicDomains ( userRecord . emails ) &&
53
- this . userHasPrivateDomains ( userRecord . emails ) &&
54
- this . loginDomainsInterstitialEnabled &&
55
- ! this . alreadySawSignDomainInterstitial
56
- ) {
57
- this . alreadySawSignDomainInterstitial = true
58
- this . interstitialService
59
- . setInterstitialsViewed ( 'DOMAIN_INTERSTITIAL' )
60
- . subscribe ( )
61
- const data : ShareEmailsDomainsComponentDialogInput = {
62
- userEmailsJson : userRecord . emails ,
63
- }
51
+ return this . interstitialService
52
+ . getInterstitialsViewed ( 'DOMAIN_INTERSTITIAL' )
53
+ . pipe (
54
+ tap ( ( viewed ) => {
55
+ this . alreadySawSignDomainInterstitial = viewed
56
+ } ) ,
57
+ filter ( ( ) => {
58
+ return (
59
+ this . loginDomainsInterstitialEnabled &&
60
+ ! this . alreadySawSignDomainInterstitial
61
+ )
62
+ } ) ,
63
+ switchMap ( ( ) => {
64
+ this . alreadySawSignDomainInterstitial = true
65
+ return this . interstitialService . setInterstitialsViewed (
66
+ 'DOMAIN_INTERSTITIAL'
67
+ )
68
+ } ) ,
69
+ switchMap ( ( ) => {
70
+ const data : ShareEmailsDomainsComponentDialogInput = {
71
+ userEmailsJson : userRecord . emails ,
72
+ }
64
73
65
- const dialog = this . _matDialog . open ( ShareEmailsDomainsDialogComponent , {
66
- data,
67
- width : '580px' ,
68
- disableClose : true ,
69
- autoFocus : false ,
70
- restoreFocus : false ,
71
- maxHeight : 'calc(100vh - 20px)' ,
72
- } )
73
- return dialog . afterClosed ( )
74
- }
74
+ const dialog = this . _matDialog . open (
75
+ ShareEmailsDomainsDialogComponent ,
76
+ {
77
+ data,
78
+ width : '580px' ,
79
+ disableClose : true ,
80
+ autoFocus : false ,
81
+ restoreFocus : false ,
82
+ maxHeight : 'calc(100vh - 20px)' ,
83
+ }
84
+ )
85
+ return dialog . afterClosed ( )
86
+ } )
87
+ )
88
+ } else {
89
+ return EMPTY
75
90
}
76
91
}
77
92
0 commit comments