nocobase/packages/samples/shop-actions
2023-04-26 22:33:55 +08:00
..
__tests__/server feat: provide the underscored option for the database (#1366) 2023-02-13 21:38:47 +08:00
src fix: eslint (#1759) 2023-04-25 13:12:14 +08:00
client.d.ts docs: add resources-actions doc and sample (#853) 2022-09-29 21:03:35 +08:00
client.js docs: add resources-actions doc and sample (#853) 2022-09-29 21:03:35 +08:00
package.json chore(versions): 😊 publish v0.9.2-alpha.4 2023-04-26 22:33:55 +08:00
README.md docs: add hooks dev doc (#868) 2022-09-30 17:36:10 +08:00
server.d.ts docs: add resources-actions doc and sample (#853) 2022-09-29 21:03:35 +08:00
server.js docs: add resources-actions doc and sample (#853) 2022-09-29 21:03:35 +08:00

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'