<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) =&gt; {\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) =&gt; {\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) =&gt; {\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) =&gt; {\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.andersontxrealty.net"  class="hidden">Galaxy-Group-app-download-support@andersontxrealty.net</a>
<a href="http://www.futuretac.net"  class="hidden">永利体育app</a>
<a href="http://web-sitemap.kkkkbt.com" class="hidden">北京卫生信息网</a>
<a href="http://cbraoj.ivantseng.com" class="hidden">华兴资本</a>
<a href="http://www.m-y-c.net"  class="hidden">2024欧洲杯押注</a>
<a href="http://eezfau.owez4.com" class="hidden">廉江阿贵网</a>
<a href="http://www.hairstylescn.com"  class="hidden">bbin视讯</a>
<a href="http://pwwvzs.coolqw.com" class="hidden">钱站</a>
<a href="http://www.record-room.com"  class="hidden">Football-platform-admin@record-room.com</a>
<a href="http://web-sitemap.czfsdsm.com" class="hidden">中潜股份</a>
<a href="http://www.smxjjl.com"  class="hidden">体育平台</a>
<a href="http://www.bigtrecords.com"  class="hidden">European-Championship-website-hr@bigtrecords.com</a>
<a href="http://ptesem.as-oil.com" class="hidden">红歌会网址导航</a>
<a href="http://www.anetalaya.com"  class="hidden">博彩app</a>
<a href="http://www.chapterdesign.net"  class="hidden">Sabah-Official-website-help@chapterdesign.net</a>
<a href="http://www.sqwyhws.com"  class="hidden">ag8亚游</a>
<a href="http://www.seezl.com"  class="hidden">皇冠体育博彩</a>
<a href="http://www.xlhl.net"  class="hidden">Buy-ball-app-sales@xlhl.net</a>
<a href="http://www.madeintlh.com"  class="hidden">New-Portugal-new-Beijing-contactus@madeintlh.com</a>
<a href="http://www.kongtiao11.com"  class="hidden">亚洲体育博彩平台</a>

<a href="https://tw.dictionary.yahoo.com/dictionary?p=十大电子游戏正规平台✔️网址:ad11.net✔️.rfv" class="hidden">上海出入境检验检疫局门户网站</a>
<a href="https://stock.adobe.com/search/images?k=✔️网址:la66.net✔️det365娱乐官网登录-det365娱乐官网登录官方网站" class="hidden">绍兴兼职网</a>
<a href="https://stock.adobe.com/search/images?k=亚博电子游戏平台✔️官方网址:la777.net✔️亚博电子游戏平台✔️官方网址:la777.net✔️.ihr" class="hidden">报告大全网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=>>✔️网址:la66.net✔️手输<<bet365中国" class="hidden">嘉应学院教务信息网</a>
<a href="https://m.facebook.com/public/科普一下正规靠谱的赌博软件的百科✔️最新网址:la55.net✔️科普一下正规靠谱的赌博软件的百科✔️最新网址:la55.net✔️.axg" class="hidden">Lab Series 中国官网</a>
<a href="https://stock.adobe.com/search/images?k=✔️网址:la666.net✔️365体育官网app最新版下载" class="hidden">财经频道 - 中国日报网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=科普一下澳门拉斯维加斯app的百科✔️网址:la666.net✔️.uwg" class="hidden">快用苹果助手</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️最新网址:la55.net✔️正规买球排行十佳平台✔️最新网址:la55.net✔️正规买球排行十佳平台.ufc" class="hidden">《机动战士敢达ol》官网</a>
<a href="https://es-la.facebook.com/public/实博体育登录官网app下载-实博体育登录官网app下载官方网站✔️网址:ad11.net✔️.fom" class="hidden">天地壹号</a>
<a href="https://acrmc.com/search/bet55365体育在线投注✔️官方网址:la777.net✔️bet55365体育在线投注✔️官方网址:la777.net✔️.dnu" class="hidden">河南经贸职业学院</a>

<a href="/CN/vvnesu-379249" class="hidden">峰峰信息港综艺频道</a>
<a href="/sttcs/hot-news/unsettle.html" class="hidden"> TUMI 中国网站</a>
<a href="/sttcs/hot-news/metaxenia.html" class="hidden">北大法宝</a>
<a href="/sttcs/hot-news/reascertainment.html" class="hidden">P2P聚焦网</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>


</body></html>