42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
|
import { Alert } from 'flowbite-react'
|
||
|
import React, { useState, createContext, useContext } from 'react'
|
||
|
|
||
|
type ToastTypes = 'info' | 'success' | 'failure' | 'warning'
|
||
|
|
||
|
const ToastContext = createContext(({}: { text: string; type?: ToastTypes }) => {})
|
||
|
ToastContext.displayName = 'ToastContext'
|
||
|
|
||
|
export const useToast = () => {
|
||
|
return useContext(ToastContext)
|
||
|
}
|
||
|
|
||
|
type Props = {
|
||
|
children: React.ReactNode
|
||
|
}
|
||
|
|
||
|
export const ToastProvider: React.FC<Props> = ({ children }) => {
|
||
|
const [showable, setShowable] = useState(false)
|
||
|
const [toastText, setToastText] = useState('')
|
||
|
const [toastType, setToastType] = useState<ToastTypes>('info')
|
||
|
|
||
|
const showToast = ({ text, type = 'info' }: { text: string; type?: ToastTypes }) => {
|
||
|
setToastText(text)
|
||
|
setToastType(type)
|
||
|
setShowable(true)
|
||
|
setTimeout(() => {
|
||
|
setShowable(false)
|
||
|
}, 10000)
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<ToastContext.Provider value={showToast}>
|
||
|
{children}
|
||
|
<div className={`${showable ? 'block' : 'hidden'} fixed top-2 -translate-x-1/2`} style={{ left: '50%' }}>
|
||
|
<Alert color={toastType} className="w96">
|
||
|
<span>{toastText}</span>
|
||
|
</Alert>
|
||
|
</div>
|
||
|
</ToastContext.Provider>
|
||
|
)
|
||
|
}
|