Docs sidebar
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 1m2s
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 1m2s
This commit is contained in:
parent
8f6f5094bc
commit
e1e02ae0f4
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'option utinam malorum tempor sapien.'
|
title: 'Query a player'
|
||||||
published: '04-19-2024'
|
published: '04-19-2024'
|
||||||
summary: 'utinam delicata nominavi ornare eirmod pharetra decore interesset necessitatibus.'
|
summary: 'utinam delicata nominavi ornare eirmod pharetra decore interesset necessitatibus.'
|
||||||
---
|
---
|
34
Frontend/src/app/(pages)/docs/[[...slug]]/layout.tsx
Normal file
34
Frontend/src/app/(pages)/docs/[[...slug]]/layout.tsx
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { ReactElement, ReactNode } from "react";
|
||||||
|
import Sidebar from "@/components/docs/sidebar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force the layout to be static.
|
||||||
|
*/
|
||||||
|
export const dynamic = "force-static";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The layout for the docs page.
|
||||||
|
*
|
||||||
|
* @param children the children of this layout
|
||||||
|
* @returns the layout jsx
|
||||||
|
*/
|
||||||
|
const DocumentationLayout = ({
|
||||||
|
params,
|
||||||
|
children,
|
||||||
|
}: Readonly<{
|
||||||
|
params: any;
|
||||||
|
children: ReactNode;
|
||||||
|
}>): ReactElement => {
|
||||||
|
const activeSlug: string = ((params.slug as string[]) || undefined)?.join(
|
||||||
|
"/"
|
||||||
|
); // The active slug of this page
|
||||||
|
return (
|
||||||
|
<section className="min-h-screen py-28 flex justify-center">
|
||||||
|
<div className="flex flex-wrap gap-32 divide-x-2">
|
||||||
|
<Sidebar activeSlug={activeSlug} />
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default DocumentationLayout;
|
@ -1,27 +0,0 @@
|
|||||||
import { ReactElement, ReactNode } from "react";
|
|
||||||
import Sidebar from "@/components/docs/sidebar";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Force the layout to be static.
|
|
||||||
*/
|
|
||||||
export const dynamic = "force-static";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The layout for the docs page.
|
|
||||||
*
|
|
||||||
* @param children the children of this layout
|
|
||||||
* @returns the layout jsx
|
|
||||||
*/
|
|
||||||
const DocumentationLayout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: ReactNode;
|
|
||||||
}>): ReactElement => (
|
|
||||||
<section className="min-h-screen py-28 flex justify-center">
|
|
||||||
<div className="flex flex-wrap gap-32 divide-x-2">
|
|
||||||
<Sidebar />
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
export default DocumentationLayout;
|
|
@ -1,15 +1,28 @@
|
|||||||
import { ReactElement } from "react";
|
import { ReactElement } from "react";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { getDocsContent } from "@/lib/mdxUtils";
|
import { getDocsContent } from "@/lib/mdxUtils";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { cn } from "@/lib/utils";
|
||||||
|
import { capitalize } from "@/lib/stringUtils";
|
||||||
|
import { minecrafter } from "@/font/fonts";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The sidebar for the docs page.
|
* The sidebar for the docs page.
|
||||||
*
|
*
|
||||||
* @returns the sidebar jsx
|
* @returns the sidebar jsx
|
||||||
*/
|
*/
|
||||||
const Sidebar = (): ReactElement => (
|
const Sidebar = ({ activeSlug }: { activeSlug: string }): ReactElement => {
|
||||||
|
const groupedContent: Record<string, DocsContentMetadata[]> = {};
|
||||||
|
for (let content of getDocsContent()) {
|
||||||
|
const categoryKey: string = content.slug?.split("/")[0] || "home"; // The key of the category
|
||||||
|
if (!groupedContent[categoryKey]) {
|
||||||
|
groupedContent[categoryKey] = [];
|
||||||
|
}
|
||||||
|
groupedContent[categoryKey].push(content);
|
||||||
|
}
|
||||||
|
return (
|
||||||
<div className="hidden h-full px-3 py-5 xl:flex flex-col items-center">
|
<div className="hidden h-full px-3 py-5 xl:flex flex-col items-center">
|
||||||
<div className="fixed w-56 flex flex-col gap-2.5">
|
<div className="fixed w-56 flex flex-col gap-5">
|
||||||
{/* Search */}
|
{/* Search */}
|
||||||
<Input
|
<Input
|
||||||
type="search"
|
type="search"
|
||||||
@ -19,17 +32,54 @@ const Sidebar = (): ReactElement => (
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
{/* Links */}
|
{/* Links */}
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-7">
|
||||||
{getDocsContent().map(
|
{Object.entries(groupedContent).map(
|
||||||
(
|
(
|
||||||
content: DocsContentMetadata,
|
[category, categoryContent]: [
|
||||||
|
string,
|
||||||
|
DocsContentMetadata[],
|
||||||
|
],
|
||||||
index: number
|
index: number
|
||||||
): ReactElement => (
|
): ReactElement => (
|
||||||
<div key={index}>{content.title}</div>
|
<div key={index} className="flex flex-col gap-1.5">
|
||||||
|
{/* Category */}
|
||||||
|
<h1
|
||||||
|
className={cn(
|
||||||
|
"text-xl text-minecraft-green-4",
|
||||||
|
minecrafter.className
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{capitalize(category)}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
{/* Links */}
|
||||||
|
<div className="flex flex-col border-l border-zinc-700">
|
||||||
|
{categoryContent.map(
|
||||||
|
(content, contentIndex) => (
|
||||||
|
<Link
|
||||||
|
key={contentIndex}
|
||||||
|
className={cn(
|
||||||
|
"pl-3 -ml-px text-zinc-200 hover:opacity-85 transition-all transform-gpu",
|
||||||
|
activeSlug ===
|
||||||
|
content.slug &&
|
||||||
|
"border-l border-minecraft-green-4"
|
||||||
|
)}
|
||||||
|
href={
|
||||||
|
`/docs/${content.slug}` ||
|
||||||
|
"#"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{content.title}
|
||||||
|
</Link>
|
||||||
|
)
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
};
|
||||||
export default Sidebar;
|
export default Sidebar;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user