Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(theme-docs): add ability to add custom links to navbar like project & chat links #2783

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions examples/docs/src/theme.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export default {
key: 'Nextra 2',
text: 'Nextra 2 Alpha'
},
project: {
link: 'https://github.com/shuding/nextra/tree/main/packages/nextra-theme-docs'
},
chat: {
link: 'https://discord.gg/hEM84NMkRv' // Next.js discord server,
},
Expand All @@ -17,6 +20,37 @@ export default {
editLink: {
text: 'Edit this page on GitHub'
},
links: [ // Vercel & Next.js Websites as exmaples for custom links
{
link: 'https://vercel.com',
icon: (
<svg
fill="currentColor"
width="24"
height="24"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" d="M256,48,496,464H16Z" />
</svg>
)
},
{
link: 'https://nextjs.org',
icon: (
<svg
fill="currentColor"
width="24"
height="24"
viewBox="0 0 1024 1024"
xmlns="http://www.w3.org/2000/svg"
>
<path d="m478.5.6c-2.2.2-9.2.9-15.5 1.4-145.3 13.1-281.4 91.5-367.6 212-48 67-78.7 143-90.3 223.5-4.1 28.1-4.6 36.4-4.6 74.5s.5 46.4 4.6 74.5c27.8 192.1 164.5 353.5 349.9 413.3 33.2 10.7 68.2 18 108 22.4 15.5 1.7 82.5 1.7 98 0 68.7-7.6 126.9-24.6 184.3-53.9 8.8-4.5 10.5-5.7 9.3-6.7-.8-.6-38.3-50.9-83.3-111.7l-81.8-110.5-102.5-151.7c-56.4-83.4-102.8-151.6-103.2-151.6-.4-.1-.8 67.3-1 149.6-.3 144.1-.4 149.9-2.2 153.3-2.6 4.9-4.6 6.9-8.8 9.1-3.2 1.6-6 1.9-21.1 1.9h-17.3l-4.6-2.9c-3-1.9-5.2-4.4-6.7-7.3l-2.1-4.5.2-200.5.3-200.6 3.1-3.9c1.6-2.1 5-4.8 7.4-6.1 4.1-2 5.7-2.2 23-2.2 20.4 0 23.8.8 29.1 6.6 1.5 1.6 57 85.2 123.4 185.9s157.2 238.2 201.8 305.7l81 122.7 4.1-2.7c36.3-23.6 74.7-57.2 105.1-92.2 64.7-74.3 106.4-164.9 120.4-261.5 4.1-28.1 4.6-36.4 4.6-74.5s-.5-46.4-4.6-74.5c-27.8-192.1-164.5-353.5-349.9-413.3-32.7-10.6-67.5-17.9-106.5-22.3-9.6-1-75.7-2.1-84-1.3zm209.4 309.4c4.8 2.4 8.7 7 10.1 11.8.8 2.6 1 58.2.8 183.5l-.3 179.8-31.7-48.6-31.8-48.6v-130.7c0-84.5.4-132 1-134.3 1.6-5.6 5.1-10 9.9-12.6 4.1-2.1 5.6-2.3 21.3-2.3 14.8 0 17.4.2 20.7 2z" />
<path d="m784.3 945.1c-3.5 2.2-4.6 3.7-1.5 2 2.2-1.3 5.8-4 5.2-4.1-.3 0-2 1-3.7 2.1zm-6.9 4.5c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-5 3c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-5 3c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-7.6 4c-3.8 2-3.6 2.8.2.9 1.7-.9 3-1.8 3-2 0-.7-.1-.6-3.2 1.1z" />
</svg>
)
}
],
faviconGlyph: '✦',
useNextSeoProps() {
const { frontMatter } = useConfig()
Expand Down
59 changes: 39 additions & 20 deletions packages/nextra-theme-docs/src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import cn from 'clsx'
import { useFSRoute } from 'nextra/hooks'
import { ArrowRightIcon, MenuIcon } from 'nextra/icons'
import type { Item, MenuItem, PageItem } from 'nextra/normalize-pages'
import type { ReactElement, ReactNode } from 'react'
import { useEffect, ReactElement, ReactNode } from 'react'
import { useConfig, useMenu } from '../contexts'
import { renderComponent } from '../utils'
import { Anchor } from './anchor'
Expand Down Expand Up @@ -83,6 +83,31 @@ export function Navbar({ flatDirectories, items }: NavBarProps): ReactElement {
const activeRoute = useFSRoute()
const { menu, setMenu } = useMenu()

useEffect(() => {
if ( config.chat.link ) {
config.links.push({
link: config.chat.link,
icon: config.chat.icon
})

// set to undefined to avoid duplication because seems to render twice
// because of StrictMode ?
config.chat.link = undefined;
}

if ( config.project.link ) {
config.links.push({
link: config.project.link,
icon: config.project.icon
})

// set to undefined to avoid duplication because seems to render twice
// because of StrictMode ?
config.project.link = undefined;
}

}, [])

return (
<div className="nextra-nav-container nx-sticky nx-top-0 nx-z-20 nx-w-full nx-bg-transparent print:nx-hidden">
<div
Expand Down Expand Up @@ -167,25 +192,19 @@ export function Navbar({ flatDirectories, items }: NavBarProps): ReactElement {
className: 'nx-hidden md:nx-inline-block mx-min-w-[200px]'
})}

{config.project.link ? (
<Anchor
className="nx-p-2 nx-text-current"
href={config.project.link}
newWindow
>
{renderComponent(config.project.icon)}
</Anchor>
) : null}

{config.chat.link ? (
<Anchor
className="nx-p-2 nx-text-current"
href={config.chat.link}
newWindow
>
{renderComponent(config.chat.icon)}
</Anchor>
) : null}
{config.links ?
config.links.map((link: any, index: number) => (
<Anchor
key={index}
className="nx-p-2 nx-text-current"
href={link.link}
newWindow
>
{renderComponent(link.icon)}
</Anchor>
))
: null
}

{renderComponent(config.navbar.extraContent)}

Expand Down
5 changes: 5 additions & 0 deletions packages/nextra-theme-docs/src/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ export const themeSchema = z.strictObject({
icon: z.custom<ReactNode | FC>(...reactNode),
link: z.string().startsWith('https://').optional()
}),
links: z.strictObject({
icon: z.custom<ReactNode | FC>(...reactNode),
link: z.string().startsWith('https://').optional()
}).array(),
components: z.record(z.custom<FC>(...fc)).optional(),
darkMode: z.boolean(),
direction: z.enum(['ltr', 'rtl']),
Expand Down Expand Up @@ -198,6 +202,7 @@ export const DEFAULT_THEME: DocsThemeConfig = {
</>
)
},
links: [],
darkMode: true,
direction: 'ltr',
docsRepositoryBase: 'https://github.com/shuding/nextra',
Expand Down