Files
developer-roadmap/pages/[roadmap]/index.tsx

166 lines
4.8 KiB
TypeScript
Raw Normal View History

2021-10-05 07:55:44 +02:00
import { Box, Button, Text, Container, Link, Stack, Badge } from '@chakra-ui/react';
import { ArrowBackIcon, AtSignIcon, DownloadIcon, ViewIcon } from '@chakra-ui/icons';
2021-09-05 22:52:18 +02:00
import { GlobalHeader } from '../../components/global-header';
import { OpensourceBanner } from '../../components/opensource-banner';
import { UpdatesBanner } from '../../components/updates-banner';
import { Footer } from '../../components/footer';
import { PageHeader } from '../../components/page-header';
import { getAllRoadmaps, getRoadmapById, RoadmapType } from '../../lib/roadmap';
import MdRenderer from '../../components/md-renderer';
import Helmet from '../../components/helmet';
2021-10-05 07:55:44 +02:00
import siteConfig from '../../content/site.json';
import React from 'react';
import { event } from '../../lib/gtag';
2021-08-16 18:15:54 +02:00
2021-08-29 21:29:14 +02:00
type RoadmapProps = {
roadmap: RoadmapType;
};
2021-08-16 18:15:54 +02:00
2021-08-29 21:29:14 +02:00
function ImageRoadmap(props: RoadmapProps) {
const { roadmap } = props;
if (!roadmap.imagePath) {
return null;
2021-08-16 18:15:54 +02:00
}
2021-08-29 21:29:14 +02:00
return (
<Container maxW={'900px'} position='relative'>
<Box mb='30px'>
<img alt='Frontend Roadmap' src={roadmap.imagePath} />
</Box>
</Container>
);
}
2021-08-16 18:15:54 +02:00
2021-08-29 21:29:14 +02:00
function TextualRoadmap(props: RoadmapProps) {
const { roadmap } = props;
2021-12-03 14:16:41 +01:00
if (!roadmap.landingPath) {
2021-08-29 21:29:14 +02:00
return null;
2021-08-16 18:15:54 +02:00
}
2021-08-19 14:36:08 +02:00
2021-08-29 21:29:14 +02:00
// Remove trailing slashes
2021-12-03 14:16:41 +01:00
const normalizedPath = roadmap.landingPath.replace(/^\//, '');
const LandingContent = require(`../../content/${normalizedPath}`).default;
2021-08-29 21:29:14 +02:00
return (
<Container maxW={'container.md'} position='relative'>
<MdRenderer>
2021-12-03 14:16:41 +01:00
<LandingContent />
2021-08-29 21:29:14 +02:00
</MdRenderer>
</Container>
);
}
2021-08-16 18:15:54 +02:00
2021-10-05 08:05:24 +02:00
export function NewBanner() {
2021-10-05 07:55:44 +02:00
return (
<Text _hover={{ textDecoration: 'none', color: 'blue.700', '& .new-badge': { bg: 'blue.700' } }}
as={Link}
href={siteConfig.url.youtube}
d='block'
target='_blank'
color='red.700'
fontSize='sm'
mb='10px'
fontWeight={500}
onClick={() => event({
category: 'Subscription',
action: 'Clicked the YouTube banner',
label: 'YouTube Alert on Roadmap'
})}>
<Badge transition={'all 300ms'} className='new-badge' mr='7px' colorScheme='red' variant='solid'>New</Badge>
<Text textDecoration='underline' as='span' d={['none', 'inline']}>Roadmap topics to be covered on our YouTube
Channel</Text>
<Text textDecoration='underline' as='span' d={['inline', 'none']}>Topic videos being made on YouTube</Text>
<Text as='span' ml='5px'>&raquo;</Text>
</Text>
);
}
2021-08-29 21:29:14 +02:00
export default function Roadmap(props: RoadmapProps) {
const { roadmap } = props;
2021-08-19 14:36:08 +02:00
2021-08-16 18:15:54 +02:00
return (
<Box bg='white' minH='100vh'>
2021-08-20 17:06:26 +02:00
<GlobalHeader />
2021-09-04 22:58:58 +02:00
<Helmet
title={roadmap?.seo?.title || roadmap.title}
description={roadmap?.seo?.description || roadmap.description}
keywords={roadmap?.seo.keywords || []}
/>
2021-08-16 18:15:54 +02:00
<Box mb='60px'>
<PageHeader
2021-10-05 07:55:44 +02:00
beforeTitle={<NewBanner />}
2021-09-04 19:14:02 +02:00
title={roadmap.title}
subtitle={roadmap.description}
2021-08-16 18:15:54 +02:00
>
<Stack mt='20px' isInline>
2021-09-09 22:32:12 +02:00
<Button d={['flex', 'flex']} as={Link} href={'/roadmaps'} size='xs' py='14px' px='10px'
2021-09-05 21:17:51 +02:00
colorScheme='teal' variant='solid' _hover={{ textDecoration: 'none' }}>
2021-09-09 22:32:12 +02:00
&larr; <Text as='span' d={['none', 'inline']} ml='5px'>All Roadmaps</Text>
2021-09-05 21:17:51 +02:00
</Button>
2021-09-04 19:14:02 +02:00
{roadmap.pdfUrl && (
<Button as={Link}
href={roadmap.pdfUrl}
target='_blank'
size='xs'
py='14px'
px='10px'
leftIcon={<DownloadIcon />}
colorScheme='yellow'
variant='solid'
_hover={{ textDecoration: 'none' }}>
2021-09-09 22:32:12 +02:00
Download
2021-09-04 19:14:02 +02:00
</Button>
)}
2021-09-05 21:17:51 +02:00
<Button as={Link} href={'/signup'} size='xs' py='14px' px='10px' leftIcon={<AtSignIcon />}
2021-09-04 19:14:02 +02:00
colorScheme='yellow' variant='solid' _hover={{ textDecoration: 'none' }}>
2021-08-16 18:15:54 +02:00
Subscribe
</Button>
</Stack>
</PageHeader>
2021-08-29 21:29:14 +02:00
<ImageRoadmap roadmap={roadmap} />
<TextualRoadmap roadmap={roadmap} />
2021-08-16 18:15:54 +02:00
</Box>
<OpensourceBanner />
<UpdatesBanner />
<Footer />
</Box>
);
}
2021-08-29 21:29:14 +02:00
type StaticPathItem = {
params: {
roadmap: string
}
};
export async function getStaticPaths() {
const roadmaps = getAllRoadmaps();
const paramsList: StaticPathItem[] = roadmaps.map(roadmap => ({
params: { 'roadmap': roadmap.id }
}));
return {
paths: paramsList,
fallback: false
};
}
type ContextType = {
params: {
roadmap: string
}
};
export async function getStaticProps(context: ContextType) {
const roadmapId: string = context?.params?.roadmap;
return {
props: {
roadmap: getRoadmapById(roadmapId)
}
};
}