{"version":3,"file":"src_app_views_furniture_confirmation_furniture-confirmation_module_ts.js","mappings":";;;;;;;;;;;;;;;;AACuD;AAE6B;;;AAEpF,MAAM,MAAM,GAAW;IACrB;QACE,IAAI,EAAE,EAAE;QACR,SAAS,EAAE,6FAA8B;KAC1C;CACF,CAAC;AAOK,MAAM,kCAAkC;;oHAAlC,kCAAkC;+HAAlC,kCAAkC;mIAHpC,CAAC,kEAAqB,CAAC,MAAM,CAAC,CAAC,EAC9B,yDAAY;mIAEX,kCAAkC,oFAFnC,yDAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;IERpB,wEAA6B;IAC3B,uEAA8B;IAC5B,uDAGF;IAAA,4DAAI;IACJ,oEAAG;IACD,uDACF;IAAA,4DAAI;IACN,qEAAe;;;IAPX,0DAGF;IAHE,4MAGF;IAEE,0DACF;IADE,oJACF;;;IAIN,yEAAwD;IAEpD,sFAA+D;IACjE,4DAAM;;;IADkB,0DAAiB;IAAjB,iFAAiB;;ADTpC,MAAM,8BAA8B;IAGzC,YACU,aAAqC,EACrC,MAAc,EACd,YAAmB;;QAFnB,kBAAa,GAAb,aAAa,CAAwB;QACrC,WAAM,GAAN,MAAM,CAAQ;QACd,iBAAY,GAAZ,YAAY,CAAO;QAL7B,WAAM,GAAkB,IAAI,CAAC;QAO3B,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,+BAA+B,CAAC,CAAC;QAE5D,MAAM,MAAM,GAAG,UAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,0CAAE,MAAM,CAAC;QAE1D,IAAI,MAAM,EAAE;YACV,IAAI,CAAC,MAAM,GAAG,kBAAM,CAAC,KAAK,0CAAG,QAAQ,CAAC,mCAAI,IAAI,CAAC;SAChD;IACH,CAAC;IAED,QAAQ,KAAU,CAAC;IAEnB,iBAAiB;QACf,IAAI,CAAC,aAAa,CAAC,gBAAgB,EAAE,CAAC;QACtC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,sBAAsB,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC;IAC1E,CAAC;;4GAtBU,8BAA8B;4HAA9B,8BAA8B;QCZ3C,yEAAiB;QAET,uEAAY;QAAA,4DAAK;QACrB,uEAAgB;QACd,qMAEF;QAAA,4DAAI;QACJ,4IASe;QACjB,4DAAM;QAER,0HAIM;QACN,yEAAsB;QAEc,uJAAS,uBAAmB,IAAC;QAC3D,yEAAO;QAAC,+EAAkB;QAAA,4DAAQ;;QApBrB,0DAAY;QAAZ,4EAAY;QAYzB,0DAAY;QAAZ,4EAAY;;;;;;;;;;;;;;;;;;;;;AClB6B;AAE8C;AACT;AACyB;;AAUtG,MAAM,2BAA2B;;sGAA3B,2BAA2B;wHAA3B,2BAA2B;4HAN7B;YACP,yDAAY;YACZ,sGAAkC;YAClC,uHAAqB;SACtB;mIAEU,2BAA2B,mBAPvB,6FAA8B,aAE3C,yDAAY;QACZ,sGAAkC;QAClC,uHAAqB","sources":["./src/app/views/furniture/confirmation/furniture-confirmation-routing.module.ts","./src/app/views/furniture/confirmation/furniture-confirmation.component.ts","./src/app/views/furniture/confirmation/furniture-confirmation.component.html","./src/app/views/furniture/confirmation/furniture-confirmation.module.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport { RouterModule, Routes } from '@angular/router';\n\nimport { FurnitureConfirmationComponent } from './furniture-confirmation.component';\n\nconst routes: Routes = [\n {\n path: '',\n component: FurnitureConfirmationComponent,\n },\n];\n\n@NgModule({\n declarations: [],\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class FurnitureConfirmationRoutingModule {}\n","import { Component, OnInit } from '@angular/core';\nimport { Title } from '@angular/platform-browser';\nimport { Router } from '@angular/router';\nimport { Branch } from 'src/app/services/branch/branch.model';\n\nimport { FurnitureCreditService } from 'src/app/services/furniture-credit/furniture-credit.service';\n\n@Component({\n selector: 'app-furniture-confirmation',\n templateUrl: './furniture-confirmation.component.html',\n styleUrls: ['./furniture-confirmation.component.scss'],\n})\nexport class FurnitureConfirmationComponent implements OnInit {\n branch: Branch | null = null;\n\n constructor(\n private creditService: FurnitureCreditService,\n private router: Router,\n private titleService: Title\n ) {\n this.titleService.setTitle('Sims Furniture | Confirmation');\n\n const extras = this.router.getCurrentNavigation()?.extras;\n\n if (extras) {\n this.branch = extras.state?.['branch'] ?? null;\n }\n }\n\n ngOnInit(): void {}\n\n onExitApplication() {\n this.creditService.clearApplication();\n this.router.navigateByUrl('/furniture/applicant', { replaceUrl: true });\n }\n}\n","
\n
\n

Confirmation

\n

\n Thank you! You have successfully submitted your credit application. A\n representative from Sims will contact you within one business day.\n

\n \n

\n For reference, your application was sent to our\n {{ branch.LocationName }} store, if you have any questions please\n contact them.\n

\n

\n Questions? Contact {{ branch.LocationName }} - we’re here to help!\n

\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n \n
\n
\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { FurnitureConfirmationRoutingModule } from './furniture-confirmation-routing.module';\nimport { FurnitureConfirmationComponent } from './furniture-confirmation.component';\nimport { BranchSelectionModule } from 'src/app/components/branches/branch-selection/branch-selection.module';\n\n@NgModule({\n declarations: [FurnitureConfirmationComponent],\n imports: [\n CommonModule,\n FurnitureConfirmationRoutingModule,\n BranchSelectionModule,\n ],\n})\nexport class FurnitureConfirmationModule {}\n"],"names":[],"sourceRoot":"webpack:///"}