nocobase/packages/samples/shop-modeling
chenos 249dff16d3
refactor: plugin manager (#965)
* feat: improve code

* chore: update version

* feat: api service

* fix: api services

* feat: improve code

* feat: improve code

* feat: improve code

* feat: pm socket

* fix: test errors

* feat: add built-in plugins before upgrade

* feat: update docs

* feat: improve code

* fix: after load
2022-10-27 13:00:16 +08:00
..
src refactor: plugin manager (#965) 2022-10-27 13:00:16 +08:00
client.d.ts Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
client.js Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
package.json refactor: plugin manager (#965) 2022-10-27 13:00:16 +08:00
README.md docs: add resources-actions doc and sample (#853) 2022-09-29 21:03:35 +08:00
server.d.ts Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
server.js Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00

Modeling for simple shop scenario

Register

yarn pm add sample-shop-modeling

Activate

yarn pm enable sample-shop-modeling

Launch the app

# for development
yarn dev

# for production
yarn build
yarn start

Connect to the API

Products API

# create a product
curl -X POST -H "Content-Type: application/json" -d '{"title": "iPhone 14 Pro", "price": "7999", "enabled": true, "inventory": 10}' "http://localhost:13000/api/products"

# list products
curl "http://localhost:13000/api/products"

# get product which id=1
curl "http://localhost:13000/api/products?filterByTk=1"

Orders API

# create a order
curl -X POST -H "Content-Type: application/json" -d '{"productId": 1, "quantity": 1, "totalPrice": "7999", "userId": 1}' 'http://localhost:13000/api/orders'

# list orders which userId=1 with product
curl 'http://localhost:13000/api/orders?filter={"userId":1}&appends=product'