mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 21:26:59 +00:00
2efa704b3b
* docs: add hooks dev doc * docs: change name from hooks to events
45 lines
1.0 KiB
Markdown
45 lines
1.0 KiB
Markdown
# Hooks for simple shop scenario
|
|
|
|
## Register
|
|
|
|
```ts
|
|
yarn pm add sample-shop-hooks
|
|
```
|
|
|
|
## Activate
|
|
|
|
```bash
|
|
yarn pm enable sample-shop-hooks
|
|
```
|
|
|
|
## Launch the app
|
|
|
|
```bash
|
|
# for development
|
|
yarn dev
|
|
|
|
# for production
|
|
yarn build
|
|
yarn start
|
|
```
|
|
|
|
## Connect to the API
|
|
|
|
### Products API
|
|
|
|
```bash
|
|
# 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
|
|
|
|
```bash
|
|
# 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}
|
|
|
|
# create an expired delivery to watch schedule task
|
|
curl -X POST -H "Content-Type: application/json" -d '{"orderId": 1, "provider": "SF", "trackingNumber": "123456789", "userId": 2, "createdAt": "2022-09-01T00:00:00Z"}' 'http://localhost:13000/api/deliveries'
|
|
```
|