-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Banner Notification as extension point (#20)
Co-authored-by: Mariam Araujo Betancourt <[email protected]>
- Loading branch information
1 parent
3c903f7
commit 9d25ebb
Showing
27 changed files
with
30,151 additions
and
1 deletion.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
admin-ui-sdk/banner-notification/custom-mass-actions/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# package directories | ||
node_modules | ||
|
||
# build | ||
build | ||
dist | ||
.manifest-dist.yml | ||
|
||
# Config | ||
config.json | ||
.env* | ||
!.env.dist | ||
.aio | ||
|
||
# Adobe I/O console config | ||
console.json | ||
|
||
.idea | ||
.aws.tmp.creds.json | ||
.parcel-cache | ||
.DS_Store | ||
.vscode |
36 changes: 36 additions & 0 deletions
36
admin-ui-sdk/banner-notification/custom-mass-actions/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Adobe Commerce Mass Action Banner Notification Extension Point | ||
|
||
This application demonstrates how to customize Banner Notifications for Mass Actions in the Adobe Commerce Admin using the Admin UI SDK. | ||
|
||
## Overview | ||
|
||
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. | ||
|
||
## Features | ||
|
||
- **Custom Banner Notifications**: Add a custom Banner Notification for mass actions to the selected product or order in the Commerce Admin panel to display a success or error message. | ||
|
||
## Prerequisites | ||
|
||
- Admin UI SDK 1.4.0+ | ||
- Product and/or Order Mass Action extension point registered. | ||
- Adobe Commerce instance with IMS module installed and enabled. | ||
- Adobe Commerce Admin UI SDK installed and enabled. | ||
- Developer console access to the organization on App Builder. | ||
- App Builder project created. | ||
|
||
## Installation | ||
|
||
- Run `npm install` to install the dependencies | ||
- Run `aio auth:login` to login to your Adobe I/O account | ||
- Run `aio app use` (select the correct project and workspace) | ||
- Run `aio app deploy` to deploy the application | ||
|
||
## Local testing | ||
|
||
- Run `aio app run` to start the local development server. | ||
- Create and run a server to redirect to your local application. Refer to the following documentation for more information: [Local Testing](https://developer.adobe.com/commerce/extensibility/admin-ui-sdk/configuration/). | ||
|
||
## Usage | ||
|
||
After installation and configuration, you can access the custom menus and pages from the Commerce Admin panel. |
11 changes: 11 additions & 0 deletions
11
admin-ui-sdk/banner-notification/custom-mass-actions/app.config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
extensions: | ||
commerce/backend-ui/1: | ||
operations: | ||
view: | ||
- type: web | ||
impl: index.html | ||
web: web-src | ||
runtimeManifest: | ||
packages: | ||
CustomMassAction: | ||
license: Apache-2.0 |
8 changes: 8 additions & 0 deletions
8
admin-ui-sdk/banner-notification/custom-mass-actions/extension-manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "banner-notification-custom-mass-action", | ||
"displayName": "Adobe Commerce banner notification custom mass action", | ||
"description": "Adobe Commerce banner norification custom mass action in admin panel", | ||
"platform": "web", | ||
"id": "banner-notification-custom-mass-action", | ||
"version": "1.0.0" | ||
} |
9 changes: 9 additions & 0 deletions
9
admin-ui-sdk/banner-notification/custom-mass-actions/install.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
$schema: http://json-schema.org/draft-07/schema | ||
$id: https://adobe.io/schemas/app-builder-templates/1 | ||
|
||
categories: | ||
- action | ||
- ui | ||
|
||
extensions: | ||
- extensionPointId: commerce/backend-ui/1 |
Oops, something went wrong.