docs: redesign sidebar (#8408)

* initial changes

* redesign the sidebar + nav drawer

* changes to sidebar items

* finish up sidebar redesign

* support new sidebar in resources

* general fixes

* integrate in ui

* support api reference

* refactor

* integrate in user guide

* docs: fix build errors

* fix user guide build

* more refactoring

* added banner

* added bottom logo + icon

* fix up sidebar

* fix up paddings

* fix shadow bottom

* docs: add table of content (#8445)

* add toc types

* implement toc functionality

* finished toc redesign

* redesigned table of content

* mobile fixes

* truncate text in toc

* mobile fixes

* merge fixes

* implement redesign

* add hide sidebar

* add menu action item

* finish up hide sidebar design

* implement redesign in resources

* integrate in api reference

* integrate changes in ui

* fixes to api reference scrolling

* fix build error

* fix build errors

* fixes

* fixes to sidebar

* general fixes

* fix active category not closing

* fix long titles
This commit is contained in:
Shahed Nasser
2024-08-15 12:13:13 +03:00
committed by GitHub
parent 4cb28531e5
commit b4f3b8a79d
157 changed files with 5080 additions and 2010 deletions

View File

@@ -14,6 +14,19 @@ export default async function getCoreFlowsRefSidebarChildren(): Promise<
const sidebarItems: ItemsToAdd[] = []
sidebarItems.push(
{
type: "link",
title: "Overview",
path: "/medusa-workflows-reference",
loaded: true,
isPathHref: true,
},
{
type: "separator",
}
)
for (const directory of directories) {
if (
!directory.isDirectory() ||
@@ -66,21 +79,28 @@ export default async function getCoreFlowsRefSidebarChildren(): Promise<
if (workflowItems.length || stepItems.length) {
const item: ItemsToAdd = {
type: "category",
title: directory.name.replaceAll("_", " "),
children: [],
loaded: true,
initialOpen: false,
}
if (workflowItems.length) {
item.children!.push({
type: "sub-category",
title: "Workflows",
children: workflowItems,
loaded: true,
})
}
if (stepItems.length) {
item.children!.push({
type: "sub-category",
title: "Steps",
children: stepItems,
loaded: true,
})
}

View File

@@ -3,6 +3,7 @@ import { ItemsToAdd, sidebarAttachHrefCommonOptions } from "../index.js"
import { readFileSync } from "fs"
import findMetadataTitle from "./find-metadata-title.js"
import findPageHeading from "./find-page-heading.js"
import { InteractiveSidebarItem } from "types"
export async function getSidebarItemLink({
filePath,
@@ -24,6 +25,7 @@ export async function getSidebarItemLink({
const newItem = sidebarAttachHrefCommonOptions([
{
type: "link",
path:
frontmatter.slug ||
filePath.replace(basePath, "").replace(`/${fileBasename}`, ""),
@@ -33,7 +35,7 @@ export async function getSidebarItemLink({
findPageHeading(fileContent) ||
"",
},
])[0]
])[0] as InteractiveSidebarItem
return {
...newItem,

View File

@@ -1,16 +1,22 @@
import { RawSidebarItemType } from "types"
import { RawSidebarItem } from "types"
const commonOptions: Partial<RawSidebarItemType> = {
const commonOptions: Partial<RawSidebarItem> = {
loaded: true,
isPathHref: true,
}
export function sidebarAttachHrefCommonOptions(
sidebar: RawSidebarItemType[]
): RawSidebarItemType[] {
return sidebar.map((item) => ({
...commonOptions,
...item,
children: sidebarAttachHrefCommonOptions(item.children || []),
}))
sidebar: RawSidebarItem[]
): RawSidebarItem[] {
return sidebar.map((item) => {
if (item.type === "separator") {
return item
}
return {
...commonOptions,
...item,
children: sidebarAttachHrefCommonOptions(item.children || []),
}
})
}