nitro-react/src/layout/notification-bubble/NotificationBubbleView.tsx

29 lines
816 B
TypeScript
Raw Normal View History

2021-08-26 08:38:16 +02:00
import { FC, useEffect, useState } from 'react';
import { NotificationBubbleViewProps } from './NotificationBubbleView.types';
export const NotificationBubbleView: FC<NotificationBubbleViewProps> = props =>
{
const { fadesOut = false, close = null, className = '', children = null, ...rest } = props;
const [ isFading, setIsFading ] = useState(false);
useEffect(() =>
{
if(!fadesOut) return;
const timeout = setTimeout(() =>
{
setIsFading(true);
setTimeout(() => close());
}, 8000);
return () => clearTimeout(timeout);
}, [ fadesOut, close ]);
return (
<div className={ ('nitro-notification-bubble p-1 rounded ' + (className || '')) } { ...rest } onClick={ close }>
{ children }
</div>
)
}