{ "version": 3, "sources": ["../../../Vettvangur.Frontend/src/scripts/utility/richtextApi.ts"], "sourcesContent": ["import richtextTooltip from './richtextTooltip'\r\n\r\nconst richtextApi = {\r\n el: {\r\n sections: document.querySelectorAll('.canContainApiWords'),\r\n },\r\n\r\n init() {\r\n if (this.el.sections) {\r\n this.el.sections.forEach((section) => {\r\n const text = section.innerHTML\r\n const matches = text.match(/\\[(.*?)]/g)\r\n const words = [] as Array\r\n if (matches !== null) {\r\n matches.map((val) => {\r\n let word = val.replace('[', '')\r\n word = word.replace(']', '')\r\n words.push(word)\r\n })\r\n }\r\n if (words.length > 0) {\r\n this.getApiValues(words, section)\r\n }\r\n })\r\n }\r\n },\r\n\r\n getApiValues: async (words, section) => {\r\n const action = '/umbraco/api/data/GetCurrentData'\r\n const method = 'GET'\r\n\r\n fetch(action, {\r\n method: method,\r\n })\r\n .then((res) => res.json())\r\n .then((response) => {\r\n if (response.success) {\r\n // console.log('success', response)\r\n richtextApi.renderApiValues(words, section, response)\r\n richtextTooltip.getTooltips(section)\r\n } else {\r\n console.log('error', response)\r\n }\r\n })\r\n .catch((ex) => {\r\n console.log('Server error: ', ex)\r\n })\r\n },\r\n\r\n renderApiValues: (words, section, response) => {\r\n const res = JSON.parse(response.data)\r\n const keys = Object.keys(res)\r\n let text = section.innerHTML\r\n\r\n words.forEach((word) => {\r\n const selectedWord = `[${word}]`\r\n\r\n if (keys.includes(word)) {\r\n text = text.replace(selectedWord, res[word])\r\n } else {\r\n text = text.replace(selectedWord, word)\r\n }\r\n })\r\n\r\n section.innerHTML = text\r\n },\r\n}\r\n\r\nexport default richtextApi\r\n"], "mappings": "4GAEA,IAAMA,EAAc,CAClB,GAAI,CACF,SAAU,SAAS,iBAAiB,qBAAqB,CAC3D,EAEA,MAAO,CACD,KAAK,GAAG,UACV,KAAK,GAAG,SAAS,QAASC,GAAY,CAEpC,IAAMC,EADOD,EAAQ,UACA,MAAM,WAAW,EAChCE,EAAQ,CAAC,EACXD,IAAY,MACdA,EAAQ,IAAKE,GAAQ,CACnB,IAAIC,EAAOD,EAAI,QAAQ,IAAK,EAAE,EAC9BC,EAAOA,EAAK,QAAQ,IAAK,EAAE,EAC3BF,EAAM,KAAKE,CAAI,CACjB,CAAC,EAECF,EAAM,OAAS,GACjB,KAAK,aAAaA,EAAOF,CAAO,CAEpC,CAAC,CAEL,EAEA,aAAc,MAAOE,EAAOF,IAAY,CAItC,MAHe,mCAGD,CACZ,OAHa,KAIf,CAAC,EACE,KAAMK,GAAQA,EAAI,KAAK,CAAC,EACxB,KAAMC,GAAa,CACdA,EAAS,SAEXP,EAAY,gBAAgBG,EAAOF,EAASM,CAAQ,EACpDC,EAAgB,YAAYP,CAAO,GAEnC,QAAQ,IAAI,QAASM,CAAQ,CAEjC,CAAC,EACA,MAAOE,GAAO,CACb,QAAQ,IAAI,iBAAkBA,CAAE,CAClC,CAAC,CACL,EAEA,gBAAiB,CAACN,EAAOF,EAASM,IAAa,CAC7C,IAAMD,EAAM,KAAK,MAAMC,EAAS,IAAI,EAC9BG,EAAO,OAAO,KAAKJ,CAAG,EACxBK,EAAOV,EAAQ,UAEnBE,EAAM,QAASE,GAAS,CACtB,IAAMO,EAAe,IAAIP,CAAI,IAEzBK,EAAK,SAASL,CAAI,EACpBM,EAAOA,EAAK,QAAQC,EAAcN,EAAID,CAAI,CAAC,EAE3CM,EAAOA,EAAK,QAAQC,EAAcP,CAAI,CAE1C,CAAC,EAEDJ,EAAQ,UAAYU,CACtB,CACF,EAEOE,EAAQb", "names": ["richtextApi", "section", "matches", "words", "val", "word", "res", "response", "richtextTooltip_default", "ex", "keys", "text", "selectedWord", "richtextApi_default"] }