2.0.0-rc.4 • Published 6 years ago

@spartacus/schematics v2.0.0-rc.4

Weekly downloads
2,640
License
MIT
Repository
github
Last release
6 years ago

Getting Started

This section is for Spartacus developers and anybody else who works with Spartacus source code. To see the documentation on how to use schematics from a customers perspective, see: https://sap.github.io/spartacus-docs/schematics

Building and using Spartacus Schematics from source

Install angular schematics globally: npm install -g @angular-devkit/schematics-cli. Make sure that Angular CLI is up to date: npm install -g @angular/cli@latest

Prerequisites

Install angular schematics globally: npm install -g @angular-devkit/schematics-cli

Building and testing schematics

  1. To build schematics use yarn build
  2. To run tests use yarn test

Running schematics on separate / new project

  1. Run npm pack in schematics directory. It will generate the spartacus-schematics-x.x.x.tgz file.
  2. Generate a new Angular app (using ng new command) or choose an existing one
  3. 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.tgz and ng 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 really important for the Angular's update mechanism, as it is used to automatically execute the required migration scripts for the current project's version. For more information about this, please check releasing update schematics section.
  • factory - points to the specific migration script.
  • description - a short free-form description field for developers.

  • ng new spartacus-schematics-test and cd spartacus-schematics-test

  • add Spartacus by running e.g. ng add @spartacus/schematics@<version> --baseUrl https://api.c39j2-walkersde1-d4-public.model-t.cc.commerce.ondemand.com/ --baseSite electronics-spa. Note the <version> after ng add @spartacus/schematics. This should be lower than the one you're going to publish. E.g. if developing schematics for Spartacus 3.0, then you should install Spartacus 2.0.
  • create .npmrc in the root of the project and paste the following content to it: @spartacus:registry=http://localhost:4873 to point to the local npm server only for the @spartacus scoped packages. From this moment on, @spartacus scoped packages will use the local npm registry.
  • commit the changes, if any.

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.json is 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 in package.json is set to 3.0.0.
  • also, make sure to bump the peer dependency version - e.g. in storefrontlib's package.json bump the peer dependency for core.
  • To publish the changes, navigate to the projects/schematics folder and run the following: yarn build && npm publish --registry http://localhost:4873

Now create a new angular project:

  • ng new spartacus-update-schematic-test and cd 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 version 1.5 is specified in ng add @spartacus/schematics@1.5.
  • create .npmrc in the root of the project and paste the following content to it: @spartacus:registry=http://localhost:4873 to point to the local npm server only for the @spartacus scope. From this moment on, @spartacus scoped 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 --force flag 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.

NOTE: if verdaccio refuses to publish libraries, and displays an error that says that the lib is already published with the same version, the quickest way around this seems to be this - open nano ~/.config/verdaccio/config.yaml and under packages: '@*/*': sections, comment out the proxy: npmjs line. After doing this, you should be able to publish the packages.

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/schematics and yarn build && npm unpublish @spartacus/schematic --registry http://localhost:4873 --force && npm publish --registry http://localhost:4873
  • alternatively, you can run ./migrations-test.sh (located in scripts/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 the schematics changes, you can run the script with skip argument: migrations-test.sh skip.
  • in the test project:
    • revert the package.json and yarn.lock changes
    • make sure that the version of the @spartacus/schematics package 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/schematics is set to i.e. "^2.0.0". If any change is made, make sure to commit the changes.
    • delete the old node_modules folder and install the dependencies again: rm -rf node_modules/ && yarn
    • run the ng update @spartacus/schematics --force command

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

Component deprecation

Similar to constructor deprecation, projects/schematics/src/migrations/2_0/component-deprecations.ts performs the component migration tasks, for both component *.ts and HTML templates. Usually, a developer does not need to touch this file, and they should rather describe the component deprecation in projects/schematics/src/migrations/2_0/component-deprecations-data.ts. The constant COMPONENT_DEPRECATION_DATA describes the deprecated components.

CSS

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).

Releasing update schematics

This section is for developers who do the release, and it specifies how to manage the versions in projects/schematics/src/migrations/migrations.json.

The migration scripts that are listed here should be executed each time customers perform the automatic upgrade by running ng update @spartacus/schematics --next:

  • migration-v2-validate-01
  • migration-v2-methods-and-properties-deprecations-02
  • migration-v2-constructor-deprecations-03
  • migration-v2-removed-public-api-deprecation-04
  • migration-v2-component-deprecations-05
  • migration-v2-css-06
  • migration-v2-config-deprecations-09

Please bump the version in migration.json only for the migration scripts listed above, and do not change the other script's versions.

This is really important for the Angular's update mechanism, as it is used to automatically execute the required migration scripts for the current project's version. It's also important to note that after we release a Spartacus next.x, or an rc.x version, all the migration scripts that are written after the release have to specify the future release version. E.g. if Spartacus 2.0.0-next.1 has been released, then the new migration scripts (added after it 2.0.0-next.1) should specify the next version (e.g. 2.0.0-next.2). This is required for clients that upgrade frequently and it will make angular to run only the new migration scripts for them, avoiding the same scripts to run twice. However, there are exceptions from this rule - as we have data-driven generic mechanisms for e.g. constructor deprecation, we have to bump the version in migrations.json for those scripts.

4.3.8

3 years ago

4.3.6

3 years ago

4.3.7

3 years ago

4.3.4

4 years ago

4.3.5

3 years ago

4.3.2

4 years ago

4.3.3

4 years ago

3.4.10

4 years ago

3.4.9

4 years ago

4.3.1

4 years ago

3.4.8

4 years ago

4.3.0

4 years ago

4.3.0-RC.0

4 years ago

3.4.7

4 years ago

4.2.0-RC.0

4 years ago

4.2.1

4 years ago

4.2.0

4 years ago

3.4.6

4 years ago

4.1.1

4 years ago

3.3.4

4 years ago

3.2.6

4 years ago

4.0.2

4 years ago

3.4.5

4 years ago

4.1.0

4 years ago

4.1.0-rc.0

4 years ago

4.1.0-next.0

4 years ago

4.0.1

4 years ago

3.2.5

4 years ago

3.1.4

4 years ago

3.4.4

4 years ago

3.0.6

4 years ago

3.3.3

4 years ago

3.4.3

4 years ago

3.4.2

4 years ago

3.0.5

4 years ago

4.0.0

4 years ago

4.0.0-rc.1

4 years ago

4.0.0-rc.0

4 years ago

3.4.1

4 years ago

3.2.4

4 years ago

3.3.2

4 years ago

3.4.0

4 years ago

3.1.3

4 years ago

3.4.0-rc.0

4 years ago

3.2.3

4 years ago

3.3.1

4 years ago

3.0.4

4 years ago

3.3.0

5 years ago

2.1.9

5 years ago

3.3.0-rc.1

5 years ago

3.2.2

5 years ago

3.2.1

5 years ago

3.3.0-rc.0

5 years ago

3.2.0

5 years ago

2.1.8

5 years ago

3.2.0-rc.1

5 years ago

2.1.7

5 years ago

3.1.2

5 years ago

3.2.0-rc.0

5 years ago

3.1.1

5 years ago

3.2.0-next.2

5 years ago

3.2.0-next.1

5 years ago

3.1.0

5 years ago

3.2.0-next.0

5 years ago

3.1.0-rc.2

5 years ago

3.1.0-rc.1

5 years ago

3.0.3

5 years ago

3.1.0-rc.0

5 years ago

3.0.2

5 years ago

3.1.0-next.0

5 years ago

2.1.6

5 years ago

3.0.1

5 years ago

2.0.9

5 years ago

3.0.0

5 years ago

2.1.5

5 years ago

3.0.0-rc.4

5 years ago

3.0.0-rc.3

5 years ago

3.0.0-rc.2

5 years ago

3.0.0-rc.1

5 years ago

2.1.4

5 years ago

3.0.0-rc.0

5 years ago

2.1.3

5 years ago

2.1.2

5 years ago

3.0.0-next.6

5 years ago

3.0.0-next.5

5 years ago

3.0.0-next.4

5 years ago

3.0.0-next.3

5 years ago

3.0.0-next.2

5 years ago

3.0.0-next.1

5 years ago

2.1.1

5 years ago

3.0.0-next.0

5 years ago

2.1.0

5 years ago

2.0.8

5 years ago

2.1.0-rc.0

5 years ago

2.0.7

5 years ago

2.1.0-next.1

5 years ago

2.1.0-next.0

5 years ago

2.0.6

5 years ago

1.4.4

5 years ago

1.5.9

5 years ago

2.0.5

5 years ago

2.0.4

5 years ago

1.5.8

5 years ago

2.0.3

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

1.5.7

5 years ago

1.4.3

5 years ago

2.0.0

5 years ago

2.0.0-rc.4

6 years ago

2.0.0-rc.3

6 years ago

1.5.6

6 years ago

2.0.0-rc.2

6 years ago

1.5.5

6 years ago

2.0.0-rc.1

6 years ago

1.5.4

6 years ago

2.0.0-rc.0

6 years ago

2.0.0-next.7

6 years ago

2.0.0-next.6

6 years ago

2.0.0-next.5

6 years ago

2.0.0-next.4

6 years ago

1.5.3

6 years ago

1.5.2

6 years ago

1.4.2

6 years ago

2.0.0-next.3

6 years ago

2.0.0-next.2

6 years ago

2.0.0-next.1

6 years ago

1.5.1

6 years ago

2.0.0-next.0

6 years ago

1.5.0

6 years ago

1.4.1

6 years ago

1.5.0-RC.0

6 years ago

1.4.0

6 years ago

1.5.0-next.0

6 years ago

1.3.0

6 years ago

0.1.2-beta.1

6 years ago

0.1.2-beta.0

6 years ago

0.1.0-beta.1

6 years ago

0.1.0-beta.0

6 years ago