Browse Source

fix: default duration (#6393)

tags/0.6.15
crazywoola 1 year ago
parent
commit
35f4a264d6
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      web/app/components/base/toast/index.tsx

+ 3
- 3
web/app/components/base/toast/index.tsx View File

@@ -27,7 +27,6 @@ export const ToastContext = createContext<IToastContext>({} as IToastContext)
export const useToastContext = () => useContext(ToastContext)
const Toast = ({
type = 'info',
duration,
message,
children,
className,
@@ -91,7 +90,7 @@ export const ToastProvider = ({
duration: 6000,
}
const [params, setParams] = React.useState<IToastProps>(placeholder)
const defaultDuring = params.type === 'success' ? 3000 : 6000
const defaultDuring = (params.type === 'success' || params.type === 'info') ? 3000 : 6000
const [mounted, setMounted] = useState(false)

useEffect(() => {
@@ -100,7 +99,7 @@ export const ToastProvider = ({
setMounted(false)
}, params.duration || defaultDuring)
}
}, [mounted])
}, [defaultDuring, mounted, params.duration])

return <ToastContext.Provider value={{
notify: (props) => {
@@ -119,6 +118,7 @@ Toast.notify = ({
duration,
className,
}: Pick<IToastProps, 'type' | 'message' | 'duration' | 'className'>) => {
const defaultDuring = (type === 'success' || type === 'info') ? 3000 : 6000
if (typeof window === 'object') {
const holder = document.createElement('div')
const root = createRoot(holder)

Loading…
Cancel
Save