* update to ActionList * fix nested mini tocs * adding key * remove li and fix tests * update font size to 14px * remove border radius
160 lines
5.2 KiB
TypeScript
160 lines
5.2 KiB
TypeScript
import { useRouter } from 'next/router'
|
|
import cx from 'classnames'
|
|
import { ActionList, Heading } from '@primer/components'
|
|
|
|
import { ZapIcon, InfoIcon, ShieldLockIcon } from '@primer/octicons-react'
|
|
import { Callout } from 'components/ui/Callout'
|
|
|
|
import { Link } from 'components/Link'
|
|
import { DefaultLayout } from 'components/DefaultLayout'
|
|
import { ArticleTitle } from 'components/article/ArticleTitle'
|
|
import { MiniTocItem, useArticleContext } from 'components/context/ArticleContext'
|
|
import { useTranslation } from 'components/hooks/useTranslation'
|
|
import { LearningTrackNav } from './LearningTrackNav'
|
|
import { MarkdownContent } from 'components/ui/MarkdownContent'
|
|
import { Lead } from 'components/ui/Lead'
|
|
import { ArticleGridLayout } from './ArticleGridLayout'
|
|
import { PlatformPicker } from 'components/article/PlatformPicker'
|
|
|
|
// Mapping of a "normal" article to it's interactive counterpart
|
|
const interactiveAlternatives: Record<string, { href: string }> = {
|
|
'/actions/automating-builds-and-tests/building-and-testing-nodejs': {
|
|
href: '/actions/automating-builds-and-tests/building-and-testing-nodejs-or-python?langId=nodejs',
|
|
},
|
|
'/actions/automating-builds-and-tests/building-and-testing-python': {
|
|
href: '/actions/automating-builds-and-tests/building-and-testing-nodejs-or-python?langId=python',
|
|
},
|
|
}
|
|
|
|
export const ArticlePage = () => {
|
|
const router = useRouter()
|
|
const {
|
|
title,
|
|
intro,
|
|
effectiveDate,
|
|
renderedPage,
|
|
contributor,
|
|
permissions,
|
|
includesPlatformSpecificContent,
|
|
product,
|
|
miniTocItems,
|
|
currentLearningTrack,
|
|
} = useArticleContext()
|
|
const { t } = useTranslation('pages')
|
|
const currentPath = router.asPath.split('?')[0]
|
|
|
|
const renderTocItem = (item: MiniTocItem) => {
|
|
return (
|
|
<ActionList.Item
|
|
as="a"
|
|
href={item.link}
|
|
key={item.title}
|
|
sx={{ listStyle: 'none', padding: '2px', fontSize: '14px' }}
|
|
>
|
|
<div className={cx(item.platform)}>
|
|
{item.title}
|
|
{item.items && item.items.length > 0 ? (
|
|
<ul className="ml-3">{item.items.map(renderTocItem)}</ul>
|
|
) : null}
|
|
</div>
|
|
</ActionList.Item>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<DefaultLayout>
|
|
<div className="container-xl px-3 px-md-6 my-4">
|
|
<ArticleGridLayout
|
|
topper={<ArticleTitle>{title}</ArticleTitle>}
|
|
intro={
|
|
<>
|
|
{contributor && (
|
|
<Callout variant="info" className="mb-3">
|
|
<p>
|
|
<span className="mr-2">
|
|
<InfoIcon />
|
|
</span>
|
|
{t('contributor_callout')} <a href={contributor.URL}>{contributor.name}</a>.
|
|
</p>
|
|
</Callout>
|
|
)}
|
|
|
|
{intro && (
|
|
<Lead data-testid="lead" data-search="lead">
|
|
{intro}
|
|
</Lead>
|
|
)}
|
|
|
|
{permissions && (
|
|
<div className="permissions-statement d-table">
|
|
<div className="d-table-cell pr-2">
|
|
<ShieldLockIcon size={16} />
|
|
</div>
|
|
<div className="d-table-cell" dangerouslySetInnerHTML={{ __html: permissions }} />
|
|
</div>
|
|
)}
|
|
|
|
{includesPlatformSpecificContent && <PlatformPicker variant="underlinenav" />}
|
|
|
|
{product && (
|
|
<Callout
|
|
variant="success"
|
|
className="mb-4"
|
|
dangerouslySetInnerHTML={{ __html: product }}
|
|
/>
|
|
)}
|
|
</>
|
|
}
|
|
toc={
|
|
<>
|
|
{!!interactiveAlternatives[currentPath] && (
|
|
<div className="flash mb-3">
|
|
<ZapIcon className="mr-2" />
|
|
<Link href={interactiveAlternatives[currentPath].href}>
|
|
Try the new interactive article
|
|
</Link>
|
|
</div>
|
|
)}
|
|
{miniTocItems.length > 1 && (
|
|
<>
|
|
<Heading as="h2" fontSize={1} id="in-this-article" className="mb-1">
|
|
<Link href="#in-this-article">{t('miniToc')}</Link>
|
|
</Heading>
|
|
|
|
<ActionList
|
|
items={miniTocItems.map((items) => {
|
|
return {
|
|
key: title,
|
|
text: title,
|
|
renderItem: () => <ul>{renderTocItem(items)}</ul>,
|
|
}
|
|
})}
|
|
/>
|
|
</>
|
|
)}
|
|
</>
|
|
}
|
|
>
|
|
<div id="article-contents">
|
|
<MarkdownContent>{renderedPage}</MarkdownContent>
|
|
{effectiveDate && (
|
|
<div className="mt-4" id="effectiveDate">
|
|
Effective as of:{' '}
|
|
<time dateTime={new Date(effectiveDate).toISOString()}>
|
|
{new Date(effectiveDate).toDateString()}
|
|
</time>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</ArticleGridLayout>
|
|
|
|
{currentLearningTrack?.trackName ? (
|
|
<div className="mt-4">
|
|
<LearningTrackNav track={currentLearningTrack} />
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</DefaultLayout>
|
|
)
|
|
}
|