{ "version": 3, "sources": ["src/app/shared/services/window-size.service.ts"], "sourcesContent": ["import {Injectable} from '@angular/core';\nimport {BehaviorSubject} from 'rxjs';\nimport {distinctUntilChanged, map, shareReplay, skip} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WindowSizeService {\n private readonly _mobileBreakpoint = 768;\n private _windowSizeSource$ = new BehaviorSubject(0);\n public isMobile$ = this._windowSizeSource$.pipe(\n map((width) => width < this._mobileBreakpoint),\n distinctUntilChanged(),\n shareReplay(1),\n );\n public viewSwitched$ = this.isMobile$.pipe(\n skip(1),\n )\n\n public setWidth(width: number): void {\n this._windowSizeSource$.next(width);\n }\n}\n"], "mappings": "sEAOA,IAAaA,GAAiB,IAAA,CAAxB,MAAOA,CAAiB,CAH9BC,aAAA,CAIqB,KAAAC,kBAAoB,IAC7B,KAAAC,mBAAqB,IAAIC,EAAwB,CAAC,EACnD,KAAAC,UAAY,KAAKF,mBAAmBG,KACvCC,EAAKC,GAAUA,EAAQ,KAAKN,iBAAiB,EAC7CO,EAAoB,EACpBC,EAAY,CAAC,CAAC,EAEX,KAAAC,cAAgB,KAAKN,UAAUC,KAClCM,EAAK,CAAC,CAAC,EAGJC,SAASL,EAAa,CACzB,KAAKL,mBAAmBW,KAAKN,CAAK,CACtC,iDAdSR,EAAiB,CAAA,iCAAjBA,EAAiBe,QAAjBf,EAAiBgB,UAAAC,WAFd,MAAM,CAAA,CAAA,SAETjB,CAAiB,GAAA", "names": ["WindowSizeService", "constructor", "_mobileBreakpoint", "_windowSizeSource$", "BehaviorSubject", "isMobile$", "pipe", "map", "width", "distinctUntilChanged", "shareReplay", "viewSwitched$", "skip", "setWidth", "next", "factory", "\u0275fac", "providedIn"] }