Skip to content

Commit ed5988c

Browse files
committed
fix(settings/teams-integration): display error indication and help link KMCNG-2657
1 parent bc89272 commit ed5988c

8 files changed

+75
-27
lines changed

src/applications/settings-integration-settings-app/settings-integration-settings-app.module.ts

+26-24
Original file line numberDiff line numberDiff line change
@@ -37,32 +37,34 @@ import { TeamsComponent } from './teams/teams.component';
3737
import { TeamsProfilesTableComponent } from './teams/profiles-table/profiles-table.component';
3838
import { TeamsNewProfileComponent } from './teams/new-profile/new-profile.component';
3939
import { EditTeamsProfileComponent } from './teams/edit-profile/edit-profile.component';
40-
import {TeamsUpdateProfileSecretComponent} from './teams/update-secret/update-secret.component';
40+
import { TeamsUpdateProfileSecretComponent } from './teams/update-secret/update-secret.component';
41+
import { LocalizationModule } from '@kaltura-ng/mc-shared';
4142

4243
@NgModule({
43-
imports: [
44-
CommonModule,
45-
RouterModule.forChild(routing),
46-
ReactiveFormsModule,
47-
DropdownModule,
48-
InputTextModule,
49-
InputSwitchModule,
50-
RadioButtonModule,
51-
ButtonModule,
52-
AreaBlockerModule,
53-
TranslateModule,
54-
AutoCompleteModule,
55-
TooltipModule,
56-
MenuModule,
57-
InputTextareaModule,
58-
PopupWidgetModule,
59-
StickyModule,
60-
CategoriesModule,
61-
KMCPermissionsModule,
62-
InputHelperModule,
63-
KMCPermissionsModule,
64-
TableModule
65-
],
44+
imports: [
45+
CommonModule,
46+
RouterModule.forChild(routing),
47+
ReactiveFormsModule,
48+
DropdownModule,
49+
InputTextModule,
50+
InputSwitchModule,
51+
RadioButtonModule,
52+
ButtonModule,
53+
AreaBlockerModule,
54+
TranslateModule,
55+
AutoCompleteModule,
56+
TooltipModule,
57+
MenuModule,
58+
InputTextareaModule,
59+
PopupWidgetModule,
60+
StickyModule,
61+
CategoriesModule,
62+
KMCPermissionsModule,
63+
InputHelperModule,
64+
KMCPermissionsModule,
65+
TableModule,
66+
LocalizationModule
67+
],
6668
declarations: [
6769
SettingsIntegrationSettingsComponent,
6870
AccountInfoComponent,

src/applications/settings-integration-settings-app/teams/profiles-table/profiles-table.component.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@
4040
</span>
4141
</td>
4242
<td class="kPrivacyContextLabel" [ngStyle]="{'width': '14%'}">
43-
<span class="kTableColumn">
43+
<span class="kTableColumn" >
4444
{{profile.status === 'enabled' ? ('applications.settings.integrationSettings.zoom.enabled' | translate) : ('applications.settings.integrationSettings.zoom.disabled' | translate)}}
45+
<i *ngIf="profile.lastError" class="kIconInfo_Full kHelpTip" [kTooltip]="profile.lastError.message"></i>
4546
</span>
4647
</td>
4748

src/applications/settings-integration-settings-app/teams/profiles-table/profiles-table.component.scss

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@
1212
}
1313

1414
.kPrivacyContextLabel {
15-
15+
.kHelpTip{
16+
font-size: 15px;
17+
margin-left: 4px;
18+
cursor: pointer;
19+
color: $kDandger;
20+
&:hover{
21+
color: $kGrayscale1;
22+
}
23+
}
1624
}
1725

1826
.kActionsColumn {

src/applications/settings-integration-settings-app/teams/teams.component.html

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
<div class="tableHolder">
1212
<kTeamsProfilesTable [_profiles]="_profiles" (onActionSelected)="_onActionSelected($event)"></kTeamsProfilesTable>
1313
</div>
14+
15+
<div class="errorsFound" *ngIf="_errorsFound">
16+
<i class="kIconInfo_Full"></i>
17+
<span>{{'applications.settings.integrationSettings.teams.error1' | translate}}</span>
18+
<span class="link" (click)="openErrorsHelp()">{{'applications.settings.integrationSettings.teams.error2' | translate}}</span>
19+
</div>
1420
</div>
1521
</k-area-blocker>
1622

src/applications/settings-integration-settings-app/teams/teams.component.scss

+18
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,23 @@
3838
height: 100%;
3939
overflow-y: auto;
4040
}
41+
.errorsFound {
42+
display: flex;
43+
align-items: center;
44+
margin-top: 24px;
45+
font-size: 14px;
46+
color: $kGrayscale1;
47+
gap: 4px;
48+
i {
49+
color: $kGrayscale3;
50+
margin-right: 4px;
51+
}
52+
.link {
53+
text-decoration: none;
54+
color: $kPrimary;
55+
cursor: pointer;
56+
font-weight: normal;
57+
}
58+
}
4159
}
4260

src/applications/settings-integration-settings-app/teams/teams.component.ts

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export class TeamsComponent implements OnInit, OnDestroy {
2727
public _isBusy = false;
2828
public _kmcPermissions = KMCPermissions;
2929
public totalCount = 0;
30+
public _errorsFound = false;
3031

3132
@ViewChild('editProfile', {static: true}) editProfilePopup: PopupWidgetComponent;
3233
@ViewChild('updateSecretPopup', {static: true}) updateSecretPopup: PopupWidgetComponent;
@@ -165,6 +166,7 @@ export class TeamsComponent implements OnInit, OnDestroy {
165166
this._updateAreaBlockerState(false, null);
166167
this._profiles = response.objects || [];
167168
this.totalCount = this._profiles.length;
169+
this._errorsFound = this._profiles.find(profile => profile.lastError?.message?.length) !== undefined;
168170
}
169171
},
170172
error => {
@@ -232,6 +234,11 @@ export class TeamsComponent implements OnInit, OnDestroy {
232234
this._analytics.trackButtonClickEvent(ButtonType.Add, 'Teams_initiate_new_integration');
233235
}
234236

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+
235242
private _updateAreaBlockerState(isBusy: boolean, areaBlocker: AreaBlockerMessage): void {
236243
this._logger.debug(`update areablocker state`, {isBusy, message: areaBlocker ? areaBlocker.message : null});
237244
this._isBusy = isBusy;

src/applications/settings-integration-settings-app/teams/teams.service.ts

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ export type TeamsIntegration = {
4444
settings?: TeamsIntegrationSettings;
4545
status?: 'enabled' | 'disabled';
4646
updatedAt?: Date;
47+
lastError?: {
48+
code: string,
49+
message: string
50+
}
4751
}
4852

4953
export type LoadTeamsIntegrationResponse = {

src/i18n/en.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -3085,7 +3085,9 @@
30853085
"createUser": "Create new user based on teams user",
30863086
"secret": "Update Secret",
30873087
"update": "Update",
3088-
"docLink": "Teams integration article"
3088+
"docLink": "Teams integration article",
3089+
"error1":"We've detected an error on at least one integration. For help in troubleshooting, ",
3090+
"error2": "click here"
30893091
},
30903092
"webex": {
30913093
"title": "Webex integration",

0 commit comments

Comments
 (0)