index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <div :class="prefixCls">
  3. <Badge :count="count" :overflowCount="9" :offset="[-4, 10]" :numberStyle="numberStyle" @click="clickBadge">
  4. <BellOutlined />
  5. </Badge>
  6. <DynamicNotice ref="dynamicNoticeRef" v-bind="dynamicNoticeProps" />
  7. <DetailModal @register="registerDetail" />
  8. <sys-message-modal @register="registerMessageModal" @refresh="reloadCount" />
  9. </div>
  10. </template>
  11. <script lang="ts">
  12. import { computed, defineComponent, ref, unref, reactive, onMounted, getCurrentInstance, h } from 'vue';
  13. import { Popover, Tabs, Badge } from 'ant-design-vue';
  14. import { BellOutlined } from '@ant-design/icons-vue';
  15. import { tabListData } from './data';
  16. import { listCementByUser, editCementSend } from './notify.api';
  17. import NoticeList from './NoticeList.vue';
  18. import DetailModal from '/@/views/monitor/mynews/DetailModal.vue';
  19. import DynamicNotice from '/@/views/monitor/mynews/DynamicNotice.vue';
  20. import { useModal } from '/@/components/Modal';
  21. import { useDesign } from '/@/hooks/web/useDesign';
  22. import { useGlobSetting } from '/@/hooks/setting';
  23. import { useUserStore } from '/@/store/modules/user';
  24. import { connectWebSocket, onWebSocket } from '/@/hooks/web/useWebSocket';
  25. import { readAllMsg } from '/@/views/monitor/mynews/mynews.api';
  26. import { getToken } from '/@/utils/auth';
  27. import md5 from 'crypto-js/md5';
  28. import { SmileOutlined } from '@ant-design/icons-vue';
  29. import SysMessageModal from '/@/views/system/message/components/SysMessageModal.vue';
  30. import { useMessage } from '@/hooks/web/useMessage';
  31. const { notification } = useMessage();
  32. export default defineComponent({
  33. components: {
  34. Popover,
  35. BellOutlined,
  36. Tabs,
  37. TabPane: Tabs.TabPane,
  38. Badge,
  39. NoticeList,
  40. DetailModal,
  41. DynamicNotice,
  42. SysMessageModal,
  43. },
  44. setup() {
  45. const { prefixCls } = useDesign('header-notify');
  46. const instance: any = getCurrentInstance();
  47. const userStore = useUserStore();
  48. const glob = useGlobSetting();
  49. const websocketUrl = ref(glob.domainUrl);
  50. const dynamicNoticeProps = reactive({ path: '', formData: {} });
  51. const [registerDetail, detailModal] = useModal();
  52. const listData = ref(tabListData);
  53. const count = computed(() => {
  54. let count = 0;
  55. for (let i = 0; i < listData.value.length; i++) {
  56. count += listData.value[i].count;
  57. }
  58. return count;
  59. });
  60. const [registerMessageModal, { openModal: openMessageModal }] = useModal();
  61. function clickBadge() {
  62. //消息列表弹窗前去除角标
  63. for (let i = 0; i < listData.value.length; i++) {
  64. listData.value[i].count = 0;
  65. }
  66. openMessageModal(true, {});
  67. }
  68. const popoverVisible = ref<boolean>(false);
  69. onMounted(() => {
  70. initWebSocket();
  71. });
  72. function mapAnnouncement(item) {
  73. return {
  74. ...item,
  75. title: item.titile,
  76. description: item.msgAbstract,
  77. datetime: item.sendTime,
  78. };
  79. }
  80. // 获取系统消息
  81. async function loadData() {
  82. try {
  83. let { anntMsgList, sysMsgList, anntMsgTotal, sysMsgTotal } = await listCementByUser({
  84. pageSize: 5,
  85. });
  86. listData.value[0].list = anntMsgList.map(mapAnnouncement);
  87. listData.value[1].list = sysMsgList.map(mapAnnouncement);
  88. listData.value[0].count = anntMsgTotal;
  89. listData.value[1].count = sysMsgTotal;
  90. } catch (e) {
  91. console.warn('系统消息通知异常:', e);
  92. }
  93. }
  94. loadData();
  95. function onNoticeClick(record) {
  96. try {
  97. editCementSend(record.id);
  98. loadData();
  99. } catch (e) {
  100. console.error(e);
  101. }
  102. if (record.openType === 'component') {
  103. dynamicNoticeProps.path = record.openPage;
  104. dynamicNoticeProps.formData = { id: record.busId };
  105. instance.refs.dynamicNoticeRef?.detail(record.openPage);
  106. } else {
  107. detailModal.openModal(true, {
  108. record,
  109. isUpdate: true,
  110. });
  111. }
  112. popoverVisible.value = false;
  113. }
  114. // 初始化 WebSocket
  115. function initWebSocket() {
  116. let token = getToken();
  117. //将登录token生成一个短的标识
  118. let wsClientId = md5(token);
  119. let userId = unref(userStore.getUserInfo).id + '_' + wsClientId;
  120. // WebSocket与普通的请求所用协议有所不同,ws等同于http,wss等同于https
  121. let url = websocketUrl.value?.replace('https://', 'wss://').replace('http://', 'ws://') + '/websocket/' + userId;
  122. connectWebSocket(url);
  123. onWebSocket(onWebSocketMessage);
  124. }
  125. function onWebSocketMessage(data) {
  126. if (data.cmd === 'topic' || data.cmd === 'user') {
  127. //update-begin-author:taoyan date:2022-7-13 for: VUEN-1674【严重bug】系统通知,为什么必须刷新右上角才提示
  128. //后台保存数据太慢 前端延迟刷新消息
  129. setTimeout(() => {
  130. loadData();
  131. }, 1000);
  132. //update-end-author:taoyan date:2022-7-13 for: VUEN-1674【严重bug】系统通知,为什么必须刷新右上角才提示
  133. }
  134. if (data.cmd === 'enquiry') {
  135. notification.info({
  136. message: `${data.msgTitle}`,
  137. icon: () => h(SmileOutlined, { style: 'color: #108ee9' }),
  138. description: `${data.msgTxt}`,
  139. duration: 0,
  140. });
  141. }
  142. console.log(data, 'websocket MSG');
  143. if (data.cmd === 'manage_site') {
  144. notification.info({
  145. message: `${data.msgTitle}`,
  146. icon: () => h(SmileOutlined, { style: 'color: #108ee9' }),
  147. description: `${data.msgTxt}`,
  148. duration: 0,
  149. });
  150. }
  151. }
  152. // 清空消息
  153. function onEmptyNotify() {
  154. popoverVisible.value = false;
  155. readAllMsg({}, loadData);
  156. }
  157. async function reloadCount(id) {
  158. try {
  159. await editCementSend(id);
  160. await loadData();
  161. } catch (e) {
  162. console.error(e);
  163. }
  164. }
  165. return {
  166. prefixCls,
  167. listData,
  168. count,
  169. clickBadge,
  170. registerMessageModal,
  171. reloadCount,
  172. onNoticeClick,
  173. onEmptyNotify,
  174. numberStyle: {},
  175. popoverVisible,
  176. registerDetail,
  177. dynamicNoticeProps,
  178. };
  179. },
  180. });
  181. </script>
  182. <style lang="less">
  183. //noinspection LessUnresolvedVariable
  184. @prefix-cls: ~'@{namespace}-header-notify';
  185. .@{prefix-cls} {
  186. padding-top: 2px;
  187. &__overlay {
  188. max-width: 340px;
  189. .ant-popover-inner-content {
  190. padding: 0;
  191. }
  192. .ant-tabs-nav {
  193. margin-bottom: 12px;
  194. }
  195. .ant-list-item {
  196. padding: 12px 24px;
  197. transition: background-color 300ms;
  198. }
  199. .bottom-buttons {
  200. text-align: center;
  201. border-top: 1px solid #f0f0f0;
  202. height: 42px;
  203. .ant-btn {
  204. border: 0;
  205. height: 100%;
  206. &:first-child {
  207. border-right: 1px solid #f0f0f0;
  208. }
  209. }
  210. }
  211. }
  212. .ant-tabs-content {
  213. width: 300px;
  214. }
  215. .ant-badge {
  216. font-size: 18px;
  217. .ant-badge-count {
  218. @badget-size: 16px;
  219. width: @badget-size;
  220. height: @badget-size;
  221. min-width: @badget-size;
  222. line-height: @badget-size;
  223. padding: 0;
  224. .ant-scroll-number-only > p.ant-scroll-number-only-unit {
  225. font-size: 14px;
  226. height: @badget-size;
  227. }
  228. }
  229. .ant-badge-multiple-words {
  230. padding: 0 0 0 2px;
  231. font-size: 12px;
  232. }
  233. svg {
  234. width: 0.9em;
  235. }
  236. }
  237. }
  238. // 兼容黑暗模式
  239. [data-theme='dark'] .@{prefix-cls} {
  240. &__overlay {
  241. .ant-list-item {
  242. &:hover {
  243. background-color: #111b26;
  244. }
  245. }
  246. .bottom-buttons {
  247. border-top: 1px solid #303030;
  248. .ant-btn {
  249. &:first-child {
  250. border-right: 1px solid #303030;
  251. }
  252. }
  253. }
  254. }
  255. }
  256. </style>