computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
177 lines
5.0 KiB
177 lines
5.0 KiB
--- |
|
import { EditorRoadmap } from '../../components/EditorRoadmap/EditorRoadmap'; |
|
import FAQs, { type FAQType } from '../../components/FAQs/FAQs.astro'; |
|
import FrameRenderer from '../../components/FrameRenderer/FrameRenderer.astro'; |
|
import RelatedRoadmaps from '../../components/RelatedRoadmaps.astro'; |
|
import RoadmapHeader from '../../components/RoadmapHeader.astro'; |
|
import ShareIcons from '../../components/ShareIcons/ShareIcons.astro'; |
|
import { TopicDetail } from '../../components/TopicDetail/TopicDetail'; |
|
import { UserProgressModal } from '../../components/UserProgress/UserProgressModal'; |
|
import BaseLayout from '../../layouts/BaseLayout.astro'; |
|
import { |
|
generateArticleSchema, |
|
generateFAQSchema, |
|
} from '../../lib/jsonld-schema'; |
|
import { getOpenGraphImageUrl } from '../../lib/open-graph'; |
|
import { type RoadmapFrontmatter, getRoadmapIds } from '../../lib/roadmap'; |
|
import RoadmapNote from '../../components/RoadmapNote.astro'; |
|
import { RoadmapTitleQuestion } from '../../components/RoadmapTitleQuestion'; |
|
import ResourceProgressStats from '../../components/ResourceProgressStats.astro'; |
|
import { getProjectsByRoadmapId } from '../../lib/project'; |
|
|
|
export async function getStaticPaths() { |
|
const roadmapIds = await getRoadmapIds(); |
|
|
|
return roadmapIds.map((roadmapId) => ({ |
|
params: { roadmapId }, |
|
})); |
|
} |
|
|
|
interface Params extends Record<string, string | undefined> { |
|
roadmapId: string; |
|
} |
|
|
|
const { roadmapId } = Astro.params as Params; |
|
const roadmapFile = await import( |
|
`../../data/roadmaps/${roadmapId}/${roadmapId}.md` |
|
); |
|
const { faqs: roadmapFAQs = [] } = await import( |
|
`../../data/roadmaps/${roadmapId}/faqs.astro` |
|
); |
|
const roadmapData = roadmapFile.frontmatter as RoadmapFrontmatter; |
|
|
|
let jsonLdSchema = []; |
|
|
|
if (roadmapData.schema) { |
|
const roadmapSchema = roadmapData.schema; |
|
jsonLdSchema.push( |
|
generateArticleSchema({ |
|
url: `https://roadmap.sh/${roadmapId}`, |
|
headline: roadmapSchema.headline, |
|
description: roadmapSchema.description, |
|
datePublished: roadmapSchema.datePublished, |
|
dateModified: roadmapSchema.dateModified, |
|
imageUrl: roadmapSchema.imageUrl, |
|
}), |
|
); |
|
} |
|
|
|
if (roadmapFAQs.length) { |
|
jsonLdSchema.push(generateFAQSchema(roadmapFAQs as unknown as FAQType[])); |
|
} |
|
|
|
const ogImageUrl = |
|
roadmapData?.seo?.ogImageUrl || |
|
getOpenGraphImageUrl({ |
|
group: 'roadmap', |
|
resourceId: roadmapId, |
|
}); |
|
|
|
const question = roadmapData?.question; |
|
const note = roadmapData.note; |
|
const projects = await getProjectsByRoadmapId(roadmapId); |
|
--- |
|
|
|
<BaseLayout |
|
permalink={`/${roadmapId}`} |
|
title={roadmapData?.seo?.title} |
|
briefTitle={roadmapData.briefTitle} |
|
ogImageUrl={ogImageUrl} |
|
description={roadmapData.seo.description} |
|
keywords={roadmapData.seo.keywords} |
|
noIndex={roadmapData.isUpcoming} |
|
jsonLd={jsonLdSchema} |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
> |
|
<!-- Preload the font being used in the renderer --> |
|
<link |
|
rel='preload' |
|
href='/fonts/balsamiq.woff2' |
|
as='font' |
|
type='font/woff2' |
|
crossorigin |
|
slot='after-header' |
|
/> |
|
|
|
<TopicDetail |
|
resourceTitle={roadmapData.title} |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
client:idle |
|
canSubmitContribution={true} |
|
/> |
|
|
|
<div class='bg-gray-50'> |
|
<RoadmapHeader |
|
title={roadmapData.title} |
|
description={roadmapData.description} |
|
note={roadmapData.note} |
|
tnsBannerLink={roadmapData.tnsBannerLink} |
|
roadmapId={roadmapId} |
|
hasTopics={roadmapData.hasTopics} |
|
isUpcoming={roadmapData.isUpcoming} |
|
isForkable={roadmapData.isForkable} |
|
question={roadmapData.question} |
|
projectCount={projects.length} |
|
/> |
|
|
|
<div class='container mt-2.5'> |
|
<div class='rounded-md border bg-white'> |
|
<ResourceProgressStats resourceId={roadmapId} resourceType='roadmap' /> |
|
{ |
|
question?.title && ( |
|
<RoadmapTitleQuestion |
|
client:load |
|
question={question?.title} |
|
answer={question?.description} |
|
/> |
|
) |
|
} |
|
</div> |
|
</div> |
|
|
|
<div class='container relative !max-w-[1000px]'> |
|
<ShareIcons |
|
description={roadmapData.briefDescription} |
|
pageUrl={`https://roadmap.sh/${roadmapId}`} |
|
/> |
|
|
|
{ |
|
roadmapData?.renderer === 'editor' ? ( |
|
<EditorRoadmap |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
dimensions={roadmapData.dimensions!} |
|
client:load |
|
/> |
|
) : ( |
|
<FrameRenderer |
|
resourceType={'roadmap'} |
|
resourceId={roadmapId} |
|
dimensions={roadmapData.dimensions} |
|
/> |
|
) |
|
} |
|
</div> |
|
|
|
<UserProgressModal |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
renderer={roadmapData?.renderer} |
|
client:only='react' |
|
/> |
|
|
|
{ |
|
roadmapId === 'docker' && ( |
|
<p class='mb-8 px-5 text-center text-xs text-gray-400 sm:mb-12'> |
|
Roadmap owner Insight Partners is an investor in Docker. |
|
</p> |
|
) |
|
} |
|
|
|
<FAQs faqs={roadmapFAQs as unknown as FAQType[]} /> |
|
|
|
<RelatedRoadmaps roadmap={roadmapData} /> |
|
</div> |
|
</BaseLayout>
|
|
|