Skip to content

Commit

Permalink
refactor: use export instead of duplicated code (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
yontank authored Nov 24, 2024
1 parent 8003efe commit 5fba849
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 77 deletions.
78 changes: 2 additions & 76 deletions src/layout/header/DonationButton.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
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
import DonateModal from 'src/pages/DonateModal/DonateModal'

export const DonationButton = () => {
const { t } = useTranslation()
Expand All @@ -34,68 +21,7 @@ export const DonationButton = () => {
title={tooltip_title}>
<DollarOutlined style={{ fontSize: '1.5em' }} />
</button>
<Modal
open={open}
onClose={onClose}
aria-modal="true"
role="dialog"
sx={{
color: 'text.primary', // Dynamically uses the theme’s text color
}}
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>
<DonateModal isVisible={open} onClose={onClose} />
</>
)
}
2 changes: 1 addition & 1 deletion src/pages/DonateModal/DonateModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const style = {
p: 4,
} as const

const DonateModal: React.FC<DonateModalProps> = ({ isVisible, onClose }) => {
export const DonateModal: React.FC<DonateModalProps> = ({ isVisible, onClose }) => {
return (
<Modal
open={isVisible}
Expand Down

0 comments on commit 5fba849

Please sign in to comment.