Skip to content

Commit 4f73b40

Browse files
committed
fix: QBD app name references (#1106)
1 parent 5e0d388 commit 4f73b40

12 files changed

+51
-33
lines changed

src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.html

+20-20
Large diffs are not rendered by default.

src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export class ConfigurationImportFieldComponent implements OnInit {
5959

6060
isXeroProjectMapped: boolean;
6161

62+
uiExposedAppName: string;
63+
6264
importCodeSelectorOptions: Record<string, { label: string; value: boolean; subLabel: string; }[]> = {
6365
"ACCOUNT": [
6466
{
@@ -308,6 +310,7 @@ export class ConfigurationImportFieldComponent implements OnInit {
308310
}
309311

310312
ngOnInit(): void {
313+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
311314
if (this.form.controls?.dependentFieldImportToggle?.value) {
312315
this.form.controls?.dependentFieldImportToggle.disable();
313316
}

src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h5 class="tw-text-text-secondary tw-text-14-px !tw-font-500">{{ label | snakeCaseToSpaceCase}}<app-mandatory-field *ngIf="isFieldMandatory"></app-mandatory-field></h5>
1010
<h5 *ngIf="!(exportConfigurationIconPath && appName === AppName.TRAVELPERK ) && (subLabel !== undefined|| (formControllerName !== 'reimbursableExportType' && formControllerName!=='cccExportType' && formControllerName !== 'creditCardExportType'))" class="!tw-text-text-muted tw-text-14-px !tw-font-400 !tw-leading-4 tw-max-w-600-px tw-text-pretty" [ngClass]="{'tw-pt-4-px': brandingConfig.brandId === 'co', 'tw-pt-8-px': brandingConfig.brandId !== 'co'}" [innerHTML]="subLabel"></h5>
1111
<h5 *ngIf="(formControllerName === 'reimbursableExportType' || formControllerName === 'cccExportType' || formControllerName === 'creditCardExportType') && appName !== AppName.QBO && subLabel === undefined && !(formControllerName === 'cccExportType' && brandingConfig.brandId === 'co' && exportConfigurationIconPath && appName === AppName.INTACCT)" class="!tw-text-text-muted tw-text-14-px !tw-font-400 !tw-leading-4" [ngClass]="{'tw-pt-4-px': brandingConfig.brandId === 'co', 'tw-pt-8-px': brandingConfig.brandId !== 'co'}">
12-
Choose the type of transaction record that you would like to create in {{ appName }} while exporting expenses from {{brandingConfig.brandName}}. <span *ngIf="exportConfigurationIconPath && appName === AppName.INTACCT">Click<a (click)="showExportTable()" class="tw-cursor-pointer tw-text-link-primary"> here</a> for more details.</span>
12+
Choose the type of transaction record that you would like to create in {{ uiExposedAppName }} while exporting expenses from {{brandingConfig.brandName}}. <span *ngIf="exportConfigurationIconPath && appName === AppName.INTACCT">Click<a (click)="showExportTable()" class="tw-cursor-pointer tw-text-link-primary"> here</a> for more details.</span>
1313
</h5>
1414
<h5 *ngIf="subLabel && (exportConfigurationIconPath && appName === AppName.TRAVELPERK)" class="!tw-text-text-muted tw-text-14-px tw-pt-8-px !tw-font-400 !tw-leading-4 tw-max-w-600-px tw-text-pretty" >{{subLabel}}<span class="tw-pl-4-px">Click<a (click)="showExportTable()" class="tw-cursor-pointer tw-text-link-primary"> here</a> for Preview</span></h5>
1515
<h5 *ngIf="formControllerName === 'cccExportType' && brandingConfig.brandId === 'co' && exportConfigurationIconPath && appName === AppName.INTACCT" class="!tw-text-text-muted tw-text-14-px tw-pt-8-px !tw-font-400 !tw-leading-4 tw-max-w-600-px tw-text-pretty" >Select the type of Sage Intacct transaction to export your expenses.<span class="tw-pl-4-px">Learn<a (click)="showExportTable()" class="tw-cursor-pointer tw-text-link-primary"> more</a> about exporting.</span></h5>
@@ -93,8 +93,8 @@ <h5 *ngIf="formControllerName === 'cccExportType' && brandingConfig.brandId ===
9393
</p-dropdown>
9494
<div *ngIf="showExportPreview && form.controls[formControllerName].value" class="sub-text tw-text-pretty tw-pt-3-px">
9595
<a class="tw-text-link-primary !tw-cursor-pointer" (click)="showExportPreviewDialog(form.controls[formControllerName].value)">Preview</a>
96-
<span *ngIf="brandingConfig.brandId !== 'co'"> how it looks on {{appName}}</span>
97-
<span *ngIf="brandingConfig.brandId === 'co'"> in {{appName}}</span>
96+
<span *ngIf="brandingConfig.brandId !== 'co'"> how it looks on {{uiExposedAppName}}</span>
97+
<span *ngIf="brandingConfig.brandId === 'co'"> in {{uiExposedAppName}}</span>
9898
</div>
9999
<div *ngIf="!showExportPreview && isDisabled && isDisableTextRequired" class="sub-text tw-text-pretty">
100100
<span>Auto-selected based on your export module</span>

src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ export class ConfigurationSelectFieldComponent implements OnInit, OnChanges {
8181

8282
exportTypeIconPath: string;
8383

84+
uiExposedAppName: string;
85+
8486
meridiemOption: string[] = ['AM', 'PM'];
8587

8688
timeOption: string[] = ['01:00', '01:30', '02:00', '02:30', '03:00', '03:30', '04:00', '04:30', '05:00', '05:30', '06:00', '06:30', '07:00', '07:30', '08:00', '08:30', '09:00', '09:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30'];
@@ -159,6 +161,7 @@ export class ConfigurationSelectFieldComponent implements OnInit, OnChanges {
159161
}
160162

161163
ngOnInit(): void {
164+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
162165
this.isOnboarding = this.router.url.includes('onboarding');
163166
if (this.destinationAttributes) {
164167
this.optionsCopy = this.destinationAttributes.slice();

src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4 class="tw-text-14-px !tw-font-500 tw-text-text-secondary">{{brandingConfig.b
2121
<h5 *ngIf="groupedErrorStat.EMPLOYEE_MAPPING" class="tw-text-text-muted tw-text-12-px">{{ groupedErrorStat.EMPLOYEE_MAPPING.resolvedCount }}/{{ groupedErrorStat.EMPLOYEE_MAPPING.totalCount }} {{groupedErrorStat.EMPLOYEE_MAPPING.totalCount > 1 ? 'errors' : 'error'}} resolved</h5>
2222
<div class="flex-wrapper">
2323
<h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leading-4">
24-
<p>Map employees in {{brandingConfig.brandName}} to their corresponding records in {{appName}}.</p>
24+
<p>Map employees in {{brandingConfig.brandName}} to their corresponding records in {{uiExposedAppName}}.</p>
2525
</h5>
2626
<div *ngIf="!groupedErrorStat.EMPLOYEE_MAPPING || (groupedErrorStat.EMPLOYEE_MAPPING && groupedErrorStat.EMPLOYEE_MAPPING.resolvedCount !== groupedErrorStat.EMPLOYEE_MAPPING.totalCount)">
2727
<span type="button" (click)="showMappingResolve(ErrorType.EMPLOYEE_MAPPING, errors.EMPLOYEE_MAPPING, ExportErrorSourceType.EMPLOYEE)" [ngClass]="[brandingConfig.brandId==='co' ? 'p-button primary-outline': 'p-button secondary-sm']">
@@ -45,7 +45,7 @@ <h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leadin
4545
<h4 class="tw-text-14-px !tw-font-500 tw-text-text-secondary">{{brandingConfig.brandId === 'co' ? (brandingContent.categoryMappingErrorText | sentenceCase) : brandingContent.categoryMappingErrorText}}</h4>
4646
<h5 *ngIf="groupedErrorStat.CATEGORY_MAPPING" class="tw-pt-4-px tw-text-text-muted tw-text-12-px">{{ groupedErrorStat.CATEGORY_MAPPING.resolvedCount }}/{{ groupedErrorStat.CATEGORY_MAPPING.totalCount }} {{groupedErrorStat.CATEGORY_MAPPING.totalCount > 1 ? 'errors' : 'error'}} resolved</h5>
4747
<div class="flex-wrapper">
48-
<h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leading-4"><p>Map categories in {{brandingConfig.brandName}} to their corresponding records in {{appName}}.</p>
48+
<h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leading-4"><p>Map categories in {{brandingConfig.brandName}} to their corresponding records in {{uiExposedAppName}}.</p>
4949
</h5>
5050
<div *ngIf="!groupedErrorStat.CATEGORY_MAPPING || (groupedErrorStat.CATEGORY_MAPPING && groupedErrorStat.CATEGORY_MAPPING.resolvedCount !== groupedErrorStat.CATEGORY_MAPPING.totalCount)">
5151
<span type="button" (click)="showMappingResolve(ErrorType.CATEGORY_MAPPING, errors.CATEGORY_MAPPING, ExportErrorSourceType.CATEGORY)" [ngClass]="[brandingConfig.brandId==='co' ? 'p-button primary-outline': 'p-button secondary-sm']">
@@ -66,8 +66,8 @@ <h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leadin
6666
<div *ngIf="errors?.ACCOUNTING_ERROR?.length" class="tw-pl-24-px tw-pr-24-px tw-pt-16-px">
6767
<div class="container">
6868
<div class="sub-text-container">
69-
<h4 class="tw-text-16-px !tw-font-500 tw-text-text-primary">{{appName}} {{brandingContent.qboErrorText}}</h4>
70-
<h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leading-4">Resolve these errors on your {{appName}} account before trying to export them again.</h5>
69+
<h4 class="tw-text-16-px !tw-font-500 tw-text-text-primary">{{uiExposedAppName}} {{brandingContent.qboErrorText}}</h4>
70+
<h5 class="!tw-text-text-muted tw-text-14-px tw-pt-10-px !tw-font-400 !tw-leading-4">Resolve these errors on your {{uiExposedAppName}} account before trying to export them again.</h5>
7171
</div>
7272
</div>
7373
</div>
@@ -106,7 +106,7 @@ <h5 class="!tw-text-text-muted tw-text-12-px tw-pt-10-px !tw-font-400 !tw-leadin
106106
<div *ngIf="isAccountingErrorDialogVisible">
107107
<p-dialog [dismissableMask]="true" [modal]="true" [(visible)]="isAccountingErrorDialogVisible" [position]="'topright'" [style]="{ width: 'fit-content', height: '100vh' }" [maximizable]="false" [draggable]="false" [resizable]="false" [breakpoints]="{ '960px': '75vw' }">
108108
<p-header>
109-
<p class="tw-text-text-primary tw-text-20-px tw-line-height-20">{{appName}} {{brandingContent.qboErrorDialogHeaderText}}</p>
109+
<p class="tw-text-text-primary tw-text-20-px tw-line-height-20">{{uiExposedAppName}} {{brandingContent.qboErrorDialogHeaderText}}</p>
110110
<h3 class="dialog-sub-header">
111111
<p>{{ errorDetail }}.
112112
<a *ngIf="errorArticle && brandingFeatureConfig.allowIntacctHelperDoc" class=" tw-pr-4-px tw-text-link-primary tw-w-fit tw-cursor-pointer tw-inline-flex tw-items-center"
@@ -133,7 +133,7 @@ <h3 class="dialog-sub-header">
133133
<p-dialog [dismissableMask]="true" [(visible)]="isMappingResolveVisible" [modal]="true" [position]="'topright'" [style]="{ width: 'fit-content', height: '100vh' }" [maximizable]="false" [draggable]="false" [resizable]="false" [breakpoints]="{ '960px': '75vw' }" (onHide)="handleResolvedMappingStat()">
134134
<p-header>
135135
<p class="tw-text-text-primary tw-text-20-px tw-line-height-20">{{ brandingConfig.brandId === 'co' ? (errorType | snakeCaseToSpaceCase | sentenceCase) : (errorType | snakeCaseToSpaceCase | titlecase) }} {{brandingContentCommon.errors}}</p>
136-
<p class="dialog-sub-header">Resolve the following mapping errors to export your failed expenses successfully to {{appName}}</p>
136+
<p class="dialog-sub-header">Resolve the following mapping errors to export your failed expenses successfully to {{uiExposedAppName}}</p>
137137
</p-header>
138138
<app-generic-mapping-table *ngIf="isMappingResolveVisible && !isLoading" [employeeFieldMapping]="employeeFieldMapping" [isLoading]="isLoading" [appName]="appName" [isDashboardMappingResolve]="true" [destinationField]="destinationField" [filteredMappings]="filteredMappings" [sourceField]="sourceField" [destinationOptions]="destinationOptions" [displayName]="displayName" [isMultiLineOption]="isMultiLineOption"></app-generic-mapping-table>
139139
</p-dialog>

src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ export class DashboardErrorSectionComponent implements OnInit {
5454

5555
@Input() chartOfAccounts: string[];
5656

57+
uiExposedAppName: string;
58+
5759
filteredMappings: ExtendedGenericMapping[];
5860

5961
destinationOptions: DestinationAttribute[];
@@ -238,6 +240,7 @@ export class DashboardErrorSectionComponent implements OnInit {
238240
}
239241

240242
ngOnInit(): void {
243+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
241244
this.employeeFieldMapping = this.destinationFieldMap.EMPLOYEE as unknown as FyleField;
242245
}
243246

src/app/shared/components/dashboard/dashboard-export-section/dashboard-export-section.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<app-svg-icon [styleClasses]="'tw-flex tw-mt-1-px tw-pr-8-px'" *ngIf="brandingFeatureConfig.illustrationsAllowed && !isExportInProgress && !exportableAccountingExportIds.length" [svgSource]="'check'" [height]="'24px'" [width]="'24px'"></app-svg-icon>
99
<app-svg-icon [styleClasses]="'tw-flex tw-mt-1-px tw-pr-8-px tw-text-icon-secondary'" *ngIf="brandingFeatureConfig.illustrationsAllowed && ((!isExportInProgress && exportableAccountingExportIds.length) || (isExportInProgress))" [svgSource]="'arrow-tail-up'" [height]="'24px'" [width]="'24px'"></app-svg-icon>
1010
<h3 class="tw-text-20-px tw-font-500 tw-text-text-primary" *ngIf="!isExportInProgress && !exportableAccountingExportIds.length && !accountingExportSummary">{{brandingContent.exportHeaderFirstTimeZeroStateText}}</h3>
11-
<h3 class="tw-text-20-px tw-font-500 tw-text-text-primary" *ngIf="isExportInProgress"> Exporting {{ processedCount }} of {{ exportableAccountingExportIds.length }} expense{{exportableAccountingExportIds.length > 1 ? 's' : ''}} to your {{appName}} account</h3>
11+
<h3 class="tw-text-20-px tw-font-500 tw-text-text-primary" *ngIf="isExportInProgress"> Exporting {{ processedCount }} of {{ exportableAccountingExportIds.length }} expense{{exportableAccountingExportIds.length > 1 ? 's' : ''}} to your {{uiExposedAppName}} account</h3>
1212
<h3 class="tw-text-20-px tw-font-500 tw-text-text-primary" *ngIf="!isExportInProgress && exportableAccountingExportIds.length"> {{ exportableAccountingExportIds.length }} expense{{exportableAccountingExportIds.length > 1 ? 's' : ''}} ready to export</h3>
1313
<h3 class="tw-text-20-px tw-font-500 tw-text-text-primary" *ngIf="!isExportInProgress && !exportableAccountingExportIds.length && accountingExportSummary?.successful_accounting_export_count">{{brandingContent.exportHeaderZeroStateText}}</h3>
1414
<app-svg-icon *ngIf="brandingConfig.brandId !== 'co'" [svgSource]="'info-circle-fill'" [width]="'16px'" [height]="'16px'" [styleClasses]="'tw-flex tw-text-info tw-ml-4-px'" [tooltipText]="'All expenses that have reached your export state in ' + brandingConfig.brandName + ' will be automatically imported and kept ready for export.'" [tooltipPosition]="'top'"></app-svg-icon>

src/app/shared/components/dashboard/dashboard-export-section/dashboard-export-section.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export class DashboardExportSectionComponent implements OnInit {
4040

4141
readonly brandingContent = brandingContent.dashboard;
4242

43+
uiExposedAppName: string;
44+
4345
importStates: string;
4446

4547
constructor() { }
@@ -74,6 +76,7 @@ export class DashboardExportSectionComponent implements OnInit {
7476
}
7577

7678
ngOnInit(): void {
79+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
7780
this.constructImportStates();
7881
}
7982

src/app/shared/components/helper/app-landing-page-header/app-landing-page-header.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</div>
1010
<div class="tw-pl-16-px tw-flex tw-flex-col">
1111
<div class="tw-flex tw-items-center tw-pt-6-px">
12-
<p class="tw-text-20-px tw-font-500 tw-text-text-primary">{{ appName }}</p>
12+
<p class="tw-text-20-px tw-font-500 tw-text-text-primary">{{ uiExposedAppName }}</p>
1313
<div>
1414
<app-svg-icon *ngIf="isIntegrationConnected && !isLoading && !hideRefreshIcon" [tooltipText]="'Sync Data'" [tooltipPosition]="'right'" [svgSource]="'arrow-rotate-sync'" [width]="'14px'" [height]="'14px'" [styleClasses]="'tw-cursor-pointer tw-ml-10-px tw-text-faded-text-color'" (iconClick)="syncData()"></app-svg-icon>
1515
</div>
@@ -27,7 +27,7 @@
2727
</p>
2828
<div *ngIf="isIntegrationSetupInProgress" class="tw-flex tw-text-slightly-normal-text-color tw-text-14-px tw-pt-10-px tw-pb-18-px">
2929
<app-loader [styleClass]="'spinner-16 tw-top-2-px'"></app-loader>
30-
<p class="tw-pl-10-px">We are syncing your data between your {{brandingConfig.brandName}} - {{ appName }} account and this may take a few seconds</p>
30+
<p class="tw-pl-10-px">We are syncing your data between your {{brandingConfig.brandName}} - {{ uiExposedAppName }} account and this may take a few seconds</p>
3131
</div>
3232
</div>
3333
</div>

src/app/shared/components/helper/app-landing-page-header/app-landing-page-header.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export class AppLandingPageHeaderComponent implements OnInit {
5959

6060
@Input() logoSectionStyleClasses: string = 'tw-rounded-4-px tw-border-1-px tw-border-bg-secondary tw-bg-white tw-w-176-px';
6161

62+
uiExposedAppName: string;
63+
6264
qboConnectButtonSource: string = 'assets/buttons/connect-to-qbo.svg';
6365

6466
xeroConnectButtonSource: string = 'assets/buttons/connect-to-xero.svg';
@@ -104,6 +106,7 @@ export class AppLandingPageHeaderComponent implements OnInit {
104106
}
105107

106108
ngOnInit(): void {
109+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
107110
}
108111

109112
}

src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ng-template pTemplate="header">
33
<tr>
44
<th class="!tw-pl-40-px">{{helper.sentenseCaseConversion(sourceField | snakeCaseToSpaceCase | titlecase)}} in {{brandingConfig.brandName}}</th>
5-
<th>{{helper.sentenseCaseConversion(destinationField | snakeCaseToSpaceCase | titlecase)}} in {{appName}}</th>
5+
<th>{{helper.sentenseCaseConversion(destinationField | snakeCaseToSpaceCase | titlecase)}} in {{uiExposedAppName}}</th>
66
<th *ngIf="!isDashboardMappingResolve">Status</th>
77
</tr>
88
</ng-template>

src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ export class GenericMappingTableComponent implements OnInit {
5858

5959
isSearchFocused: boolean;
6060

61+
uiExposedAppName: string;
62+
6163
readonly brandingFeatureConfig = brandingFeatureConfig;
6264

6365
readonly brandingConfig = brandingConfig;
@@ -247,6 +249,7 @@ export class GenericMappingTableComponent implements OnInit {
247249
}
248250

249251
ngOnInit(): void {
252+
this.uiExposedAppName = this.appName === AppName.QBD_DIRECT ? AppName.QBD : this.appName;
250253
this.constructDestinationOptions();
251254
this.optionSearchWatcher();
252255
}

0 commit comments

Comments
 (0)