Files
ox_lib/web/src/features/notifications/NotificationWrapper.tsx

112 lines
3.2 KiB
TypeScript
Raw Normal View History

2022-08-27 15:58:36 +02:00
import { useNuiEvent } from '../../hooks/useNuiEvent';
import { IconProp } from '@fortawesome/fontawesome-svg-core';
import { toast, Toaster, ToastPosition } from 'react-hot-toast';
2022-08-27 15:58:36 +02:00
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import ReactMarkdown from 'react-markdown';
import { Avatar, createStyles, Group, Stack, Box, Text } from '@mantine/core';
import React from 'react';
2022-03-14 15:53:59 +01:00
export interface NotificationProps {
2022-03-14 15:53:59 +01:00
title?: string;
2022-04-11 14:51:28 +02:00
description?: string;
2022-03-14 15:53:59 +01:00
duration?: number;
position?: ToastPosition | 'top' | 'bottom';
variant?: string;
2022-08-27 15:58:36 +02:00
status?: 'info' | 'warning' | 'success' | 'error';
2022-03-14 15:53:59 +01:00
id?: number;
}
export interface CustomNotificationProps {
2022-03-14 15:53:59 +01:00
style?: React.CSSProperties;
2022-04-11 14:51:28 +02:00
description?: string;
title?: string;
2022-03-14 15:53:59 +01:00
duration?: number;
icon?: IconProp;
iconColor?: string;
position?: ToastPosition | 'top' | 'bottom';
2022-03-14 15:53:59 +01:00
id?: number;
type?: string;
2022-03-14 15:53:59 +01:00
}
const useStyles = createStyles((theme) => ({
container: {
width: 300,
height: 'fit-content',
backgroundColor: theme.colors.dark[6],
color: theme.colors.dark[0],
padding: 12,
borderRadius: theme.radius.sm,
fontFamily: 'Roboto',
boxShadow: theme.shadows.sm,
},
title: {
fontWeight: 500,
},
description: {
fontSize: 12,
color: theme.colors.dark[2],
fontFamily: 'Roboto',
},
}));
2022-03-14 15:53:59 +01:00
const Notifications: React.FC = () => {
const { classes } = useStyles();
2022-03-14 15:53:59 +01:00
2022-08-27 15:58:36 +02:00
useNuiEvent<CustomNotificationProps>('customNotify', (data) => {
2022-04-11 14:51:28 +02:00
if (!data.title && !data.description) return;
// Backwards compat with old notifications
let position = data.position;
switch (position) {
case 'top':
position = 'top-center';
break;
case 'bottom':
position = 'bottom-center';
break;
}
if (!data.icon) {
data.icon = data.type === 'error' ? 'xmark' : data.type === 'success' ? 'check' : 'info';
}
toast(
<Box style={data.style} className={`${classes.container}`}>
<Group noWrap spacing={12}>
{data.icon && (
<>
{!data.iconColor ? (
<Avatar
color={data.type === 'error' ? 'red' : data.type === 'success' ? 'teal' : 'blue'}
radius="xl"
size={(data.title && !data.description) || (data.description && !data.title) ? 28 : undefined}
>
<FontAwesomeIcon icon={data.icon} fixedWidth size="lg" />
</Avatar>
) : (
<FontAwesomeIcon icon={data.icon} style={{ color: data.iconColor }} fixedWidth size="lg" />
)}
</>
)}
<Stack spacing={0}>
{data.title && <Text className={classes.title}>{data.title}</Text>}
{data.description && <ReactMarkdown className={classes.description}>{data.description}</ReactMarkdown>}
</Stack>
</Group>
</Box>,
{
id: data.id?.toString(),
duration: data.duration || 3000,
position: position || 'top-right',
style: {
padding: 0,
boxShadow: 'none',
backgroundColor: 'transparent',
},
}
);
2022-03-14 15:53:59 +01:00
});
return <Toaster />;
2022-03-14 15:53:59 +01:00
};
export default Notifications;