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.
204 lines
6.2 KiB
204 lines
6.2 KiB
--- |
|
import Icon from './AstroIcon.astro'; |
|
import LoginPopup from './AuthenticationFlow/LoginPopup.astro'; |
|
import RoadmapHint from './RoadmapHint.astro'; |
|
import RoadmapNote from './RoadmapNote.astro'; |
|
import TopicSearch from './TopicSearch/TopicSearch.astro'; |
|
import YouTubeAlert from './YouTubeAlert.astro'; |
|
import ProgressHelpPopup from './ProgressHelpPopup.astro'; |
|
import { MarkFavorite } from './FeaturedItems/MarkFavorite'; |
|
import { TeamVersions } from './TeamVersions/TeamVersions'; |
|
import { CreateVersion } from './CreateVersion/CreateVersion'; |
|
import { type RoadmapFrontmatter } from '../lib/roadmap'; |
|
import { ShareRoadmapButton } from './ShareRoadmapButton'; |
|
import { Share2 } from 'lucide-react'; |
|
import ShareIcons from './ShareIcons/ShareIcons.astro'; |
|
|
|
export interface Props { |
|
title: string; |
|
description: string; |
|
note?: string; |
|
tnsBannerLink?: string; |
|
roadmapId: string; |
|
isUpcoming?: boolean; |
|
hasSearch?: boolean; |
|
question?: RoadmapFrontmatter['question']; |
|
hasTopics?: boolean; |
|
isForkable?: boolean; |
|
} |
|
|
|
const { |
|
title, |
|
description, |
|
roadmapId, |
|
tnsBannerLink, |
|
isUpcoming = false, |
|
hasSearch = false, |
|
note, |
|
hasTopics = false, |
|
question, |
|
isForkable = false, |
|
} = Astro.props; |
|
|
|
const isRoadmapReady = !isUpcoming; |
|
|
|
const roadmapTitle = |
|
roadmapId === 'devops' |
|
? 'DevOps' |
|
: `${roadmapId.charAt(0).toUpperCase()}${roadmapId.slice(1)}`; |
|
|
|
const hasTnsBanner = !!tnsBannerLink; |
|
--- |
|
|
|
<LoginPopup /> |
|
<ProgressHelpPopup /> |
|
|
|
<div class='relative border-b'> |
|
<div |
|
class:list={[ |
|
'container relative py-5', |
|
{ |
|
'sm:py-16': hasTnsBanner, |
|
'sm:py-12': !hasTnsBanner, |
|
}, |
|
]} |
|
> |
|
<div class='mb-3 mt-0 sm:mb-4'> |
|
{ |
|
isForkable && ( |
|
<div class='mb-2'> |
|
<CreateVersion client:load roadmapId={roadmapId} /> |
|
</div> |
|
) |
|
} |
|
|
|
<h1 class='mb-0.5 text-2xl font-bold sm:mb-2 sm:text-4xl'> |
|
{title} |
|
<span class='relative top-0 sm:-top-1'> |
|
<MarkFavorite |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
className='relative ml-1.5 text-gray-500 !opacity-100 hover:text-gray-600 focus:outline-0 [&>svg]:h-4 [&>svg]:w-4 [&>svg]:stroke-gray-400 [&>svg]:stroke-[0.4] hover:[&>svg]:stroke-gray-600 sm:[&>svg]:h-4 sm:[&>svg]:w-4' |
|
client:only='react' |
|
/> |
|
</span> |
|
</h1> |
|
<p class='text-sm text-gray-500 sm:text-lg'>{description}</p> |
|
</div> |
|
|
|
<div class='flex justify-between gap-2 sm:gap-0'> |
|
<div class='flex gap-1 sm:gap-2'> |
|
{ |
|
!hasSearch && ( |
|
<> |
|
<a |
|
href='/roadmaps' |
|
class='rounded-md bg-gray-500 px-3 py-1.5 text-xs font-medium text-white hover:bg-gray-600 sm:text-sm' |
|
aria-label='Back to All Roadmaps' |
|
> |
|
←<span class='hidden sm:inline'> All Roadmaps</span> |
|
</a> |
|
|
|
<ShareRoadmapButton |
|
description={description} |
|
pageUrl={`https://roadmap.sh/${roadmapId}`} |
|
client:idle |
|
/> |
|
|
|
{isRoadmapReady && ( |
|
<> |
|
<button |
|
data-guest-required |
|
data-popup='login-popup' |
|
class='inline-flex hidden items-center justify-center rounded-md bg-yellow-400 px-3 py-1.5 text-xs font-medium hover:bg-yellow-500 sm:text-sm' |
|
aria-label='Download Roadmap' |
|
> |
|
<Icon icon='download' /> |
|
<span class='ml-2 hidden sm:inline'>Download</span> |
|
</button> |
|
|
|
<a |
|
data-auth-required |
|
class='inline-flex hidden items-center justify-center rounded-md bg-yellow-400 px-3 py-1.5 text-xs font-medium hover:bg-yellow-500 sm:text-sm' |
|
aria-label='Download Roadmap' |
|
target='_blank' |
|
href={`/pdfs/roadmaps/${roadmapId}.pdf`} |
|
> |
|
<Icon icon='download' /> |
|
<span class='ml-2 hidden sm:inline'>Download</span> |
|
</a> |
|
</> |
|
)} |
|
</> |
|
) |
|
} |
|
|
|
{ |
|
hasSearch && ( |
|
<a |
|
href={`/${roadmapId}`} |
|
class='rounded-md bg-gray-500 px-3 py-1.5 text-xs font-medium text-white hover:bg-gray-600 sm:text-sm' |
|
aria-label='Back to Visual Roadmap' |
|
> |
|
← |
|
<span class='inline'> Visual Roadmap</span> |
|
</a> |
|
) |
|
} |
|
</div> |
|
|
|
<div class='flex items-center gap-1 sm:gap-2'> |
|
<TeamVersions |
|
resourceType='roadmap' |
|
resourceId={roadmapId} |
|
client:only='react' |
|
/> |
|
|
|
{ |
|
isRoadmapReady && ( |
|
<a |
|
href={`https://github.com/kamranahmedse/developer-roadmap/issues/new?title=[Suggestion] ${title}`} |
|
target='_blank' |
|
class='inline-flex items-center justify-center rounded-md bg-gray-500 px-3 py-1.5 text-xs font-medium text-white hover:bg-gray-600 sm:text-sm' |
|
aria-label='Suggest Changes' |
|
> |
|
<Icon icon='comment' class='h-3 w-3' /> |
|
<span class='ml-2 hidden sm:inline'>Suggest Changes</span> |
|
<span class='ml-2 inline sm:hidden'>Suggest</span> |
|
</a> |
|
) |
|
} |
|
</div> |
|
</div> |
|
|
|
<!-- Desktop: Roadmap Resources - Alert --> |
|
{ |
|
hasTopics && ( |
|
<RoadmapHint |
|
tnsBannerLink={tnsBannerLink} |
|
titleQuestion={question?.title} |
|
titleAnswer={question?.description} |
|
roadmapId={roadmapId} |
|
/> |
|
) |
|
} |
|
|
|
{hasSearch && <TopicSearch />} |
|
</div> |
|
|
|
{ |
|
tnsBannerLink && ( |
|
<div class='absolute left-0 right-0 top-0 hidden border-b border-b-gray-200 px-2 py-1.5 sm:block'> |
|
<p class='py-0.5 text-center text-sm'> |
|
<span class='badge mr-1'>Partner</span> |
|
Get the latest {roadmapTitle} news from our sister site{' '} |
|
<a href={tnsBannerLink} target='_blank' class='font-medium underline'> |
|
TheNewStack.io |
|
</a> |
|
</p> |
|
</div> |
|
) |
|
} |
|
</div> |
|
|
|
{note && <RoadmapNote text={note} />}
|
|
|