-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: qbd connector setup UI changes (#1060)
* feat: qbd connector setup UI changes * Merge branch qbd-direct-onboarding-download-file-UI into qbd-direct-step-connector-UI * feat: Qbd direct connection data sync UI changes (#1061) * feat: Qbd direct connection data sync UI changes * input made required * svg update * feat: qbd direct pre requisite ts changes (#1062) * feat: qbd direct pre requisite ts changes * feat: qbd direct pre requisite ts changes * feat: qbd direct connector download file ts changes (#1063) * feat: qbd direct connector download file ts changes * feat: qbd direct connector setup connector ts changes (#1064) * feat: qbd direct connector setup connector ts changes * feat: qbd direct connector data sync up ts changes (#1065) * PR comment fix * PR comment fix * Qbd direct connector data sync up ts (#1070) * feat: qbd direct pre requisite ts changes * feat: qbd direct pre requisite ts changes * feat: qbd direct connector download file ts changes * feat: qbd direct connector setup connector ts changes * feat: qbd direct connector data sync up ts changes * feat: QBD direct main connection page business logic (#1066) * feat: QBD direct main connection page business logic * onboarding connection ts changes * onboarding connection ts changes --------- Co-authored-by: ashwin1111 <[email protected]> --------- Co-authored-by: ashwin1111 <[email protected]>
- Loading branch information
1 parent
0e62698
commit d1140bb
Showing
40 changed files
with
705 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pp/core/services/qbd-direct/qbd-direct-configuration/qbd-direct-connector.service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 16 additions & 1 deletion
17
src/app/core/services/qbd-direct/qbd-direct-configuration/qbd-direct-connector.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
import { Injectable } from '@angular/core'; | ||
import { ApiService } from '../../common/api.service'; | ||
import { WorkspaceService } from '../../common/workspace.service'; | ||
import { Observable } from 'rxjs'; | ||
import { QbdConnectorPost, QbdConnectorGet, SyncDataType } from 'src/app/core/models/qbd-direct/qbd-direct-configuration/qbd-direct-connector.model'; | ||
|
||
@Injectable({ | ||
providedIn: 'root' | ||
}) | ||
export class QbdDirectConnectorService { | ||
|
||
constructor() { } | ||
constructor( | ||
private apiService: ApiService, | ||
private workspaceService: WorkspaceService | ||
) { } | ||
|
||
postQbdDirectConntion(payload: QbdConnectorPost): Observable<QbdConnectorGet> { | ||
return this.apiService.post(`/workspaces/${this.workspaceService.getWorkspaceId()}/connector_settings/`, payload); | ||
} | ||
|
||
syncAttribuites(): Observable<SyncDataType[]> { | ||
return this.apiService.get(`/workspaces/${this.workspaceService.getWorkspaceId()}/qbd/attribute_stats/`, {}); | ||
} | ||
} |
16 changes: 0 additions & 16 deletions
16
src/app/core/services/qbd-direct/qbd-direct-core/qbd-direct-connector.service.spec.ts
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
src/app/core/services/qbd-direct/qbd-direct-core/qbd-direct-connector.service.ts
This file was deleted.
Oops, something went wrong.
62 changes: 61 additions & 1 deletion
62
...onboarding/qbd-direct-onboarding-connector/qbd-direct-onboarding-connector.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,61 @@ | ||
<app-qbd-direct-download-file></app-qbd-direct-download-file> | ||
<div class="tw-pb-48-px"> | ||
<app-onboarding-steppers [onboardingSteps]="onboardingSteps"></app-onboarding-steppers> | ||
<div> | ||
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-pt-80-px"> | ||
<app-loader></app-loader> | ||
</div> | ||
<div *ngIf="!isLoading" class="configuration--contents tw-border-border-tertiary tw-mt-24-px" [ngClass]="{'tw-mx-120-px tw-shadow-app-card': brandingConfig.brandId === 'fyle', 'tw-mx-60-px tw-shadow-shadow-level-1': brandingConfig.brandId === 'co'}"> | ||
<div> | ||
<app-configuration-step-header | ||
[headerText]="brandingContent.configurationHeaderText" | ||
[contentText]="brandingContent.configurationSubHeaderText" | ||
[redirectLink]="redirectLink"> | ||
</app-configuration-step-header> | ||
</div> | ||
<div class="tw-px-24-px"> | ||
<div class="tw-py-24-px"> | ||
<app-qbd-direct-download-file | ||
[isLoading]="isDownloadfileLoading" | ||
[showDownloadLink]="showDownloadLink" | ||
[isStepCompleted]="isDownloadStepCompleted" | ||
[isCompanyPathInvalid]="isCompanyPathInvalid" | ||
(nextStep)="proceedToConnection()" | ||
(downloadClick)="triggerDownload($event)" | ||
(retryClick)="retry()" | ||
(manualDownload)="triggerManualDownload()"></app-qbd-direct-download-file> | ||
</div> | ||
<div class="tw-py-24-px"> | ||
<app-qbd-direct-setup-connection | ||
[showSection]="isDownloadStepCompleted" | ||
[password]="password" | ||
[isLoading]="isConnectionLoading" | ||
[connectionStatus]="connectionStatus" | ||
[isStepCompleted]="isConnectionStepCompleted" | ||
[isCTAEnabled]="isConnectionCTAEnabled" | ||
(doneClick)="onConnectionDone($event)" | ||
(nextClick)="proceedToSyncData()"></app-qbd-direct-setup-connection> | ||
</div> | ||
<div class="tw-py-24-px"> | ||
<app-qbd-direct-data-sync | ||
[isLoading]="isDataSyncLoading" | ||
[qbdFields]="qbdFields" | ||
[isCTAEnabled]="isDataSyncCTADisabled" | ||
[showSection]="isConnectionStepCompleted" | ||
(continueClick)="proceedToExportSetting()"></app-qbd-direct-data-sync> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div *ngIf="isDialogVisible"> | ||
<app-configuration-confirmation-dialog | ||
(warningAccepted)="closeDialog($event)" | ||
[isWarningVisible]="isDialogVisible" | ||
[headerText]="'Connection failed'" | ||
[contextText]="warningDialogText" | ||
[confirmBtnText]="'Got it'" | ||
[appName]="appName" | ||
[showSecondaryCTA]="false"> | ||
</app-configuration-confirmation-dialog> | ||
</div> |
Oops, something went wrong.