-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificationsList.tsx
54 lines (50 loc) · 1.31 KB
/
NotificationsList.tsx
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
import React from 'react';
import { ErrorOutline, NotificationsNone, ReportProblemOutlined } from '@mui/icons-material';
import { NotificationItem } from '../types/NotificationItem';
import '../styles/NotificationsList.css';
interface NotificationsListProps {
notifications: NotificationItem[],
onClickShowNotifications: () => void;
}
const getIcon = (severity: string) => {
const icons = {
NOTIFICATION: () => (
<NotificationsNone
className="icon"
htmlColor="#000"
/>
),
WARNING: () => (
<ReportProblemOutlined
className="icon"
htmlColor="#000"
/>
),
CRITICAL: () => (
<ErrorOutline
className="icon"
htmlColor="#000"
/>
),
};
// @ts-ignore
return icons[severity] || icons.NOTIFICATION;
};
const NotificationsList = ({ notifications, onClickShowNotifications }: NotificationsListProps) => (
<div className="NotificationsList">
<div className="notificationsTopArrow" />
{notifications.map(({
name, value, unit, severity,
}) => (
<button type="button" className="notificationsItem" onClick={onClickShowNotifications}>
{getIcon(`${severity}`)}
{name}
{' '}
{value}
{' '}
{unit}
</button>
))}
</div>
);
export default NotificationsList;