\r\n\r\n","import { Component, OnInit, HostListener, ElementRef, Renderer2, ViewChild } from '@angular/core';\r\nimport { MatDialog } from '@angular/material/dialog';\r\nimport { DateAdapter } from '@angular/material/core';\r\n\r\nimport { environment } from '../environments/environment';\r\nimport { CurrentUserService } from \"./security/current-user.service\";\r\nimport { Router, NavigationStart, NavigationEnd, ActivatedRoute } from '@angular/router';\r\nimport { MatIconRegistry } from \"@angular/material/icon\";\r\nimport { DomSanitizer, SafeResourceUrl } from \"@angular/platform-browser\";\r\nimport { filter } from 'rxjs/operators';\r\nimport { CommunicationService } from './shared/services/communication.service';\r\nimport { LandingPageComponent } from './views/landing-page/landing-page.component';\r\nimport { ConfirmationDialogComponent, ConfirmationDialogModel } from './shared/dialogs/confirmation/confirmation-dialog.component';\r\nimport { LogInOutComponent } from './security/loginout/loginout.component';\r\nimport { KeepAliveService } from './shared/services/keep-alive.service';\r\nimport { ConfirmationDialogEnums } from './shared/enums/confirmation-dialog.enum';\r\nimport { SettingsService } from './shared/services/settings.service';\r\nimport { Settings } from './shared/models/settings.model';\r\nimport { BrowserStorageService } from './shared/services/browserstorage.service';\r\nimport { BrowserStorageEnums } from './shared/enums/browserstorage.enum'; \r\nimport { UtilityHelper } from './shared/utility.helper';\r\nimport { FieldDefinitionService } from './shared/services/field-definition.service';\r\nimport { NavigationService } from './shared/services/navigation.service';\r\nimport { ScriptableBaseComponent } from './shared/components/scriptable-base/scriptable-base.component';\r\nimport { QueryParamsService } from './shared/services/query-params.service';\r\nimport { AttachmentService } from './shared/services/attachment.service';\r\nimport { FormFieldTypeAndNameService } from './shared/services/form-field-type-and-name.service';\r\nimport { CurrentSiteService } from './shared/services/current-site.service';\r\nimport { ItemTypeEnum } from './shared/enums/item-type.enum';\r\nimport { Subscription } from 'rxjs';\r\n\r\ndeclare var $: any;\r\n\r\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.scss'],\n standalone: false\n})\r\nexport class AppComponent extends ScriptableBaseComponent implements OnInit {\r\n // Properties.\r\n millsecondsSinceLastInteraction = 0;\r\n showHeader = true;\r\n @HostListener('keyup', ['$event'])\r\n @HostListener('window:mousemove', ['$event'])\r\n @HostListener('document:ResetIdleTimer', ['$event'])\r\n resetTimer(event: any) {\r\n this.millsecondsSinceLastInteraction = 0;\r\n }\r\n\r\n //VNEXT-1054: KLW - Changes for the interim homepage\r\n @ViewChild('logInOutComponentId') logInOutComponent: LogInOutComponent;\r\n\r\n private currentUrl: string = '/';\r\n public skipLink: string = null;\r\n private settings: Settings;\r\n\r\n public constructor(\r\n private router: Router,\r\n private route: ActivatedRoute,\r\n public currentUserService: CurrentUserService,\r\n public currentSiteService: CurrentSiteService, //VNEXT-1066: KLW - Code for Banner implementation\r\n private communicationService: CommunicationService,\r\n private keepAliveService: KeepAliveService,\r\n public dialog: MatDialog,\r\n private matIconRegistry: MatIconRegistry,\r\n private domSanitizer: DomSanitizer,\r\n private settingsService: SettingsService,\r\n private localStorageService: BrowserStorageService, \r\n private fieldDefinitionService: FieldDefinitionService,\r\n private navigationService: NavigationService,\r\n private queryParamsService: QueryParamsService,\r\n private renderer: Renderer2,\r\n private dateAdapter: DateAdapter,\r\n private attachmentService: AttachmentService,\r\n private formFieldTypeAndNameService: FormFieldTypeAndNameService,\r\n elForBaseClass: ElementRef,\r\n ) {\r\n super(elForBaseClass);\r\n\r\n this.router.events.pipe(\r\n filter(e => e instanceof NavigationStart)\r\n ).subscribe((e: NavigationStart) => {\r\n let url = e.url.toLowerCase();\r\n if (url.indexOf('maxhealthcheck') > 0 || url.indexOf('printable-form') > 0) {\r\n this.showHeader = false;\r\n }\r\n\r\n //VNEXT-235: KLW - This is to capture the refresh of a page and depending on what is contained in the URL, then redirect to the URL that represents the new\r\n // workflow or form instance\r\n if (e.url.toLowerCase().indexOf((\"design-workflow/0?folderId\").toLowerCase()) > 0) {\r\n let workflowURLRefresh: string = localStorageService.get(BrowserStorageEnums.NEW_WORKFLOW_REFRESH);\r\n\r\n if (workflowURLRefresh) {\r\n this.router.navigate([workflowURLRefresh]);\r\n this.clearWorkflowURLRefresh();\r\n }\r\n }\r\n\r\n if (e.url.toLowerCase().indexOf((\"design/0?folderId\").toLowerCase()) > 0) {\r\n let formInstanceURLRefresh: string = localStorageService.get(BrowserStorageEnums.NEW_FORM_INSTANCE_REFRESH);\r\n\r\n if (formInstanceURLRefresh) {\r\n this.router.navigate([formInstanceURLRefresh]);\r\n this.clearFormInstanceURLRefresh();\r\n }\r\n }\r\n\r\n //VNEXT-235: KLW - Be sure to clear any saved URLs after every route to prevent possible bugs \r\n this.clearWorkflowURLRefresh();\r\n this.clearFormInstanceURLRefresh();\r\n\r\n localStorageService.set(BrowserStorageEnums.GOTO, e.url);\r\n });\r\n\r\n this.router.events.pipe(\r\n filter(e => e instanceof NavigationEnd)\r\n ).subscribe((e: NavigationEnd) => {\r\n this.navigationService.pushOnUrl(this.currentUrl);\r\n this.currentUrl = e.url;\r\n let nav = this.router.getCurrentNavigation();\r\n if (nav.extras.state != null && nav.extras.state.menuText != null) {\r\n localStorageService.set(BrowserStorageEnums.PREVNAVBREADCRUMBSLABEL, nav.extras.state.menuText);\r\n } else {\r\n localStorageService.set(BrowserStorageEnums.PREVNAVBREADCRUMBSLABEL, 'Go Back');\r\n }\r\n });\r\n\r\n // this.matomoInjector.init(\r\n // environment.matomoConfig.url,\r\n // environment.matomoConfig.id\r\n // );\r\n \r\n\r\n // Make additional icons available to the tag.\r\n this.loadAppMatIcons();\r\n\r\n this.settingsService.loadSettings().then(response => {\r\n this.settings = response;\r\n this.listenForTimeout();\r\n });\r\n\r\n // Initialize the grid field type and name service (which cannot get all required parameters injected, at least not without a null injected value exception).\r\n this.formFieldTypeAndNameService.initializeFieldTypesAndNames(this.renderer, this.dateAdapter, this.attachmentService, this.dialog);\r\n }\r\n\r\n public ngOnInit(): void {\r\n super.ngOnInit();\r\n\r\n setTimeout(() => {\r\n // PJH - VNEXT-591 - added isForcedLogout check to prevent call to\r\n // backend when the user has been logged out\r\n if (this.applicationIsAvailableToTheUser() && !this.currentUserService.isForcedLogout) {\r\n // Retrieve field definitions so they can be cached.\r\n this.fieldDefinitionService.getAll().then(fieldDefinitions => {\r\n // Note: nothing more to do here by design.\r\n });\r\n }\r\n }, 100);\r\n }\r\n\r\n private applicationIsAvailableToTheUser() {\r\n return this.router.url !== '/unavailable';\r\n }\r\n\r\n // Getter method(s).\r\n public get ShowAppChrome(): boolean {\r\n return !this.queryParamsService.HideAppChrome;\r\n }\r\n\r\n public blockDrop(ev: DragEvent) {\r\n UtilityHelper.blockDrop(ev);\r\n }\r\n\r\n //VNEXT-1054: KLW - Changes for the interim homepage\r\n //public login() {\r\n // this.logInOutComponent.logIn();\r\n //}\r\n\r\n //VNEXT-235: KLW - Methods to set and clear the URLs for new workflow and form instances\r\n public setWorkflowURLRefresh(url: string) {\r\n this.localStorageService.set(BrowserStorageEnums.NEW_WORKFLOW_REFRESH, url);\r\n }\r\n\r\n public clearWorkflowURLRefresh() {\r\n this.localStorageService.set(BrowserStorageEnums.NEW_WORKFLOW_REFRESH, '');\r\n }\r\n\r\n public setFormInstanceURLRefresh(url: string) {\r\n this.localStorageService.set(BrowserStorageEnums.NEW_FORM_INSTANCE_REFRESH, url);\r\n }\r\n\r\n public clearFormInstanceURLRefresh() {\r\n this.localStorageService.set(BrowserStorageEnums.NEW_FORM_INSTANCE_REFRESH, '');\r\n }\r\n\r\n public appClick(): void {\r\n return;\r\n } \r\n\r\n //VNEXT-1066: KLW - Code for Banner implementation\r\n public get ShowBanner(): boolean {\r\n return this.LeftText != '' ||\r\n this.CenterText != '' ||\r\n this.RightText != '';\r\n }\r\n\r\n //VNEXT-1181: KLW - For Banner Color based on environment implementation\r\n public get BannerColor(): string {\r\n let retVal: string = '#000030';\r\n\r\n if (environment.bannerColor)\r\n retVal = environment.bannerColor;\r\n\r\n return retVal;\r\n }\r\n\r\n\r\n public get SealImagePath(): string {\r\n return \"P:\\TFS_NEW\\DotNetCore\\Solutions\\Collect.vNext\\Collect.vNext.UI\\src\\assets\\images\\mono-seal.png\";\r\n }\r\n\r\n public get FileType(): string {\r\n return ItemTypeEnum.FILE;\r\n }\r\n\r\n public get LeftText(): string {\r\n let retVal: string = '';\r\n\r\n if (this.currentSiteService.Site)\r\n if (this.currentSiteService.Site.leftBannerText)\r\n retVal = this.currentSiteService.Site.leftBannerText;\r\n\r\n return retVal;\r\n }\r\n\r\n public get CenterText(): string {\r\n let retVal: string = '';\r\n\r\n if (this.currentSiteService.Site)\r\n if (this.currentSiteService.Site.centerBannerText)\r\n retVal = this.currentSiteService.Site.centerBannerText;\r\n\r\n return retVal;\r\n }\r\n\r\n public get RightText(): string {\r\n let retVal: string = '';\r\n\r\n if (this.currentSiteService.Site)\r\n if (this.currentSiteService.Site.rightBannerText)\r\n retVal = this.currentSiteService.Site.rightBannerText;\r\n\r\n return retVal;\r\n }\r\n\r\n public get BackgroundColor(): string {\r\n let retVal: string = '';\r\n\r\n if (this.currentSiteService.Site)\r\n if (this.currentSiteService.Site.backgroundColor)\r\n retVal = this.currentSiteService.Site.backgroundColor;\r\n\r\n return retVal;\r\n }\r\n\r\n public get TextColor(): string {\r\n let retVal: string = '';\r\n\r\n if (this.currentSiteService.Site)\r\n if (this.currentSiteService.Site.textColor)\r\n retVal = this.currentSiteService.Site.textColor;\r\n\r\n return retVal;\r\n }\r\n\r\n\r\n // handler for the template's activate event\r\n // start listening for updates to the skipLink.\r\n // It's possible that this isn't ultimately needed but leaving it for now as a kind\r\n // of catch all. Some navigation events in the application reset focus such that hitting\r\n // TAB takes the user to the Skip Nav link, and so we need to make sure it gets set properly\r\n // but perhaps these cases should be explored to eliminate such resetting of focus...if\r\n // we got to that point, we'd only need to set the skip link on the inititial loading\r\n // of AppComponent and not need to listen for updates\r\n public doOnActiviation(component: any) {\r\n //console.log(component.route.snapshot);\r\n //var url = component.route.snapshot._routerState.url.split('#')[0];\r\n //this.skipLink = `${url}#main-content`;\r\n\r\n this.communicationService.skipLinkChanged.subscribe(newLink => {\r\n this.skipLink = newLink;\r\n });\r\n\r\n if (!(component instanceof LandingPageComponent)) {\r\n this.showFooter = false;\r\n return;\r\n }\r\n else {\r\n const landingPageComponent: LandingPageComponent = component;\r\n\r\n this.showFooter = true;\r\n\r\n this.loginEmitterSubscription = landingPageComponent.loginEmitter.subscribe(() => {\r\n this.logInOutComponent.logIn();\r\n });\r\n }\r\n }\r\n\r\n public loginEmitterSubscription: Subscription;\r\n public showFooter: boolean = false;\r\n\r\n public get ShowFooter(): boolean {\r\n return this.showFooter;\r\n }\r\n\r\n public deactivateAll() {\r\n\r\n this.showFooter = false;\r\n\r\n if (this.loginEmitterSubscription)\r\n this.loginEmitterSubscription.unsubscribe();\r\n }\r\n\r\n //VNEXT-1066: KLW - Property to get site name\r\n public get SiteName() {\r\n return environment.sitename;\r\n }\r\n\r\n // If no user activity detected after n minutes, logs the user out after giving them a warning\r\n private listenForTimeout(): void {\r\n let interval = 60 * this.settings.interval; // check every set interval time in minutes\r\n let timeoutAfter = interval * this.settings.timeoutAfter; // timeout after x minutes of inactivity \r\n let warn = interval * this.settings.warn; // warn the user after x minutes\r\n\r\n let timeout = setInterval(() => {\r\n if (this.currentUserService.user != null) {\r\n this.millsecondsSinceLastInteraction += interval;\r\n if (this.millsecondsSinceLastInteraction >= timeoutAfter) {\r\n clearInterval(timeout);\r\n this.logInOutComponent.logOut();\r\n } else if (this.millsecondsSinceLastInteraction == warn) {\r\n let dialogRef = this.dialog.open(ConfirmationDialogComponent, {\r\n data: new ConfirmationDialogModel(\r\n `Session Expiration Warning`,\r\n `Your session is about to expire. Do you wish to keep using the application?`,\r\n { minutes: this.settings.timeoutAfter - this.settings.warn, seconds: 0, hideNo: false, dialogType: ConfirmationDialogEnums.WARNING }\r\n )\r\n });\r\n dialogRef.disableClose = true;\r\n dialogRef.afterClosed().subscribe(yes => {\r\n if (yes) {\r\n this.millsecondsSinceLastInteraction = 0;\r\n } else {\r\n clearInterval(timeout);\r\n this.logInOutComponent.logOut();\r\n }\r\n });\r\n } else {\r\n //console.log(this.millsecondsSinceLastInteraction / 1000 + ' seconds have passed since user last moved mouse...');\r\n this.keepAliveService.pingTheBackend();\r\n }\r\n }\r\n }, interval);\r\n }\r\n\r\n private loadAppMatIcons(): void {\r\n // Load SVG icons, giving them names that allow them to be used in the tag.\r\n //\r\n // Example usage within a component's .html file:\r\n // \r\n\r\n let bellFillUrl: SafeResourceUrl = this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bell-fill.svg\");\r\n this.matIconRegistry.addSvgIcon(\"bell-fill\", bellFillUrl);\r\n\r\n let bellOutlineUrl: SafeResourceUrl = this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bell.svg\");\r\n this.matIconRegistry.addSvgIcon(\"bell-outline\", bellOutlineUrl);\r\n\r\n let notificationAddUrl: SafeResourceUrl = this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/notification-add.svg\");\r\n this.matIconRegistry.addSvgIcon(\"notification-add\", notificationAddUrl);\r\n\r\n let puzzlePieceUrl: SafeResourceUrl =\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/puzzle_piece.svg\");\r\n this.matIconRegistry.addSvgIcon(\"puzzle_piece\", puzzlePieceUrl);\r\n\r\n let trashUrl: SafeResourceUrl =\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/trash.svg\");\r\n this.matIconRegistry.addSvgIcon(\"trash\", trashUrl);\r\n\r\n this.matIconRegistry.addSvgIcon(\"plug\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/plug.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"pencil\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/pencil.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"logic\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/logic.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"predicate-logic\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/predicate-logic.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"predicate-logic-2\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/predicate-logic-2.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"footnote\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/text-footnote-svgrepo-com.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-star\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-star.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-star-filled\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-star-filled.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-star-filled-blue\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-star-filled-blue.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"unlock\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-unlock.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-grid\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-grid.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-forward\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-forward.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-tools\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-tools.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-arrows-expand\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-arrows-expand.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-flag\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-flag.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-calculator\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-calculator.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"bootstrap-recycle\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/bootstrap-recycle.svg\"));\r\n\r\n // pharv\r\n this.matIconRegistry.addSvgIcon(\"is-not-site-admin\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/file-person.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"is-site-admin\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/file-person-fill.svg\"));\r\n\r\n // pharv for VNEXT-6\r\n this.matIconRegistry.addSvgIcon(\"person-fill\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/person-fill.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"person-fill-blue\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/person-fill-blue.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"person-fill-lightgrey\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/person-fill-lightgrey.svg\"));\r\n\r\n // Vertical line.\r\n this.matIconRegistry.addSvgIcon(\"vertical-line\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/vertical-line.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"microsoft-excel\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/microsoft-excel-2019.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"magic-folder\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/magic-folder-2.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"magic-form\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/magic-form-2.svg\"));\r\n\r\n // Material SVG icons (also available in other formats).\r\n this.matIconRegistry.addSvgIcon(\"material-new-folder\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-new-folder.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-post-add\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-post-add.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-file-upload\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-file-upload.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-file-download\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-file-download.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-publish\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-publish.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-export-notes\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-export-notes.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"material-save\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-save.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-restart-alt\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-restart-alt.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-print\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-print.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-file-copy\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-file-copy.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"material-north\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-north.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-south\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-south.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-decimal-increase\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-decimal-increase.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"material-decimal-increase-24x24\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/material-decimal-increase-24x24.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"black-and-white-excel\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/black-and-white-excel.svg\"));\r\n\r\n this.matIconRegistry.addSvgIcon(\"link-chain\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/svgrepo-link-chain.svg\"));\r\n this.matIconRegistry.addSvgIcon(\"unlink-chain\",\r\n this.domSanitizer.bypassSecurityTrustResourceUrl(\"../assets/svg/svgrepo-unlink-chain.svg\"));\r\n }\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { Router, Resolve, RouterStateSnapshot, ActivatedRouteSnapshot } from '@angular/router';\r\nimport { UserClaims } from '../models/user-claims.model';\r\nimport { ClaimService } from '../services/claim.service';\r\nimport { Logging } from '../logging';\r\n\n@Injectable()\r\nexport class ClaimResolver implements Resolve {\r\n constructor(private claimService: ClaimService, private router: Router) { }\r\n\r\n resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise {\n return this.claimService.getClaims().then(claims => {\n return claims;\n });\n }\r\n}\n","import { Injectable } from '@angular/core';\nimport { Router, Resolve, RouterStateSnapshot, ActivatedRouteSnapshot } from '@angular/router';\n\r\nimport { DataCollection } from '../models/site-content/data-collection.model';\r\nimport { CurrentSiteService } from '../services/current-site.service';\r\nimport { DataCollectionService } from '../services/data-collection.service';\r\n\n@Injectable()\r\nexport class DataCollectionResolver implements Resolve {\r\n constructor(\r\n private dataCollectionService: DataCollectionService,\r\n private currentSiteService: CurrentSiteService,\r\n private router: Router) { }\r\n\n // The resolve method here acts as a guard.\n // A route guard wouldn't work because route guards get fired _before_ resolvers\r\n resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise {\r\n let id = route.params['id'];\r\n // If the current site has already been set, just return it without going to the server\r\n if (this.currentSiteService.isCurrentSite(id)) {\r\n return new Promise((resolve, reject) => {\n return resolve(this.currentSiteService.Site)\n })\r\n } else {\n return this.dataCollectionService.get(id).then(site => {\n if (site && site.id > 0) {\r\n this.currentSiteService.Site = site;\n return this.currentSiteService.Site;\r\n } else {\n this.router.navigate(['/404'], { skipLocationChange: true });\n return null;\r\n }\n });\r\n }\n }\r\n}\n","import { Injectable, Injector } from '@angular/core';\r\nimport { HttpClient, HttpHeaders, HttpResponse, HttpRequest, HttpErrorResponse } from '@angular/common/http';\r\nimport { Menu } from '../models/navigation/menu.model';\r\nimport { environment } from '../../../environments/environment';\r\nimport { ReturnStatement } from '@angular/compiler';\r\n\r\n//import 'rxjs/add/operator/toPromise';\r\n\r\n@Injectable()\r\nexport class MenuService {\r\n private serviceUrl = '';\r\n\r\n constructor(private http: HttpClient) {\r\n this.serviceUrl = environment.apiUrl + \"api/collection/\";\r\n }\n\r\n getAll(): Promise