-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝: Updated the Privacy Policy of StreamETH (#816)
I will need to send this to our lawyer to double check and change the email of contact. - [x] Add new `data-request` page
- Loading branch information
Showing
6 changed files
with
288 additions
and
32 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
packages/app/app/(legal)/data-request/components/createRequest.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
'use client'; | ||
import { CardContent } from '@/components/ui/card'; | ||
import { useAccount } from 'wagmi'; | ||
import { Button } from '@/components/ui/button'; | ||
import { LuMail } from 'react-icons/lu'; | ||
|
||
const CreateRequest = () => { | ||
const { address } = useAccount(); | ||
|
||
const handleEmailClick = () => { | ||
const subject = encodeURIComponent('Request for Personal Data'); | ||
const body = encodeURIComponent(`Dear StreamETH Support, | ||
I would like to request all my personal data saved by StreamETH. | ||
My login address is: ${address || 'Unknown'} | ||
Please provide me with the following information: | ||
[Please specify what personal data you are requesting] | ||
Thank you for your assistance. | ||
Best regards, | ||
[Your Name]`); | ||
|
||
window.location.href = `mailto:[email protected]?subject=${subject}&body=${body}`; | ||
}; | ||
|
||
return ( | ||
<CardContent className="space-y-4"> | ||
<h2 className="text-2xl font-bold">Request Your Personal Data</h2> | ||
<p className="text-sm text-gray-600"> | ||
Please click the button below to email [email protected] with your | ||
request: | ||
</p> | ||
<ul className="space-y-2 text-sm list-disc list-inside text-gray-600"> | ||
<li> | ||
Your login address:{' '} | ||
<span className="font-mono">{address || 'Not connected'}</span> | ||
</li> | ||
<li>Specify what personal data you are requesting</li> | ||
</ul> | ||
<p className="text-sm text-gray-600"> | ||
We will send an email confirmation that we received your request. We | ||
will then follow up with a zip file containing all your personal data | ||
saved on StreamETH. | ||
</p> | ||
|
||
<Button onClick={handleEmailClick} variant={'primary'} className="w-full"> | ||
<LuMail size={20} className="mr-2" /> | ||
Compose Email | ||
</Button> | ||
</CardContent> | ||
); | ||
}; | ||
|
||
export default CreateRequest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
'use server'; | ||
|
||
import { Card, CardTitle, CardFooter } from '@/components/ui/card'; | ||
import Image from 'next/image'; | ||
import Footer from '@/components/Layout/Footer'; | ||
import AuthorizationMessage from '@/components/authorization/AuthorizationMessage'; | ||
import CheckAuthorization from '@/components/authorization/CheckAuthorization'; | ||
import CreateRequest from './components/createRequest'; | ||
|
||
const DataRequest = async () => { | ||
const year = new Date().getFullYear(); | ||
|
||
const isAuthorized = await CheckAuthorization(); | ||
if (!isAuthorized) { | ||
return <AuthorizationMessage />; | ||
} | ||
|
||
return ( | ||
<div className="flex flex-col min-h-screen"> | ||
<div className="flex flex-grow justify-center items-center"> | ||
<Card className="flex flex-col justify-between p-5 my-5 w-full max-w-4xl bg-gray-100"> | ||
<CardTitle className="mb-6 ml-4"> | ||
<Image | ||
src={'/logo.png'} | ||
alt={'StreamETH logo'} | ||
width={50} | ||
height={50} | ||
/> | ||
</CardTitle> | ||
<CreateRequest /> | ||
</Card> | ||
</div> | ||
<Footer active={'data_request'} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default DataRequest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.