{ "version": 3, "sources": ["src/app/shell/shell.component.ts", "src/app/shell/shell.component.html", "src/app/@core/guards/platformRoute.guard.ts", "src/app/shell/services/shell.service.ts"], "sourcesContent": ["import { AfterViewInit, Component, OnInit } from '@angular/core';\nimport { ShellService } from '@app/shell/services/shell.service';\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';\nimport { isMobileView, SetPushNotificationSeen } from '@core/utils';\nimport { NotificationsComposition } from '@shared/compositions';\nimport { Router } from '@angular/router';\nimport { DialogService } from '@ngneat/dialog';\nimport { PushNotificationsComponent } from '@shared/components';\nimport { UsePushNotification } from '@core/usecases';\nimport { SocketIoService } from '@core/socket-io';\nimport { SocketEvents } from '@core/enums';\nimport { Logger } from '@core/services';\nimport { NgxBottomSheetService } from 'ngx-bottom-sheet';\n\nconst log = new Logger('Shell');\n\n@UntilDestroy()\n@Component({\n selector: 'app-shell',\n templateUrl: './shell.component.html',\n})\nexport class ShellComponent implements OnInit, AfterViewInit {\n isMobileView = isMobileView();\n isSidebarActive = false;\n private readonly _usePushNotification = new UsePushNotification();\n\n constructor(\n private readonly _shellService: ShellService,\n private readonly _notificationsComposition: NotificationsComposition,\n private readonly _router: Router,\n private readonly _dialogService: DialogService,\n private readonly _bottomSheetService: NgxBottomSheetService,\n private readonly _socketService: SocketIoService,\n ) {}\n\n ngOnInit() {\n this._shellService.isMobileView$.pipe(untilDestroyed(this)).subscribe({\n next: (isMobileView) => {\n this.isMobileView = isMobileView;\n },\n });\n\n this._shellService.isMobileView$.pipe(untilDestroyed(this)).subscribe({\n next: (isMobileView) => {\n this._redirectBasedOnView(isMobileView);\n },\n });\n\n this._notificationsComposition.fetchNotifications();\n\n this._socketService.connect();\n\n this._socketService\n .fromEvent(SocketEvents.ForceLogout)\n .pipe(untilDestroyed(this))\n .subscribe({\n next: (data) => {\n log.info('System Requested Logout');\n this._router.navigate(['/logout']);\n },\n });\n }\n\n ngAfterViewInit() {\n if (this._shellService._permissionService.isMemberLight() || this._shellService._permissionService.isMemberLightAdmin()) return;\n this._fetchPushNotifications();\n }\n\n sidebarToggle(toggleState: boolean) {\n this.isSidebarActive = toggleState;\n }\n\n private _redirectBasedOnView(isMobileView: boolean): void {\n const currentRoute = this._router.url;\n let promise$;\n\n if (isMobileView && !currentRoute.startsWith('/m/')) {\n promise$ = this._router.navigate([`/m${currentRoute}`]);\n } else if (!isMobileView && currentRoute.startsWith('/m/')) {\n promise$ = this._router.navigate([currentRoute.slice(2)]);\n }\n if (promise$) {\n promise$.then(() => {\n this._dialogService.closeAll();\n this._bottomSheetService.closeAll();\n });\n }\n }\n\n private _fetchPushNotifications() {\n //TODO: temporary omitting push notifications for mobile view\n if (isMobileView()) return;\n\n this._usePushNotification\n .getAllNotifications()\n .pipe(untilDestroyed(this))\n .subscribe({\n next: (notifications) => {\n if (\n (notifications.surveyNotifications && notifications.surveyNotifications.length) ||\n (notifications.crmNewsNotifications && notifications.crmNewsNotifications.length) ||\n (notifications.crmSurveyNotifications && notifications.crmSurveyNotifications.length)\n ) {\n SetPushNotificationSeen();\n if (!isMobileView()) {\n this._dialogService\n .open(PushNotificationsComponent, {\n size: 'md',\n closeButton: false,\n enableClose: false,\n windowClass: 'dialog-push-notification',\n data: {\n surveyNotifications: notifications.surveyNotifications,\n crmNewsNotifications: notifications.crmNewsNotifications,\n crmSurveyNotifications: notifications.crmSurveyNotifications,\n },\n })\n .afterClosed$.pipe(untilDestroyed(this))\n .subscribe({\n next: (data) => {\n if (!data) return;\n this._reloadCurrentRoute(data);\n },\n });\n }\n }\n },\n });\n }\n\n private _reloadCurrentRoute(path?: string) {\n const currentUrl = path || this._router.url;\n this._router.navigateByUrl('/', { skipLocationChange: true }).then(() => {\n this._router.navigate([currentUrl]);\n });\n }\n}\n", "