-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
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,96 @@ | ||
import { useState } from 'react' | ||
import { useTranslation } from 'react-i18next' | ||
import { DollarOutlined } from '@ant-design/icons' | ||
import { Box, Grid, Modal, Typography } from '@mui/material' | ||
import i18n from 'src/locale/allTranslations' | ||
|
||
const style = { | ||
position: 'fixed', | ||
top: '50%', | ||
left: '50%', | ||
transform: 'translate(-50%, -50%)', | ||
maxWidth: 1000, | ||
width: '90%', | ||
bgcolor: 'background.paper', | ||
boxShadow: 24, | ||
p: 4, | ||
} as const | ||
|
||
export const DonationButton = () => { | ||
const { t } = useTranslation() | ||
const [open, setOpen] = useState(false) | ||
|
||
const tooltip_title = t('donate_title') | ||
|
||
const onClose = () => setOpen(false) | ||
const onOpen = () => setOpen(true) | ||
|
||
return ( | ||
<> | ||
<button | ||
className="theme-icon" | ||
onClick={onOpen} | ||
aria-label={tooltip_title} | ||
title={tooltip_title}> | ||
<DollarOutlined style={{ fontSize: '1.5em' }} /> | ||
</button> | ||
<Modal | ||
open={open} | ||
onClose={onClose} | ||
aria-labelledby="modal-modal-title" | ||
aria-describedby="modal-modal-description"> | ||
<Box dir={i18n.dir()} sx={style}> | ||
<button onClick={onClose} className="close-modal-icon"> | ||
X | ||
</button> | ||
<Typography id="modal-modal-title" variant="h6" component="h2"> | ||
כיצד לתרום? | ||
</Typography> | ||
<p> | ||
מאחורי הקלעים של הפרוייקטים פועל צוות קטן ומסור, שדואג לארגון מפגשי הפיתוח וההאקתונים | ||
ותחזוקת השרתים, שמכתת רגליו בין משרדי ממשלה כדי לשכנע, ללחוץ, ולנדנד לשחרר עוד ועוד | ||
מאגרים; מוודא שהתקשורת תכיר את העבודה שלנו וגם תדע לפנות אלינו בשביל נתונים וניתוחים, | ||
ועושה עוד המון עבודה שוטפת כדי שהפרוייקטים שלנו ייצרו שינוי בעולם. אנחנו זקוקים לתמיכה | ||
של הקהילה כדי להמשיך ולפעול למען ממשל פתוח יותר. היו אבירי שקיפות והצטרפו בתמיכה חודשית. | ||
</p> | ||
<Grid container spacing={2}> | ||
<Grid item xs={6}> | ||
<Typography id="modal-modal-description" sx={{ mt: 2 }}> | ||
<h2>תרומה דרך אתר jgive.com</h2> | ||
<a href="https://www.jgive.com/new/he/ils/donation-targets/3268"> | ||
<img | ||
src="https://www.hasadna.org.il/wp-content/uploads/2017/12/%D7%AA%D7%A8%D7%95%D7%9E%D7%95%D7%AA.jpg" | ||
alt="קישור לתרומה" | ||
/> | ||
<img | ||
src="https://www.hasadna.org.il/wp-content/uploads/2018/08/button-300x73.png" | ||
alt="תרום עכשיו" | ||
/> | ||
</a> | ||
</Typography> | ||
</Grid> | ||
<Grid item xs={6}> | ||
<h2>תרומה דרך העברה בנקאית</h2> | ||
<p> | ||
מומלץ לתרום דרך העברה בנקאית לחשבון הבנק של הסדנא לידע ציבורי, מכיוון שבאפיק זה | ||
העמלה נמוכה יותר | ||
</p> | ||
<Typography id="modal-modal-description" sx={{ mt: 2 }}> | ||
בנק: יו-בנק (26) <br /> | ||
סניף: רחביה (262) | ||
<br /> | ||
חשבון: 419931 | ||
<br /> | ||
שם החשבון: הסדנא לידע ציבורי | ||
</Typography> | ||
<sub> | ||
נא לציין שם מלא וליצור קשר במייל [email protected] לאחר התרומה על מנת שנוכל לשלוח | ||
קבלה | ||
</sub> | ||
</Grid> | ||
</Grid> | ||
</Box> | ||
</Modal> | ||
</> | ||
) | ||
} |
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