Blame view

ant-design-vue-jeecg/src/components/tools/HeaderNotice.vue 12.7 KB
1
2
3
4
5
6
7
<template>
  <a-popover
    trigger="click"
    placement="bottomRight"
    :autoAdjustOverflow="true"
    :arrowPointAtCenter="true"
    overlayClassName="header-notice-wrapper"
8
    @visibleChange="handleHoverChange"
9
10
11
12
    :overlayStyle="{ width: '300px', top: '50px' }">
    <template slot="content">
      <a-spin :spinning="loadding">
        <a-tabs>
13
14
          <a-tab-pane :tab="msg1Title" key="1">
            <!--<a-list>
15
16
17
18
19
20
              <a-list-item>
                <a-list-item-meta title="你收到了 14 份新周报" description="一年前">
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
                </a-list-item-meta>
              </a-list-item>
              <a-list-item>
21
                <a-list-item-meta title="你推荐的 IT大牛 已通过第三轮面试" description="一年前">
22
23
24
25
26
27
28
29
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png"/>
                </a-list-item-meta>
              </a-list-item>
              <a-list-item>
                <a-list-item-meta title="这种模板可以区分多种通知类型" description="一年前">
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png"/>
                </a-list-item-meta>
              </a-list-item>
30
31
32
33
            </a-list>-->
            <a-list>
              <a-list-item :key="index" v-for="(record, index) in announcement1">
                <div style="margin-left: 5%;width: 80%">
34
                  <p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
35
36
37
38
39
40
41
42
43
44
45
                  <p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
                </div>
                <div style="text-align: right">
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
                </div>
              </a-list-item>
              <div style="margin-top: 5px;text-align: center">
                <a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
              </div>
46
47
            </a-list>
          </a-tab-pane>
48
49
50
51
          <a-tab-pane :tab="msg2Title" key="2">
            <a-list>
              <a-list-item :key="index" v-for="(record, index) in announcement2">
                <div style="margin-left: 5%;width: 80%">
52
                  <p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
53
54
55
56
57
58
59
60
61
62
63
64
                  <p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
                </div>
                <div style="text-align: right">
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
                </div>
              </a-list-item>
              <div style="margin-top: 5px;text-align: center">
                <a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
              </div>
            </a-list>
65
66
67
68
69
          </a-tab-pane>
        </a-tabs>
      </a-spin>
    </template>
    <span @click="fetchNotice" class="header-notice">
70
      <a-badge :count="msgTotal">
71
72
73
        <a-icon style="font-size: 16px; padding: 4px" type="bell" />
      </a-badge>
    </span>
74
    <show-announcement ref="ShowAnnouncement" @ok="modalFormOk"></show-announcement>
75
    <dynamic-notice ref="showDynamNotice" :path="openPath" :formData="formData"/>
76
77
78
79
  </a-popover>
</template>

<script>
80
81
  import { getAction,putAction } from '@/api/manage'
  import ShowAnnouncement from './ShowAnnouncement'
82
  import store from '@/store/'
83
  import DynamicNotice from './DynamicNotice'
84
85
  import Vue from 'vue'
  import { ACCESS_TOKEN } from '@/store/mutation-types'
86
87
88
  export default {
    name: "HeaderNotice",
89
    components: {
90
      DynamicNotice,
91
92
      ShowAnnouncement,
    },
93
94
    data () {
      return {
95
96
97
        loadding: false,
        url:{
          listCementByUser:"/sys/annountCement/listByUser",
98
99
          editCementSend:"/sys/sysAnnouncementSend/editByAnntIdAndUserId",
          queryById:"/sys/annountCement/queryById",
100
101
102
103
        },
        hovered: false,
        announcement1:[],
        announcement2:[],
104
        msg1Count:"0",
105
        msg2Count:"0",
106
        msg1Title:"通知(0)",
107
        msg2Title:"",
108
        stopTimer:false,
109
110
        websock: null,
        lockReconnect:false,
111
112
        //websocket错误连接次数
        wsConnectErrorTime:1,
113
        heartCheck:null,
114
115
        formData:{},
        openPath:''
116
117
118
119
120
      }
    },
    computed:{
      msgTotal () {
        return parseInt(this.msg1Count)+parseInt(this.msg2Count);
121
122
      }
    },
123
    mounted() {
124
      this.loadData();
125
126
      //this.timerFun();
      this.initWebSocket();
127
     // this.heartCheckFun();
128
129
    },
    destroyed: function () { // 离开页面生命周期函数
130
      this.websocketOnclose();
131
    },
132
    methods: {
133
134
135
136
137
138
139
140
      timerFun() {
        this.stopTimer = false;
        let myTimer = setInterval(()=>{
          // 停止定时器
          if (this.stopTimer == true) {
            clearInterval(myTimer);
            return;
          }
141
          this.loadData()
142
        },6000)
143
144
      },
      loadData (){
145
146
147
148
149
150
151
152
153
154
155
        try {
          // 获取系统消息
          getAction(this.url.listCementByUser).then((res) => {
            if (res.success) {
              this.announcement1 = res.result.anntMsgList;
              this.msg1Count = res.result.anntMsgTotal;
              this.msg1Title = "通知(" + res.result.anntMsgTotal + ")";
              this.announcement2 = res.result.sysMsgList;
              this.msg2Count = res.result.sysMsgTotal;
              this.msg2Title = "系统消息(" + res.result.sysMsgTotal + ")";
            }
156
157
158
159
          }).catch(error => {
            console.log("系统消息通知异常",error);//这行打印permissionName is undefined
            this.stopTimer = true;
            console.log("清理timer");
160
161
          });
        } catch (err) {
162
163
          this.stopTimer = true;
          console.log("通知异常",err);
164
        }
165
      },
166
167
168
169
170
171
172
173
      fetchNotice () {
        if (this.loadding) {
          this.loadding = false
          return
        }
        this.loadding = true
        setTimeout(() => {
          this.loadding = false
174
175
176
177
178
179
180
181
182
        }, 200)
      },
      showAnnouncement(record){
        putAction(this.url.editCementSend,{anntId:record.id}).then((res)=>{
          if(res.success){
            this.loadData();
          }
        });
        this.hovered = false;
183
184
185
186
187
188
189
        if(record.openType==='component'){
          this.openPath = record.openPage;
          this.formData = {id:record.busId};
          this.$refs.showDynamNotice.detail(record.openPage);
        }else{
          this.$refs.ShowAnnouncement.detail(record);
        }
190
191
192
      },
      toMyAnnouncement(){
        this.$router.push({
193
          path: '/isps/userAnnouncement'
194
195
196
197
198
199
200
201
        });
      },
      modalFormOk(){
      },
      handleHoverChange (visible) {
        this.hovered = visible;
      },
202
203
204
205
      initWebSocket: function () {
        // WebSocket与普通的请求所用协议有所不同,ws等同于http,wss等同于https
        var userId = store.getters.userInfo.id;
        var url = window._CONFIG['domianURL'].replace("https://","wss://").replace("http://","ws://")+"/websocket/"+userId;
206
        //console.log(url);
207
208
209
210
        //update-begin-author:taoyan date:2022-4-22 for:  v2.4.6 的 websocket 服务端,存在性能和安全问题。 #3278
        let token = Vue.ls.get(ACCESS_TOKEN)
        this.websock = new WebSocket(url, [token]);
        //update-end-author:taoyan date:2022-4-22 for:  v2.4.6 的 websocket 服务端,存在性能和安全问题。 #3278
211
212
213
214
        this.websock.onopen = this.websocketOnopen;
        this.websock.onerror = this.websocketOnerror;
        this.websock.onmessage = this.websocketOnmessage;
        this.websock.onclose = this.websocketOnclose;
215
      },
216
      websocketOnopen: function () {
217
        console.log("WebSocket连接成功");
218
        //心跳检测重置
219
        //this.heartCheck.reset().start();
220
      },
221
      websocketOnerror: function (e) {
222
223
224
225
226
227
228
229
230
        console.log("WebSocket连接发生错误,第%s次",this.wsConnectErrorTime);

        this.wsConnectErrorTime = this.wsConnectErrorTime + 1;
        if(this.wsConnectErrorTime>5){
          console.log("WebSocket连接错误超过5次,就不再重新连了!");
          this.lockReconnect = true
          return;
        }
231
        this.reconnect();
232
      },
233
234
      websocketOnmessage: function (e) {
        console.log("-----接收消息-------",e.data);
235
        var data = eval("(" + e.data + ")"); //解析对象
236
        this.voiceBroadcast(data.msgTxt)
237
238
239
240
241
242
243
244
        if(data.cmd == "topic"){
            //系统通知
          this.loadData();
        }else if(data.cmd == "user"){
            //用户消息
          this.loadData();
        }
        //心跳检测重置
245
        //this.heartCheck.reset().start();
246
      },
247
      websocketOnclose: function (e) {
248
249
250
251
        console.log("connection closed (" + e + ")");
        if(e){
          console.log("connection closed (" + e.code + ")");
        }
252
253
254
        this.reconnect();
      },
      websocketSend(text) { // 数据发送
255
256
257
258
259
260
        try {
          this.websock.send(text);
        } catch (err) {
          console.log("send failed (" + err.code + ")");
        }
      },
261
262
263
264
265
266
267
      //语音播报系统通知
      voiceBroadcast(text){
        var url = "http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=" + encodeURI(text);        // baidu文字转语音
        var voiceContent = new Audio(url);
        voiceContent.src = url;
        voiceContent.play();
      },
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
      openNotification (data) {
        var text = data.msgTxt;
        const key = `open${Date.now()}`;
        this.$notification.open({
          message: '消息提醒',
          placement:'bottomRight',
          description: text,
          key,
          btn: (h)=>{
            return h('a-button', {
              props: {
                type: 'primary',
                size: 'small',
              },
              on: {
                click: () => this.showDetail(key,data)
              }
            }, '查看详情')
          },
        });
      },
290
291
292
293
294
295
296
297
298
      reconnect() {
        var that = this;
        if(that.lockReconnect) return;
        that.lockReconnect = true;
        //没连接上会一直重连,设置延迟避免请求过多
        setTimeout(function () {
          console.info("尝试重连...");
          that.initWebSocket();
          that.lockReconnect = false;
299
        }, 20000);
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
      },
      heartCheckFun(){
        var that = this;
        //心跳检测,每20s心跳一次
        that.heartCheck = {
          timeout: 20000,
          timeoutObj: null,
          serverTimeoutObj: null,
          reset: function(){
            clearTimeout(this.timeoutObj);
            //clearTimeout(this.serverTimeoutObj);
            return this;
          },
          start: function(){
            var self = this;
            this.timeoutObj = setTimeout(function(){
              //这里发送一个心跳,后端收到后,返回一个心跳消息,
              //onmessage拿到返回的心跳就说明连接正常
318
              that.websocketSend("HeartBeat");
319
320
321
322
323
324
325
326
327
328
              console.info("客户端发送心跳");
              //self.serverTimeoutObj = setTimeout(function(){//如果超过一定时间还没重置,说明后端主动断开了
              //  that.websock.close();//如果onclose会执行reconnect,我们执行ws.close()就行了.如果直接执行reconnect 会触发onclose导致重连两次
              //}, self.timeout)
            }, this.timeout)
          }
        }
      },
329
330
331
332
333
334
335
336
337
338
339
      showDetail(key,data){
        this.$notification.close(key);
        var id = data.msgId;
        getAction(this.url.queryById,{id:id}).then((res) => {
          if (res.success) {
            var record = res.result;
            this.showAnnouncement(record);
          }
        })

      },
340
341
342
343
344
345
346
347
348
    }
  }
</script>

<style lang="css">
  .header-notice-wrapper {
    top: 50px !important;
  }
</style>
349
<style lang="less" scoped>
350
351
352
353
354
355
356
357
358
  .header-notice{
    display: inline-block;
    transition: all 0.3s;

    span {
      vertical-align: initial;
    }
  }
</style>