@spartacus/schematics v2.0.0-next.0
Getting Started
Spartacus schematics allows you to install Spartacus libraries in your project
Adding Spartacus libraries to your Angular project
Run the following command from your project root:
ng add @spartacus/schematics
Available options
baseUrl: Base url of your CX OCC backendbaseSite: Name of your base siteuseMetaTags: Whether or not to configure baseUrl and mediaUrl in the meta tags fromindex.htmlfeatureLevel: Application feature level. (default: 1.3)overwriteAppComponent: Overwrite content of app.component.html file. (default: false)pwa: Include PWA features while constructing application.ssr: Include Server-side Rendering configuration.
Other commands
By defaut ng add @spartacus/schematics will add only basic spartacus configuration. You are able extend application with features like PWA or SSR with commands listed below:
ng g @spartacus/schematics:add-pwa- adds Spartacus-specific PWA moduleng g @spartacus/schematics:add-ssr- adds server-side rendering configurationng g @spartacus/schematics:add-cms-component- generates a cms component, and adds the CMS component mapping to the specified module (or generates a new module). For more see CMS component schematic
Steps performed by Spartacus schematics
- Add required dependencies
- Import Spartacus modules in app.module and setup default configuration
- Import Spartacus styles to main.scss
- Add
cx-storefrontcomponent to your app.component - (Optionally) update index.html with Spartacus URL endpoints in meta tags
- If
--pwaflag included:- Add PWA/ServiceWorker support for your project
- If
--ssrflag included:- Add ssr dependencies
- Provide additional files required for SSR
CMS component schematic
Available options for CMS component schematic
The following options are available:
--declareCmsModule- specifies to which module to add the newly generated CMS component. If omitted, a new module is generated.--cmsComponentData, alias--cms- inject the CmsComponentData in the new component. By default it is true--cmsComponentDataModel, alias--cms-model- Specify the model class for the CmsComponentData, e.g. MyModel. This argument is required if --cmsComponentData is true.--cmsComponentDataModelPath,--cms-model-path- Specify the import path for the CmsComponentData. Default is @spartacus/core.
Besides the custom options, the add-cms-component supports almost all options that are available for the Angular's component and module schematics. The full list can be seen here.
The following Angular's options are not supported:
- deprecated options.
- --module option for component - if you want to specify an existing module for the component, use --declareCmsModule. The module option is only applied to the Angular's module schematic.
- --skipImport option.
Examples
Here are some examples how the add-cms-component schematic can be used:
ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel- generates my-awesome-cms.component.ts component and my-awesome-cms.module.ts moduleng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --declareCmsModule=my-cms-path/my-cms- generates my-awesome-cms.component.ts and adds it to the specified my-cms-path/my-cms.module.ts.'s CMS mapping.ng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --module=app- generates my-awesome-cms.component.ts component, my-awesome-cms.module.ts module and imports it to the specified app.module.tsng g @spartacus/schematics:add-cms-component myAwesomeCms --cms-model=MyModel --module=app --declareCmsModule=my-cms-path/my-cms- generates my-awesome-cms.component.ts component and adds it to the specified my-cms-path/my-cms.module.ts module. It also imports my-cms.module.ts to the specified app.module.ts
Building and using Spartacus Schematics from source
This section is for Spartacus developers and anybody else who works with Spartacus source code.
Prerequisites
Install angular schematics globally: npm install -g @angular-devkit/schematics-cli
Building and testing schematics
- To build schematics use
yarn build - To run tests use
yarn test
Running schematics on separate / new project
- Run
npm packin schematics directory. It will generate thespartacus-schematics-x.x.x.tgzfile. - Generate a new Angular app (using
ng newcommand) or choose an existing one - Install and run schematics in your app using either:
ng add path-to-file/spartacus-schematics-x.x.x.tgz(it will execute default schematics)yarn add path-to-file/spartacus-schematics-x.x.x.tgzandng g @spartacus/schematics:add-spartacus
Developing update schematics
The update schematic structure
The projects/schematics/src/migrations/migrations.json file contains all migrations for all Spartacus versions:
- name property is important for developers to quickly understand what the migration script is doing. By convention, the migration name should follow
migration-v<version>-<migration-feature-name>-<sequence-number>pattern, where:- version should indicate for which Spartacus version the migration is intended.
- migration-feature-name is a short name that describes what the migration is doing.
- sequence-number is the sequence number in which the migrations should be executed
- An example is migration-v2-update-cms-component-state-02.
- version is important for the Angular's update mechanism, as it is used to automatically execute the required migration scripts for the current project.
- factory - points to the specific migration script.
- description - a short free-form description field for developers.
Testing update schematic
The best way to test an unpublished update schematic is to publish it to a local npm registry.
To setup a local npm registry, we're going to use verdaccio. To set it up, do the following:
- install it:
npm install --global verdaccio - run it in a new terminal tab / window:
verdaccio - create an npm user:
npm adduser --registry http://localhost:4873. This is only needed when setting up verdaccio for the first time.
In the project in which you are developing the update schematic:
- make sure that the major version number in
package.jsonis higher than it was. E.g. if developing an update schematic that's going to update Spartacus from v2 to v3, then make sure that the version inpackage.jsonis set to3.0.0. - also, make sure to bump the peer dependency version - e.g. in storefrontlib's
package.jsonbump the peer dependency for core. - To publish the changes, navigate to the
projects/schematicsfolder and run the following:yarn build && npm publish --registry http://localhost:4873
Now create a new angular project:
ng new spartacus-update-schematic-testandcd spartacus-update-schematic-test- add Spartacus by running e.g.
ng add @spartacus/schematics@1.5 --baseUrl https://storefront.c39j2-walkersde1-d4-public.model-t.cc.commerce.ondemand.com --baseSite electronics-spa. Note that the version1.5is specified inng add @spartacus/schematics@1.5. - create
.npmrcin the root of the project and paste the following content to it:@spartacus:registry=http://localhost:4873to point to the local npm server only for the@spartacusscope. From this moment on,@spartacusscoped packages will use the local npm registry. - commit the changes, if any.
- run the following update command
ng update @spartacus/schematics. If there's an error about the unresolved peer dependencies, you can append--forceflag just to quickly test something out, but this error should not appear when executing the update schematics without the flag. You should see your update commands executed now.
Iterative development
When doing iterative development of the update schematic, it's for the best to do the following before testing the changes:
- for the schematics library: unpublish the previous version and publish the new schematic code -
cd projects/schematicsandyarn build && npm unpublish @spartacus/schematic --registry http://localhost:4873 --force && npm publish --registry http://localhost:4873 - alternatively, you can run
./migrations-test.sh(located inscripts/migrations-test.sh) script which will build all the relevant libs, unpublish the old versions and publish the new versions to the local npm registry. If you want to skip building of all the libs and just build and publish theschematicschanges, you can run the script withskipargument:migrations-test.sh skip. - in the test project:
- revert the
package.jsonandyarn.lockchanges - make sure that the version of the
@spartacus/schematicspackage is lower than the currently developed one. E.g. if you are developing an update schematic for v3, make sure that the version of@spartacus/schematicsis set to i.e."^2.0.0". If any change is made, make sure to commit the changes. - delete the old
node_modulesfolder and install the dependencies again:rm -rf node_modules/ && yarn - run the
ng update @spartacus/schematics --forcecommand
- revert the
How to write update schematics
Validations
If some validations are required to be ran before actually upgrading the Spartacus version, the "migration script" located in projects/schematics/src/migrations/2_0/validate.ts can be used.
Constructor deprecation
The projects/schematics/src/migrations/2_0/constructor-deprecations.ts performs the constructor migration tasks. Usually, a developer does not need to touch this file, but they should rather describe the constructor deprecation in projects/schematics/src/migrations/2_0/constructor-deprecation-data.ts. The constant CONSTRUCTOR_DEPRECATION_DATA describes the deprecated constructor and has addParams and removeParams properties in which you can specify which parameters should be added or removed, respectively.
Commenting code
Another common case is to place a comment in customer's code base, describing what should they do in order to upgrade to a new Spartacus version. We should do this only in cases where upgrading manually is easy, but writing a migration script would be too complex.
The projects/schematics/src/shared/utils/file-utils.ts#insertCommentAboveIdentifier method will add comment above the specified identifier TypeScript node.
Some examples:
- adding a comment above the removed API method, guiding customers which method they can use instead.
- adding a comment above the Ngrx action in which we changed parameters
HTML and CSS
To handle HTML changes (such as the DOM structure changes), you can use projects/schematics/src/shared/utils/file-utils.ts#insertHtmlComment method, where you will provide a Spartacus component selector, above which the schematic will insert a comment.
To handle CSS changes, we are printing a link to the CSS docs, where customers can look up which CSS selectors have changed between Spartacus versions. For this reason, if making a change to a CSS selector, please update this docs. (link to follow).
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago