[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
1.0 KiB

import React, { FC, MouseEventHandler } from 'react'
import { useTheme } from 'src/hooks'
import { NotificationType } from 'src/types'
interface Props {
id: string
type: NotificationType
auto: boolean
setAuto: (id: string) => void
dismiss: (id: string) => void
}
const Notification: FC<Props> = ({ id, type, auto, setAuto, dismiss, children }) => {
const theme = useTheme()
const handleDismiss: MouseEventHandler = e => {
e.stopPropagation()
dismiss(id)
}
const color = () => {
switch (type) {
case NotificationType.Success: return theme.green
case NotificationType.Error: return theme.red
default: return theme.blue
}
}
return (
<div className="notification" onClick={() => setAuto(id)} style={{ backgroundColor: color(), color: theme.text }}>
{!auto && <button className="delete" onClick={handleDismiss}></button>}
{children}
</div>
)
}
export default Notification