parent
84144c10ab
commit
417ad32fba
@ -0,0 +1,57 @@ |
||||
.card { |
||||
padding: calc(30rem / 16) calc(40rem / 16); |
||||
max-width: calc(524rem / 16); |
||||
background-color: var(--primary-background); |
||||
border-radius: calc(20rem / 16); |
||||
display: -webkit-box; |
||||
-webkit-line-clamp: 3; |
||||
-webkit-box-orient: vertical; |
||||
overflow: hidden; |
||||
margin-bottom: 1rem; |
||||
} |
||||
|
||||
.fit.card { |
||||
max-width: unset; |
||||
padding: unset; |
||||
border-radius: unset; |
||||
} |
||||
|
||||
.date { |
||||
font-size: calc(18rem / 16); |
||||
margin: 0; |
||||
} |
||||
|
||||
.author { |
||||
color: var(--secondary-heading); |
||||
font-style: normal; |
||||
} |
||||
|
||||
.content { |
||||
overflow: hidden; |
||||
} |
||||
|
||||
.content > *:first-child { |
||||
margin-top: 0; |
||||
} |
||||
|
||||
@media only screen and (max-width: calc(768rem / 16)) { |
||||
.card { |
||||
padding: 0; |
||||
max-width: unset; |
||||
background-color: transparent; |
||||
border-radius: 0; |
||||
} |
||||
|
||||
.date { |
||||
font-weight: 600; |
||||
} |
||||
|
||||
.content > *:first-child { |
||||
margin-top: 1rem; |
||||
} |
||||
|
||||
.content ul, |
||||
.content ol { |
||||
padding: 0 1rem; |
||||
} |
||||
} |
@ -0,0 +1,42 @@ |
||||
import React, { ReactNode } from "react"; |
||||
|
||||
import { Link } from "./Link"; |
||||
|
||||
import styles from "./MiniNewsCard.module.css"; |
||||
|
||||
interface MiniNewsCardProps { |
||||
date: Date; |
||||
author: string; |
||||
children: ReactNode; |
||||
permalink: string; |
||||
fit?: boolean; |
||||
} |
||||
|
||||
export const MiniNewsCard: React.FC<MiniNewsCardProps> = ({ |
||||
date, |
||||
author, |
||||
children, |
||||
permalink, |
||||
fit = false, |
||||
}) => { |
||||
const classes = fit ? [styles.card, styles.fit] : [styles.card]; |
||||
|
||||
return ( |
||||
<article className={classes.join(" ")}> |
||||
<h1 className={styles.date}> |
||||
<time dateTime={date.toISOString()}> |
||||
{date.toLocaleDateString("en-US", { |
||||
year: "numeric", |
||||
month: "long", |
||||
day: "numeric", |
||||
})} |
||||
</time> |
||||
</h1> |
||||
<address className={styles.author}>{author}</address> |
||||
<div className={styles.content}>{children}</div> |
||||
<Link href={permalink}> |
||||
<span className={styles.mobileLearnMore}>Learn more</span> |
||||
</Link> |
||||
</article> |
||||
); |
||||
}; |
@ -0,0 +1,8 @@ |
||||
.page { |
||||
padding-bottom: calc(30rem / 16); |
||||
} |
||||
|
||||
.page > h1 { |
||||
padding-bottom: calc(16rem / 16); |
||||
border-bottom: calc(1rem / 16) solid var(--primary-heading); |
||||
} |
@ -0,0 +1,111 @@ |
||||
import { ParsedUrlQuery } from "querystring"; |
||||
|
||||
import { GetStaticPaths, GetStaticProps } from "next"; |
||||
import { MDXRemote } from "next-mdx-remote"; |
||||
import React from "react"; |
||||
|
||||
import { NewsCard } from "@/components/NewsCard"; |
||||
import { |
||||
ShapesConfig, |
||||
defaultGetShapesConfig, |
||||
GetShapesConfig, |
||||
} from "@/components/ShapesBackground"; |
||||
import { Title } from "@/components/Title"; |
||||
import { |
||||
getNewsBySlug, |
||||
getNewsByTerm, |
||||
getNewsTermsByYear, |
||||
getNewsDateByTerm, |
||||
getNewsYears, |
||||
News, |
||||
} from "@/lib/news"; |
||||
import { Term } from "@/utils"; |
||||
|
||||
import styles from "./[date].module.css"; |
||||
|
||||
interface Props { |
||||
year: string; |
||||
term: Term; |
||||
news: News[]; |
||||
} |
||||
|
||||
export default function DateNews({ news }: Props) { |
||||
const date = new Date(news[0].metadata.date).toLocaleDateString("en-US", { |
||||
year: "numeric", |
||||
month: "long", |
||||
day: "numeric", |
||||
}); |
||||
return ( |
||||
<div className={styles.page}> |
||||
<Title>{["News", `${date}`]}</Title> |
||||
<h1> |
||||
News: <span>{date}</span> |
||||
</h1> |
||||
{news.map(({ content, metadata }, idx) => ( |
||||
<NewsCard |
||||
key={idx} |
||||
{...metadata} |
||||
date={new Date(metadata.date)} |
||||
fit={true} |
||||
> |
||||
<MDXRemote {...content} /> |
||||
</NewsCard> |
||||
))} |
||||
</div> |
||||
); |
||||
} |
||||
|
||||
DateNews.getShapesConfig = ((width, height) => { |
||||
return window.innerWidth <= 768 |
||||
? ({} as ShapesConfig) |
||||
: defaultGetShapesConfig(width, height); |
||||
}) as GetShapesConfig; |
||||
|
||||
export const getStaticProps: GetStaticProps<Props, Params> = async ( |
||||
context |
||||
) => { |
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
const { year, term, date } = context.params!; |
||||
const slugs = (await getNewsByTerm(year, term)).filter((slug) => |
||||
slug.includes(date) |
||||
); |
||||
|
||||
const news = await Promise.all( |
||||
slugs.map((slug) => getNewsBySlug(year, term, slug)) |
||||
); |
||||
console.log(slugs); |
||||
// Reverse so that we are displaying the most recent news
|
||||
// of term first
|
||||
return { props: { year, term, news: news.reverse() } }; |
||||
}; |
||||
|
||||
interface Params extends ParsedUrlQuery { |
||||
year: string; |
||||
term: Term; |
||||
date: string; |
||||
} |
||||
|
||||
export const getStaticPaths: GetStaticPaths<Params> = async () => { |
||||
const years = await getNewsYears(); |
||||
const terms = await Promise.all( |
||||
years.map(async (year) => { |
||||
const termsInYear = await getNewsTermsByYear(year); |
||||
return termsInYear.map((term) => ({ year, term })); |
||||
}) |
||||
); |
||||
const dates = await Promise.all( |
||||
terms.map(async (termInYear) => { |
||||
const datesInTerm: Params[] = []; |
||||
for (const { year, term } of termInYear) { |
||||
const dates = await getNewsDateByTerm(year, term); |
||||
dates.map((date) => datesInTerm.push({ year, term, date })); |
||||
} |
||||
return datesInTerm.flat(); |
||||
}) |
||||
); |
||||
|
||||
return { |
||||
paths: dates.flat().map((params) => ({ params })), |
||||
fallback: false, |
||||
}; |
||||
}; |
Loading…
Reference in new issue