Skip to content

Commit 22b7f4d

Browse files
committed
Add weekly popup
1 parent 8c69d1e commit 22b7f4d

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

src/App.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import logo from './assets/logo.png';
1010
import { ToastContainer } from 'react-toastify';
1111
import 'react-toastify/dist/ReactToastify.css';
1212
import { ResultOutput } from './components/ResultOutput';
13+
import { WeeklyPopup } from './components/WeeklyPopup';
1314

1415
const App: React.FC = () => {
1516
const { url, handleUrlChange, handleFetch,
@@ -19,6 +20,7 @@ const App: React.FC = () => {
1920
return (
2021
<div className="App">
2122
{isLoading ? <Loader /> : null}
23+
<WeeklyPopup />
2224
<div className='header'>
2325
<img src={logo} alt="Logo" className='logo' />
2426
<div className='searchBlock'>

src/components/WeeklyPopup/index.tsx

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import React, { useEffect, useState } from "react";
2+
import { Modal } from "../Modal";
3+
4+
export const WeeklyPopup: React.FC = () => {
5+
const [isPopupVisible, setIsPopupVisible] = useState(false);
6+
7+
useEffect(() => {
8+
const now = new Date();
9+
const lastPopupDate = localStorage.getItem("lastPopupDate");
10+
11+
if (lastPopupDate) {
12+
const lastDate = new Date(lastPopupDate);
13+
const oneWeekLater = new Date(lastDate);
14+
oneWeekLater.setDate(lastDate.getDay() + 7);
15+
16+
if (now >= oneWeekLater) {
17+
setIsPopupVisible(true);
18+
}
19+
} else {
20+
setIsPopupVisible(true);
21+
}
22+
}, []);
23+
24+
const handleClosePopup = () => {
25+
setIsPopupVisible(false);
26+
localStorage.setItem("lastPopupDate", new Date().toISOString());
27+
};
28+
29+
const ModalContent = () => {
30+
return (<div style={{ maxWidth: '500px' }}>
31+
<h1>Hello</h1>
32+
<p>
33+
This project is <b>open-source</b>, so you can <b>use it however you like</b>.
34+
</p>
35+
<p>
36+
The <b>inspiration</b> for this project came from my <b>work tasks</b>, where I spent a lot of time retrieving data from FHIR implementation guides using FHIRPath expressions.
37+
</p>
38+
<p>
39+
The project has been <b>developed</b> (or will be developed) entirely in my <b>free time</b>.
40+
</p>
41+
<p>
42+
If you have any ideas, suggestions, or would like to contribute, please reach out via <a href="https://github.com/projkov/fhirpath-ui" target="_blank" rel="noreferrer">GitHub</a>.
43+
</p>
44+
<p>
45+
You can find more information <b>about me</b> on this page: <a href="https://projkov.github.io" target="_blank" rel="noreferrer">projkov.github.io</a>
46+
</p>
47+
<p>
48+
Best regards, <br />
49+
Pavel Rozhkov
50+
</p>
51+
</div>)
52+
}
53+
54+
return <Modal show={isPopupVisible} onClose={handleClosePopup} children={<ModalContent />} />
55+
};

0 commit comments

Comments
 (0)