owncast/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx
Mahlangu ad188f2742
fix purple background color for notification reminder pop up & fix failing build (#2224)
* fix notification reminder popup -> purple background

* Prettified Code!

* resolved color to color variables

* Prettified Code!

* fix purple bgcolor for notification reminder popp up & fix failing build

Co-authored-by: unclebinary1001 <unclebinary1001@users.noreply.github.com>
2022-10-17 21:54:26 -07:00

80 lines
1.8 KiB
TypeScript

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}
color={styles.popupBackgroundColor}
>
{children}
</Popover>
)
);
};