{ "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", "
\n \n \n \n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n
\n\n\n
\n \n
\n
\n\n\n \n\n", "import { inject } from '@angular/core';\nimport { ActivatedRouteSnapshot, CanActivateChildFn, CanActivateFn, Router, RouterStateSnapshot } from '@angular/router';\nimport { isMobileView } from '@core/utils';\n\nexport const PlatformRouteGuard: CanActivateFn & CanActivateChildFn = (route: ActivatedRouteSnapshot, state: RouterStateSnapshot) => {\n const router = inject(Router);\n\n const isMobile = isMobileView();\n const isMobileRoute = state.url.startsWith('/m/');\n\n // Prevent infinite loops by checking if the current state matches the expected route format\n if (isMobile && !isMobileRoute) {\n router.navigate([`/m${state.url}`]);\n return false;\n } else if (!isMobile && isMobileRoute) {\n router.navigate([state.url.substring(2)]);\n return false;\n }\n\n return true;\n};\n", "import { Route, Router, Routes } from '@angular/router';\n\nimport { AuthenticationGuard, PERMISSIONS, PermissionService } from '@app/auth';\nimport { ShellComponent } from '@app/shell/shell.component';\nimport { BehaviorSubject, debounceTime, Observable } from 'rxjs';\nimport { Injectable } from '@angular/core';\nimport { isMobileView } from '@core/utils';\nimport { PlatformRouteGuard } from '@core/guards';\nimport { NavMenuItem } from '@core/types';\n\n/**\n * Provides helper methods to create routes.\n */\nexport class Shell {\n /**\n * Creates routes using the shell component and authentication.\n * @param routes The routes to add.\n * @return The new route using shell as the base.\n */\n static childRoutes(routes: Routes): Route {\n return {\n path: '',\n component: ShellComponent,\n children: routes,\n canActivate: [AuthenticationGuard],\n canActivateChild: [PlatformRouteGuard],\n data: { reuse: true },\n };\n }\n}\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ShellService {\n navicon = new BehaviorSubject(NavMode.Free);\n navModeSubject = new BehaviorSubject(NavMode.Free);\n navMode$ = this.navModeSubject.asObservable();\n navicon$ = this.navModeSubject.asObservable();\n\n // Resize window event handler\n isMobileViewSubject = new BehaviorSubject(isMobileView());\n isMobileView$: Observable = this.isMobileViewSubject.asObservable().pipe(debounceTime(300));\n\n constructor(\n private readonly _router: Router,\n public readonly _permissionService: PermissionService,\n ) {\n window.addEventListener('resize', this._onResize.bind(this));\n }\n\n allowedAccess(item: NavMenuItem): boolean {\n if (item.roles && item.roles.length) {\n return item.roles.includes(this._permissionService.userRole);\n }\n\n if (item.permissions && item.permissions.length) {\n if (item.permissions.includes(PERMISSIONS.VCLOUD_COURSE)) {\n return this._permissionService.isCourseAccessAllowed();\n }\n\n if (item.permissions.includes(PERMISSIONS.VCLOUD_WORK_SHIFTS)) {\n return this._permissionService.isWorkShiftsAccessAllowed();\n }\n\n return item.permissions.some((permission: PERMISSIONS) => this._permissionService.hasPermission(permission));\n }\n\n return true;\n }\n\n toggleNavMode(): void {\n const mode = this.navModeSubject.getValue();\n this.navModeSubject.next(mode === NavMode.Free ? NavMode.Locked : NavMode.Free);\n this.navicon.next(mode === NavMode.Free ? NavMode.Locked : NavMode.Free);\n }\n\n activeNavTab(items: NavMenuItem[], extendedItem: number): void {\n items.forEach((item, index) => {\n if (item.href) {\n const urlSegments = this._router.url.split('/').filter((segment) => segment.length > 0);\n\n // TODO: we need to fix below hardcoded logic for club-overview navigation. and use this logic for all navigations\n // This was native to make item active but it was updated due to club-overview naviagtion issue\n // const hrefSegments = item.href.split('/').filter((segment) => segment.length > 0);\n // const isActive = hrefSegments.every((segment, i) => segment === urlSegments[i]);\n\n // TODO: we need to refactor this logic as it should be dynamic and not to be hardcoded\n // to resolve this issue we need to create a separate events page so that club-overiew href could be club-overview only and not club-overview/news.\n // by removing news it will automatically resolve the issue.\n if (item.href === '/club-overview/news') {\n item.active = urlSegments[0] === 'club-overview';\n } else {\n const hrefSegments = item.href.split('/').filter((segment) => segment.length > 0);\n item.active = hrefSegments.every((segment, i) => segment === urlSegments[i]);\n }\n\n if (item.active && extendedItem) {\n extendedItem = index;\n }\n\n if (item.subItems) {\n item.subItems.forEach((subItem) => {\n if (subItem.href) {\n const subItemHrefSegments = subItem.href.split('/').filter((segment) => segment.length > 0);\n subItem.active = subItemHrefSegments.every((segment, i) => segment === urlSegments[i]);\n }\n });\n }\n\n // Explicitly set active state for add button\n if (item.href === 'add') {\n item.active = true;\n }\n } else {\n // Explicitly set active state for add button\n item.active = item.href === 'add';\n }\n });\n }\n\n activateNavItem(index: number, navItems: NavMenuItem[]): void {\n const item = navItems[index];\n if (item.disabled) return;\n\n setTimeout(() => {\n const element = document.getElementById(`menu-item-${index}`);\n const navElement = document.querySelector('nav');\n\n if (element && navElement) {\n const elementRect = element.getBoundingClientRect();\n const navRect = navElement.getBoundingClientRect();\n\n const relativeTop = elementRect.top - navRect.top;\n const desiredScrollPosition = navElement.scrollTop + relativeTop - navRect.height / 2;\n\n navElement.scrollTo({ top: desiredScrollPosition, behavior: 'smooth' });\n }\n }, 0);\n\n if (item && (!item.subItems || !item.subItems.length)) {\n this._router.navigate([item.href]);\n } else {\n // set false to all subitems of all items\n navItems.forEach((item) => {\n if (item.subItems) {\n item.subItems.forEach((subItem) => {\n subItem.active = false;\n });\n }\n });\n }\n }\n\n activateNavSubItem(i: number, subItem: NavMenuItem, sidebarItems: NavMenuItem[]) {\n if (subItem.disabled) return;\n subItem.active = true;\n sidebarItems[i].active = true;\n // disable all other subitems\n sidebarItems[i].subItems.forEach((item) => {\n if (item !== subItem) {\n item.active = false;\n }\n });\n if (subItem.href) {\n this._router.navigate([subItem.href]);\n }\n\n if (subItem.url) {\n window.open(subItem.url, '_blank');\n }\n }\n\n getCurrentActiveRoute(lastSegmentOnly = true): string {\n const url = this._router.url;\n const urlSegments = url.split('/');\n const lastSegment = urlSegments[urlSegments.length - 1];\n return lastSegmentOnly ? lastSegment : url;\n }\n\n private _onResize(event: Event): void {\n this.isMobileViewSubject.next(isMobileView());\n }\n}\n\nexport enum NavMode {\n Locked,\n Free,\n}\n"], "mappings": "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", "names": ["\u0275\u0275elementContainerStart", "\u0275\u0275text", "\u0275\u0275elementStart", "\u0275\u0275listener", "$event", "\u0275\u0275restoreView", "_r1", "ctx_r1", "\u0275\u0275nextContext", "\u0275\u0275resetView", "sidebarToggle", "\u0275\u0275elementEnd", "\u0275\u0275advance", "\u0275\u0275property", "isSidebarActive", "_r3", "\u0275\u0275element", "log", "Logger", "ShellComponent", "constructor", "_shellService", "_notificationsComposition", "_router", "_dialogService", "_bottomSheetService", "_socketService", "isMobileView", "_usePushNotification", "UsePushNotification", "ngOnInit", "isMobileView$", "pipe", "untilDestroyed", "subscribe", "next", "_redirectBasedOnView", "fetchNotifications", "connect", "fromEvent", "SocketEvents", "ForceLogout", "data", "info", "navigate", "ngAfterViewInit", "_permissionService", "isMemberLight", "isMemberLightAdmin", "_fetchPushNotifications", "toggleState", "currentRoute", "url", "promise$", "startsWith", "slice", "then", "closeAll", "getAllNotifications", "notifications", "surveyNotifications", "length", "crmNewsNotifications", "crmSurveyNotifications", "SetPushNotificationSeen", "open", "PushNotificationsComponent", "size", "closeButton", "enableClose", "windowClass", "afterClosed$", "_reloadCurrentRoute", "path", "currentUrl", "navigateByUrl", "skipLocationChange", "\u0275\u0275directiveInject", "ShellService", "NotificationsComposition", "Router", "DialogService", "NgxBottomSheetService", "SocketIoService", "selectors", "decls", "vars", "consts", "template", "rf", "ctx", "\u0275\u0275template", "ShellComponent_ng_container_2_Template", "ShellComponent_ng_container_6_Template", "ShellComponent_ng_container_13_Template", "ShellComponent_ng_template_17_Template", "\u0275\u0275templateRefExtractor", "ShellComponent_ng_template_20_Template", "\u0275\u0275pureFunction1", "_c0", "webAside_r5", "webHeader_r4", "__decorate", "UntilDestroy", "__metadata", "PlatformRouteGuard", "route", "state", "router", "inject", "Router", "isMobile", "isMobileView", "isMobileRoute", "url", "startsWith", "navigate", "substring", "Shell", "childRoutes", "routes", "path", "component", "ShellComponent", "children", "canActivate", "AuthenticationGuard", "canActivateChild", "PlatformRouteGuard", "data", "reuse", "ShellService", "constructor", "_router", "_permissionService", "navicon", "BehaviorSubject", "NavMode", "Free", "navModeSubject", "navMode$", "asObservable", "navicon$", "isMobileViewSubject", "isMobileView", "isMobileView$", "pipe", "debounceTime", "window", "addEventListener", "_onResize", "bind", "allowedAccess", "item", "roles", "length", "includes", "userRole", "permissions", "PERMISSIONS", "VCLOUD_COURSE", "isCourseAccessAllowed", "VCLOUD_WORK_SHIFTS", "isWorkShiftsAccessAllowed", "some", "permission", "hasPermission", "toggleNavMode", "mode", "getValue", "next", "Locked", "activeNavTab", "items", "extendedItem", "forEach", "index", "href", "urlSegments", "url", "split", "filter", "segment", "active", "hrefSegments", "every", "i", "subItems", "subItem", "subItemHrefSegments", "activateNavItem", "navItems", "disabled", "setTimeout", "element", "document", "getElementById", "navElement", "querySelector", "elementRect", "getBoundingClientRect", "navRect", "relativeTop", "top", "desiredScrollPosition", "scrollTop", "height", "scrollTo", "behavior", "navigate", "activateNavSubItem", "sidebarItems", "open", "getCurrentActiveRoute", "lastSegmentOnly", "lastSegment", "event", "\u0275\u0275inject", "Router", "PermissionService", "factory", "\u0275fac", "providedIn"] }