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.
78 lines
1.8 KiB
78 lines
1.8 KiB
import { Popover } from 'antd'; |
|
import { CloseOutlined } from '@ant-design/icons'; |
|
import React, { useState, useEffect, FC } from 'react'; |
|
import styles from './NotifyReminderPopup.module.scss'; |
|
|
|
export type NotifyReminderPopupProps = { |
|
open: boolean; |
|
children: React.ReactNode; |
|
notificationClicked: () => void; |
|
notificationClosed: () => void; |
|
}; |
|
|
|
export const NotifyReminderPopup: FC<NotifyReminderPopupProps> = ({ |
|
children, |
|
open, |
|
notificationClicked, |
|
notificationClosed, |
|
}) => { |
|
const [openPopup, setOpenPopup] = useState(open); |
|
const [mounted, setMounted] = useState(false); |
|
|
|
useEffect(() => { |
|
setOpenPopup(open); |
|
}, [open]); |
|
|
|
useEffect(() => { |
|
setMounted(true); |
|
}, []); |
|
|
|
const title = <div className={styles.title}>Stay updated!</div>; |
|
const popupStyle = { |
|
borderRadius: '5px', |
|
cursor: 'pointer', |
|
paddingTop: '10px', |
|
paddingRight: '10px', |
|
fontSize: '16px', |
|
}; |
|
|
|
const popupClicked = e => { |
|
e.stopPropagation(); |
|
notificationClicked(); |
|
}; |
|
|
|
const popupClosed = e => { |
|
e.stopPropagation(); |
|
setOpenPopup(false); |
|
notificationClosed(); |
|
}; |
|
|
|
const content = ( |
|
<div onClick={popupClicked} onKeyDown={popupClicked} role="menuitem" tabIndex={0}> |
|
<button type="button" className={styles.closebutton} onClick={popupClosed}> |
|
<CloseOutlined /> |
|
</button> |
|
<div className={styles.contentbutton}> |
|
Click and never miss |
|
<br /> |
|
future streams! |
|
</div> |
|
</div> |
|
); |
|
|
|
return ( |
|
mounted && ( |
|
<Popover |
|
placement="topLeft" |
|
defaultOpen={openPopup} |
|
open={openPopup} |
|
destroyTooltipOnHide |
|
title={title} |
|
content={content} |
|
overlayInnerStyle={popupStyle} |
|
> |
|
{children} |
|
</Popover> |
|
) |
|
); |
|
};
|
|
|