nocobase/packages/plugins/@nocobase/plugin-sample-shop-actions
2023-12-06 17:19:35 +08:00
..
__tests__/server
src
.npmignore
client.d.ts
client.js
package.json chore(versions): 😊 publish v0.17.0-alpha.3 2023-12-06 17:19:35 +08:00
README.md
server.d.ts
server.js

Actions for simple shop scenario

Register

yarn pm add sample-shop-actions

Activate

yarn pm enable sample-shop-actions

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": 1}' "http://localhost:13000/api/products"

Orders API

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

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