[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.
 
 

59 lines
2.0 KiB

// notification.tsx
// Copyright (C) 2020 Dwayne Harris
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import React, { FC, MouseEventHandler } from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faWindowClose } from '@fortawesome/free-solid-svg-icons'
import { useTheme } from '../hooks'
import { NotificationType } from '../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: '#fff' }}>
{!auto &&
<button className="delete" onClick={handleDismiss} style={{ backgroundColor: color(), color: '#fff' }}>
<FontAwesomeIcon icon={faWindowClose} />
</button>
}
<div>{children}</div>
</div>
)
}
export default Notification