@@ -54,7 +54,6 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
54
54
55
55
public ngAfterViewInit ( ) : void {
56
56
this . sortScopesList ( ) ;
57
- ScopesDialogComponent . setScopesEnabledTarget ( ) ;
58
57
( window as any ) . launchPermissionsDialog = ScopesDialogComponent . showDialog ;
59
58
this . scopesListTableHeight = window
60
59
. getComputedStyle ( this . scopesTableList . nativeElement , null ) . getPropertyValue ( 'height' ) ;
@@ -75,7 +74,7 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
75
74
public scopeListIsDirty ( ) : boolean {
76
75
77
76
// Determine whether the scope list has changed. The scope list has changed if isDirty = true.
78
- const isDirty = PermissionScopes . filter ( ( s ) => s . enabled !== s . enabledTarget ) . length > 0 ;
77
+ const isDirty = PermissionScopes . filter ( ( s ) => s . requested === true ) . length > 0 ;
79
78
80
79
// Reduce the size of the scopes table list by the size of the message bar. We only want to make this
81
80
// Change the first time that the selected scope list is changed.
@@ -104,9 +103,9 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
104
103
*/
105
104
public requestingAdminScopes ( ) : boolean {
106
105
107
- // Determine whether a scope that requires admin consent has been selected . An admin consent scope has been
106
+ // Determine whether a scope that requires admin consent has been requested . An admin consent scope has been
108
107
// Selected if isDirty = true.
109
- const isDirty = PermissionScopes . filter ( ( s ) => s . admin && s . enabledTarget ) . length > 0 ;
108
+ const isDirty = PermissionScopes . filter ( ( s ) => s . admin && s . requested ) . length > 0 ;
110
109
111
110
// Reduce the size of the scopes table list by the size of the message bar. We only want to make this
112
111
// Change the first time that the selected scope list is changed.
@@ -132,18 +131,18 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
132
131
}
133
132
134
133
/**
135
- * Toggles whether the scope has been targeted to be enabled . This will be used to determine whether we
136
- * need to request consent for this scope.
134
+ * Toggles whether the scope will be requested . This occurs in the Modify Permissions UI by selecting a checkbox.
135
+ * This will be used to determine whether we will request consent for this scope.
137
136
* @param scope The scope to toggle its enabled state.
138
137
*/
139
- public toggleScopeEnabled ( scope : IPermissionScope ) {
140
- scope . enabledTarget = ! scope . enabledTarget ;
138
+ public toggleRequestScope ( scope : IPermissionScope ) {
139
+ scope . requested = ! scope . requested ;
141
140
142
141
// Track whether we have any admin scopes selected in the UI to be enabled for the user.
143
- if ( scope . admin && scope . enabledTarget ) {
142
+ if ( scope . admin && scope . requested ) {
144
143
this . selectedTargetedAdminScopes . push ( scope ) ;
145
144
this . hasSelectedAdminScope = true ;
146
- } else if ( scope . admin && ! scope . enabledTarget ) {
145
+ } else if ( scope . admin && ! scope . requested ) {
147
146
this . selectedTargetedAdminScopes = this . selectedTargetedAdminScopes . filter ( ( e ) => e !== scope ) ;
148
147
if ( this . selectedTargetedAdminScopes . length === 0 ) {
149
148
this . hasSelectedAdminScope = false ;
@@ -169,15 +168,17 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
169
168
response_type : 'token' ,
170
169
nonce : 'graph_explorer' ,
171
170
prompt : 'select_account' ,
172
- // This, login_hint: AppComponent.explorerValues.authentication.user.emailAddress, // breaks MSA login
173
- scope : PermissionScopes . filter ( ( scope ) => scope . enabledTarget ) . map ( ( scope ) => scope . name ) . join ( ' ' ) ,
171
+ /* Login hint not applied via AppComponent.explorerValues.authentication.user.emailAddress
172
+ /* as it breaks MSA login. */
173
+ scope : PermissionScopes . filter ( ( scope ) => scope . requested && ! scope . consented )
174
+ . map ( ( scope ) => scope . name )
175
+ . join ( ' ' ) ,
174
176
} ;
175
177
176
178
hello ( 'msft' ) . login ( loginProperties ) ;
177
179
}
178
180
179
181
public static showDialog ( ) { // tslint:disable-line
180
- ScopesDialogComponent . setScopesEnabledTarget ( ) ;
181
182
182
183
const el = document . querySelector ( '#scopes-dialog' ) ;
183
184
const fabricDialog = new fabric . Dialog ( el ) ;
@@ -187,12 +188,4 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
187
188
component : mwf . Checkbox ,
188
189
} ] ) ;
189
190
}
190
-
191
- public static setScopesEnabledTarget ( ) { // tslint:disable-line
192
- // Populate enabledTarget
193
- for ( const scope of PermissionScopes ) {
194
- scope . enabledTarget = scope . enabled ;
195
- }
196
- }
197
-
198
191
}
0 commit comments