mango-ui-v3/components/Notification.tsx

115 lines
3.6 KiB
TypeScript
Raw Normal View History

2021-04-11 21:17:23 -07:00
import { useEffect, useState } from 'react'
import {
CheckCircleIcon,
2021-07-30 05:06:27 -07:00
ExternalLinkIcon,
2021-04-11 21:17:23 -07:00
InformationCircleIcon,
XCircleIcon,
} from '@heroicons/react/outline'
import useMangoStore from '../stores/useMangoStore'
const NotificationList = () => {
const setMangoStore = useMangoStore((s) => s.set)
const notifications = useMangoStore((s) => s.notifications)
useEffect(() => {
if (notifications.length > 0) {
const id = setInterval(() => {
setMangoStore((state) => {
state.notifications = notifications.slice(1, notifications.length)
})
}, 5000)
2021-04-11 21:17:23 -07:00
return () => {
clearInterval(id)
}
}
}, [notifications, setMangoStore])
2021-04-12 20:39:08 -07:00
const reversedNotifications = [...notifications].reverse()
return (
<div
className={`fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 text-th-fgd-1 z-50`}
>
<div className={`flex flex-col w-full`}>
2021-04-12 20:39:08 -07:00
{reversedNotifications.map((n, idx) => (
<Notification
key={`${n.title}${idx}`}
2021-04-11 21:17:23 -07:00
type={n.type}
title={n.title}
2021-04-11 21:17:23 -07:00
description={n.description}
txid={n.txid}
/>
))}
</div>
</div>
)
}
const Notification = ({ type, title, description, txid }) => {
const [showNotification, setShowNotification] = useState(true)
if (!showNotification) return null
return (
<div
className={`max-w-sm w-full bg-th-bkg-3 shadow-lg rounded-md mt-2 pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden`}
>
2021-07-30 05:06:27 -07:00
<div className={`flex items-center p-4 relative`}>
<div className={`flex-shrink-0`}>
{type === 'success' ? (
<CheckCircleIcon className={`text-th-green h-7 w-7 mr-1`} />
) : null}
{type === 'info' && (
<XCircleIcon className={`text-th-primary h-7 w-7 mr-1`} />
)}
{type === 'error' && (
<InformationCircleIcon className={`text-th-red h-7 w-7 mr-1`} />
)}
</div>
<div className={`ml-2 w-0 flex-1`}>
<div className={`font-bold text-base text-th-fgd-1`}>{title}</div>
{description ? (
<p className={`mb-0 mt-0.5 text-th-fgd-3`}>{description}</p>
) : null}
{txid ? (
<a
href={'https://explorer.solana.com/tx/' + txid}
className="block flex items-center mt-0.5 text-sm"
target="_blank"
rel="noreferrer"
>
{txid.slice(0, 8)}...
{txid.slice(txid.length - 8)}
<ExternalLinkIcon className="h-4 mb-0.5 ml-1 w-4" />
</a>
) : null}
</div>
<div className={`absolute flex-shrink-0 right-2 top-2`}>
<button
onClick={() => setShowNotification(false)}
className={`text-th-fgd-4 hover:text-th-primary focus:outline-none`}
>
<span className={`sr-only`}>Close</span>
<svg
className={`h-5 w-5`}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
2021-07-30 05:06:27 -07:00
<path
fillRule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clipRule="evenodd"
/>
</svg>
</button>
</div>
</div>
</div>
)
}
export default NotificationList