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.
77 lines
1.9 KiB
77 lines
1.9 KiB
--- |
|
import Icon from './Icon.astro'; |
|
|
|
export interface Props { |
|
roadmapPermalink: string; |
|
} |
|
|
|
const { roadmapPermalink } = Astro.props; |
|
|
|
const roadmapId = roadmapPermalink.replace(/\//, ''); |
|
const hasTNSBanner = ['frontend', 'backend', 'devops'].includes(roadmapId); |
|
const roadmapTitle = |
|
roadmapId === 'devops' |
|
? 'DevOps' |
|
: `${roadmapId.charAt(0).toUpperCase()}${roadmapId.slice(1)}`; |
|
--- |
|
|
|
<div |
|
class:list={[ |
|
'mt-4 sm:mt-7 border rounded-md mb-0', |
|
{ |
|
'sm:-mb-[82px]': hasTNSBanner, |
|
'sm:-mb-[65px]': !hasTNSBanner, |
|
}, |
|
]} |
|
> |
|
{ |
|
hasTNSBanner && ( |
|
<div class='px-2 py-1.5 border-b bg-gray-100 hidden sm:block'> |
|
<p class='text-sm'> |
|
Get the latest {roadmapTitle} news from our sister site{' '} |
|
<a href='#' class='font-semibold underline'> |
|
TheNewStack.io |
|
</a> |
|
</p> |
|
</div> |
|
) |
|
} |
|
|
|
<!-- Desktop: Roadmap Resources - Alert --> |
|
<div |
|
class:list={[ |
|
'hidden sm:flex justify-between px-2 bg-white items-center', |
|
{ |
|
'rounded-bl-md rounded-br-md': hasTNSBanner, |
|
'rounded-md': !hasTNSBanner, |
|
}, |
|
]} |
|
> |
|
<p class='text-sm'> |
|
<span |
|
class='text-yellow-900 bg-yellow-200 py-0.5 px-1 text-xs rounded-sm font-medium uppercase mr-0.5' |
|
>New</span |
|
> |
|
Resources are here, try clicking nodes |
|
</p> |
|
|
|
<a |
|
href={`${roadmapPermalink}/topics`} |
|
class='inline-flex items-center justify-center py-1.5 text-sm font-medium rounded-md hover:text-black text-gray-500 px-1' |
|
> |
|
<Icon icon='search' /> |
|
<span class='ml-2'>Search Topics</span> |
|
</a> |
|
</div> |
|
|
|
<!-- Mobile - Roadmap resources alert --> |
|
<p |
|
class='block sm:hidden text-sm border border-yellow-500 text-yellow-700 rounded-md py-1.5 px-2 bg-white relative' |
|
> |
|
Click roadmap items for resources or visit{' '} |
|
<a href={`${roadmapPermalink}/topics`} class='text-blue-700 underline'> |
|
resources list |
|
</a> |
|
. |
|
</p> |
|
</div>
|
|
|