110 lines
3.3 KiB
TypeScript
110 lines
3.3 KiB
TypeScript
import cx from 'classnames'
|
|
import Link from 'next/link'
|
|
import { format } from 'date-fns'
|
|
|
|
import { ArrowRightIcon } from '@primer/octicons-react'
|
|
import { FeaturedLink, useProductLandingContext } from 'components/context/ProductLandingContext'
|
|
import { useTranslation } from 'components/hooks/useTranslation'
|
|
import { TruncateLines } from 'components/TruncateLines'
|
|
|
|
export const FeaturedArticles = () => {
|
|
const {
|
|
featuredArticles = [],
|
|
changelog,
|
|
whatsNewChangelog,
|
|
changelogUrl,
|
|
} = useProductLandingContext()
|
|
const { t } = useTranslation('toc')
|
|
|
|
return (
|
|
<div className="d-lg-flex gutter my-6 py-6">
|
|
{featuredArticles.map((section, i) => {
|
|
return (
|
|
<div
|
|
key={section.label}
|
|
className={cx('col-12 mb-4 mb-lg-0', changelog ? 'col-lg-4' : 'col-lg-6')}
|
|
>
|
|
<ArticleList
|
|
title={section.label}
|
|
viewAllHref={section.viewAllHref}
|
|
articles={section.articles}
|
|
/>
|
|
</div>
|
|
)
|
|
})}
|
|
|
|
{changelog && (
|
|
<div className={cx('col-12 mb-4 mb-lg-0', changelog ? 'col-lg-4' : 'col-lg-6')}>
|
|
<ArticleList
|
|
title={t('whats_new')}
|
|
viewAllHref={changelogUrl}
|
|
articles={(whatsNewChangelog || []).map((link) => {
|
|
return {
|
|
title: link.title,
|
|
date: link.date,
|
|
href: link.href,
|
|
}
|
|
})}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
type ArticleListProps = {
|
|
title: string
|
|
viewAllHref?: string
|
|
articles: Array<FeaturedLink>
|
|
}
|
|
const ArticleList = ({ title, viewAllHref, articles }: ArticleListProps) => {
|
|
return (
|
|
<>
|
|
<div className="featured-links-heading mb-4 d-flex flex-items-baseline">
|
|
<h3 className="f4 text-normal text-mono text-uppercase">{title}</h3>
|
|
{viewAllHref && (
|
|
<Link href={viewAllHref}>
|
|
<a className="ml-4">
|
|
View all <ArrowRightIcon size={14} className="v-align-middle" />
|
|
</a>
|
|
</Link>
|
|
)}
|
|
</div>
|
|
|
|
<ul className="list-style-none">
|
|
{articles.map((link) => {
|
|
return (
|
|
<li key={link.href} className="border-top">
|
|
<Link href={link.href}>
|
|
<a className="link-with-intro Bump-link--hover no-underline d-block py-3">
|
|
<h4 className="link-with-intro-title">
|
|
{link.title}
|
|
<span className="Bump-link-symbol">→</span>
|
|
</h4>
|
|
{!link.hideIntro && link.intro && (
|
|
<TruncateLines
|
|
as="p"
|
|
maxLines={2}
|
|
className="link-with-intro-intro color-text-secondary mb-0 mt-1"
|
|
>
|
|
{link.intro}
|
|
</TruncateLines>
|
|
)}
|
|
{link.date && (
|
|
<time
|
|
className="tooltipped tooltipped-n color-text-tertiary text-mono mt-1"
|
|
aria-label={format(new Date(link.date), 'PPP')}
|
|
>
|
|
{format(new Date(link.date), 'MMMM dd')}
|
|
</time>
|
|
)}
|
|
</a>
|
|
</Link>
|
|
</li>
|
|
)
|
|
})}
|
|
</ul>
|
|
</>
|
|
)
|
|
}
|