App UI registration
Your app must be correctly configured with Adobe App Registry to use the Admin UI SDK to create a custom UI in Commerce. You must perform the following steps before submitting your app to be published.
Add or update the install.yml
file
Create an install.yml
file in the root of your project.
Make sure you target the correct extensionPointId
: commerce/backend-ui/1
Copied to your clipboard$schema: http://json-schema.org/draft-07/schema$id: https://adobe.io/schemas/app-builder-templates/1categories:- action- uiextensions:- extensionPointId: commerce/backend-ui/1
Create or update the extension-manifest.json
file
Create or update your project extension-manifest.json
file so that it is similar to the following:
Copied to your clipboard{"name": "commerce-first-app","displayName": "Commerce First App on App Builder","description": "Commerce First App on App Builder","platform": "web","id": "commerce-first-app","version": "1.0.0"}
Add an ExtensionRegistration
component
Create an ExtensionRegistration
React component that registers the menu configuration in the App Registry. Use the adobe/uix-sdk
with the adobe-uix-guest
dependency. The UI Extensibility Getting Started guide describes this process further.
Add the
uix-guest
dependency in thepackage.json
.Copied to your clipboard"@adobe/uix-guest": "^0.8.3"Run
npm install
.Copied to your clipboardnpm installCreate an
ExtensionRegistration.js
file as follows:Copied to your clipboardimport { register } from '@adobe/uix-guest';export default function ExtensionRegistration() {init().catch(console.error);return <></>;}const extensionId = 'commerce-first-app'const init = async () => {await register({id: extensionId,methods: {...}})}
You must populate the methods
section with calls to fetch menus, pages, and other entities to be displayed in the Admin. Extension Points provides reference information and examples.
Update the App.js
routing
Add the following route to your App.js
file to define the correct routing to your app:
Copied to your clipboard<Route path={'index.html'} element={<ExtensionRegistration />} />
Make sure that your main page is correctly routed to the index. Here is an example of the first app routing in the App.js
component:
Copied to your clipboard<ErrorBoundary onError={onError} FallbackComponent={fallbackComponent}><BrowserRouter><Provider theme={lightTheme} colorScheme={'light'}><Routes><Route path={'index.html'} element={<ExtensionRegistration />} /><Route index element={<MainPage runtime={props.runtime} ims={props.ims} />} /></Routes></Provider></BrowserRouter></ErrorBoundary>
Update the app.config.yaml
file
Update the app.config.yaml
configuration file as follows:
Copied to your clipboardextensions:commerce/backend-ui/1:$include: ext.config.yaml
This file now declares extensions and redirects to an ext.config.yaml
file.
Add or update the ext.config.yaml
Your extension configuration file should look like this:
Copied to your clipboardoperations:view:- type: webimpl: index.htmlactions: actionsweb: web-srcruntimeManifest:packages:SampleExtension:license: Apache-2.0actions:
Complete this file with the actions from your app.