Schematics
Note: Spartacus 4.x is no longer maintained. Please upgrade to the latest version.
Note: Spartacus 4.x was tested with SAP Commerce Cloud versions 1905 to 2205. Spartacus 4.x has not been verified to work with (and is not guaranteed to work with) SAP Commerce Cloud 2211 or later releases.
Spartacus schematics allow you to install Spartacus libraries in your project. The following sections describe what the Spartacus schematics do, and also provide information about the various options and commands you can use with the schematics. If you are a developer and are looking for more technical information, see the README in the Spartacus schematics project.
Table of Contents
- Prerequisites
- Adding Spartacus Core Libraries and Features to Your Angular Project
- CMS Component Schematic
- Installing Additional Spartacus Libraries
Prerequisites
Before using Spartacus schematics, ensure that you have all of the necessary prerequisites.
Your Angular development environment should include the following:
- Angular CLI: Version 12.0.5 or later, < 13.
- Yarn: Version 1.15 or later.
- Node.js: Version 14.15 is required. Version 12.x reached end-of-life on April 30, 2022, and is no longer supported by Spartacus. It is strongly recommended that you migrate any existing Spartacus storefronts to Node.js 14 as soon as possible. If there are any issues with Spartacus and Node.js 14, please upgrade to the latest releases. If you continue to experience issues with Node.js 14, create a support ticket with SAP.
Adding Spartacus Core Libraries and Features to Your Angular Project
You can add Spartacus core libraries and features to your Angular project by running the following command from your project root:
ng add @spartacus/schematics@latest
Note: If you are using schematics to set up your Spartacus project for the first time, there are important considerations to be aware of. For example, Spartacus does not support B2C and B2B storefronts running together in a single storefront application. For more information, see Setting Up Your Project Using Schematics.
The following is a description of the various options you can use with the ng add @spartacus/schematics@latest
command:
baseUrl
sets the base URL of your CX OCC back end.baseSite
is a comma-separated list of base site(s) to use with Spartacus.currency
is a comma-separated list of currencies to use in Spartacus.language
is a comma-separated list of languages to use in Spartacus.urlParameters
is a comma-separated list that represents the order of site-context parameters, such as['baseSite', 'language', 'currency']
, for example.occPrefix
sets the OCC API prefix, such as/occ/v2/
, for example.useMetaTags
determines whether or not to configure thebaseUrl
andmediaUrl
in the meta tags fromindex.html
.featureLevel
sets the application feature level. The default value is the same as the version of the Spartacus packages you are working with. For example, thefeatureLevel
for@spartacus/schematics@3.2.0
is3.2
.overwriteAppComponent
overwrites the content ofapp.component.html
. The default value istrue
.pwa
includes progressive web application (PWA) features when building the application.ssr
includes the server-side rendering (SSR) configuration.lazy
installs features with lazy loading configured for each of the feature modules. The default value istrue
.project
allows you to specify the project that you want to configure your Spartacus application in. The default is the workspace default project.interactive
allows you to bypass the schematics prompts and install Spartacus with a predefined set of features.theme
allows you to import the CSS for a built-in theme, such assantorini
. If you do not set a value for this parameter, the default Sparta theme is used.
The following is an example that generates an application that is ready to be used with the electronics storefront, that sets the baseUrl
and the baseSite
, and that also enables server-side rendering:
ng add @spartacus/schematics@latest --baseUrl https://spartacus-demo.eastus.cloudapp.azure.com:8443/ --baseSite=electronics-spa --ssr
Another example is the following, which generates an application that is ready to be used with both an apparel storefront and an electronics storefront, that sets the baseUrl
, baseSite
, currency
, and language
, and also enables server-side rendering:
ng add @spartacus/schematics@latest --baseUrl https://spartacus-demo.eastus.cloudapp.azure.com:8443/ --baseSite=apparel-uk-spa,electronics-spa --currency=gbp,usd --language=uk,en --ssr
This next example bypasses the schematics prompts and installs Spartacus with a predefined set of features:
ng add @spartacus/schematics@latest --baseUrl https://spartacus-demo.eastus.cloudapp.azure.com:8443/ --baseSite=electronics-spa --interactive=false
To see which features are included when you use the --interactive=false
flag, see schema.json.
Additional Commands for Core Libraries and Features
By default, the ng add @spartacus/schematics
command adds only a basic configuration of Spartacus. The following is a description of the commands you can use to extend your application:
ng g @spartacus/schematics:add-pwa
adds a Spartacus-specific PWA module.ng g @spartacus/schematics:add-ssr
adds the SSR configuration.ng g @spartacus/schematics:add-cms-component
generates a CMS component, and adds the CMS component mapping to the specified module, or to a newly-generated module, if no module is specified. For more information, see CMS Component Schematic, below.
How Spartacus Schematics Work
When you run ng add @spartacus/schematics
, the command does the following:
- Adds the required dependencies.
- Sets up Spartacus modules in the project and provides the default configuration. For more information, see Reference App Structure.
- Imports Spartacus styles to
main.scss
. - Adds the
cx-storefront
component to yourapp.component
. - Optionally updates
index.html
with the Spartacus URL endpoints in meta tags. - If the
--pwa
flag is included, it adds PWA service worker support for your project. - If the
--ssr
flag is included, the command does the following:- Adds server-side rendering dependencies.
- Provides additional files that are required for SSR.
CMS Component Schematic
The following is a description of the available options for the CMS component schematic:
--declareCmsModule
specifies which module the newly-generated CMS component is added to. If no module is specified, a new module is generated.--cmsComponentData
, alias--cms
, injects theCmsComponentData
into the new component. By default, this option is set totrue
.--cmsComponentDataModel
, alias--cms-model
, specifies the model class for theCmsComponentData
, such asMyModel
, for example. This argument is required if--cmsComponentData
is set totrue
.--cmsComponentDataModelPath
, alias--cms-model-path
, specifies the import path for theCmsComponentData
. The default is@spartacus/core
.
Aside from these custom options, the add-cms-component
supports almost all options that are available for the Angular component and module schematics. The full list can be seen in this schema.json file.
The following Angular options are not supported:
- Deprecated options.
- The
--module
option for components. If you want to specify an existing module for a component, use--declareCmsModule
. Themodule
option is only applied to the Angularmodule
schematic. - The
--skipImport
option.
Using the ‘add-cms-component’ Schematic
The following are some examples of how the add-cms-component
schematic can be used:
ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel
generates themy-awesome-cms.component.ts
component and themy-awesome-cms.module.ts
module.ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --declareCmsModule=my-cms-path/my-cms
generates themy-awesome-cms.component.ts
component and adds it to the specified CMS mapping formy-cms-path/my-cms.module.ts
.ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --module=app
generates themy-awesome-cms.component.ts
component and themy-awesome-cms.module.ts
module, and imports them to the specifiedapp.module.ts
.ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --module=app --declareCmsModule=my-cms-path/my-cms
generates themy-awesome-cms.component.ts
component and adds it to the specifiedmy-cms-path/my-cms.module.ts
module. It also importsmy-cms.module.ts
to the specifiedapp.module.ts
.
Installing Additional Spartacus Libraries
You need to first install the Spartacus core libraries before you can install additional Spartacus libraries. For more information, see Adding Spartacus Core Libraries and Features to Your Angular Project, above.
Note: To install additional Spartacus libraries using schematics, your app structure needs to match the Spartacus reference app structure. For more information, see Reference App Structure.
Integration Libraries and Feature Libraries
During the initial set up of your storefront using schematics, you have the option to install a number of Spartacus features, which is done by installing the relevant integration or feature libraries. The following is a list of the integration libraries and feature libraries that you can install, along with information about what is included in each package.
@spartacus/asm
includes the Assisted Service Module.@spartacus/cart
includes the Saved Cart, Quick Order, and Cart Import and Export features.@spartacus/cdc
includes the SAP Customer Data Cloud Integration.@spartacus/cds
includes the Intelligent Selling Services for SAP Commerce Cloud Integration.@spartacus/order
includes the Order History, Replenishment Order History, and Cancellations and Returns features.@spartacus/organization
includes the Organization Administration and Order Approval features. Both are required for B2B Commerce Organization to work.@spartacus/product
includes the Bulk Pricing, Variants and Image Zoom features.@spartacus/product-configurator
includes the Configurable Products Integration.@spartacus/qualtrics
includes the Qualtrics Integration.@spartacus/smartedit
includes the SmartEdit Integration.@spartacus/storefinder
includes the Store Locator feature.@spartacus/tracking
includes the Tag Management System feature and the Personalization Integration.@spartacus/user
includes the Account and Profile features. The Account feature contains components such as the login form, and also exposes the general method for getting user details. The Profile feature is responsible for functionality such as closing an account, updating a profile, updating an email, updating a password, resetting a password, and registering. It is highly recommended to install both of these features.
If you do not install a particular integration library or feature library during the initial set up of your storefront, you can always install any of these libraries later on using schematics. The command to install a library is the following:
ng add <package-name>
For example, you can install the @spartacus/asm
library with the following command:
ng add @spartacus/asm
You can also include options when you use the ng add
command, as follows:
lazy
installs features with lazy loading configured for each of the feature modules within the library. The default istrue
.project
allows you to specify the project that you want to configure the Spartacus feature library in. The default is the workspace default project.features
makes it possible to select features without the interactive prompt.
The following is an example of the ng add
command that installs Personalization without the configuration for lazy loading, and without prompting to install any of the other features from the @spartacus/tracking
library:
ng add @spartacus/tracking --lazy false --features="Personalization"