diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-21 11:41:52 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-21 11:41:52 +0100 |
commit | de522de148edd2e36ce4e7d911a343a3caf2c833 (patch) | |
tree | ba822a3e714fb47b1fbc7c3772ceadb25b550d7c /components | |
parent | d8169484077c4ce25e195747602f06bce9d4ded0 (diff) |
toast on new notifications
Diffstat (limited to 'components')
-rw-r--r-- | components/notificationsArea.tsx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/components/notificationsArea.tsx b/components/notificationsArea.tsx index 7d2fa49..0a243e1 100644 --- a/components/notificationsArea.tsx +++ b/components/notificationsArea.tsx @@ -1,12 +1,14 @@ -import { CSSProperties, ReactNode, useState } from 'react'; +import { CSSProperties, ReactNode, useState, useContext, useEffect } from 'react'; import axios from 'axios'; import { userInfo, gameInfo } from "../api/api"; import { AccountAvatar } from "./account"; import { Bubble, Vierkant, IconLabelButton } from './ui'; +import { ToastContext } from './toast'; import DoneIcon from '@material-ui/icons/Done'; import CloseIcon from '@material-ui/icons/Close'; +import NotificationsActiveOutlinedIcon from '@material-ui/icons/NotificationsActiveOutlined'; export function NotificationsArea(props: { visible?: boolean; @@ -14,11 +16,21 @@ export function NotificationsArea(props: { gameInvites?: Array<gameInfo>; rerender: () => void; }) { + var { toast } = useContext(ToastContext); + var [ previousMessages, setPreviousMessages ] = useState(0); var messages = ( (props.friendRequests ? props.friendRequests.length : 0) + (props.gameInvites ? props.gameInvites.length : 0) ) + useEffect(() => { + if(messages > previousMessages) { + toast("Je hebt nieuwe meldingen!", "confirmation", <NotificationsActiveOutlinedIcon style={{ fontSize: 32 }}/>); + } + + setPreviousMessages(messages); + }) + return props.visible && <Bubble style={{ left: 48 + 12, top: 92, |