Files
medusa-store/www/apps/resources/app/admin-widget-injection-zones/page.mdx
2024-12-24 12:29:41 +02:00

245 lines
5.2 KiB
Plaintext

import { Table } from "docs-ui"
import CampaignContent from "../commerce-modules/promotion/admin-widget-zones/_content/campaign.mdx"
import CustomerContent from "../commerce-modules/customer/admin-widget-zones/_content/customer.mdx"
import CustomerGroupContent from "../commerce-modules/customer/admin-widget-zones/_content/customer-group.mdx"
import InventoryContent from "../commerce-modules/inventory/admin-widget-zones/_content/inventory.mdx"
import LoginContent from "../commerce-modules/auth/admin-widget-zones/_content.mdx"
import OrderContent from "../commerce-modules/order/admin-widget-zones/_content/order.mdx"
import PricingContent from "../commerce-modules/pricing/admin-widget-zones/_content.mdx"
import ProductContent from "../commerce-modules/product/admin-widget-zones/_content/product.mdx"
import ProductVariantContent from "../commerce-modules/product/admin-widget-zones/_content/product-variant.mdx"
import ProductCollectionContent from "../commerce-modules/product/admin-widget-zones/_content/product-collection.mdx"
import ProductCategoryContent from "../commerce-modules/product/admin-widget-zones/_content/product-category.mdx"
import PromotionContent from "../commerce-modules/promotion/admin-widget-zones/_content/promotion.mdx"
import ApiKeyContent from "../commerce-modules/api-key/admin-widget-zones/_content.mdx"
import StockLocationContent from "../commerce-modules/stock-location/admin-widget-zones/_content.mdx"
import ProfileContent from "../commerce-modules/user/admin-widget-zones/_content/profile.mdx"
import RegionContent from "../commerce-modules/region/admin-widget-zones/_content.mdx"
import ReservationContent from "../commerce-modules/inventory/admin-widget-zones/_content/reservation.mdx"
import ReturnReasonContent from "../commerce-modules/order/admin-widget-zones/_content/return-reason.mdx"
import SalesChannelContent from "../commerce-modules/sales-channel/admin-widget-zones/_content.mdx"
import ShippingProfileContent from "../commerce-modules/fulfillment/admin-widget-zones/_content.mdx"
import StoreContent from "../commerce-modules/store/admin-widget-zones/_content.mdx"
import TaxContent from "../commerce-modules/tax/admin-widget-zones/_content.mdx"
import UserContent from "../commerce-modules/user/admin-widget-zones/_content/user.mdx"
export const metadata = {
title: `Admin Widget Injection Zones`,
}
# {metadata.title}
This documentation page includes the list of injection zones you can add Admin Widgets to.
## Campaign Pages
<CampaignContent />
---
## Customer Pages
<CustomerContent />
---
## Customer Group Pages
<CustomerGroupContent />
---
## Inventory Pages
<InventoryContent />
---
## Login Page
<LoginContent />
---
## Order Pages
<OrderContent />
---
## Price List Pages
<PricingContent />
---
## Product Pages
<ProductContent />
---
## Product Variant Pages
<ProductVariantContent />
---
## Product Collection Pages
<ProductCollectionContent />
---
## Product Category Pages
<ProductCategoryContent />
---
## Promotion Pages
<PromotionContent />
---
## Setting Pages
### API Key Pages
<ApiKeyContent />
### Location Pages
<StockLocationContent />
### Profile Pages
<ProfileContent />
### Region Pages
<RegionContent />
### Reservation Pages
<ReservationContent />
### Return Reason Pages
<ReturnReasonContent />
### Sales Channel Pages
<SalesChannelContent />
### Shipping Profile Pages
<ShippingProfileContent />
### Store Pages
<StoreContent />
### Tax Pages
<TaxContent />
### User Pages
<UserContent />
### Workflow Pages
<Table>
<Table.Header>
<Table.Row>
<Table.HeaderCell className="w-1/3">Injection Zone Name</Table.HeaderCell>
<Table.HeaderCell className="w-1/3">Description</Table.HeaderCell>
<Table.HeaderCell className="w-1/3">Additional Props</Table.HeaderCell>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>
`workflow.list.before`
</Table.Cell>
<Table.Cell>
Added at the top of the workflows list page.
</Table.Cell>
<Table.Cell>
\-
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
`workflow.list.after`
</Table.Cell>
<Table.Cell>
Added at the bottom of the workflows list page.
</Table.Cell>
<Table.Cell>
\-
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
`workflow.details.before`
</Table.Cell>
<Table.Cell>
Added at the top of a workflow execution's details page.
</Table.Cell>
<Table.Cell>
Type `DetailWidgetProps<AdminWorkflowExecution>` imported from `@medusajs/framework/types`
```ts blockStyle="inline"
{
data, // AdminWorkflowExecution object
}
```
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
`workflow.details.after`
</Table.Cell>
<Table.Cell>
Added at the bottom of a workflow execution's details page.
</Table.Cell>
<Table.Cell>
Type `DetailWidgetProps<AdminWorkflowExecution>` imported from `@medusajs/framework/types`
```ts blockStyle="inline"
{
data, // AdminWorkflowExecution object
}
```
</Table.Cell>
</Table.Row>
</Table.Body>
</Table>