{"version":3,"file":"utm-util-kyMESCT8.js","sources":["../../src/util/utm-util.ts"],"sourcesContent":["import { getQueryParam } from \"./route-util\";\nimport { getItem, removeItem, setItem } from \"./local-storage\";\nimport { STORAGE_KEYS } from \"../config\";\nimport { UTM_PARAMETERS, UTMParameters } from \"shared\";\n\n/**\n * Returns the UTM from the URL.\n */\nexport function getUTMFromURL(): UTMParameters {\n\tconst utm: Record = {};\n\n\t// Add utm\n\tfor (const key of UTM_PARAMETERS) {\n\t\tconst value = getQueryParam(key);\n\t\tif (value != null) {\n\t\t\tutm[key] = value;\n\t\t}\n\t}\n\n\t// Add referer\n\tconst referer = document.referrer;\n\tif (referer.length > 0) {\n\t\tutm[\"referer\"] = referer;\n\t}\n\n\treturn utm;\n}\n\n/**\n * Saves the UTM to storage if there is one present in the URL.\n */\nexport function saveUTM() {\n\tconst utm = getUTMFromURL();\n\tif (Object.keys(utm).length > 0) {\n\t\tsetItem(STORAGE_KEYS.utm, utm);\n\t}\n}\n\n/**\n * Loads the UTM from storage.\n */\nexport function loadUTM(): UTMParameters {\n\treturn getItem(STORAGE_KEYS.utm) ?? {};\n}\n\n/**\n * Removes UTM from storage.\n */\nexport function clearUTM() {\n\tremoveItem(STORAGE_KEYS.utm);\n}\n"],"names":["getUTMFromURL","utm","key","UTM_PARAMETERS","value","getQueryParam","referer","saveUTM","setItem","STORAGE_KEYS","loadUTM","getItem","clearUTM","removeItem"],"mappings":"oHAQO,SAASA,GAA+B,CAC9C,MAAMC,EAA8B,CAAA,EAGpC,UAAWC,KAAOC,EAAgB,CAC3B,MAAAC,EAAQC,EAAcH,CAAG,EAC3BE,GAAS,OACZH,EAAIC,CAAG,EAAIE,EAEb,CAGA,MAAME,EAAU,SAAS,SACrB,OAAAA,EAAQ,OAAS,IACpBL,EAAI,QAAaK,GAGXL,CACR,CAKO,SAASM,GAAU,CACzB,MAAMN,EAAMD,IACR,OAAO,KAAKC,CAAG,EAAE,OAAS,GACrBO,EAAAC,EAAa,IAAKR,CAAG,CAE/B,CAKO,SAASS,GAAyB,CACxC,OAAOC,EAAuBF,EAAa,GAAG,GAAK,CAAA,CACpD,CAKO,SAASG,GAAW,CAC1BC,EAAWJ,EAAa,GAAG,CAC5B"}