{ "version": 3, "sources": ["projects/insight/src/app/shared/services/igx-global-overlay.service.ts"], "sourcesContent": ["import { ElementRef, Injectable } from '@angular/core';\r\nimport { IgxOverlayOutletDirective, IgxOverlayService, OverlaySettings } from '@infragistics/igniteui-angular';\r\nimport { OverlayInfo } from '@infragistics/igniteui-angular/lib/services/overlay/utilities';\r\nimport { Interface } from 'app/helpers/interface';\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class IgxGlobalOverlayService {\r\n\r\n private overlayId: string;\r\n private overlayOutlet: IgxOverlayOutletDirective;\r\n\r\n constructor(private igxOverlayService: IgxOverlayService) { }\r\n\r\n public get overlay() {\r\n return {\r\n info: this.overlayId == null ? undefined : this.igxOverlayService.getOverlayById(this.overlayId),\r\n outlet: this.overlayOutlet\r\n }\r\n }\r\n\r\n public register(overlayOutlet: IgxOverlayOutletDirective): void {\r\n this.detach();\r\n this.overlayOutlet = overlayOutlet;\r\n }\r\n\r\n public attach(element: ElementRef, settings: Omit = {}): void {\r\n this.detach();\r\n this.overlayId = this.igxOverlayService.attach(element, {\r\n ...settings,\r\n outlet: this.overlayOutlet\r\n });\r\n }\r\n\r\n public detach(): void {\r\n if (this.overlayId != null) {\r\n this.igxOverlayService.detach(this.overlayId);\r\n }\r\n }\r\n}\r\n\r\nexport class MockIgxGlobalOverlayService implements Interface {\r\n public register(overlayOutlet: IgxOverlayOutletDirective): void {\r\n throw new Error('Method not implemented.');\r\n }\r\n public attach(element: ElementRef, settings?: Omit): void {\r\n throw new Error('Method not implemented.');\r\n }\r\n public detach(): void {\r\n throw new Error('Method not implemented.');\r\n }\r\n get overlay() {\r\n return {\r\n info: {} as OverlayInfo,\r\n outlet: { element: {}, nativeElement: {} } as IgxOverlayOutletDirective\r\n }\r\n }\r\n}"], "mappings": "uGAMA,IAAaA,GAAuB,IAAA,CAA9B,IAAOA,EAAP,MAAOA,CAAuB,CAKhCC,YAAoBC,EAAoC,CAApC,KAAAA,kBAAAA,CAAwC,CAE5D,IAAWC,SAAO,CACd,MAAO,CACHC,KAAM,KAAKC,WAAa,KAAOC,OAAY,KAAKJ,kBAAkBK,eAAe,KAAKF,SAAS,EAC/FG,OAAQ,KAAKC,cAErB,CAEOC,SAASD,EAAwC,CACpD,KAAKE,OAAM,EACX,KAAKF,cAAgBA,CACzB,CAEOG,OAAOC,EAA0BC,EAA4C,CAAA,EAAE,CAClF,KAAKH,OAAM,EACX,KAAKN,UAAY,KAAKH,kBAAkBU,OAAOC,EAASE,EAAAC,EAAA,GACjDF,GADiD,CAEpDN,OAAQ,KAAKC,eAChB,CACL,CAEOE,QAAM,CACL,KAAKN,WAAa,MAClB,KAAKH,kBAAkBS,OAAO,KAAKN,SAAS,CAEpD,yCA/BSL,GAAuBiB,EAAAC,CAAA,CAAA,CAAA,wBAAvBlB,EAAuBmB,QAAvBnB,EAAuBoB,UAAAC,WADV,MAAM,CAAA,EAC1B,IAAOrB,EAAPsB,SAAOtB,CAAuB,GAAA", "names": ["IgxGlobalOverlayService", "constructor", "igxOverlayService", "overlay", "info", "overlayId", "undefined", "getOverlayById", "outlet", "overlayOutlet", "register", "detach", "attach", "element", "settings", "__spreadProps", "__spreadValues", "\u0275\u0275inject", "IgxOverlayService", "factory", "\u0275fac", "providedIn", "_IgxGlobalOverlayService"] }