How to Create an Admin UI Routebeta
betaIn this document, you’ll learn how to create a new route in the admin dashboard.
Overview
You can customize the admin dashboard that Medusa provides to add new routes. This is useful if you want to add new subpages to the admin dashboard, or you want to add new pages that appear in the sidebar as well.
An admin UI route is essentially a React Component created under the src/admin/routes
Copy to Clipboard directory.
This guide explains how to create a new route in the admin dashboard with some examples.
Prerequisites
It’s assumed you already have a Medusa backend with the admin plugin installed before you move forward with this guide. If not, you can follow this documentation page to install a Medusa project.
Furthermore, Admin UI Routes are currently available as a beta feature. So, you must install the beta
Copy to Clipboard version of the @medusajs/admin
Copy to Clipboard and @medusajs/medusa
Copy to Clipboard packages:
(Optional) TypeScript Preparations
Since routes are React components, they should be written in .tsx
Copy to Clipboard or .jsx
Copy to Clipboard files. If you’re using Typescript, you need to make some adjustments to avoid Typescript errors in your Admin files.
This section provides recommended configurations to avoid any TypeScript errors.
These changes may already be available in your Medusa project. They're included here for reference purposes.
First, update your tsconfig.json
Copy to Clipboard with the following configurations:
{
"compilerOptions": {
"target": "es2019",
"module": "commonjs",
"allowJs": true,
"checkJs": false,
"jsx": "react-jsx",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": false,
"strict": false,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/"],
"exclude": [
"dist",
"build",
".cache",
"tests",
"**/*.spec.js",
"**/*.spec.ts",
"node_modules",
".eslintrc.js"
]
}
The important changes to note here are the inclusion of the field "jsx": "react-jsx"
Copy to Clipboard and the addition of "build"
Copy to Clipboard and “.cache”
Copy to Clipboard to exclude
Copy to Clipboard.
The addition of "jsx": "react-jsx"
Copy to Clipboard specified how should TypeScript transform JSX, and excluding build
Copy to Clipboard and .cache
Copy to Clipboard ensures that TypeScript ignores build and development files.
Next, create the file tsconfig.server.json
Copy to Clipboard with the following content:
This is the configuration that will be used to transpile your custom backend code, such as services or entities. The important part is that it excludes src/admin
Copy to Clipboard as that is where your Admin code will live.
Finally, create the file tsconfig.admin.json
Copy to Clipboard with the following content:
This is the configuration that will be used when transpiling your admin code.
Create the Admin UI Route
In this section, you’ll learn the basics of creating an admin UI route.
Step 1: Create File
Custom admin UI routes are added under the src/admin/routes
Copy to Clipboard directory of your Medusa project. The path of the file depends on the path you want the route to be available under. It is based on Next.js 13’s App Router.
For example, if you want the route to be available in the admin dashboard under the path /a/custom
Copy to Clipboard you should create your admin route under the path src/admin/routes/custom/page.tsx
Copy to Clipboard.
All admin routes are prefixed with /a
Copy to Clipboard by default.
You can also create dynamic routes. For example, you can create the route /a/custom/[id]
Copy to Clipboard by creating an admin router under the path src/admin/routes/custom/[id]/page.tsx
Copy to Clipboard.
Step 2: Create React Component in File
For an admin route to be valid, it must default export a React component. There are no restrictions on the content of the React component.
For example, you can create the file src/admin/routes/custom/page.tsx
Copy to Clipboard with the following content:
Step 3: Test it Out
To test your admin UI route, run the following command in the root directory of the Medusa backend project:
This will build your admin and opens a window in your default browser to localhost:7001
Copy to Clipboard. After you log in, if you go to localhost:7001/a/custom
Copy to Clipboard, you’ll find the page you just created.
When using the develop
Copy to Clipboard command, the admin dashboard will run in development mode and will restart whenever you make changes to your admin customizations. This allows you to see changes in the dashboard instantly during your development.
Show Route in Sidebar
You can add your routes into the admin dashboard sidebar by exporting an object of type RouteConfig
Copy to Clipboard import from @medusajs/admin
Copy to Clipboard in the same route file.
The object has one property link
Copy to Clipboard, which is an object having the following properties:
label
Copy to Clipboard: a string indicating the sidebar item’s label of your custom route.icon
Copy to Clipboard: an optional React component that acts as an icon in the sidebar. If none provided, a default icon is used.
For example, you can change the content of the previous route you created to export a config object:
import { RouteConfig } from "@medusajs/admin"
import { CustomIcon } from "../../icons/custom"
const CustomPage = () => {
return (
<div>
This is my custom route
</div>
)
}
export const config: RouteConfig = {
link: {
label: "Custom Route",
icon: CustomIcon,
},
}
export default CustomPage
Retrieve Path Parameters
As mentioned earlier, you can create dynamic routes like /a/custom/[id]
Copy to Clipboard by creating a route file at the path src/admin/routes/custom/[id]/page.tsx
Copy to Clipboard.
To retrieve the path parameter, you can use the useParams hook retrieved from the react-router-dom package.
react-router-dom
Copy to Clipboard is available as one of the @medusajs/admin
Copy to Clipboard dependencies. You can also install it within your project using the following command:
If you're installing it in a plugin with admin customizations, make sure to include it in peerDependencies
Copy to Clipboard.
For example:
Routing Functionalities
If you want to use routing functionalities such as linking to another page or navigating between pages, you can use react-router-dom
Copy to Clipboard's utility hooks and functions.
For example, to add a link to another page:
View react-router-dom’s documentation for other available components and hooks.
Styling Route
Admin UI routes support Tailwind CSS by default.
For example, to customize your custom route:
Querying and Mutating Data
You might need to interact with the Medusa backend from your admin route. To do so, you can utilize the Medusa React package. It contains a collection of queries and mutation built on @tanstack/react-query
Copy to Clipboard that lets you interact with the Medusa backend.
Make sure to also install the Medusa React package first if you’re intending to use it, as explained in the Medusa React guide.
For example, you can retrieve available products and display them in your route:
You can also use medusa-react
Copy to Clipboard to interact with custom endpoints using the createCustomAdminHooks utility function.