🌟 Welcome to the Commerce Messaging Lightning Web Components Starter Kit! 🛍️
We're excited to take you on an ongoing development journey designed to deliver robust building blocks for crafting agentic commerce experiences within MIAW. Whether you're a customer or partner looking to create a compelling, user-friendly commerce experience, you're in the right place.
While the project is still under active development, we’re committed to gradually releasing the essential components you need. Each release will bring you closer to building a seamless, efficient agentic experience. With our carefully crafted reference components, you'll be empowered to assemble dynamic product recommendations, smooth shopping carts, intuitive checkout flows, and much more. This lets you focus on what truly matters – creating an agentic experience that not only meets but exceeds your users’ expectations.
Join us on this exciting journey as we shape the future of commerce messaging components together. Happy coding and happy commerce building! ✨🚀
As you might expect, this project is organized as an SFDX (Salesforce DX) project. And because this is a project that consists almost exclusively of Lightning Web Components (LWC) intended for use with MIAW Widget, everything essential is thus located in the force-app/main/default/lwc directory.
Installing the components using a Scratch Org
-
Set up your environment. Follow the steps in the Quick Start: Lightning Web Components Trailhead project. The steps include:
- Enable Dev Hub in your Org
- Install Salesforce CLI
- Install Visual Studio Code
- Install the Visual Studio Code Salesforce extensions, including the Lightning Web Components extension
-
If you haven't already done so, authorize your org:
sf org login web --alias demo-org --instance-url "{org-login-url}" -
Clone the repositoty
akasipathy/commerce-messaging-lightning-components:git clone https://github.com/akasipathy/commerce-messaging-lightning-components.git cd commerce-messaging-lightning-components -
Create a scratch org and provide it with an alias (commerce-messaging-components in the command below):
sf org create scratch -f config/project-scratch-def.json -a commerce-messaging-components
-
Push the app to your scratch org:
sf project deploy start
-
Open the scratch org:
sf org open
Optional Installation Instructions
This repository contains several files that are relevant if you want to integrate modern web development tooling to your Salesforce development processes, or to your continuous integration/continuous deployment processes.
Prettier is a code formatter used to ensure consistent formatting across your code base. To use Prettier with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .prettierignore and .prettierrc files are provided as part of this repository to control the behavior of the Prettier formatter.
ESLint is a popular JavaScript linting tool used to identify stylistic errors and erroneous constructs. To use ESLint with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .eslintrc.cjs file is provided as part of this repository to control the behavior of the linting process in the context of Lightning Web Components development.
This repository also comes with a package.json file that makes it easy to set up a pre-commit hook that enforces code formatting and linting by running Prettier and ESLint every time you git commit changes.
To set up the formatting and linting pre-commit hook:
- Install Node.js if you haven't already done so
- Run
npm installin your project's root folder to install the ESLint and Prettier modules (Note: Mac users should verify that Xcode command line tools are installed before running this command.)
Prettier and ESLint will now run automatically every time you commit changes. The commit will fail if linting errors are detected. You can also run the formatting and linting from the command line using the following commands (check out package.json for the full list):
npm run lint
npm run formatOur development workflow is based on working from forks rather than direct branches in the upstream repository. This approach allows each engineer to maintain their own workspace, reduces potential conflicts, and keeps our main repository stable until changes are thoroughly reviewed. We’d like to continue working this way because it provides a clear separation between development and production code while enabling contributors to iterate freely within their own fork before submitting pull requests for integration.
If you work from forks and you see Configuring a Remote For A Fork, then do git fetch upstream && git merge upstream/main.
The components you will find here are purely presentational components for various aspects of a MIAW agentic experience.
| Name/FQN | Description | Application Area |
|---|---|---|
c/commonButton |
Custom button control. |
* |
c/commonLink |
Custom a[href] control with button styling. |
* |
c/commonModal |
Custom lightning/modal that exposes two actions. |
* |
c/commonNumberInput |
Custom input[type=number] control. |
* |
c/productPricing |
Displays pricing information for products. | PDP |
c/productSearchRecommendations |
Displays the product and category recommendations based off the search results | Search |
c/dynamicContentRenderer├──c/productSearchRecommendations |
Content renderer component designed to support a variety of rich experiences, depending on the contentType. When no contentType is provided, it defaults to rendering rich text. | MIAW Text Messaging Bubble |