Files
medusa-store/www/docs/content/admin/widgets.md
Shahed Nasser 914d773d3a api-ref: custom API reference (#4770)
* initialized next.js project

* finished markdown sections

* added operation schema component

* change page metadata

* eslint fixes

* fixes related to deployment

* added response schema

* resolve max stack issue

* support for different property types

* added support for property types

* added loading for components

* added more loading

* type fixes

* added oneOf type

* removed console

* fix replace with push

* refactored everything

* use static content for description

* fixes and improvements

* added code examples section

* fix path name

* optimizations

* fixed tag navigation

* add support for admin and store references

* general enhancements

* optimizations and fixes

* fixes and enhancements

* added search bar

* loading enhancements

* added loading

* added code blocks

* added margin top

* add empty response text

* fixed oneOf parameters

* added path and query parameters

* general fixes

* added base path env variable

* small fix for arrays

* enhancements

* design enhancements

* general enhancements

* fix isRequired

* added enum values

* enhancements

* general fixes

* general fixes

* changed oas generation script

* additions to the introduction section

* added copy button for code + other enhancements

* fix response code block

* fix metadata

* formatted store introduction

* move sidebar logic to Tags component

* added test env variables

* fix code block bug

* added loading animation

* added expand param + loading

* enhance operation loading

* made responsive + improvements

* added loading provider

* fixed loading

* adjustments for small devices

* added sidebar label for endpoints

* added feedback component

* fixed analytics

* general fixes

* listen to scroll for other headings

* added sample env file

* update api ref files + support new fields

* fix for external docs link

* added new sections

* fix last item in sidebar not showing

* move docs content to www/docs

* change redirect url

* revert change

* resolve build errors

* configure rewrites

* changed to environment variable url

* revert changing environment variable name

* add environment variable for API path

* fix links

* fix tailwind settings

* remove vercel file

* reconfigured api route

* move api page under api

* fix page metadata

* fix external link in navigation bar

* update api spec

* updated api specs

* fixed google lint error

* add max-height on request samples

* add padding before loading

* fix for one of name

* fix undefined types

* general fixes

* remove response schema example

* redesigned navigation bar

* redesigned sidebar

* fixed up paddings

* added feedback component + report issue

* fixed up typography, padding, and general styling

* redesigned code blocks

* optimization

* added error timeout

* fixes

* added indexing with algolia + fixes

* fix errors with algolia script

* redesign operation sections

* fix heading scroll

* design fixes

* fix padding

* fix padding + scroll issues

* fix scroll issues

* improve scroll performance

* fixes for safari

* optimization and fixes

* fixes to docs + details animation

* padding fixes for code block

* added tab animation

* fixed incorrect link

* added selection styling

* fix lint errors

* redesigned details component

* added detailed feedback form

* api reference fixes

* fix tabs

* upgrade + fixes

* updated documentation links

* optimizations to sidebar items

* fix spacing in sidebar item

* optimizations and fixes

* fix endpoint path styling

* remove margin

* final fixes

* change margin on small devices

* generated OAS

* fixes for mobile

* added feedback modal

* optimize dark mode button

* fixed color mode useeffect

* minimize dom size

* use new style system

* radius and spacing design system

* design fixes

* fix eslint errors

* added meta files

* change cron schedule

* fix docusaurus configurations

* added operating system to feedback data

* change content directory name

* fixes to contribution guidelines

* revert renaming content

* added api-reference to documentation workflow

* fixes for search

* added dark mode + fixes

* oas fixes

* handle bugs

* added code examples for clients

* changed tooltip text

* change authentication to card

* change page title based on selected section

* redesigned mobile navbar

* fix icon colors

* fix key colors

* fix medusa-js installation command

* change external regex in algolia

* change changeset

* fix padding on mobile

* fix hydration error

* update depedencies
2023-08-15 18:07:54 +03:00

1292 lines
20 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 'How to Create an Admin Widget'
description: 'Learn about what Admin widgets are and how you can create your own.'
addHowToData: true
badge:
variant: orange
text: beta
---
In this document, you will learn about what Admin widgets are and how you can create your own.
## Overview
Admin Widgets are custom React components that developers create to be injected into predetermined injection zones across the Medusa Admin dashboard.
Widgets allow you to customize the admin dashboard by providing merchants with new features. For example, you can add a widget on the order details page that shows payment details retrieved from Stripe.
This guide explains the available injection zones and how to create an admin widget.
---
## Injection Zones
Injection zones are areas in the admin that you can add widgets into. Widgets can only be added into these areas.
There are different types of injection zones, and the type affects where the Widget is injected. For the different domains such as `product`, `order`, and `customer` there are `list` and `details` zones.
Below is a full list of injection zones:
:::note
You can learn more about the additional props in the Props section.
:::
<table class="reference-table">
<thead>
<tr>
<th>
Injection Zone Name
</th>
<th>
Description
</th>
<th>
Additional Props
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
`order.list.before`
</td>
<td>
Added at the top of the orders list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`order.list.after`
</td>
<td>
Added at the bottom of the order list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`order.details.before`
</td>
<td>
Added at the top of the order details page
</td>
<td>
Type `OrderDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
order, // Order object
}
```
</td>
</tr>
<tr>
<td>
`order.details.after`
</td>
<td>
Added at the end of the order details page
</td>
<td>
Type `OrderDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
order, // Order object
}
```
</td>
</tr>
<tr>
<td>
`draft_order.list.before`
</td>
<td>
Added at the top of the draft orders list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`draft_order.list.after`
</td>
<td>
Added at the bottom of the draft orders list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`draft_order.details.before`
</td>
<td>
Added at the top of the draft order details page
</td>
<td>
Type `DraftOrderDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
draftOrder, // DraftOrder object
}
```
</td>
</tr>
<tr>
<td>
`draft_order.details.after`
</td>
<td>
Added at the bottom of the draft order details page
</td>
<td>
Type `DraftOrderDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
draftOrder, // DraftOrder object
}
```
</td>
</tr>
<tr>
<td>
`customer.list.before`
</td>
<td>
Added at the top of the customers list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`customer.list.after`
</td>
<td>
Added at the bottom of the customers list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`customer.details.before`
</td>
<td>
Added at the top of the customer details page
</td>
<td>
Type `CustomerDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
customer, // Customer object
}
```
</td>
</tr>
<tr>
<td>
`customer.details.after`
</td>
<td>
Added at the bottom of the customer details page
</td>
<td>
Type `CustomerDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
customer, // Customer object
}
```
</td>
</tr>
<tr>
<td>
`customer_group.list.before`
</td>
<td>
Added at the top of the customer groups list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`customer_group.list.after`
</td>
<td>
Added at the bottom of the customer groups list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`customer_group.details.before`
</td>
<td>
Added at the top of the customer group details page
</td>
<td>
Type `CustomerGroupDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
customerGroup, // CustomerGroup object
}
```
</td>
</tr>
<tr>
<td>
`customer_group.details.after`
</td>
<td>
Added at the bottom of the customer group details page
</td>
<td>
Type `CustomerGroupDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
customerGroup, // CustomerGroup object
}
```
</td>
</tr>
<tr>
<td>
`product.list.before`
</td>
<td>
Added at the top of the product list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`product.list.after`
</td>
<td>
Added at the bottom of the products list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`product.details.before`
</td>
<td>
Added at the top of the product details page
</td>
<td>
Type `ProductDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
product, // Product object
}
```
</td>
</tr>
<tr>
<td>
`product.details.after`
</td>
<td>
Added at the bottom of the product details page
</td>
<td>
Type `ProductDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
product, // Product object
}
```
</td>
</tr>
<tr>
<td>
`product_collection.list.before`
</td>
<td>
Added at the top of the product collections list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`product_collection.list.after`
</td>
<td>
Added at the bottom of the product collections list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`product_collection.details.before`
</td>
<td>
Added at the top of the product collection details page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`product_collection.details.after`
</td>
<td>
Added at the bottom of the product collections list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`price_list.list.before`
</td>
<td>
Added at the top of the “price list” list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`price_list.list.after`
</td>
<td>
Added at the bottom of the “price list” list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`price_list.details.before`
</td>
<td>
Added at the top of the “price list” details page
</td>
<td>
Type `PriceListDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
priceList, // PriceList object
}
```
</td>
</tr>
<tr>
<td>
`price_list.details.after`
</td>
<td>
Added at the bottom of the “price list” details page
</td>
<td>
Type `PriceListDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
priceList, // PriceList object
}
```
</td>
</tr>
<tr>
<td>
`discount.list.before`
</td>
<td>
Added at the top of the discounts list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`discount.list.after`
</td>
<td>
Added at the bottom of the discounts list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`discount.details.before`
</td>
<td>
Added at the top of the discounts details page
</td>
<td>
Type `DiscountDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
discount, // Discount object
}
```
</td>
</tr>
<tr>
<td>
`discount.details.after`
</td>
<td>
Added at the bottom of the discount details page
</td>
<td>
Type `DiscountDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
discount, // Discount object
}
```
</td>
</tr>
<tr>
<td>
`gift_card.list.before`
</td>
<td>
Added at the top of the gift cards list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`gift_card.list.after`
</td>
<td>
Added at the bottom of the gift cards list page
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`gift_card.details.before`
</td>
<td>
Added at the top of the gift card details page
</td>
<td>
Type `GiftCardDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
giftCard, // Product object
}
```
</td>
</tr>
<tr>
<td>
`gift_card.details.after`
</td>
<td>
Added at the bottom of the gift card details page
</td>
<td>
Type `GiftCardDetailsWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
giftCard, // Product object
}
```
</td>
</tr>
<tr>
<td>
`custom_gift_card.before`
</td>
<td>
Added at the top of the custom gift card page
</td>
<td>
Type `GiftCardCustomWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
giftCard, // GiftCard object
}
```
</td>
</tr>
<tr>
<td>
`custom_gift_card.after`
</td>
<td>
Added at the bottom of the custom gift card page
</td>
<td>
Type `GiftCardCustomWidgetProps` imported from `@medusajs/admin`
<!-- eslint-skip -->
```ts noCopy noReport
{
giftCard, // GiftCard object
}
```
</td>
</tr>
<tr>
<td>
`login.before`
</td>
<td>
Added before the login form
</td>
<td>
\-
</td>
</tr>
<tr>
<td>
`login.after`
</td>
<td>
Added after the login form
</td>
<td>
\-
</td>
</tr>
</tbody>
</table>
---
## Widget Requirements
A Widget must adhere to a set of criteria that determines if it is valid for injection. These are:
1. All widget files must be placed in the folder `/src/admin/widgets` in your backend directory.
2. A widget file must have a valid React component as its default export.
3. A widget file must export a config object of type `WidgetConfig` imported from `@medusajs/admin`.
### WidgetConfig
`WidgetConfig` is used to determine the configurations of the widget, mainly the injection zones. Its an object that accepts the property `zone`, which can be a single or an array of injection zone strings. For example:
```ts
{
zone: "product.details.after"
}
```
---
## How to Create a Widget
In this section, youll learn how to create an admin widget.
### Prerequisites
Its 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](../create-medusa-app.mdx) to install a Medusa project.
Furthermore, Admin Widgets are currently available as a beta feature. So, you must install the `beta` version of the `@medusajs/admin` and `@medusajs/medusa` packages:
```bash npm2yarn
npm install @medusajs/admin@beta @medusajs/medusa@beta
```
### (Optional) TypeScript Preparations
Since Widgets are React components, they should be written in `.tsx` or `.jsx` files. If youre 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.
:::note
These changes may already be available in your Medusa project. They're included here for reference purposes.
:::
First, update your `tsconfig.json` with the following configurations:
```json title=tsconfig.json
{
"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"` and the addition of `"build"` and `“.cache”` to `exclude`.
The addition of `"jsx": "react-jsx"` specified how should TypeScript transform JSX, and excluding `build` and `.cache` ensures that TypeScript ignores build and development files.
Next, create the file `tsconfig.server.json` with the following content:
```json title=tsconfig.server.json
{
"extends": "./tsconfig.json",
"compilerOptions": {
/* Emit a single file with source maps instead of having a separate file. */
"inlineSourceMap": true
},
"exclude": ["src/admin", "**/*.spec.js"]
}
```
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` as that is where your Admin code will live.
Finally, create the file `tsconfig.admin.json` with the following content:
```json title=tsconfig.admin.json
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "esnext"
},
"include": ["src/admin"],
"exclude": ["**/*.spec.js"]
}
```
This is the configuration that will be used when transpiling your admin code.
### (Optional) Update Scripts in package.json
You can optionally update the following scripts in `package.json` to make your development process easier:
```json title=package.json
{
// ...
"scripts": {
"clean": "cross-env ./node_modules/.bin/rimraf dist",
"build": "cross-env npm run clean && npm run build:server && npm run build:admin",
"build:server": "cross-env npm run clean && tsc -p tsconfig.server.json",
"build:admin": "cross-env medusa-admin build",
"watch": "cross-env tsc --watch",
"test": "cross-env jest",
"seed": "cross-env medusa seed -f ./data/seed.json",
"start": "cross-env npm run build && medusa start",
"start:custom": "cross-env npm run build && node --preserve-symlinks index.js",
"dev": "cross-env npm run build:server && medusa develop"
},
// ...
}
```
:::note
If you have `autoRebuild` enabled in the options of `@medusajs/admin`, you shouldnt include `npm run build:admin` in the `build` script. It will lead to the admin being built twice during development.
:::
### Create the Admin Widget
To create a new admin widget, start by creating the folder `src/admin/widgets`. This is where your widgets must be located, as explained in the Widgets Requirements section.
Then, create the file `src/admin/widgets/product-widget.tsx` with the following content:
```tsx title=src/admin/widgets/product-widget.tsx
import type { WidgetConfig } from "@medusajs/admin"
const ProductWidget = () => {
return (
<div>
<h1>Product Widget</h1>
</div>
)
}
export const config: WidgetConfig = {
zone: "product.details.after",
}
export default ProductWidget
```
This file creates a React Component `ProductWidget` which renders an H1 header. This React Component is the default export in the file, which is one of the Widgets Requirements.
You also export the object `config` of type `WidgetConfig`, which is another widget requirement. It indicates that the widget must be injected in the `product.details.after` zone.
To test out your widget, run the following command in the root backend directory:
```bash
npx @medusajs/medusa-cli@latest develop
```
This command will build your backend and admin, then runs the backend.
Open `localhost:7001` in your browser and log in. Then, go to the details page of any product. You should now see your widget at the bottom of the page.
Try making any changes to the component. The development server will hot-reload and your widget will be updated immediately.
### Widget Props
Every widget receives props of the type `WidgetProps`, which includes the `notify` prop. The `notify` prop is an object that includes the following attributes:
- `success`: a function that can be used to show a success message.
- `error`: a function that can be used to show an error message.
- `warn`: a function that can be used to show a warning message.
- `info`: a function that can be used to show an info message.
In addition, some injection zones provide additional props specific to the context of the page. For example, widgets in the `product.details.after` zone will also receive a `product` prop, which is an object holding the data of the product being viewed.
You can learn about what additional props each injection zone may receive in the Injection Zone section.
For example, you can modify the widget you created to show the title of the product:
<!-- eslint-disable max-len -->
```tsx title=src/admin/widgets/product-widget.tsx
import type {
WidgetConfig,
ProductDetailsWidgetProps,
} from "@medusajs/admin"
const ProductWidget = ({
product,
notify,
}: ProductDetailsWidgetProps) => {
return (
<div className="bg-white p-8 border border-gray-200 rounded-lg">
<h1>Product Widget {product.title}</h1>
<button
className="bg-black rounded p-1 text-white"
onClick={() => notify.success("success", "You clicked the button!")}
>
Click me
</button>
</div>
)
}
export const config: WidgetConfig = {
zone: "product.details.after",
}
export default ProductWidget
```
---
## Styling your Widget
Admin Widgets support [Tailwind CSS](https://tailwindcss.com/) out of the box.
For example, you can update the widget you created earlier to use Tailwind CSS classes:
<!-- eslint-disable max-len -->
```tsx title=src/admin/widgets/product-widget.tsx
import type {
WidgetConfig,
} from "@medusajs/admin"
const ProductWidget = () => {
return (
<div
className="bg-white p-8 border border-gray-200 rounded-lg">
<h1>Product Widget</h1>
</div>
)
}
export const config: WidgetConfig = {
zone: "product.details.after",
}
export default ProductWidget
```
---
## Routing Functionalities
If you want to navigate to other pages, link to other pages, or use other routing functionalities, you can use [react-router-dom](https://reactrouter.com/en/main) package.
:::note
`react-router-dom` is available as one of the `@medusajs/admin` dependencies. You can also install it within your project using the following command:
```bash npm2yarn
npm install react-router-dom
```
If you're installing it in a plugin with admin customizations, make sure to include it in `peerDependencies`.
:::
For example:
<!-- eslint-disable max-len -->
```tsx title=src/admin/widgets/product-widget.tsx
import type { WidgetConfig } from "@medusajs/admin"
import { Link } from "react-router-dom"
const ProductWidget = () => {
return (
<div
className="bg-white p-8 border border-gray-200 rounded-lg">
<h1>Product Widget</h1>
<Link to={"/a/orders"}>
View Orders
</Link>
</div>
)
}
export const config: WidgetConfig = {
zone: "product.details.after",
}
export default ProductWidget
```
View [react-router-doms documentation](https://reactrouter.com/en/main) for other available components and hooks.
---
## Querying and Mutating Data
You will most likely need to interact with the Medusa backend from your Widgets. To do so, you can utilize the Medusa React package. It contains a collection of queries and mutation built on `@tanstack/react-query` that lets you interact with the Medusa backend.
:::note
Make sure to also install the Medusa React package first if youre intending to use it, as explained in the [Medusa React guide](../medusa-react/overview.mdx).
:::
For example, you can modify the widget you created to retrieve the tags of a product from the Medusa backend:
<!-- eslint-disable max-len -->
```tsx title=src/admin/widgets/product-widget.tsx
import type { ProductDetailsWidgetProps, WidgetConfig } from "@medusajs/admin"
import { useAdminProductTags } from "medusa-react"
const ProductWidget = ({ product }: ProductDetailsWidgetProps) => {
const { product_tags } = useAdminProductTags({
id: product.tags.map((tag) => tag.id),
limit: 10,
offset: 0,
})
return (
<div className="bg-white p-8 border border-gray-200 rounded-lg">
<h3 className="text-lg font-medium mb-4">Product Tags</h3>
<div className="flex flex-wrap">
{product_tags?.map((tag) => (
<span
key={tag.id}
className="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs mr-2 mb-2"
>
{tag.value}
</span>
))}
</div>
</div>
)
}
export const config: WidgetConfig = {
zone: "product.details.after",
}
export default ProductWidget
```
### Custom Endpoints
You can also use `medusa-react` to interact with custom endpoints using the [createCustomAdminHooks utility function](../medusa-react/overview.mdx#custom-hooks).
---
## See Also
- [How to create admin UI routes](./routes.md)
- [Create a plugin for your admin customizations](../development/plugins/create.mdx)