Files
medusa-store/www/apps/user-guide/sidebar.mjs
Shahed Nasser 5deb8eaf50 docs: support multiple sidebars in a project (#11768)
* changed to new sidebar across projects except resources

* finalize multi sidebar support

* clean up

* remove redundant property

* small changes

* fixes

* generate

* fix error

* fix initial open
2025-03-07 15:47:38 +02:00

323 lines
7.7 KiB
JavaScript

/** @type {import('types').Sidebar.RawSidebar[]} */
export const sidebar = [
{
sidebar_id: "user-guide",
title: "User Guide",
items: [
{
type: "link",
path: "/",
title: "Introduction",
},
{
type: "link",
path: "/reset-password",
title: "Reset Password",
},
{
type: "separator",
},
{
type: "category",
title: "Tips",
autogenerate_path: "/tips",
},
{
type: "category",
title: "Orders",
children: [
{
type: "link",
title: "Overview",
path: "/orders",
},
{
type: "link",
title: "Manage Details",
path: "/orders/manage",
},
{
type: "link",
title: "Manage Payments",
path: "/orders/payments",
},
{
type: "link",
title: "Manage Fulfillments",
path: "/orders/fulfillments",
},
{
type: "link",
title: "Edit Order Items",
path: "/orders/edit",
},
{
type: "link",
title: "Manage Returns",
path: "/orders/returns",
},
{
type: "link",
title: "Manage Exchanges",
path: "/orders/exchanges",
},
{
type: "link",
title: "Manage Claims",
path: "/orders/claims",
},
],
},
{
type: "category",
title: "Products",
children: [
{
type: "link",
title: "Overview",
path: "/products",
},
{
type: "link",
title: "Create Product",
path: "/products/create",
children: [
{
type: "link",
title: "Multi-Part Product",
path: "/products/create/multi-part",
},
{
type: "link",
title: "Bundle Product",
path: "/products/create/bundle",
},
],
},
{
type: "link",
title: "Edit Product",
path: "/products/edit",
},
{
type: "link",
title: "Manage Variants",
path: "/products/variants",
},
{
type: "link",
title: "Manage Collections",
path: "/products/collections",
},
{
type: "link",
title: "Manage Categories",
path: "/products/categories",
},
{
type: "link",
title: "Import Products",
path: "/products/import",
},
{
type: "link",
title: "Export Products",
path: "/products/export",
},
],
},
{
type: "category",
title: "Inventory",
children: [
{
type: "link",
title: "Overview",
path: "/inventory",
},
{
type: "link",
title: "Manage Inventory",
path: "/inventory/inventory",
},
{
type: "link",
title: "Manage Reservations",
path: "/inventory/reservations",
},
],
},
{
type: "category",
title: "Customers",
children: [
{
type: "link",
title: "Overview",
path: "/customers",
},
{
type: "link",
title: "Manage Customers",
path: "/customers/manage",
},
{
type: "link",
title: "Manage Groups",
path: "/customers/groups",
},
],
},
{
type: "category",
title: "Promotions",
children: [
{
type: "link",
title: "Overview",
path: "/promotions",
},
{
type: "link",
title: "Create Promotion",
path: "/promotions/create",
},
{
type: "link",
title: "Manage Promotion",
path: "/promotions/manage",
},
{
type: "link",
title: "Manage Campaigns",
path: "/promotions/campaigns",
},
],
},
{
type: "category",
title: "Price Lists",
children: [
{
type: "link",
title: "Overview",
path: "/price-lists",
},
{
type: "link",
title: "Create Price List",
path: "/price-lists/create",
},
{
type: "link",
title: "Manage Price List",
path: "/price-lists/manage",
},
],
},
{
type: "category",
title: "Settings",
children: [
{
type: "link",
title: "Overview",
path: "/settings",
},
{
type: "link",
title: "Store",
path: "/settings/store",
},
{
type: "link",
title: "Users",
path: "/settings/users",
children: [
{
type: "link",
title: "Manage Invites",
path: "/settings/users/invites",
},
],
},
{
type: "link",
title: "Regions",
path: "/settings/regions",
},
{
type: "link",
title: "Tax Regions",
path: "/settings/tax-regions",
},
{
type: "link",
title: "Return Reasons",
path: "/settings/return-reasons",
},
{
type: "link",
title: "Sales Channels",
path: "/settings/sales-channels",
},
{
type: "link",
title: "Product Types",
path: "/settings/product-types",
},
{
type: "link",
title: "Product Tags",
path: "/settings/product-tags",
},
{
type: "link",
title: "Location & Shipping",
path: "/settings/locations-and-shipping",
children: [
{
type: "link",
title: "Manage Locations",
path: "/settings/locations-and-shipping/locations",
},
{
type: "link",
title: "Manage Shipping Profiles",
path: "/settings/locations-and-shipping/shipping-profiles",
},
],
},
{
type: "link",
title: "Developer Settings",
path: "/settings/developer",
children: [
{
type: "link",
title: "Publishable API Keys",
path: "/settings/developer/publishable-api-keys",
},
{
type: "link",
title: "Secret API Keys",
path: "/settings/developer/secret-api-keys",
},
{
type: "link",
title: "Workflows",
path: "/settings/developer/workflows",
},
],
},
{
type: "link",
title: "Profile",
path: "/settings/profile",
},
],
},
],
},
]