{"version":3,"file":"chunk-h5a6hxj7.js","sources":["packages/sports/web/app/src/crm-promotion-container/crm-promotion-mapper.service.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\nimport { GameType } from '@bpos/v1/sports-promo';\nimport { EventModel, EventOptionGroup } from '@frontend/sports/betting-offer/feature/model';\nimport { hasValue } from '@frontend/sports/common/core/utils/extended-types';\nimport { flatten, keyBy, uniq } from 'lodash-es';\n\nimport { Promotion } from '../crm-offer-data/crm-offer.model';\n\n@Injectable({ providedIn: 'root' })\nexport class CrmPromotionMapperService {\n    getBySport(promotions: Promotion[], sportId: number): Promotion[] {\n        return promotions.filter((p) => p.banner && p.allFilters.some((f) => f.sportIds.some((spId) => spId === sportId)));\n    }\n\n    getByCompetition(promotions: Promotion[], competitionIds: number[]): Promotion[] {\n        const competitions = keyBy(competitionIds);\n\n        return promotions.filter((p) => p.banner && p.allFilters.some((f) => f.competitionIds.some((id) => !!competitions[id])));\n    }\n\n    getPromotionsForEvent(event: EventModel, promotions: Promotion[]): Promotion[] {\n        return promotions.filter((p) => this.isGameType(event.live, p));\n    }\n\n    getPromotedOptionGroupIds(\n        optionGroups: EventOptionGroup[],\n        event: EventModel,\n        filteredPromotions: Promotion[],\n    ): { [optionGroupId: string]: string } {\n        if (!filteredPromotions.length) {\n            return {};\n        }\n\n        const allFilters = flatten(filteredPromotions.map((fp) => fp.allFilters));\n        const allMarketTemplateIds = flatten(allFilters.map((af) => af.marketTemplateIds));\n        const allMarketIds = flatten(allFilters.map((af) => af.marketIds));\n\n        let promotedGroups = optionGroups.filter(\n            (group) => !group.groupedMarkets && allMarketTemplateIds.some((templateId) => templateId === group.templateId),\n        );\n        const promotedGroupsByMarket = flatten(allMarketIds.map((marketId) => event.marketsDictionary[marketId]));\n\n        promotedGroups = promotedGroups.concat(promotedGroupsByMarket).filter(hasValue);\n        const promotedGroupIds = uniq(promotedGroups.map((g) => g.id));\n\n        return keyBy(promotedGroupIds);\n    }\n\n    getBannerPromotions(optionGroups: EventOptionGroup[], event: EventModel, filteredPromotions: Promotion[]): Promotion[] {\n        if (!filteredPromotions.length) {\n            return [];\n        }\n\n        const eventTemplateGroupsDictionary = keyBy(optionGroups, (g) => g.templateId);\n        const optionsDictionary = keyBy(flatten(optionGroups.map((og) => og.options)), (g) => g.id);\n\n        return filteredPromotions.filter((filteredPromo) => {\n            if (!filteredPromo.banner) {\n                return false;\n            }\n\n            const hasPromo = filteredPromo.allFilters.some((f) => {\n                const fixturePromo = f.fixtureIds.some((fId) => fId === event.id);\n                if (fixturePromo) {\n                    return true;\n                }\n\n                const templatePromo = f.marketTemplateIds.some((tId) => !!eventTemplateGroupsDictionary[tId]);\n                if (templatePromo) {\n                    return true;\n                }\n\n                const marketPromo = f.marketIds.some((marketId) => !!event.marketsDictionary[marketId]);\n                if (marketPromo) {\n                    return true;\n                }\n\n                const optionPromo = f.optionIds.some((optionId) => !!optionsDictionary[optionId]);\n\n                return optionPromo;\n            });\n\n            return hasPromo;\n        });\n    }\n\n    private isGameType(isEventLive: boolean, promotion: Promotion): boolean {\n        return (\n            promotion.gameType === GameType.Mixed ||\n            (isEventLive && promotion.gameType === GameType.InPlay) ||\n            (!isEventLive && promotion.gameType === GameType.PreMatch)\n        );\n    }\n}\n"],"names":["CrmPromotionMapperService","getBySport","promotions","sportId","filter","p","banner","allFilters","some","f","sportIds","spId","getByCompetition","competitionIds","competitions","keyBy","id","getPromotionsForEvent","event","isGameType","live","getPromotedOptionGroupIds","optionGroups","filteredPromotions","length","flatten","map","fp","allMarketTemplateIds","af","marketTemplateIds","allMarketIds","marketIds","promotedGroups","group","groupedMarkets","templateId","promotedGroupsByMarket","marketId","marketsDictionary","concat","hasValue","promotedGroupIds","uniq","g","getBannerPromotions","eventTemplateGroupsDictionary","optionsDictionary","og","options","filteredPromo","fixtureIds","fId","tId","optionIds","optionId","isEventLive","promotion","gameType","factory","ɵfac","providedIn","_CrmPromotionMapperService"],"mappings":"gHAUA,IAAaA,CAAyB,CAAA,CAAA,IAAA,CAAhC,IAAOA,EAAP,MAAOA,CAAyB,CAClCC,UAAAA,CAAWC,CAAyBC,CAAAA,CAAAA,CAAe,CAC/C,OAAOD,EAAWE,MAAQC,CAAAA,CAAAA,EAAMA,CAAEC,CAAAA,MAAAA,EAAUD,CAAEE,CAAAA,UAAAA,CAAWC,IAAMC,CAAAA,CAAAA,EAAMA,EAAEC,QAASF,CAAAA,IAAAA,CAAMG,CAASA,EAAAA,CAAAA,GAASR,CAAO,CAAC,CAAC,CACrH,CAEAS,gBAAiBV,CAAAA,CAAAA,CAAyBW,CAAwB,CAAA,CAC9D,IAAMC,CAAAA,CAAeC,EAAMF,CAAAA,CAAc,EAEzC,OAAOX,CAAAA,CAAWE,MAAQC,CAAAA,CAAAA,EAAMA,CAAEC,CAAAA,MAAAA,EAAUD,CAAEE,CAAAA,UAAAA,CAAWC,KAAMC,CAAMA,EAAAA,CAAAA,CAAEI,cAAeL,CAAAA,IAAAA,CAAMQ,CAAO,EAAA,CAAC,CAACF,CAAAA,CAAaE,CAAE,CAAC,CAAC,CAAC,CAC3H,CAEAC,qBAAsBC,CAAAA,CAAAA,CAAmBhB,CAAuB,CAAA,CAC5D,OAAOA,CAAWE,CAAAA,MAAAA,CAAQC,CAAM,EAAA,IAAA,CAAKc,UAAWD,CAAAA,CAAAA,CAAME,IAAMf,CAAAA,CAAC,CAAC,CAClE,CAEAgB,yBACIC,CAAAA,CAAAA,CACAJ,CACAK,CAAAA,CAAAA,CAA+B,CAE/B,GAAI,CAACA,CAAmBC,CAAAA,MAAAA,CACpB,OAAO,EAGX,CAAA,IAAMjB,CAAakB,CAAAA,EAAAA,CAAQF,EAAmBG,GAAKC,CAAAA,CAAAA,EAAOA,CAAGpB,CAAAA,UAAU,CAAC,CAAA,CAClEqB,CAAuBH,CAAAA,EAAAA,CAAQlB,EAAWmB,GAAKG,CAAAA,CAAAA,EAAOA,CAAGC,CAAAA,iBAAiB,CAAC,CAAA,CAC3EC,CAAeN,CAAAA,EAAAA,CAAQlB,EAAWmB,GAAKG,CAAAA,CAAAA,EAAOA,CAAGG,CAAAA,SAAS,CAAC,CAAA,CAE7DC,CAAiBX,CAAAA,CAAAA,CAAalB,OAC7B8B,CAAU,EAAA,CAACA,CAAMC,CAAAA,cAAAA,EAAkBP,CAAqBpB,CAAAA,IAAAA,CAAM4B,CAAeA,EAAAA,CAAAA,GAAeF,EAAME,UAAU,CAAC,CAE5GC,CAAAA,CAAAA,CAAyBZ,GAAQM,CAAaL,CAAAA,GAAAA,CAAKY,CAAapB,EAAAA,CAAAA,CAAMqB,kBAAkBD,CAAQ,CAAC,CAAC,CAAA,CAExGL,CAAiBA,CAAAA,CAAAA,CAAeO,MAAOH,CAAAA,CAAsB,EAAEjC,MAAOqC,CAAAA,CAAQ,CAC9E,CAAA,IAAMC,CAAmBC,CAAAA,EAAAA,CAAKV,CAAeP,CAAAA,GAAAA,CAAKkB,GAAMA,CAAE5B,CAAAA,EAAE,CAAC,CAAA,CAE7D,OAAOD,EAAAA,CAAM2B,CAAgB,CACjC,CAEAG,mBAAoBvB,CAAAA,CAAAA,CAAkCJ,CAAmBK,CAAAA,CAAAA,CAA+B,CACpG,GAAI,CAACA,CAAAA,CAAmBC,OACpB,OAAO,EAGX,CAAA,IAAMsB,CAAgC/B,CAAAA,EAAAA,CAAMO,CAAesB,CAAAA,CAAAA,EAAMA,EAAER,UAAU,CAAA,CACvEW,CAAoBhC,CAAAA,EAAAA,CAAMU,EAAQH,CAAAA,CAAAA,CAAaI,GAAKsB,CAAAA,CAAAA,EAAOA,EAAGC,OAAO,CAAC,CAAIL,CAAAA,CAAAA,EAAMA,CAAE5B,CAAAA,EAAE,CAE1F,CAAA,OAAOO,EAAmBnB,MAAQ8C,CAAAA,CAAAA,EACzBA,CAAc5C,CAAAA,MAAAA,CAIF4C,EAAc3C,UAAWC,CAAAA,IAAAA,CAAMC,CACvBA,EAAAA,CAAAA,CAAE0C,WAAW3C,IAAM4C,CAAAA,CAAAA,EAAQA,CAAQlC,GAAAA,CAAAA,CAAMF,EAAE,CAAA,EAK1CP,CAAEqB,CAAAA,iBAAAA,CAAkBtB,KAAM6C,CAAQ,EAAA,CAAC,CAACP,CAAAA,CAA8BO,CAAG,CAAC,CAKxE5C,EAAAA,CAAAA,CAAEuB,UAAUxB,IAAM8B,CAAAA,CAAAA,EAAa,CAAC,CAACpB,CAAMqB,CAAAA,iBAAAA,CAAkBD,CAAQ,CAAC,EAE3E,CAGS7B,CAAAA,CAAAA,CAAAA,CAAE6C,SAAU9C,CAAAA,IAAAA,CAAM+C,GAAa,CAAC,CAACR,CAAkBQ,CAAAA,CAAQ,CAAC,CAGnF,CAAA,CAtBU,CAyBd,CAAA,CACL,CAEQpC,UAAAA,CAAWqC,CAAsBC,CAAAA,CAAAA,CAAoB,CACzD,OACIA,CAAAA,CAAUC,QAAQ,GAAA,OAAA,EACjBF,CAAeC,EAAAA,CAAAA,CAAUC,QAAQ,GAAA,QAAA,EACjC,CAACF,CAAeC,EAAAA,CAAAA,CAAUC,QAAQ,GAAA,UAE3C,CAnFS1D,CAAAA,CAAAA,CAAAA,CAAAA,SAAAA,CAAAA,SAAAA,CAAAA,CAAAA,CAAAA,OAAAA,IAAAA,CAAAA,EAAAA,CAAAA,CAAyB,CAAzBA,CAAAA,CAAAA,CAAAA,UAAAA,CAAAA,GAAAA,CAAAA,CAAAA,KAAAA,CAAAA,CAAAA,CAAyB2D,QAAzB3D,CAAyB4D,CAAAA,SAAAA,CAAAC,UADZ,CAAA,MAAM,CAAA,CAC1B,CAAA,IAAO7D,CAAP8D,CAAAA,CAAAA,CAAAA,OAAO9D,CAAyB,CAAA"}