{ "version": 3, "sources": ["src/app/store/trophy/trophy.actions.ts", "src/app/store/trophy/trophy.state.ts"], "sourcesContent": ["export class GetTrophies {\n public static readonly type = '[Trophies] Get trophies';\n\n constructor() {}\n}\n", "import {Action, Selector, State, StateContext} from '@ngxs/store';\nimport {inject, Injectable} from '@angular/core';\nimport {firstValueFrom} from 'rxjs';\nimport {ProfileService} from '../../modules/profile/profile.service';\nimport {groupBy} from 'lodash';\nimport {ItemPayload} from 'src/app/interfaces/general/responses/item-payload.interface';\nimport {IPartnerData} from '../../interfaces/general/profile-definitions/partner-data.interface';\nimport {GetTrophies} from './trophy.actions';\nimport {errorHandler, IErrorHandlerArgs} from '../../shared/helpers/error-handler';\nimport {AppInsightsService} from '../../core/app-insights/app-insights.service';\n\nexport interface ITrophyState {\n data: Partial;\n loading: boolean;\n hasValue: boolean;\n error: string | null;\n}\n\ntype MappedTrophies = {\n [key: string]: {\n imageUrl: string | number | {[x: string]: any};\n points: string | number | {[x: string]: any};\n }[];\n};\n\n@State({\n name: 'trophies',\n defaults: {\n data: {},\n loading: false,\n hasValue: false,\n error: null,\n },\n})\n@Injectable()\nexport class TrophyState {\n private readonly insights = inject(AppInsightsService);\n private readonly profileService = inject(ProfileService);\n private readonly _errorHandlerArgsInit: IErrorHandlerArgs = {\n error: null,\n appInsightsSrv: this.insights,\n scope: 'TrophyState',\n };\n\n @Selector()\n public static data(state: ITrophyState): Partial {\n return state.data;\n }\n\n @Selector()\n public static loading(state: ITrophyState): boolean {\n return state.loading;\n }\n\n @Selector()\n public static hasValue(state: ITrophyState): boolean {\n return state.hasValue;\n }\n\n @Action(GetTrophies)\n public async getTrophies(ctx: StateContext): Promise {\n const state = ctx.getState();\n ctx.patchState({loading: true});\n let data: Partial;\n try {\n if (state.hasValue) {\n data = state.data;\n } else {\n const trophies = await firstValueFrom(this.profileService.getPartnerData(10000, 'Trophy'));\n data = this.mapTrophies(trophies);\n }\n ctx.patchState({\n data,\n hasValue: Object.keys(data).length > 0,\n loading: false,\n });\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n hasValue: false,\n loading: false,\n error: error?.message ?? error,\n });\n }\n }\n\n private mapTrophies(trophies: ItemPayload): Partial {\n const groupedTrophies = groupBy(trophies.data, (item) => {\n return item.dataGovernance.origin[0].source.acronym;\n });\n const mappedTrophies: Partial = {};\n for (const key in groupedTrophies) {\n mappedTrophies[key] = groupedTrophies[key].map((trophy) => {\n return {\n imageUrl: trophy.additionalProperty.find(\n (prop) => prop.propertyId === 'imageUrl',\n )?.value,\n points: trophy.additionalProperty.find((prop) => prop.propertyId === 'points')\n ?.value,\n };\n });\n }\n return mappedTrophies;\n }\n}\n"], "mappings": "+SAAA,IAAaA,GAAW,IAAA,CAAlB,MAAOA,CAAW,QACG,KAAAC,KAAO,yBAA0B,CAExDC,aAAA,CAAe,SAHNF,CAAW,GAAA,ECIxB,IAAAG,EAAsB,OA+Bf,IAAMC,EAAN,MAAMA,CAAW,CAAjBC,aAAA,CACc,KAAAC,SAAWC,EAAOC,CAAkB,EACpC,KAAAC,eAAiBF,EAAOG,CAAc,EACtC,KAAAC,sBAA2C,CACxDC,MAAO,KACPC,eAAgB,KAAKP,SACrBQ,MAAO,eAIG,OAAAC,KAAKC,EAAmB,CAClC,OAAOA,EAAMD,IACjB,CAGc,OAAAE,QAAQD,EAAmB,CACrC,OAAOA,EAAMC,OACjB,CAGc,OAAAC,SAASF,EAAmB,CACtC,OAAOA,EAAME,QACjB,CAGaC,YAAYC,EAA+B,QAAAC,EAAA,sBACpD,IAAML,EAAQI,EAAIE,SAAQ,EAC1BF,EAAIG,WAAW,CAACN,QAAS,EAAI,CAAC,EAC9B,IAAIF,EACJ,GAAI,CACA,GAAIC,EAAME,SACNH,EAAOC,EAAMD,SACV,CACH,IAAMS,EAAW,MAAMC,EAAe,KAAKhB,eAAeiB,eAAe,IAAO,QAAQ,CAAC,EACzFX,EAAO,KAAKY,YAAYH,CAAQ,CACpC,CACAJ,EAAIG,WAAW,CACXR,KAAAA,EACAG,SAAUU,OAAOC,KAAKd,CAAI,EAAEe,OAAS,EACrCb,QAAS,GACZ,CACL,OAASL,EAAO,CACZmB,EAAaC,EAAAC,EAAA,GAAI,KAAKtB,uBAAT,CAAgCC,MAAAA,CAAK,EAAC,EACnDQ,EAAIG,WAAW,CACXL,SAAU,GACVD,QAAS,GACTL,MAAOA,GAAOsB,SAAWtB,EAC5B,CACL,CACJ,GAEQe,YAAYH,EAAmC,CACnD,IAAMW,KAAkBC,WAAQZ,EAAST,KAAOsB,GACrCA,EAAKC,eAAeC,OAAO,CAAC,EAAEC,OAAOC,OAC/C,EACKC,EAA0C,CAAA,EAChD,QAAWC,KAAOR,EACdO,EAAeC,CAAG,EAAIR,EAAgBQ,CAAG,EAAEC,IAAKC,IACrC,CACHC,SAAUD,EAAOE,mBAAmBC,KAC/BC,GAASA,EAAKC,aAAe,UAAU,GACzCC,MACHC,OAAQP,EAAOE,mBAAmBC,KAAMC,GAASA,EAAKC,aAAe,QAAQ,GACvEC,OAEb,EAEL,OAAOT,CACX,iDApEStC,EAAW,CAAA,iCAAXA,EAAWiD,QAAXjD,EAAWkD,SAAA,CAAA,CAAA,GAyBPC,EAAA,CADZC,EAAOC,CAAW,CAAC,EAAArD,EAAA,UAAA,cAAA,IAAA,EAdNmD,EAAA,CADbG,EAAQ,CAAE,EAAAtD,EAAA,OAAA,IAAA,EAMGmD,EAAA,CADbG,EAAQ,CAAE,EAAAtD,EAAA,UAAA,IAAA,EAMGmD,EAAA,CADbG,EAAQ,CAAE,EAAAtD,EAAA,WAAA,IAAA,EAnBFA,EAAWmD,EAAA,CAVvBI,EAAoB,CACjBC,KAAM,WACNC,SAAU,CACN9C,KAAM,CAAA,EACNE,QAAS,GACTC,SAAU,GACVN,MAAO,MAEd,CAAC,EAEWR,CAAW", "names": ["GetTrophies", "type", "constructor", "import_lodash", "TrophyState", "constructor", "insights", "inject", "AppInsightsService", "profileService", "ProfileService", "_errorHandlerArgsInit", "error", "appInsightsSrv", "scope", "data", "state", "loading", "hasValue", "getTrophies", "ctx", "__async", "getState", "patchState", "trophies", "firstValueFrom", "getPartnerData", "mapTrophies", "Object", "keys", "length", "errorHandler", "__spreadProps", "__spreadValues", "message", "groupedTrophies", "groupBy", "item", "dataGovernance", "origin", "source", "acronym", "mappedTrophies", "key", "map", "trophy", "imageUrl", "additionalProperty", "find", "prop", "propertyId", "value", "points", "factory", "\u0275fac", "__decorate", "Action", "GetTrophies", "Selector", "State", "name", "defaults"] }