useAlarmNotify.ts
4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { clearOrAckAlarm, getDeviceAlarm } from '/@/api/device/deviceManager';
import { notification, Button, Tag } from 'ant-design-vue';
import { h, onMounted, onUnmounted } from 'vue';
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
import { alarmLevel } from '/@/views/device/list/config/detail.config';
import { RoleEnum } from '/@/enums/roleEnum';
import { usePermission } from '/@/hooks/web/usePermission';
import { useUserStore } from '/@/store/modules/user';
import { useGlobSetting } from '/@/hooks/setting';
import { AlarmStatus, AlarmStatusMean } from '/@/enums/alarmEnum';
interface UseAlarmNotifyParams {
alarmNotifyStatus?: AlarmStatus;
interval?: number;
color?: string;
duration?: number;
}
export enum AlarmPermissionKey {
GLOBAL_NOTIFY = 'api:alarm:global:notify',
}
export function useAlarmNotify(params: UseAlarmNotifyParams = {}) {
const { alarmNotifyDuration, alarmPollingInterval } = useGlobSetting();
const {
alarmNotifyStatus = AlarmStatus.ACTIVE_UN_ACK,
interval = Number(alarmPollingInterval) || 60000,
duration = Number(alarmNotifyDuration) || 5,
color = 'orange',
} = params;
const alarmNotifyStatusMean = AlarmStatusMean[alarmNotifyStatus];
const handleMarkRead = async (id: string) => {
try {
await clearOrAckAlarm(id, false);
} catch (error) {}
};
let timeout: Nullable<NodeJS.Timer> = null;
const { hasPermission } = usePermission();
const getRoleHasNotifyFlag = () => {
const hasPermissionRole = [RoleEnum.CUSTOMER_USER, RoleEnum.TENANT_ADMIN];
const userInfo = useUserStore().getUserInfo;
const userRoles = userInfo.roles || [];
let roleHasPermission = false;
for (const item of userRoles) {
const flag = hasPermissionRole.find((each) => item === each);
if (flag) {
roleHasPermission = true;
break;
}
}
return hasPermission(AlarmPermissionKey.GLOBAL_NOTIFY) && roleHasPermission;
};
const getAlarmLog = async () => {
try {
if (!getRoleHasNotifyFlag()) {
clearTimeout();
return;
}
const { items = [] } =
(await getDeviceAlarm({ status: alarmNotifyStatus, page: 1, pageSize: 10 })) || {};
if (items.length) {
const first = items.at(0)!;
const { deviceName, id, severity, type } = first;
let key: Nullable<string> = `open-notify-${id}`;
const severityMean = alarmLevel(severity);
notification.open({
message: '设备告警',
duration: Number(duration),
key,
description: h('div', {}, [
h('div', { style: { marginRight: '5px' } }, [
h('span', { style: { marginRight: '5px' } }, '设备:'),
h('span', {}, `[${deviceName}]`),
]),
h('div', { style: { marginRight: '5px' } }, [
h('span', { style: { marginRight: '5px' } }, '告警场景:'),
h('span', {}, `[${type}]`),
]),
h('div', { style: { marginTop: '5px' } }, [
h('span', { style: { marginRight: '5px' } }, '告警状态:'),
h(Tag, { color }, () => `${alarmNotifyStatusMean}`),
]),
h('div', { style: { marginTop: '5px' } }, [
h('span', { style: { marginRight: '5px' } }, '告警级别:'),
h(Tag, { color: '#f50' }, () => `${severityMean}`),
]),
]),
icon: h(ExclamationCircleOutlined, { style: { color: '#faa22d' } }),
onClose: () => {
key = null;
},
btn: h(
Button,
{
type: 'primary',
size: 'small',
onClick: async () => {
await handleMarkRead(id);
notification.close(key!);
key = null;
},
},
() => '标记已读'
),
});
}
} catch (error) {}
};
const polling = () => {
timeout = setInterval(() => {
getAlarmLog();
}, interval);
};
const clearTimeout = () => {
clearInterval(timeout as NodeJS.Timer);
timeout = null;
};
onMounted(() => {
if (getRoleHasNotifyFlag()) polling();
});
onUnmounted(() => {
clearTimeout();
});
}