{ "version": 3, "sources": ["src/app/services/events.service.ts", "src/app/services/global.service.ts"], "sourcesContent": ["import { Injectable } from '@angular/core';\r\nimport {Subject, Subscription} from 'rxjs';\r\nimport { ServiceHttpBase } from './service-http-base.service'\r\n\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\n/**\r\n * A class to subscribe and publish events/messages\r\n */\r\nexport class EventsService extends ServiceHttpBase {\r\n\r\n private channels: { [key: string]: Subject; } = {};\r\n\r\n /**\r\n * Subscribe to a topic and provide a single handler/observer.\r\n * @param topic The name of the topic to subscribe to.\r\n * @param observer The observer or callback function to listen when changes are published.\r\n *\r\n * @returns Subscription from which you can unsubscribe to release memory resources and to prevent memory leak.\r\n */\r\n subscribe(topic: string, observer: (_: any) => void): Subscription {\r\n if (!this.channels[topic]) {\r\n // You can also use ReplaySubject with one concequence\r\n this.channels[topic] = new Subject();\r\n }\r\n\r\n return this.channels[topic].subscribe(observer);\r\n }\r\n\r\n /**\r\n * Publish some data to the subscribers of the given topic.\r\n * @param topic The name of the topic to emit data to.\r\n * @param data data in any format to pass on.\r\n */\r\n publish(topic: string, data?: any): void {\r\n const subject = this.channels[topic];\r\n if (!subject) {\r\n // Or you can create a new subject for future subscribers\r\n return;\r\n }\r\n\r\n subject.next(data);\r\n }\r\n\r\n /**\r\n * When you are sure that you are done with the topic and the subscribers no longer needs to listen to a particular topic, you can\r\n * destroy the observable of the topic using this method.\r\n * @param topic The name of the topic to destroy.\r\n */\r\n destroy(topic: string) {\r\n const subject = this.channels[topic];\r\n if (!subject) {\r\n return;\r\n }\r\n\r\n subject.complete();\r\n delete this.channels[topic];\r\n }\r\n\r\n}\r\n", "import { Injectable } from '@angular/core';\r\nimport { DeviceModel } from '../models/device.model';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\n\r\nexport class GlobalService {\r\n /**\r\n * Number of new notifications\r\n */\r\n public notificationCount = 0;\r\n /**\r\n * Check if dialog logout is active or not. This variable is needed to avoid system to have\r\n * multiple calls to LogoutSession in LogoutService.\r\n */\r\n public isLogoutDialogActive = false;\r\n /**\r\n * Platform of device either native (iOS and android) or web\r\n */\r\n public devicePlatform = \"web\";\r\n\r\n public deviceModel: Partial;\r\n\r\n public patgRegStatusId: number;\r\n\r\n public registration = false;\r\n\r\n constructor() { }\r\n}\r\n"], "mappings": "+FAWA,IAAaA,GAAe,IAAA,CAAtB,MAAOA,UAAuBC,CAAe,CANnDC,aAAA,qBAQY,KAAAC,SAA6C,CAAA,EASrDC,UAAUC,EAAeC,EAA0B,CAC/C,OAAK,KAAKH,SAASE,CAAK,IAEpB,KAAKF,SAASE,CAAK,EAAI,IAAIE,GAGxB,KAAKJ,SAASE,CAAK,EAAED,UAAUE,CAAQ,CAClD,CAOAE,QAAQH,EAAeI,EAAU,CAC7B,IAAMC,EAAU,KAAKP,SAASE,CAAK,EAC9BK,GAKLA,EAAQC,KAAKF,CAAI,CACrB,CAOAG,QAAQP,EAAa,CACjB,IAAMK,EAAU,KAAKP,SAASE,CAAK,EAC9BK,IAILA,EAAQG,SAAQ,EAChB,OAAO,KAAKV,SAASE,CAAK,EAC9B,qEAhDSL,CAAa,IAAAc,GAAbd,CAAa,CAAA,CAAA,GAAA,CAAA,iCAAbA,EAAae,QAAbf,EAAagB,UAAAC,WALZ,MAAM,CAAA,CAAA,SAKPjB,CAAe,GAAA,ECJ5B,IAAakB,GAAa,IAAA,CAApB,MAAOA,CAAa,CAqBtBC,aAAA,CAjBO,KAAAC,kBAAoB,EAKpB,KAAAC,qBAAuB,GAIvB,KAAAC,eAAiB,MAMjB,KAAAC,aAAe,EAEN,iDArBPL,EAAa,CAAA,iCAAbA,EAAaM,QAAbN,EAAaO,UAAAC,WAHV,MAAM,CAAA,CAAA,SAGTR,CAAa,GAAA", "names": ["EventsService", "ServiceHttpBase", "constructor", "channels", "subscribe", "topic", "observer", "Subject", "publish", "data", "subject", "next", "destroy", "complete", "__ngFactoryType__", "factory", "\u0275fac", "providedIn", "GlobalService", "constructor", "notificationCount", "isLogoutDialogActive", "devicePlatform", "registration", "factory", "\u0275fac", "providedIn"] }