Skip to content

Commit 3e2c8ed

Browse files
authored
Merge branch 'main' into OAuthMigration_Signin_utils
2 parents 3790b81 + 0599bb8 commit 3e2c8ed

File tree

5 files changed

+82
-46
lines changed

5 files changed

+82
-46
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v2.112.8 - 2025-04-01
2+
3+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.112.7...v2.112.8)
4+
5+
## v2.112.7 - 2025-03-31
6+
7+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.112.6...v2.112.7)
8+
9+
- [#2485](https://github.com/ORCID/orcid-angular/pull/2485): view interstitials only when signed in
10+
11+
## v2.112.6 - 2025-03-31
12+
13+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.112.5...v2.112.6)
14+
115
## v2.112.5 - 2025-03-27
216

317
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.112.4...v2.112.5)

src/app/account-trusted-parties/components/dialog-revoke-your-own-permissions/dialog-revoke-your-own-permissions.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
>
1919
</p>
2020

21-
<app-alert-message type="warning" class="orc-font-body-small">
21+
<app-alert-message type="notice" class="orc-font-body-small">
2222
<ng-container content i18n="@@account.warningRevokeAccess">
2323
This user will be notified that you have revoked your account delegate
2424
access permissions for their record.

src/app/account-trusted-parties/components/settings-users-that-thrust-you/settings-users-that-thrust-you.component.html

+1-6
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,7 @@
8282
<th mat-header-cell *matHeaderCellDef></th>
8383
<td mat-cell *matCellDef="let element">
8484
<div class="actions-container orc-font-body-small">
85-
<mat-icon
86-
(click)="revokeAccess(element)"
87-
class="warn pointer"
88-
[routerLink]="trustedPartiesUrl"
89-
>block</mat-icon
90-
>
85+
<mat-icon class="warn pointer">block</mat-icon>
9186

9287
<a
9388
class="underline warn"

src/app/cdk/interstitials/interstitials.service.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { HttpClient } from '@angular/common/http'
22
import { Injectable } from '@angular/core'
33
import { Observable, of } from 'rxjs'
4-
import { catchError, map, retry, switchMap } from 'rxjs/operators'
4+
import { catchError, filter, map, retry, switchMap, tap } from 'rxjs/operators'
55
import { UserService } from 'src/app/core'
66
import { ErrorHandlerService } from 'src/app/core/error-handler/error-handler.service'
77
type Interstitials = 'DOMAIN_INTERSTITIAL'
@@ -16,15 +16,17 @@ export class InterstitialsService {
1616
private _errorHandler: ErrorHandlerService
1717
) {}
1818

19-
setInterstitialsViewed(interstitial: Interstitials) {
19+
setInterstitialsViewed(interstitial: Interstitials, updateDatabase = true) {
2020
return this._userInfo.getUserSession().pipe(
2121
map((userInfo) => {
2222
const effectiveUser = userInfo?.userInfo?.EFFECTIVE_USER_ORCID
2323
localStorage.setItem(effectiveUser + '_' + interstitial, 'true')
2424
}),
25+
filter(() => updateDatabase),
2526
switchMap(() => this.addInterstitialFlag(interstitial))
2627
)
2728
}
29+
2830
getInterstitialsViewed(interstitial: Interstitials): Observable<boolean> {
2931
return this._userInfo.getUserSession().pipe(
3032
map((userInfo) => {
@@ -56,13 +58,23 @@ export class InterstitialsService {
5658
)
5759
}
5860

59-
private hasInterstitialFlag(interstitialName: string): Observable<boolean> {
61+
private hasInterstitialFlag(
62+
interstitialName: Interstitials
63+
): Observable<boolean> {
6064
return this._http
6165
.get<boolean>(
6266
`${runtimeEnvironment.API_WEB}account/hasInterstitialFlag/${interstitialName}`
6367
)
6468
.pipe(
6569
retry(3),
70+
switchMap((hasFlag) => {
71+
if (hasFlag) {
72+
return this.setInterstitialsViewed(interstitialName, false).pipe(
73+
map(() => hasFlag)
74+
)
75+
}
76+
return of(hasFlag)
77+
}),
6678
catchError((error) => this._errorHandler.handleError(error))
6779
)
6880
}

src/app/core/login-interstitials/login-interstitials.service.ts

+51-36
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import { EmailsEndpoint } from 'src/app/types'
88
import { UserRecord } from 'src/app/types/record.local'
99
import { ShareEmailsDomainsComponentDialogInput } from 'src/app/cdk/interstitials/share-emails-domains/share-emails-domains.component'
1010
import { InterstitialsService } from 'src/app/cdk/interstitials/interstitials.service'
11-
import { Observable } from 'rxjs'
11+
import { EMPTY, Observable, of } from 'rxjs'
1212
import { ShareEmailsDomainsDialogComponent } from 'src/app/cdk/interstitials/share-emails-domains/share-emails-domains-dialog.component'
1313
import { TogglzService } from '../togglz/togglz.service'
14+
import { filter, switchMap, tap } from 'rxjs/operators'
1415

1516
@Injectable({
1617
providedIn: 'root',
@@ -24,54 +25,68 @@ export class LoginInterstitialsService {
2425
private interstitialService: InterstitialsService,
2526
private toggleService: TogglzService
2627
) {
27-
this.interstitialService
28-
.getInterstitialsViewed('DOMAIN_INTERSTITIAL')
29-
.subscribe((viewed) => {
30-
this.alreadySawSignDomainInterstitial = viewed
31-
})
3228
this.toggleService
3329
.getStateOf('LOGIN_DOMAINS_INTERSTITIAL')
3430
.subscribe((state) => {
3531
this.loginDomainsInterstitialEnabled = state
3632
})
3733
}
3834

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
4043
if (
41-
userRecord?.userInfo &&
4244
userRecord?.emails?.emailDomains &&
45+
isNotImpersonating &&
46+
!this.userHasPublicDomains(userRecord.emails) &&
47+
this.userHasPrivateDomains(userRecord.emails) &&
4348
!this.alreadyCheckLoginInterstitials
4449
) {
4550
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+
}
6473

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
7590
}
7691
}
7792

0 commit comments

Comments
 (0)