mirror of
https://github.com/System-End/site.git
synced 2026-04-19 20:55:09 +00:00
226 lines
6.6 KiB
JavaScript
226 lines
6.6 KiB
JavaScript
import Icon from "@hackclub/icons";
|
|
import { useRef, useState } from "react";
|
|
import { Box, Button, Card, Flex, Grid, Input, Link, Text } from "theme-ui";
|
|
import BGImg from "../../background-image";
|
|
import background from "../../../public/home/footer.png";
|
|
import { useEffect } from "react";
|
|
import MailCard from "../../mail-card";
|
|
|
|
const markdownToHtml = require('@hackclub/markdown')
|
|
|
|
const Loading = () => (
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
border: '2px solid #f3f3f3',
|
|
borderTop: '2px solid #ec3750',
|
|
borderRadius: '50%',
|
|
width: '16px',
|
|
height: '16px',
|
|
animation: 'spin 2s linear infinite',
|
|
mr: '5px',
|
|
'@keyframes spin': {
|
|
'0%': { transform: 'rotate(0deg)' },
|
|
'100%': { transform: 'rotate(360deg)' },
|
|
},
|
|
}}
|
|
></Box>
|
|
)
|
|
|
|
const MailingList = ({ html }) => {
|
|
const [submitting, setSubmitting] = useState(false)
|
|
const [submitted, setSubmitted] = useState(false)
|
|
const [data, setData] = useState([])
|
|
const formRef = useRef(null)
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault()
|
|
setSubmitting(true)
|
|
|
|
let res = await fetch('/api/mailing-list', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
name: e.target.name.value,
|
|
email: e.target.email.value,
|
|
}),
|
|
})
|
|
|
|
formRef.current.reset()
|
|
|
|
if (res.ok) {
|
|
setSubmitted(true)
|
|
}
|
|
setSubmitting(false)
|
|
}
|
|
|
|
useEffect(() => {
|
|
fetch('https://api.github.com/repos/hackclub/leaders-newsletter/contents/updates')
|
|
.then(response => response.json())
|
|
.then(data.slice(0.2))
|
|
.then(data => Promise.all(data.map(item => fetch(item.download_url))))
|
|
.then(responses => Promise.all(responses.map(response => response.text())))
|
|
.then(markdowns => Promise.all(markdowns.map(markdown => markdownToHtml(markdown))))
|
|
.then(htmls => htmls.map(html => html.replace(/<img[^>]*>/g, ""))) // Remove images
|
|
.then(cleanHtmls => cleanHtmls.map(cleanHtml => cleanHtml.substring(0, 200))) // Limit to first 200 characters
|
|
.then(finalHtmls => setData(finalHtmls));
|
|
}, []);
|
|
|
|
return (
|
|
<Box sx={{ position: 'relative', py: 6, background: 'darker' }}>
|
|
<Card
|
|
sx={{
|
|
maxWidth: '1050px',
|
|
mx: 'auto',
|
|
// mt: [3, 4],
|
|
background: 'rgb(255,255,255, 0.45)',
|
|
position: 'relative',
|
|
zIndex: 2,
|
|
backdropFilter: 'blur(8px)',
|
|
}}
|
|
>
|
|
<Flex sx={{ flexDirection: ['column', 'column', 'row'], gridGap: [0, 5] }}>
|
|
<Flex
|
|
sx={{
|
|
placeItems: 'center',
|
|
justifyContent: 'center',
|
|
alignItems: ['left', 'left', 'center'],
|
|
flexDirection: 'column',
|
|
gap: '10px',
|
|
width: ['100%', '100%', '75%'],
|
|
}}
|
|
>
|
|
<Box>
|
|
<Text
|
|
variant='title'
|
|
sx={{
|
|
fontSize: [4, '36px', '42px', 6],
|
|
zIndex: 2,
|
|
textAlign: 'left',
|
|
}}
|
|
>
|
|
Join the newsletter
|
|
</Text>
|
|
<Text
|
|
sx={{
|
|
color: 'darkless',
|
|
mt: 2,
|
|
fontSize: 3,
|
|
textAlign: 'left',
|
|
}}
|
|
as='p'
|
|
>
|
|
We'll send you an email no more than once a month, when we work
|
|
on something cool for you. Check out our{' '}
|
|
<Link href='/leader-newsletters/'>previous issues</Link>.
|
|
</Text>
|
|
</Box>
|
|
<Grid
|
|
as='form'
|
|
ref={formRef}
|
|
onSubmit={handleSubmit}
|
|
gap={[2, 3]}
|
|
sx={{
|
|
textAlign: 'center',
|
|
alignItems: 'end',
|
|
input: { bg: 'sunken' },
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<Box sx={{ width: '100%' }}>
|
|
<Input
|
|
autofillBackgroundColor='highlight'
|
|
type='text'
|
|
name='name'
|
|
id='name'
|
|
placeholder='Your Name'
|
|
required
|
|
sx={{
|
|
width: '100%',
|
|
textAlign: 'center',
|
|
fontSize: 2,
|
|
}}
|
|
/>
|
|
</Box>
|
|
<div>
|
|
<Input
|
|
autofillBackgroundColor='highlight'
|
|
type='email'
|
|
name='email'
|
|
id='email'
|
|
placeholder='Your Email'
|
|
required
|
|
sx={{
|
|
width: '100%',
|
|
textAlign: 'center',
|
|
fontSize: 2,
|
|
}}
|
|
/>
|
|
</div>
|
|
<Button type='submit' sx={{ mt: [2, 0], fontSize: 2 }}>
|
|
{submitting ? (
|
|
<>
|
|
<Loading /> Subscribe
|
|
</>
|
|
) : submitted ? (
|
|
<>
|
|
<Icon glyph='send' /> You're on the list!
|
|
</>
|
|
) : (
|
|
'Subscribe'
|
|
)}
|
|
</Button>
|
|
</Grid>
|
|
</Flex>
|
|
<Box
|
|
sx={{
|
|
display: 'grid',
|
|
gridGap: 4,
|
|
mt: [4, 0],
|
|
width: '100%',
|
|
}}
|
|
>
|
|
{data.map((item, index) => (
|
|
<MailCard
|
|
date={item.name}
|
|
issue={index + 1}
|
|
body={item}
|
|
link='/leader-newsletters/2023-08-18'
|
|
key={index}
|
|
/>
|
|
))}
|
|
|
|
{/*<Link href='/leader-newsletters/' sx={{ justifySelf: 'center', cursor: 'pointer', }} as='h3'>
|
|
Read more
|
|
</Link>*/}
|
|
</Box>
|
|
</Flex>
|
|
</Card>
|
|
<BGImg
|
|
width={2544}
|
|
height={2048}
|
|
gradient='linear-gradient(rgba(0,0,0,0.125), rgba(0,0,0,0.25))'
|
|
src={background}
|
|
placeholder='blur'
|
|
alt='Globe with hundreds of Hack Clubs'
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export const getStaticProps = async ({ params }) => {
|
|
const {
|
|
getLeaderNewsletterData,
|
|
getLeaderNewsletterFile
|
|
} = require('../../../lib/get-newsletters')
|
|
const { slug } = params
|
|
const md = await getLeaderNewsletterFile(`updates/${slug}`)
|
|
const { data, html } = await getLeaderNewsletterData(slug, md)
|
|
return { props: { slug, data, html }, revalidate: 30 }
|
|
}
|
|
|
|
export default MailingList
|