|
@@ -61,7 +61,6 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import { confirmAlart, getAlartConfig, alarm_history } from "@api/api.js";
|
|
|
-import { h } from "vue";
|
|
|
import { ElNotification } from "element-plus";
|
|
|
import dayJs from "dayjs";
|
|
|
export default {
|
|
@@ -101,6 +100,41 @@ export default {
|
|
|
deviceType: "windturbine",
|
|
|
},
|
|
|
],
|
|
|
+
|
|
|
+ // websocket相关
|
|
|
+ socketObj: "", // websocket实例对象
|
|
|
+ //心跳检测
|
|
|
+ heartCheck: {
|
|
|
+ vueThis: this, // vue实例
|
|
|
+ timeout: 30000, // 超时时间
|
|
|
+ timeoutObj: null, // 计时器对象——向后端发送心跳检测
|
|
|
+ serverTimeoutObj: null, // 计时器对象——等待后端心跳检测的回复
|
|
|
+ // 心跳检测重置
|
|
|
+ reset: function () {
|
|
|
+ clearTimeout(this.timeoutObj);
|
|
|
+ clearTimeout(this.serverTimeoutObj);
|
|
|
+ return this;
|
|
|
+ },
|
|
|
+ // 心跳检测启动
|
|
|
+ start: function () {
|
|
|
+ this.timeoutObj && clearTimeout(this.timeoutObj);
|
|
|
+ this.serverTimeoutObj && clearTimeout(this.serverTimeoutObj);
|
|
|
+ this.timeoutObj = setTimeout(() => {
|
|
|
+ // 这里向后端发送一个心跳检测,后端收到后,会返回一个心跳回复
|
|
|
+ this.vueThis.socketObj.send("HeartBeat");
|
|
|
+ console.log("发送心跳检测");
|
|
|
+ this.serverTimeoutObj = setTimeout(() => {
|
|
|
+ // 如果超过一定时间还没重置计时器,说明websocket与后端断开了
|
|
|
+ console.log("未收到心跳检测回复");
|
|
|
+ // 关闭WebSocket
|
|
|
+ this.vueThis.socketObj.close();
|
|
|
+ }, this.timeout);
|
|
|
+ }, this.timeout);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ socketReconnectTimer: null, // 计时器对象——重连
|
|
|
+ socketReconnectLock: false, // WebSocket重连的锁
|
|
|
+ socketLeaveFlag: false, // 离开标记(解决 退出登录再登录 时出现的 多次相同推送 问题,出现的本质是多次建立了WebSocket连接)
|
|
|
};
|
|
|
},
|
|
|
|
|
@@ -120,9 +154,10 @@ export default {
|
|
|
this.pushALarmItem(ele);
|
|
|
});
|
|
|
});
|
|
|
- this.webSocketInit(
|
|
|
- `ws://10.81.3.154:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`
|
|
|
- );
|
|
|
+ // this.webSocketInit(
|
|
|
+ // `ws://10.81.3.154:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`
|
|
|
+ // );
|
|
|
+ this.createWebSocket();
|
|
|
})
|
|
|
.catch(() => {
|
|
|
requestResult.forEach((ele, index) => {
|
|
@@ -156,7 +191,8 @@ export default {
|
|
|
},
|
|
|
|
|
|
unmounted() {
|
|
|
- this.ws?.close();
|
|
|
+ this.socketLeaveFlag = true;
|
|
|
+ this.socketObj.close();
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
@@ -354,34 +390,130 @@ export default {
|
|
|
return alarm_history(params, 12000);
|
|
|
},
|
|
|
|
|
|
- webSocketInit(serveIP) {
|
|
|
- if ("WebSocket" in window) {
|
|
|
- this.ws = new WebSocket(serveIP);
|
|
|
- this.ws.onmessage = (res) => {
|
|
|
- let alarmItem = JSON.parse(res.data);
|
|
|
- if (alarmItem) {
|
|
|
- this.pushALarmItem(alarmItem);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.ws.onclose = () => {
|
|
|
- this.ws = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.ws.onopen = () => {
|
|
|
- this.timeConnect = 0;
|
|
|
- console.log("WebSocket 服务已建立");
|
|
|
- };
|
|
|
-
|
|
|
- this.ws.onerror = () => {
|
|
|
- this.reconnect(serveIP);
|
|
|
- };
|
|
|
+ // websocket启动
|
|
|
+ createWebSocket() {
|
|
|
+ let webSocketLink = `ws://10.81.3.154:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`; // webSocket地址
|
|
|
+ // let webSocketLink = `ws://192.168.1.108:6014/websocket/${this.$store.state.user.userId}_${this.$store.state.user.authToken}`; // webSocket地址
|
|
|
+ try {
|
|
|
+ if ("WebSocket" in window) {
|
|
|
+ this.socketObj = new WebSocket(webSocketLink);
|
|
|
+ }
|
|
|
+ // websocket事件绑定
|
|
|
+ this.socketEventBind();
|
|
|
+ } catch (e) {
|
|
|
+ console.log("catch" + e);
|
|
|
+ // websocket重连
|
|
|
+ this.socketReconnect();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // websocket事件绑定
|
|
|
+ socketEventBind() {
|
|
|
+ // 连接成功建立的回调
|
|
|
+ this.socketObj.onopen = this.onopenCallback;
|
|
|
+ // 连接发生错误的回调
|
|
|
+ this.socketObj.onerror = this.onerrorCallback;
|
|
|
+ // 连接关闭的回调
|
|
|
+ this.socketObj.onclose = this.oncloseCallback;
|
|
|
+ // 向后端发送数据的回调
|
|
|
+ this.socketObj.onsend = this.onsendCallback;
|
|
|
+ // 接收到消息的回调
|
|
|
+ this.socketObj.onmessage = this.getMessageCallback;
|
|
|
+
|
|
|
+ //监听窗口关闭事件,当窗口关闭时,主动去关闭websocket连接,防止连接还没断开就关闭窗口,server端会抛异常。
|
|
|
+ window.onbeforeunload = () => {
|
|
|
+ this.socketObj.close();
|
|
|
+ };
|
|
|
+ },
|
|
|
+ // websocket重连
|
|
|
+ socketReconnect() {
|
|
|
+ if (this.socketReconnectLock) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.socketReconnectLock = true;
|
|
|
+ this.socketReconnectTimer && clearTimeout(this.socketReconnectTimer);
|
|
|
+ this.socketReconnectTimer = setTimeout(() => {
|
|
|
+ console.log("WebSocket:重连中...");
|
|
|
+ this.socketReconnectLock = false;
|
|
|
+ // websocket启动
|
|
|
+ this.createWebSocket();
|
|
|
+ }, 4000);
|
|
|
+ },
|
|
|
+ // 连接成功建立的回调
|
|
|
+ onopenCallback: function (event) {
|
|
|
+ console.log("WebSocket:已连接");
|
|
|
+ // 心跳检测重置
|
|
|
+ this.heartCheck.reset().start();
|
|
|
+ },
|
|
|
+ // 连接发生错误的回调
|
|
|
+ onerrorCallback: function (event) {
|
|
|
+ console.log("WebSocket:发生错误");
|
|
|
+ // websocket重连
|
|
|
+ this.socketReconnect();
|
|
|
+ },
|
|
|
+ // 连接关闭的回调
|
|
|
+ oncloseCallback: function (event) {
|
|
|
+ console.log("WebSocket:已关闭");
|
|
|
+ // 心跳检测重置
|
|
|
+ this.heartCheck.reset();
|
|
|
+ if (!this.socketLeaveFlag) {
|
|
|
+ // 没有离开——重连
|
|
|
+ // websocket重连
|
|
|
+ this.socketReconnect();
|
|
|
} else {
|
|
|
- this.BASE.showMsg({
|
|
|
- msg: "当前浏览器不支持 WebSocket ,请更换浏览器后重试",
|
|
|
- });
|
|
|
+ this.socketObj.close();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 向后端发送数据的回调
|
|
|
+ onsendCallback: function () {
|
|
|
+ console.log("WebSocket:发送信息给后端");
|
|
|
+ },
|
|
|
+ // 接收到消息的回调
|
|
|
+ getMessageCallback: function (msg) {
|
|
|
+ // console.log(msg);
|
|
|
+ if (Object.keys(msg) && msg.data == "ok") {
|
|
|
+ // 心跳回复——心跳检测重置
|
|
|
+ // 收到心跳检测回复就说明连接正常
|
|
|
+ console.log("收到心跳检测回复");
|
|
|
+ // 心跳检测重置
|
|
|
+ this.heartCheck.reset().start();
|
|
|
+ } else {
|
|
|
+ // 普通推送——正常处理
|
|
|
+ console.log("收到推送消息");
|
|
|
+ // 相关处理
|
|
|
+ let alarmItem = JSON.parse(msg.data);
|
|
|
+ if (alarmItem) {
|
|
|
+ this.pushALarmItem(alarmItem);
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
+ // webSocketInit(serveIP) {
|
|
|
+ // if ("WebSocket" in window) {
|
|
|
+ // this.ws = new WebSocket(serveIP);
|
|
|
+ // this.ws.onmessage = (res) => {
|
|
|
+ // let alarmItem = JSON.parse(res.data);
|
|
|
+ // if (alarmItem) {
|
|
|
+ // this.pushALarmItem(alarmItem);
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+
|
|
|
+ // this.ws.onclose = () => {
|
|
|
+ // this.ws = null;
|
|
|
+ // };
|
|
|
+
|
|
|
+ // this.ws.onopen = () => {
|
|
|
+ // this.timeConnect = 0;
|
|
|
+ // console.log("WebSocket 服务已建立");
|
|
|
+ // };
|
|
|
+
|
|
|
+ // this.ws.onerror = () => {
|
|
|
+ // this.reconnect(serveIP);
|
|
|
+ // };
|
|
|
+ // } else {
|
|
|
+ // this.BASE.showMsg({
|
|
|
+ // msg: "当前浏览器不支持 WebSocket ,请更换浏览器后重试",
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // },
|
|
|
|
|
|
pushALarmItem(alarmItem) {
|
|
|
const configItem = this.getConfigItem(alarmItem.rank);
|