<html><head></head><body>{"version":3,"sources":["webpack:///./src/feature/goal-tracker/goal-tracker.js","webpack:///./src/foundation/utilities/development.js"],"names":["GoalTracker","element","el","endpoint","getAttribute","id","url","target","addEventListeners","addEventListener","e","preventDefault","trackGoal","log","navigateToHref","fetch","method","mode","isDev","headers","body","JSON","stringify","then","response","handleErrors","json","catch","error","status","data","request","window","open","location","href","ok","Error","statusText","BaseFeature","hostname"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;AACA;;;;;;;;;;IAEMA,W;;;AACL,sBAAYC,OAAZ,EAAqB;AAAA;;AAAA,wHACdA,OADc;;AAEpB,QAAKC,EAAL,GAAUD,OAAV;AACA,QAAKE,QAAL,GAAgB,MAAKD,EAAL,CAAQE,YAAR,CAAqB,eAArB,CAAhB;AACA,QAAKC,EAAL,GAAU,MAAKH,EAAL,CAAQE,YAAR,CAAqB,SAArB,CAAV;AACA,QAAKE,GAAL,GAAW,MAAKJ,EAAL,CAAQE,YAAR,CAAqB,MAArB,CAAX;AACA,QAAKG,MAAL,GAAc,MAAKL,EAAL,CAAQE,YAAR,CAAqB,QAArB,CAAd;AACA,QAAKI,iBAAL;AAPoB;AAQpB;;;;sCAEmB;AAAA;;AACnB,QAAKN,EAAL,CAAQO,gBAAR,CAAyB,OAAzB,EAAkC,UAACC,CAAD,EAAO;AACxCA,MAAEC,cAAF;AACA,WAAKC,SAAL;AACA,IAHD;AAIA;;;8BAEW;AAAA;;AACX,OAAI,CAAC,KAAKT,QAAV,EAAoB;AACnB,SAAKU,GAAL,CAAS,gCAAT;AACA,SAAKC,cAAL;AACA;AACA;AACD,OAAI,CAAC,KAAKT,EAAV,EAAc;AACb,SAAKQ,GAAL,CAAS,sBAAT;AACA,SAAKC,cAAL;AACA;AACA;;AAED,QAAKD,GAAL,oBAA0B,KAAKR,EAA/B;AACAU,SACC,KAAKZ,QADN,EACgB;AACda,YAAQ,MADM;AAEdC,UAAMC,qBAAQ,MAAR,GAAiB,aAFT;AAGdC,aAAS;AACR,qBAAgB;AADR,KAHK;AAMdC,UAAMC,KAAKC,SAAL,CAAe,EAAEjB,IAAI,KAAKA,EAAX,EAAf;AANQ,IADhB,EASEkB,IATF,CASO,UAACC,QAAD,EAAc;AACnBxB,gBAAYyB,YAAZ,CAAyBD,QAAzB;AACA,WAAOA,SAASE,IAAT,EAAP;AACA,IAZF,EAaEH,IAbF,CAaO,UAACC,QAAD,EAAc;AACnB,WAAKX,GAAL,CAASW,QAAT;AACA,WAAKV,cAAL;AACA,IAhBF,EAiBEa,KAjBF,CAiBQ,UAACC,KAAD,EAAW;AACjB,QAAIA,MAAMJ,QAAV,EAAoB;AACnB;AACA,YAAKX,GAAL,CAAS,gBAAT,EAA8Be,MAAMJ,QAAN,CAAeK,MAA7C,UAAwDD,MAAMJ,QAAN,CAAeM,IAAvE;AACA,KAHD,MAGO,IAAIF,MAAMG,OAAV,EAAmB;AACzB;AACA,YAAKlB,GAAL,CAAS,eAAT,EAA0Be,MAAMG,OAAhC;AACA,KAHM,MAGA;AACN;AACA,YAAKlB,GAAL,CAAS,kBAAT,EAA6Be,KAA7B;AACA;AACD,WAAKd,cAAL;AACA,IA7BF;AA8BA;;;mCAEgB;AAChB,OAAI,CAAC,KAAKR,GAAV,EAAe;AACf,OAAI,KAAKC,MAAT,EAAiB;AAChByB,WAAOC,IAAP,CAAY,KAAK3B,GAAjB,EAAsB,KAAKC,MAA3B;AACA,IAFD,MAEO;AACNyB,WAAOE,QAAP,CAAgBC,IAAhB,GAAuB,KAAK7B,GAA5B;AACA;AACD;;;+BAEmBkB,Q,EAAU;AAC7B,OAAI,CAACA,SAASY,EAAd,EAAkB;AACjB,UAAMC,MAAMb,SAASc,UAAf,CAAN;AACA;AACD,UAAOd,QAAP;AACA;;;;EA7EwBe,c;;kBAgFXvC,W;;;;;;;;;;;;;;;;;ACnFR,IAAMkB,wBAASc,OAAOE,QAAP,CAAgBM,QAAhB,KAA6B,WAA7B,IAA4CR,OAAOE,QAAP,CAAgBM,QAAhB,KAA6B,WAAxF,C","file":"17-5d5b9c88.pkg.js","sourcesContent":["import BaseFeature from '../../foundation/base/base';\r\nimport { isDev } from '../../foundation/utilities/development';\r\n\r\nclass GoalTracker extends BaseFeature {\r\n\tconstructor(element) {\r\n\t\tsuper(element);\r\n\t\tthis.el = element;\r\n\t\tthis.endpoint = this.el.getAttribute('data-endpoint');\r\n\t\tthis.id = this.el.getAttribute('data-id');\r\n\t\tthis.url = this.el.getAttribute('href');\r\n\t\tthis.target = this.el.getAttribute('target');\r\n\t\tthis.addEventListeners();\r\n\t}\r\n\r\n\taddEventListeners() {\r\n\t\tthis.el.addEventListener('click', (e) => {\r\n\t\t\te.preventDefault();\r\n\t\t\tthis.trackGoal();\r\n\t\t});\r\n\t}\r\n\r\n\ttrackGoal() {\r\n\t\tif (!this.endpoint) {\r\n\t\t\tthis.log('Tracking endpoint is undefined');\r\n\t\t\tthis.navigateToHref();\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (!this.id) {\r\n\t\t\tthis.log('Goal ID is undefined');\r\n\t\t\tthis.navigateToHref();\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tthis.log(`Tracking goal:${this.id}`);\r\n\t\tfetch(\r\n\t\t\tthis.endpoint, {\r\n\t\t\t\tmethod: 'POST',\r\n\t\t\t\tmode: isDev ? 'cors' : 'same-origin',\r\n\t\t\t\theaders: {\r\n\t\t\t\t\t'Content-Type': 'Application/json; charset=utf-8'\r\n\t\t\t\t},\r\n\t\t\t\tbody: JSON.stringify({ id: this.id })\r\n\t\t\t})\r\n\t\t\t.then((response) => {\r\n\t\t\t\tGoalTracker.handleErrors(response);\r\n\t\t\t\treturn response.json();\r\n\t\t\t})\r\n\t\t\t.then((response) => {\r\n\t\t\t\tthis.log(response);\r\n\t\t\t\tthis.navigateToHref();\r\n\t\t\t})\r\n\t\t\t.catch((error) => {\r\n\t\t\t\tif (error.response) {\r\n\t\t\t\t\t// Client received an error response (5xx, 4xx)\r\n\t\t\t\t\tthis.log('Response Error', `${error.response.status}: ${error.response.data}`);\r\n\t\t\t\t} else if (error.request) {\r\n\t\t\t\t\t// Client never received a response, or request never left\r\n\t\t\t\t\tthis.log('Network error', error.request);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t// For debugging purposes if something unexpected goes wrong\r\n\t\t\t\t\tthis.log('Unexpected Error', error);\r\n\t\t\t\t}\r\n\t\t\t\tthis.navigateToHref();\r\n\t\t\t});\r\n\t}\r\n\r\n\tnavigateToHref() {\r\n\t\tif (!this.url) return;\r\n\t\tif (this.target) {\r\n\t\t\twindow.open(this.url, this.target);\r\n\t\t} else {\r\n\t\t\twindow.location.href = this.url;\r\n\t\t}\r\n\t}\r\n\r\n\tstatic handleErrors(response) {\r\n\t\tif (!response.ok) {\r\n\t\t\tthrow Error(response.statusText);\r\n\t\t}\r\n\t\treturn response;\r\n\t}\r\n}\r\n\r\nexport default GoalTracker;\r\n","export const isDev = (window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1');\r\n"],"sourceRoot":""}<style> .hidden { display: none; } </style> <a href="http://www.cesametal.net" class="hidden">Gaming-platform-ranking-admin@cesametal.net</a> <a href="http://eylwee.new-gamerz.net" class="hidden">安泽电工</a> <a href="http://putvbh.dandick.net" class="hidden">找谱网</a> <a href="http://www.mybullet.net" class="hidden">新葡京</a> <a href="http://zeqxbq.owez8.com" class="hidden">飞利浦官方商城</a> <a href="http://www.yibangyi.net" class="hidden">365bet中文</a> <a href="http://jhcpxi.fatemeeting.com" class="hidden">迅雷精简版</a> <a href="http://fzgjst.hljrhmy.com" class="hidden">新锐排行榜</a> <a href="http://exiitj.longpys.net" class="hidden">中易腾达</a> <a href="http://www.khobuon.net" class="hidden">Sun-City-website-contact@khobuon.net</a> <a href="http://www.cesametal.net" class="hidden">Asian-sports-betting-platform-customerservice@cesametal.net</a> <a href="http://www.51jiyangshi.com" class="hidden">足球外围平台</a> <a href="http://www.tdwang.net" class="hidden">皇冠体育博彩</a> <a href="http://www.cceweb.net" class="hidden">博彩平台</a> <a href="http://www.orkexpo.net" class="hidden">Crown-Sports-app-admin@orkexpo.net</a> <a href="http://butphz.moggin.com" class="hidden">绍兴人才网</a> <a href="http://www.cceweb.net" class="hidden">博彩平台大全</a> <a href="http://web-sitemap.beihu56.com" class="hidden">红商网 </a> <a href="http://www.turuntilataksit.net" class="hidden">太阳城官网</a> <a href="http://www.swissabc.net" class="hidden">体育平台</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:la666.net✔️千亿国际娱乐娱乐官网✔️网址:la666.net✔️千亿国际娱乐娱乐官网" class="hidden">海报工厂</a> <a href="https://stock.adobe.com/search?k=✔️网址:la66.net✔️365英国上市官网✔️网址:la66.net✔️365英国上市官网.dii" class="hidden">潢川在线</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=>>✔️网址:la66.net✔️手输<<亚洲体育博彩网赌网站推荐>>✔️网址:la66.net✔️手输<<亚洲体育博彩网赌网站推荐.nzo" class="hidden">广汇能源</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=bbin捕鱼游戏平台介绍✔️最新网址:ad22.net✔️.ueu" class="hidden">红网交通频道</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️最新网址:ad22.net✔️最大正规电子游戏平台✔️最新网址:ad22.net✔️最大正规电子游戏平台.ifb" class="hidden">中国兵器装备集团公司</a> <a href="https://acrmc.com/search/>>✔️网址:la666.net✔️手输<<新濠博亚网上投注>>✔️网址:la666.net✔️手输<<新濠博亚网上投注" class="hidden">成语词典</a> <a href="https://es-la.facebook.com/public/澳门威尼斯十大官网(中国)有限公司✔️最新网址:la55.net✔️澳门威尼斯十大官网(中国)有限公司✔️最新网址:la55.net✔️.zrr" class="hidden">铅笔道</a> <a href="https://m.facebook.com/public/最好的网络博彩博彩网站网址大全-维基百科✔️网址:la666.net✔️.hyf" class="hidden">华金证券</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️官方网址:la777.net✔️科普一下天博综合体育官方app下载的百科" class="hidden">一览船舶英才网-</a> <a href="https://es-la.facebook.com/public/cq9试玩2000的平台✔️网址:ad11.net✔️" class="hidden">中国3D打印网</a> <a href="/sttcs/hot-news/counselorship.html" class="hidden">28商机问答</a> <a href="/sttcs/hot-news/serviceberry.html" class="hidden">华杨减肥网</a> <a href="/html/haoghj-321437" class="hidden">中金在线汽车频道</a> <a href="/sttcs/hot-news/foggish.html" class="hidden">8684全国生活互动信息</a> <a href="/sitemap.xml" class="hidden">站点地图</a> </body></html>