1
0
mirror of synced 2026-01-07 09:01:31 -05:00
Files
docs/components/landing/ArticleList.tsx
Robert Sese ae22e18a9a Use ActionList for ArticleList (#23252)
* Use ActionList under the hood for ArticleList

* Update components/landing/ArticleList.tsx
2021-12-01 00:16:03 +00:00

77 lines
2.5 KiB
TypeScript

import cx from 'classnames'
import dayjs from 'dayjs'
import { ActionList } from '@primer/components'
import { Link } from 'components/Link'
import { ArrowRightIcon } from '@primer/octicons-react'
import { FeaturedLink } from 'components/context/ProductLandingContext'
import { TruncateLines } from 'components/ui/TruncateLines'
import { BumpLink } from 'components/ui/BumpLink'
export type ArticleListPropsT = {
title?: string
viewAllHref?: string
articles: Array<FeaturedLink>
}
export const ArticleList = ({ title, viewAllHref, articles }: ArticleListPropsT) => {
return (
<>
{title && (
<div className="mb-4 d-flex flex-items-baseline">
<h3 className={cx('f4 text-semibold')}>{title}</h3>
{viewAllHref && (
<Link href={viewAllHref} className="ml-4">
View all <ArrowRightIcon size={14} className="v-align-middle" />
</Link>
)}
</div>
)}
<ActionList
{...{ as: 'ul' }}
data-testid="article-list"
items={articles.map((link) => {
return {
renderItem: () => (
<ActionList.Item as="li" key={link.href} className={cx('border-top')}>
<BumpLink
as={Link}
href={link.href}
className="py-3"
title={
<h4 data-testid="link-with-intro-title">
<span
dangerouslySetInnerHTML={
link.fullTitle ? { __html: link.fullTitle } : { __html: link.title }
}
/>
</h4>
}
>
{!link.hideIntro && link.intro && (
<TruncateLines as="p" maxLines={2} className="color-fg-muted mb-0 mt-1">
<span
data-testid="link-with-intro-intro"
dangerouslySetInnerHTML={{ __html: link.intro }}
/>
</TruncateLines>
)}
{link.date && (
<time
className="tooltipped tooltipped-n color-fg-muted text-mono mt-1"
aria-label={dayjs(link.date).format('LLL')}
>
{dayjs(link.date).format('MMMM DD')}
</time>
)}
</BumpLink>
</ActionList.Item>
),
}
})}
></ActionList>
</>
)
}