{"version":3,"file":"src_store_ws_web_worker_socket_js-_814b0.build-103b49.js","mappings":";YAAA,IAAIA,EAAK,KAETC,KAAKC,UAAY,SAACC,GACK,cAAjBA,EAAEC,KAAKC,SACTL,EAAK,IAAIM,UAAUH,EAAEC,KAAKG,MAWzBC,WAAa,cAChBR,EAAGS,OAAS,WACVC,QAAQC,IAAI,mBAAqBC,KAAKC,YAEtCZ,KAAKa,YAAY,CACfC,QAAS,SACTX,KAAM,CACJY,KAAM,GAAIC,SAAS,EAAMC,OAAO,EAAOC,WAAW,EAAOC,SAAS,EAAOC,KAAM,KAGrF,EAEArB,EAAGsB,QAAU,SAAUC,GACrBb,QAAQC,IAAI,iBAAmBa,KAAKC,UAAUF,IAE9CtB,KAAKa,YAAY,CACfC,QAAS,SACTX,KAAM,CACJY,KAAM,GAAIC,SAAS,EAAOC,OAAO,EAAME,SAAS,EAAOC,KAAM,KAGnE,EAEArB,EAAGE,UAAY,SAAUwB,GACnBA,EAAItB,gBAAgBuB,YACtB1B,KAAKa,YAAY,CACfC,QAAS,WACTX,KAAM,IAAIwB,WAAYF,EAAItB,QAG5BH,KAAKa,YAAY,CACfC,QAAS,YACTX,KAAMoB,KAAKK,MAAMH,EAAItB,OAG3B,GA1CKD,EAAEC,KAAK0B,eAAe,UACzB9B,EAAG+B,KAAK5B,EAAEC,KAEd","sources":["webpack://veliri/./src/store/ws/web_worker_socket.js"],"sourcesContent":["let WS = null\n\nself.onmessage = (e) => {\n if (e.data.event === 'create_ws') {\n WS = new WebSocket(e.data.url);\n readSocket()\n }\n\n if (!e.data.hasOwnProperty('event')) {\n WS.send(e.data)\n }\n};\n\nlet count = 0\nfunction readSocket() {\n WS.binaryType = \"arraybuffer\";\n WS.onopen = function () {\n console.log(\"socket opened...\" + this.readyState);\n\n self.postMessage({\n msgType: 'system',\n data: {\n type: \"\", connect: true, error: false, reconnect: false, pending: false, uuid: \"\",\n }\n });\n };\n\n WS.onclose = function (i) {\n console.log(\"socket close: \" + JSON.stringify(i));\n\n self.postMessage({\n msgType: 'system',\n data: {\n type: \"\", connect: false, error: true, pending: false, uuid: \"\",\n }\n });\n };\n\n WS.onmessage = function (msg) {\n if (msg.data instanceof ArrayBuffer) {\n self.postMessage({\n msgType: 'bin_game',\n data: new Uint8Array((msg.data)),\n });\n } else {\n self.postMessage({\n msgType: 'json_game',\n data: JSON.parse(msg.data),\n });\n }\n };\n}\n"],"names":["WS","self","onmessage","e","data","event","WebSocket","url","binaryType","onopen","console","log","this","readyState","postMessage","msgType","type","connect","error","reconnect","pending","uuid","onclose","i","JSON","stringify","msg","ArrayBuffer","Uint8Array","parse","hasOwnProperty","send"],"sourceRoot":""}