@@ -27,6 +27,7 @@ export class TeamsComponent implements OnInit, OnDestroy {
27
27
public _isBusy = false ;
28
28
public _kmcPermissions = KMCPermissions ;
29
29
public totalCount = 0 ;
30
+ public _errorsFound = false ;
30
31
31
32
@ViewChild ( 'editProfile' , { static : true } ) editProfilePopup : PopupWidgetComponent ;
32
33
@ViewChild ( 'updateSecretPopup' , { static : true } ) updateSecretPopup : PopupWidgetComponent ;
@@ -165,6 +166,7 @@ export class TeamsComponent implements OnInit, OnDestroy {
165
166
this . _updateAreaBlockerState ( false , null ) ;
166
167
this . _profiles = response . objects || [ ] ;
167
168
this . totalCount = this . _profiles . length ;
169
+ this . _errorsFound = this . _profiles . find ( profile => profile . lastError ?. message ?. length ) !== undefined ;
168
170
}
169
171
} ,
170
172
error => {
@@ -232,6 +234,11 @@ export class TeamsComponent implements OnInit, OnDestroy {
232
234
this . _analytics . trackButtonClickEvent ( ButtonType . Add , 'Teams_initiate_new_integration' ) ;
233
235
}
234
236
237
+ public openErrorsHelp ( ) : void {
238
+ this . _analytics . trackButtonClickEvent ( ButtonType . Browse , 'Teams_errors_guide' ) ;
239
+ this . _browserService . openLink ( 'https://knowledge.kaltura.com/help/kaltura-video-integration-with-teams#troubleshooting' ) ;
240
+ }
241
+
235
242
private _updateAreaBlockerState ( isBusy : boolean , areaBlocker : AreaBlockerMessage ) : void {
236
243
this . _logger . debug ( `update areablocker state` , { isBusy, message : areaBlocker ? areaBlocker . message : null } ) ;
237
244
this . _isBusy = isBusy ;
0 commit comments