بدون توضیح

Michael Bromley c62f2b7d0b chore: Test multiple DBs in CI e2e tests 6 سال پیش
.github c62f2b7d0b chore: Test multiple DBs in CI e2e tests 6 سال پیش
docs f8060b5544 feat(testing): Modularize DB support for e2e tests 6 سال پیش
e2e-common c62f2b7d0b chore: Test multiple DBs in CI e2e tests 6 سال پیش
packages c62f2b7d0b chore: Test multiple DBs in CI e2e tests 6 سال پیش
scripts 66cae18e4e chore: Add ui-devkit to verdaccio publish script 6 سال پیش
.editorconfig d2d77d20d3 chore: Set up root linting & formatting on commit 7 سال پیش
.gitignore b46d201e8a feat(docs): Re-organize plugin API docs & plugins guide 6 سال پیش
.graphqlconfig 566706262f chore: Fix graphqlconfig path to admin-ui 6 سال پیش
.lintstagedrc.json ffc8bc86ca chore: Re-work build, watch, test scripts 6 سال پیش
.prettierignore 20913fe587 chore(admin-ui): Exclude generated modules from Prettier formatting 6 سال پیش
.prettierrc d2d77d20d3 chore: Set up root linting & formatting on commit 7 سال پیش
CHANGELOG.md 37b0931938 chore: Publish v0.7.0 6 سال پیش
CONTRIBUTING.md 052cb61072 chore: Set up changelog generation script 6 سال پیش
LICENSE 5919ce67da docs: Add MIT license, expand readme 7 سال پیش
README.md 803f2683f3 refactor: Extract common e2e test config 6 سال پیش
lerna.json 37b0931938 chore: Publish v0.7.0 6 سال پیش
package.json ffc8bc86ca chore: Re-work build, watch, test scripts 6 سال پیش
schema-admin.json 1aea1b50d2 feat(core): Store TaxRate value as decimal type 6 سال پیش
schema-shop.json 1aea1b50d2 feat(core): Store TaxRate value as decimal type 6 سال پیش
tsconfig.json 9a5824c811 chore: Move common tsconfig setting to root 6 سال پیش
tslint.json 45e7e33b6f feat(docs): Add version info to side menu 6 سال پیش
yarn.lock 50bdbd8129 feat(testing): Add support for e2e tests backed by Postgres 6 سال پیش

README.md

Vendure

A headless GraphQL ecommerce framework built on Node.js with Nest with TypeScript.

Build Status lerna

www.vendure.io

Structure

This project is a monorepo managed with Lerna. Several npm packages are published from this repo, which can be found in the packages/ directory.

vendure/
├── docs/           # Documentation source
├── e2e-common/     # Shared config for package e2e tests
├── packages/       # Source for the Vendure server, admin-ui & plugin packages
├── scripts/
    ├── changelog/  # Scripts used to generate the changelog based on the git history
    ├── codegen/    # Scripts used to generate TypeScript code from the GraphQL APIs
    ├── docs/       # Scripts used to generate documentation markdown from the source

Development

1. Install top-level dependencies

yarn

The root directory has a package.json which contains build-related dependencies for tasks including:

  • Building & deploying the docs
  • Generating TypeScript types from the GraphQL schema
  • Linting, formatting & testing tasks to run on git commit & push

2. Bootstrap the packages

yarn bootstrap

This runs the Lerna "bootstrap" command, which installs dependencies for all packages.

3. Build all packages

yarn build

Packages must be built (i.e. TypeScript compiled, admin ui app built, certain assets copied etc.) before being used.

Note that this can take a few minutes.

4. Set up the server

The server requires an SQL database to be available. I am currently using bitnami-docker-phpmyadmin Docker image, which is MariaDB including phpMyAdmin. However, the simplest option is to use SQLite.

Vendure uses TypeORM, so it compatible will any database which works with TypeORM.

  1. Configure the dev config, making sure the connection settings in the getDbConfig() function are correct for the database type you will be using.
  2. Create the database using your DB admin tool of choice (e.g. phpMyAdmin if you are using the docker image suggested above). Name it according to the getDbConfig() settings. If you are using SQLite, you can skip this step.
  3. Populate mock data with DB=<mysql|postgres|sqlite> yarn dev-server:populate. If you do not specify the db argument, it will default to "mysql".

5. Run the dev server

DB=<mysql|postgres|sqlite> yarn dev-server:start

If you do not specify the db argument, it will default to "mysql".

6. Launch the admin ui

  1. cd admin-ui
  2. yarn start
  3. Go to http://localhost:4200 and log in with "superadmin", "superadmin"

Code generation

graphql-code-generator is used to automatically create TypeScript interfaces for all GraphQL server operations and admin ui queries. These generated interfaces are used in both the admin ui and the server.

Running yarn codegen will generate the following files:

Testing

Server Unit Tests

The server has unit tests which are run with yarn test:common and yarn test:core.

Unit tests are co-located with the files which they test, and have the suffix .spec.ts.

Server e2e Tests

The server has e2e tests which test the API with real http calls and against a real Sqlite database powered by sql.js. The tests are run with yarn test:e2e

The e2e tests are located in /packages/core/e2e. Each test suite (file) has the suffix .e2e-spec.ts. The first time the e2e tests are run, sqlite files will be generated in the __data__ directory. These files are used to speed up subsequent runs of the e2e tests. They can be freely deleted and will be re-created the next time the e2e tests are run.

When debugging e2e tests, set an environment variable E2E_DEBUG=true which will increase the global Jest timeout and allow you to step through the e2e tests without the tests automatically failing due to timeout.

Admin UI Unit Tests

The Admin UI has unit tests which are run with yarn test:admin-ui.

Unit tests are co-located with the files which they test, and have the suffix .spec.ts.

Release Process

All packages in this repo are released at every version change (using Lerna's fixed mode). This simplifies both the development (tracking multiple disparate versions is tough) and also the developer experience for users of the framework (it is simple to see that all packages are up-to-date and compatible).

To make a release:

1. yarn publish-release

It will run lerna publish which will prompt for which version to update to. Although we are using conventional commits, the version is not automatically being calculated from the commit messages. Therefore the next version should be manually selected.

Next it will build all packages to ensure the distributed files are up to date.

Finally the command will create changelog entries for this release.

2. git push origin master --follow-tags

The reason we do not rely on Lerna to push the release to Git is that this repo has a lengthy pre-push hook which runs all tests and builds the admin ui. This long wait then invalidates the npm OTP and the publish will fail. So the solution is to publish first and then push.

User Guide

TODO: Move this info to the docs

Localization

Vendure server will detect the most suitable locale based on the Accept-Language header of the client. This can be overridden by appending a lang query parameter to the url (e.g. http://localhost:3000/api?lang=de).

All locales in Vendure are represented by 2-character ISO 639-1 language codes.

Translations for localized strings are located in the i18n/messages directory.

Errors

All errors thrown by the Vendure server can be found in the errors.ts file.

All errors extend from I18nError, which means that the error messages are localized as described above. Each error type has a distinct code which can be used by the front-end client in order to correctly handle the error.

Orders Process

The orders process is governed by a finite state machine which allows each Order to transition only from one valid state to another, as defined by the OrderState definitions:

export type OrderState =
    | 'AddingItems'
    | 'ArrangingPayment'
    | 'PaymentAuthorized'
    | 'PaymentSettled'
    | 'OrderComplete'
    | 'Cancelled';

This process can augmented with extra states according to the needs of the business, and these states are defined in the orderProcessOptions property of the VendureConfig object which is used to bootstrap Vendure. Additional logic can also be defined which will be executed on transition from one state to another.

License

MIT