{"version":3,"file":"Consent.js","names":["defineDs","Ensighten","ApiRequest","states","Accepted","Declined","Unanswered","eloquaIds","dloTownEmailId","dloTownPushId","dloTownCallId","dloProdEmailId","dloProdPushId","dloProdCallId","dliTownMainConsentId","dliTownEmailId","dliTownPushId","dliProdMainConsentId","dliProdEmailId","dliProdPushId","getConsent","method","url","DS","Config","CONSENT_API_URL","requireAuthCookie","getConsentByType","type","consentType","getConsentIdByType","unwrapSuccess","response","subConsents","find","subConsent","id","setConsent","payload","consentItems","mainConsentId","hasMainConsentInPayload","consent","hasSetSubConsent","some","accepted","push","data","category","action","label","getConsentTypeById","pushGaEvent","setConsentByType","_ref","_asyncToGenerator","referenceId","consentId","console","warn","concat","reference","_x","_x2","_x3","apply","arguments","env","ENV","lookupKey","window","CONTEXT","toLowerCase","charAt","toUpperCase","slice","hasOwnProperty","envKey","formatConsentText","text","textActions","formattedText","forEach","_action$type","replaceAll","highlight","content","replace"],"sources":["DanskeSpil/Framework/PlayerAccountManagement/Scripts/Helpers/Consent.js"],"sourcesContent":["defineDs('DanskeSpil/Framework/PlayerAccountManagement/Scripts/Helpers/Consent', [\r\n 'Shared/Framework/Ensighten/Scripts/Ensighten',\r\n 'Shared/Framework/Mithril/Scripts/Helpers/ApiRequest',\r\n], function (Ensighten, ApiRequest) {\r\n\r\n const states = {\r\n Accepted: 'Accepted',\r\n Declined: 'Declined',\r\n Unanswered: 'Unanswered'\r\n };\r\n\r\n const eloquaIds = {\r\n dloTownEmailId: 402,\r\n dloTownPushId: 1010,\r\n dloTownCallId: 1013,\r\n dloProdEmailId: 402,\r\n dloProdPushId: 1457,\r\n dloProdCallId: 1949,\r\n\r\n dliTownMainConsentId: 1603,\r\n dliTownEmailId: 711,\r\n dliTownPushId: 1545,\r\n dliProdMainConsentId: 4393,\r\n dliProdEmailId: 711,\r\n dliProdPushId: 3064\r\n };\r\n\r\n const getConsent = () => ApiRequest({\r\n method: 'GET',\r\n url: DS.Config.CONSENT_API_URL + '/v1/consent',\r\n requireAuthCookie: true\r\n });\r\n\r\n const getConsentByType = (type) => {\r\n const consentType = getConsentIdByType(type);\r\n\r\n return ApiRequest({\r\n method: 'GET',\r\n url: DS.Config.CONSENT_API_URL + '/v1/consent',\r\n requireAuthCookie: true,\r\n unwrapSuccess: function (response) {\r\n return response[0].subConsents.find((subConsent) => subConsent.id === consentType);\r\n }\r\n });\r\n };\r\n\r\n const setConsent = (payload) => {\r\n if (payload.consentItems) {\r\n const mainConsentId = getConsentIdByType('MainConsent');\r\n const hasMainConsentInPayload = payload.consentItems.find((consent) => consent.id === mainConsentId);\r\n const hasSetSubConsent = payload.consentItems.some((consent) => consent.accepted === true);\r\n\r\n if (!hasMainConsentInPayload && hasSetSubConsent) {\r\n payload.consentItems.push({\r\n id: mainConsentId,\r\n accepted: true\r\n });\r\n }\r\n }\r\n\r\n return ApiRequest({\r\n data: payload,\r\n method: 'POST',\r\n url: DS.Config.CONSENT_API_URL + '/v2/consent',\r\n requireAuthCookie: true,\r\n unwrapSuccess: function () {\r\n let category = 'Consent';\r\n\r\n for (const { id, accepted } of payload.consentItems) {\r\n let action = accepted ? 'Accepted' : 'Declined';\r\n let label = getConsentTypeById(id);\r\n if (label) {\r\n Ensighten.pushGaEvent(category, action, label);\r\n }\r\n }\r\n }\r\n });\r\n };\r\n\r\n const setConsentByType = async (type, accepted, referenceId) => {\r\n const consentId = getConsentIdByType(type);\r\n\r\n if (!consentId) {\r\n console.warn(`You do not have a valid consent id for type (${type})`);\r\n return;\r\n }\r\n\r\n const payload = {\r\n reference: referenceId,\r\n consentItems: [\r\n {\r\n id: consentId,\r\n accepted: accepted\r\n }\r\n ]\r\n };\r\n\r\n return await setConsent(payload);\r\n };\r\n\r\n const getConsentIdByType = (type) => {\r\n const env = DS.Config.ENV === 'Production' ? 'Prod' : 'Town';\r\n\r\n const lookupKey = `${window.DS.Config.CONTEXT.toLowerCase() + env + type.charAt(0).toUpperCase() + type.slice(1)}Id`;\r\n\r\n if (eloquaIds.hasOwnProperty(lookupKey)) {\r\n return eloquaIds[lookupKey];\r\n }\r\n\r\n return null;\r\n };\r\n\r\n const getConsentTypeById = (id) => {\r\n const env = DS.Config.ENV === 'Production' ? 'Prod' : 'Town';\r\n const envKey = window.DS.Config.CONTEXT.toLowerCase() + env;\r\n\r\n if (id === eloquaIds[`${envKey}EmailId`]) {\r\n return 'Email';\r\n }\r\n\r\n if (id === eloquaIds[`${envKey}PUshId`]) {\r\n return 'Push';\r\n }\r\n\r\n if (id === eloquaIds[`${envKey}CallId`]) {\r\n return 'Call';\r\n }\r\n\r\n if (id === eloquaIds[`${envKey}MainConsent`]) {\r\n return 'MainConsent';\r\n }\r\n\r\n return '';\r\n };\r\n\r\n const formatConsentText = (text, textActions) => {\r\n let formattedText = text;\r\n textActions.forEach((action) => {\r\n const type = action.type?.toLowerCase();\r\n if (type === 'link') {\r\n formattedText = formattedText.replaceAll(action.highlight, `${action.highlight}`);\r\n }\r\n if (type === 'popover') {\r\n formattedText = formattedText.replace(action.highlight, `${action.highlight}`);\r\n }\r\n });\r\n\r\n return formattedText;\r\n };\r\n\r\n return {\r\n getConsentTypeById,\r\n getConsentIdByType,\r\n formatConsentText,\r\n getConsent,\r\n setConsent,\r\n getConsentByType,\r\n setConsentByType,\r\n states\r\n };\r\n\r\n});\r\n"],"mappings":"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","ignoreList":[]}