|
@@ -22,7 +22,7 @@ self.onconnect = (event) => {
|
|
|
port.sessionRes = ports[0].sessionRes
|
|
|
port.postMessage(JSON.stringify({type: 'onmessage', init: true, data: port.sessionRes}))
|
|
|
} else {
|
|
|
- initWS(port, true, data)
|
|
|
+ initWS(port, data)
|
|
|
}
|
|
|
} break
|
|
|
case 'send': {
|
|
@@ -32,11 +32,11 @@ self.onconnect = (event) => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-const initWS = (port, init, data) => {
|
|
|
+const initWS = (port, data) => {
|
|
|
port.sessionRes = ''
|
|
|
port.ws = new WebSocket(`ws://${location.host}/ws-api/smart-ws?userId=${data.userId}`)
|
|
|
port.ws.onopen = (e) => {
|
|
|
- port.postMessage(JSON.stringify({type: init ? 'onopen' : 'onconnect'}))
|
|
|
+ port.postMessage(JSON.stringify({type: 'onopen'}))
|
|
|
}
|
|
|
port.ws.onmessage = (e) => {
|
|
|
const json = JSON.parse(e.data)
|
|
@@ -44,19 +44,17 @@ const initWS = (port, init, data) => {
|
|
|
port.sessionRes = e.data
|
|
|
}
|
|
|
ports.forEach((p) => {
|
|
|
- p.postMessage(JSON.stringify({type: 'onmessage', init: init, data: e.data}))
|
|
|
+ p.postMessage(JSON.stringify({type: 'onmessage', data: e.data}))
|
|
|
})
|
|
|
}
|
|
|
port.ws.onclose = () => {
|
|
|
ports.forEach((p) => {
|
|
|
p.postMessage(JSON.stringify({type: 'onclose'}))
|
|
|
})
|
|
|
- setTimeout(initWS(port, false, data), 5000);
|
|
|
}
|
|
|
port.ws.onerror = () => {
|
|
|
ports.forEach((p) => {
|
|
|
p.postMessage(JSON.stringify({type: 'onclose'}))
|
|
|
})
|
|
|
- setTimeout(initWS(port, false, data), 5000);
|
|
|
}
|
|
|
}
|