\r\n
\r\n
\r\n
{{pageInfo?.title}}
\r\n \r\n
\r\n
\r\n
\r\n \r\n - \r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n","import { MediaMatcher } from \"@angular/cdk/layout\";\r\nimport { Router } from \"@angular/router\";\r\nimport { ChangeDetectorRef, Component, OnDestroy } from \"@angular/core\";\r\n\r\nimport { PerfectScrollbarConfigInterface } from \"ngx-perfect-scrollbar\";\r\n\r\n/** @title Responsive sidenav */\r\n@Component({\r\n selector: \"app-full-layout\",\r\n templateUrl: \"full.component.html\",\r\n styleUrls: [],\r\n})\r\nexport class FullComponent implements OnDestroy {\r\n mobileQuery: MediaQueryList;\r\n dir = \"ltr\";\r\n green: boolean;\r\n blue: boolean;\r\n dark: boolean;\r\n minisidebar: boolean;\r\n boxed: boolean;\r\n danger: boolean;\r\n showHide: boolean;\r\n url: string;\r\n sidebarOpened;\r\n\r\n public showSearch = false;\r\n\r\n public config: PerfectScrollbarConfigInterface = {};\r\n private _mobileQueryListener: () => void;\r\n\r\n constructor(\r\n public router: Router,\r\n changeDetectorRef: ChangeDetectorRef,\r\n media: MediaMatcher\r\n ) {\r\n this.mobileQuery = media.matchMedia(\"(min-width: 768px)\");\r\n this._mobileQueryListener = () => changeDetectorRef.detectChanges();\r\n this.mobileQuery.addListener(this._mobileQueryListener);\r\n }\r\n\r\n ngOnDestroy(): void {\r\n this.mobileQuery.removeListener(this._mobileQueryListener);\r\n }\r\n\r\n goToHome() {\r\n this.router.navigate([\"/home\"]);\r\n }\r\n\r\n // Mini sidebar\r\n}\r\n","