task-d.2
task-j.0
This commit is contained in:
@@ -17,34 +17,57 @@ http://localhost:3000
|
|||||||
#### Get All Customers by Branch
|
#### Get All Customers by Branch
|
||||||
|
|
||||||
```
|
```
|
||||||
GET /api/customers/:branch
|
GET /api/customers
|
||||||
```
|
```
|
||||||
|
|
||||||
**Parameters:**
|
**Note:** Branch is automatically determined from authentication context.
|
||||||
|
|
||||||
- `branch` (path parameter, required): Branch identifier
|
**Query Parameters:**
|
||||||
- Examples: `branch-01`, `branch-02`, `head-office`
|
|
||||||
- `status` (query parameter, optional): Filter by customer status
|
- `status` (optional): Filter by customer status
|
||||||
- Values: `active`, `inactive`, `pending`
|
- Values: `active`, `inactive`, `pending`
|
||||||
|
- `page` (optional): Page number for pagination
|
||||||
|
- Default: `1`
|
||||||
|
- `limit` (optional): Number of items per page
|
||||||
|
- Default: `20`
|
||||||
|
- Maximum: `100`
|
||||||
|
- `sortBy` (optional): Field to sort by
|
||||||
|
- Default: `createdAt`
|
||||||
|
- Examples: `name`, `createdAt`, `customerStatus`
|
||||||
|
- `sortOrder` (optional): Sort direction
|
||||||
|
- Default: `desc`
|
||||||
|
- Values: `asc`, `desc`
|
||||||
|
|
||||||
**Examples:**
|
**Examples:**
|
||||||
|
|
||||||
1. Get all customers from branch-01:
|
1. Get all customers (default page 1, 20 per page):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl http://localhost:3000/api/customers/branch-01
|
curl http://localhost:3000/api/customers
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Get active customers from branch-02:
|
2. Get page 2 with 10 items per page:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl "http://localhost:3000/api/customers/branch-02?status=active"
|
curl "http://localhost:3000/api/customers?page=2&limit=10"
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Get pending customers from head-office:
|
3. Get active customers sorted by name ascending:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl "http://localhost:3000/api/customers/head-office?status=pending"
|
curl "http://localhost:3000/api/customers?status=active&sortBy=name&sortOrder=asc"
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Get recent customers (sorted by createdAt descending):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl "http://localhost:3000/api/customers?sortBy=createdAt&sortOrder=desc"
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Combined: filtered, paginated, and sorted:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl "http://localhost:3000/api/customers?status=active&page=1&limit=15&sortBy=name&sortOrder=asc"
|
||||||
```
|
```
|
||||||
|
|
||||||
**Response Format:**
|
**Response Format:**
|
||||||
@@ -55,22 +78,42 @@ curl "http://localhost:3000/api/customers/head-office?status=pending"
|
|||||||
"data": [
|
"data": [
|
||||||
{
|
{
|
||||||
"id": "cust-001",
|
"id": "cust-001",
|
||||||
"branch": "branch-01",
|
"branchId": "branch-01",
|
||||||
"name": "สมชาย ใจดี",
|
"name": "สมชาย ใจดี",
|
||||||
"email": "somchai@example.com",
|
"email": "somchai@example.com",
|
||||||
"phone": "081-234-5678",
|
"phone": "081-234-5678",
|
||||||
"company": "บริษัท ไทยธุรกิจ จำกัด",
|
"company": "บริษัท ไทยธุรกิจ จำกัด",
|
||||||
"address": "123 ถนนสุขุมวิท แขวงคลองตัน เขตคลองเตย กรุงเทพฯ 10110",
|
"address": "123 ถนนสุขุมวิท แขวงคลองตัน เขตคลองเตย กรุงเทพฯ 10110",
|
||||||
"status": "active",
|
"customerStatus": "active",
|
||||||
|
"customerType": "corporate",
|
||||||
|
"crmCustomerCode": "CRM-2024-001",
|
||||||
|
"erpCustomerCode": null,
|
||||||
|
"taxId": "0105551234567",
|
||||||
"createdAt": "2024-01-15T09:00:00Z",
|
"createdAt": "2024-01-15T09:00:00Z",
|
||||||
"updatedAt": "2024-01-15T09:00:00Z"
|
"updatedAt": "2024-01-15T09:00:00Z"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"count": 1,
|
"pagination": {
|
||||||
"message": "Found 1 customer(s) for branch: branch-01"
|
"page": 1,
|
||||||
|
"limit": 20,
|
||||||
|
"total": 45,
|
||||||
|
"totalPages": 3,
|
||||||
|
"hasNext": true,
|
||||||
|
"hasPrev": false
|
||||||
|
},
|
||||||
|
"message": "Found 45 customer(s) (page 1 of 3)"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Pagination Response Fields:**
|
||||||
|
|
||||||
|
- `page`: Current page number
|
||||||
|
- `limit`: Number of items per page
|
||||||
|
- `total`: Total number of items matching the query
|
||||||
|
- `totalPages`: Total number of pages
|
||||||
|
- `hasNext`: Whether there is a next page
|
||||||
|
- `hasPrev`: Whether there is a previous page
|
||||||
|
|
||||||
#### Get Single Customer by ID
|
#### Get Single Customer by ID
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
199
package-lock.json
generated
199
package-lock.json
generated
@@ -12,9 +12,13 @@
|
|||||||
"@elysiajs/eden": "^1.4.9",
|
"@elysiajs/eden": "^1.4.9",
|
||||||
"@hugeicons/core-free-icons": "^4.1.1",
|
"@hugeicons/core-free-icons": "^4.1.1",
|
||||||
"@hugeicons/react": "^1.1.6",
|
"@hugeicons/react": "^1.1.6",
|
||||||
|
"@radix-ui/react-icons": "^1.3.2",
|
||||||
"@radix-ui/react-tooltip": "^1.2.8",
|
"@radix-ui/react-tooltip": "^1.2.8",
|
||||||
"@sentry/nextjs": "^10.49.0",
|
"@sentry/nextjs": "^10.49.0",
|
||||||
"@tabler/icons-react": "^3.41.1",
|
"@tabler/icons-react": "^3.41.1",
|
||||||
|
"@tanstack/react-form": "^1.29.1",
|
||||||
|
"@tanstack/react-query": "^5.100.5",
|
||||||
|
"@tanstack/react-query-devtools": "^5.100.5",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
@@ -41,6 +45,7 @@
|
|||||||
"react": "19.2.4",
|
"react": "19.2.4",
|
||||||
"react-day-picker": "^9.14.0",
|
"react-day-picker": "^9.14.0",
|
||||||
"react-dom": "19.2.4",
|
"react-dom": "19.2.4",
|
||||||
|
"react-dropzone": "^15.0.0",
|
||||||
"react-resizable-panels": "^4.10.0",
|
"react-resizable-panels": "^4.10.0",
|
||||||
"recharts": "^3.8.0",
|
"recharts": "^3.8.0",
|
||||||
"shadcn": "^4.3.0",
|
"shadcn": "^4.3.0",
|
||||||
@@ -4051,6 +4056,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@radix-ui/react-icons": {
|
||||||
|
"version": "1.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.2.tgz",
|
||||||
|
"integrity": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==",
|
||||||
|
"license": "MIT",
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@radix-ui/react-id": {
|
"node_modules/@radix-ui/react-id": {
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
|
||||||
@@ -6346,6 +6360,143 @@
|
|||||||
"tailwindcss": "4.2.2"
|
"tailwindcss": "4.2.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@tanstack/devtools-event-client": {
|
||||||
|
"version": "0.4.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-client/-/devtools-event-client-0.4.3.tgz",
|
||||||
|
"integrity": "sha512-OZI6QyULw0FI0wjgmeYzCIfbgPsOEzwJtCpa69XrfLMtNXLGnz3d/dIabk7frg0TmHo+Ah49w5I4KC7Tufwsvw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"bin": {
|
||||||
|
"intent": "bin/intent.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/form-core": {
|
||||||
|
"version": "1.29.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/form-core/-/form-core-1.29.1.tgz",
|
||||||
|
"integrity": "sha512-NIYPO36eEu7nSWvMpbFDQaBWyVtnH/C8fsZ3/XpJUT4uOWgmxsiUvHGbTbDNIQTXAKIkhwEl0sUrqBNn2SfUnw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/devtools-event-client": "^0.4.1",
|
||||||
|
"@tanstack/pacer-lite": "^0.1.1",
|
||||||
|
"@tanstack/store": "^0.9.1"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/pacer-lite": {
|
||||||
|
"version": "0.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/pacer-lite/-/pacer-lite-0.1.1.tgz",
|
||||||
|
"integrity": "sha512-y/xtNPNt/YeyoVxE/JCx+T7yjEzpezmbb+toK8DDD1P4m7Kzs5YR956+7OKexG3f8aXgC3rLZl7b1V+yNUSy5w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/query-core": {
|
||||||
|
"version": "5.100.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.100.5.tgz",
|
||||||
|
"integrity": "sha512-t20KrhKkf0HXzqQkPbJ5erhFesup68BAbwFgYmTrS7bxMF7O5MdmL8jUkik4thsG7Hg00fblz30h6yF1d5TxGg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/query-devtools": {
|
||||||
|
"version": "5.100.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.100.5.tgz",
|
||||||
|
"integrity": "sha512-SuCkVCqqliRYJvm+LEL2U/TcFv92zTnHj6OGrJFHp1v/RsiwamI+ZDgQzbeUrLsJb8/Nj/52aIw0NyDMcVHl4A==",
|
||||||
|
"license": "MIT",
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/react-form": {
|
||||||
|
"version": "1.29.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/react-form/-/react-form-1.29.1.tgz",
|
||||||
|
"integrity": "sha512-hVHk4g0phd0HxRsv2ry6Xt8BqmalT55Q3cokhJBCC1St0hcGZhgwJJbohm9atao45BPG9e55DGvtbwExqZe35g==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/form-core": "1.29.1",
|
||||||
|
"@tanstack/react-store": "^0.9.1"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"@tanstack/react-start": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/react-form/node_modules/@tanstack/react-store": {
|
||||||
|
"version": "0.9.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/react-store/-/react-store-0.9.3.tgz",
|
||||||
|
"integrity": "sha512-y2iHd/N9OkoQbFJLUX1T9vbc2O9tjH0pQRgTcx1/Nz4IlwLvkgpuglXUx+mXt0g5ZDFrEeDnONPqkbfxXJKwRg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/store": "0.9.3",
|
||||||
|
"use-sync-external-store": "^1.6.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||||
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/react-query": {
|
||||||
|
"version": "5.100.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.100.5.tgz",
|
||||||
|
"integrity": "sha512-aNwj1mi2v2bQ9IxkyR1grLOUkv3BYWoykHy9KDyLNbjC3tsahbOHJibK+Wjtr1wRhG59/AvJhiJG5OlthaCgJA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/query-core": "5.100.5"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^18 || ^19"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@tanstack/react-query-devtools": {
|
||||||
|
"version": "5.100.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.100.5.tgz",
|
||||||
|
"integrity": "sha512-bItQERx7dJoiI0WEoS4tIrvNnmk4kUYsaQLdIpm4o9Kttmsi5B6xlY6JBDkavstR3hH/R2+VT5dr3L5LBFPW4g==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/query-devtools": "5.100.5"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@tanstack/react-query": "^5.100.5",
|
||||||
|
"react": "^18 || ^19"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@tanstack/react-table": {
|
"node_modules/@tanstack/react-table": {
|
||||||
"version": "8.21.3",
|
"version": "8.21.3",
|
||||||
"resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.21.3.tgz",
|
"resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.21.3.tgz",
|
||||||
@@ -6366,6 +6517,16 @@
|
|||||||
"react-dom": ">=16.8"
|
"react-dom": ">=16.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@tanstack/store": {
|
||||||
|
"version": "0.9.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tanstack/store/-/store-0.9.3.tgz",
|
||||||
|
"integrity": "sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/tannerlinsley"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@tanstack/table-core": {
|
"node_modules/@tanstack/table-core": {
|
||||||
"version": "8.21.3",
|
"version": "8.21.3",
|
||||||
"resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz",
|
"resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz",
|
||||||
@@ -7811,6 +7972,15 @@
|
|||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/attr-accept": {
|
||||||
|
"version": "2.2.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.5.tgz",
|
||||||
|
"integrity": "sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/available-typed-arrays": {
|
"node_modules/available-typed-arrays": {
|
||||||
"version": "1.0.7",
|
"version": "1.0.7",
|
||||||
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
|
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
|
||||||
@@ -10094,6 +10264,18 @@
|
|||||||
"node": ">=16.0.0"
|
"node": ">=16.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/file-selector": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/file-selector/-/file-selector-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-QgXo+mXTe8ljeqUFaX3QVHc5osSItJ/Km+xpocx0aSqWGMSCf6qYs/VnzZgS864Pjn5iceMRFigeAV7AfTlaig==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.7.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 12"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/file-type": {
|
"node_modules/file-type": {
|
||||||
"version": "22.0.1",
|
"version": "22.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/file-type/-/file-type-22.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/file-type/-/file-type-22.0.1.tgz",
|
||||||
@@ -13749,6 +13931,23 @@
|
|||||||
"react": "^19.2.4"
|
"react": "^19.2.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/react-dropzone": {
|
||||||
|
"version": "15.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-15.0.0.tgz",
|
||||||
|
"integrity": "sha512-lGjYV/EoqEjEWPnmiSvH4v5IoIAwQM2W4Z1C0Q/Pw2xD0eVzKPS359BQTUMum+1fa0kH2nrKjuavmTPOGhpLPg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"attr-accept": "^2.2.4",
|
||||||
|
"file-selector": "^2.1.0",
|
||||||
|
"prop-types": "^15.8.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.13"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": ">= 16.8 || 18.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/react-is": {
|
"node_modules/react-is": {
|
||||||
"version": "16.13.1",
|
"version": "16.13.1",
|
||||||
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
||||||
|
|||||||
@@ -16,9 +16,13 @@
|
|||||||
"@elysiajs/eden": "^1.4.9",
|
"@elysiajs/eden": "^1.4.9",
|
||||||
"@hugeicons/core-free-icons": "^4.1.1",
|
"@hugeicons/core-free-icons": "^4.1.1",
|
||||||
"@hugeicons/react": "^1.1.6",
|
"@hugeicons/react": "^1.1.6",
|
||||||
|
"@radix-ui/react-icons": "^1.3.2",
|
||||||
"@radix-ui/react-tooltip": "^1.2.8",
|
"@radix-ui/react-tooltip": "^1.2.8",
|
||||||
"@sentry/nextjs": "^10.49.0",
|
"@sentry/nextjs": "^10.49.0",
|
||||||
"@tabler/icons-react": "^3.41.1",
|
"@tabler/icons-react": "^3.41.1",
|
||||||
|
"@tanstack/react-form": "^1.29.1",
|
||||||
|
"@tanstack/react-query": "^5.100.5",
|
||||||
|
"@tanstack/react-query-devtools": "^5.100.5",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
@@ -45,6 +49,7 @@
|
|||||||
"react": "19.2.4",
|
"react": "19.2.4",
|
||||||
"react-day-picker": "^9.14.0",
|
"react-day-picker": "^9.14.0",
|
||||||
"react-dom": "19.2.4",
|
"react-dom": "19.2.4",
|
||||||
|
"react-dropzone": "^15.0.0",
|
||||||
"react-resizable-panels": "^4.10.0",
|
"react-resizable-panels": "^4.10.0",
|
||||||
"recharts": "^3.8.0",
|
"recharts": "^3.8.0",
|
||||||
"shadcn": "^4.3.0",
|
"shadcn": "^4.3.0",
|
||||||
|
|||||||
@@ -1,28 +1,30 @@
|
|||||||
import PageContainer from "@/components/layout/page-container";
|
import PageContainer from "@/components/layout/page-container";
|
||||||
import { buttonVariants } from "@/components/ui/button";
|
import CustomerListingPage from "@/features/customers/components/customer-listing";
|
||||||
import { Heading } from "@/components/ui/heading";
|
import { CustomerFormSheetTrigger } from "@/features/customers/components/customer-form-sheet";
|
||||||
import { Separator } from "@/components/ui/separator";
|
import { searchParamsCache } from "@/lib/searchparams";
|
||||||
import { cn } from "@/lib/utils";
|
import type { SearchParams } from "nuqs/server";
|
||||||
import { IconPlus } from "@tabler/icons-react";
|
|
||||||
import Link from "next/link";
|
export const metadata = {
|
||||||
|
title: "Customers",
|
||||||
|
};
|
||||||
|
|
||||||
|
type PageProps = {
|
||||||
|
params: Promise<{ branch: string }>;
|
||||||
|
searchParams: Promise<SearchParams>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function CustomersPage(props: PageProps) {
|
||||||
|
const searchParams = await props.searchParams;
|
||||||
|
searchParamsCache.parse(searchParams);
|
||||||
|
|
||||||
export default async function Page({ params }) {
|
|
||||||
const { branch } = await params;
|
|
||||||
console.log("branch", branch);
|
|
||||||
return (
|
return (
|
||||||
<PageContainer>
|
<PageContainer
|
||||||
<div className="flex flex-1 flex-col space-y-4">
|
scrollable={false}
|
||||||
<div className="flex items-start justify-between">
|
pageTitle="ลูกค้า"
|
||||||
<Heading title="ลูกค้า" description="จัดการลูกค้า" />
|
pageDescription="จัดการลูกค้า"
|
||||||
<Link
|
pageHeaderAction={<CustomerFormSheetTrigger />}
|
||||||
href="/dashboard/product/new"
|
>
|
||||||
className={cn(buttonVariants(), "text-xs md:text-sm")}
|
<CustomerListingPage />
|
||||||
>
|
|
||||||
<IconPlus className="mr-2 h-4 w-4" /> เพิ่มลูกค้า
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
<Separator />
|
|
||||||
</div>
|
|
||||||
</PageContainer>
|
</PageContainer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import NextTopLoader from "nextjs-toploader";
|
|||||||
import { NuqsAdapter } from "nuqs/adapters/next/app";
|
import { NuqsAdapter } from "nuqs/adapters/next/app";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "./theme.css";
|
import "./theme.css";
|
||||||
|
import QueryProvider from "@/components/layout/query-provider";
|
||||||
|
|
||||||
const META_THEME_COLORS = {
|
const META_THEME_COLORS = {
|
||||||
light: "#ffffff",
|
light: "#ffffff",
|
||||||
@@ -66,12 +67,14 @@ export default async function RootLayout({
|
|||||||
disableTransitionOnChange
|
disableTransitionOnChange
|
||||||
enableColorScheme
|
enableColorScheme
|
||||||
>
|
>
|
||||||
<AuthProvider>
|
<QueryProvider>
|
||||||
<Providers activeThemeValue={activeThemeValue as string}>
|
<AuthProvider>
|
||||||
<Toaster />
|
<Providers activeThemeValue={activeThemeValue as string}>
|
||||||
{children}
|
<Toaster />
|
||||||
</Providers>
|
{children}
|
||||||
</AuthProvider>
|
</Providers>
|
||||||
|
</AuthProvider>
|
||||||
|
</QueryProvider>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
</NuqsAdapter>
|
</NuqsAdapter>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,22 +1,21 @@
|
|||||||
'use client';
|
"use client";
|
||||||
|
|
||||||
import { IconX, IconUpload } from '@tabler/icons-react';
|
import { IconX, IconUpload } from "@tabler/icons-react";
|
||||||
import Image from 'next/image';
|
import Image from "next/image";
|
||||||
import * as React from 'react';
|
import * as React from "react";
|
||||||
import Dropzone, {
|
import Dropzone, {
|
||||||
type DropzoneProps,
|
type DropzoneProps,
|
||||||
type FileRejection
|
type FileRejection,
|
||||||
} from 'react-dropzone';
|
} from "react-dropzone";
|
||||||
import { toast } from 'sonner';
|
import { toast } from "sonner";
|
||||||
|
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from "@/components/ui/button";
|
||||||
import { Progress } from '@/components/ui/progress';
|
import { Progress } from "@/components/ui/progress";
|
||||||
import { ScrollArea } from '@/components/ui/scroll-area';
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
||||||
import { useControllableState } from '@/hooks/use-controllable-state';
|
import { useControllableState } from "@/hooks/use-controllable-state";
|
||||||
import { cn, formatBytes } from '@/lib/utils';
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
export interface FileUploaderProps
|
export interface FileUploaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
||||||
extends React.HTMLAttributes<HTMLDivElement> {
|
|
||||||
/**
|
/**
|
||||||
* Value of the uploader.
|
* Value of the uploader.
|
||||||
* @type File[]
|
* @type File[]
|
||||||
@@ -58,7 +57,7 @@ export interface FileUploaderProps
|
|||||||
* ```
|
* ```
|
||||||
* @example accept={["image/png", "image/jpeg"]}
|
* @example accept={["image/png", "image/jpeg"]}
|
||||||
*/
|
*/
|
||||||
accept?: DropzoneProps['accept'];
|
accept?: DropzoneProps["accept"];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Maximum file size for the uploader.
|
* Maximum file size for the uploader.
|
||||||
@@ -66,7 +65,7 @@ export interface FileUploaderProps
|
|||||||
* @default 1024 * 1024 * 2 // 2MB
|
* @default 1024 * 1024 * 2 // 2MB
|
||||||
* @example maxSize={1024 * 1024 * 2} // 2MB
|
* @example maxSize={1024 * 1024 * 2} // 2MB
|
||||||
*/
|
*/
|
||||||
maxSize?: DropzoneProps['maxSize'];
|
maxSize?: DropzoneProps["maxSize"];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Maximum number of files for the uploader.
|
* Maximum number of files for the uploader.
|
||||||
@@ -74,7 +73,7 @@ export interface FileUploaderProps
|
|||||||
* @default 1
|
* @default 1
|
||||||
* @example maxFiles={5}
|
* @example maxFiles={5}
|
||||||
*/
|
*/
|
||||||
maxFiles?: DropzoneProps['maxFiles'];
|
maxFiles?: DropzoneProps["maxFiles"];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the uploader should accept multiple files.
|
* Whether the uploader should accept multiple files.
|
||||||
@@ -99,7 +98,7 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
onValueChange,
|
onValueChange,
|
||||||
onUpload,
|
onUpload,
|
||||||
progresses,
|
progresses,
|
||||||
accept = { 'image/*': [] },
|
accept = { "image/*": [] },
|
||||||
maxSize = 1024 * 1024 * 2,
|
maxSize = 1024 * 1024 * 2,
|
||||||
maxFiles = 1,
|
maxFiles = 1,
|
||||||
multiple = false,
|
multiple = false,
|
||||||
@@ -110,13 +109,13 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
|
|
||||||
const [files, setFiles] = useControllableState({
|
const [files, setFiles] = useControllableState({
|
||||||
prop: valueProp,
|
prop: valueProp,
|
||||||
onChange: onValueChange
|
onChange: onValueChange,
|
||||||
});
|
});
|
||||||
|
|
||||||
const onDrop = React.useCallback(
|
const onDrop = React.useCallback(
|
||||||
(acceptedFiles: File[], rejectedFiles: FileRejection[]) => {
|
(acceptedFiles: File[], rejectedFiles: FileRejection[]) => {
|
||||||
if (!multiple && maxFiles === 1 && acceptedFiles.length > 1) {
|
if (!multiple && maxFiles === 1 && acceptedFiles.length > 1) {
|
||||||
toast.error('Cannot upload more than 1 file at a time');
|
toast.error("Cannot upload more than 1 file at a time");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -127,8 +126,8 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
|
|
||||||
const newFiles = acceptedFiles.map((file) =>
|
const newFiles = acceptedFiles.map((file) =>
|
||||||
Object.assign(file, {
|
Object.assign(file, {
|
||||||
preview: URL.createObjectURL(file)
|
preview: URL.createObjectURL(file),
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
const updatedFiles = files ? [...files, ...newFiles] : newFiles;
|
const updatedFiles = files ? [...files, ...newFiles] : newFiles;
|
||||||
@@ -155,12 +154,12 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
setFiles([]);
|
setFiles([]);
|
||||||
return `${target} uploaded`;
|
return `${target} uploaded`;
|
||||||
},
|
},
|
||||||
error: `Failed to upload ${target}`
|
error: `Failed to upload ${target}`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
[files, maxFiles, multiple, onUpload, setFiles]
|
[files, maxFiles, multiple, onUpload, setFiles],
|
||||||
);
|
);
|
||||||
|
|
||||||
function onRemove(index: number) {
|
function onRemove(index: number) {
|
||||||
@@ -186,7 +185,7 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
const isDisabled = disabled || (files?.length ?? 0) >= maxFiles;
|
const isDisabled = disabled || (files?.length ?? 0) >= maxFiles;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='relative flex flex-col gap-6 overflow-hidden'>
|
<div className="relative flex flex-col gap-6 overflow-hidden">
|
||||||
<Dropzone
|
<Dropzone
|
||||||
onDrop={onDrop}
|
onDrop={onDrop}
|
||||||
accept={accept}
|
accept={accept}
|
||||||
@@ -199,45 +198,45 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
<div
|
<div
|
||||||
{...getRootProps()}
|
{...getRootProps()}
|
||||||
className={cn(
|
className={cn(
|
||||||
'group border-muted-foreground/25 hover:bg-muted/25 relative grid h-52 w-full cursor-pointer place-items-center rounded-lg border-2 border-dashed px-5 py-2.5 text-center transition',
|
"group border-muted-foreground/25 hover:bg-muted/25 relative grid h-52 w-full cursor-pointer place-items-center rounded-lg border-2 border-dashed px-5 py-2.5 text-center transition",
|
||||||
'ring-offset-background focus-visible:ring-ring focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden',
|
"ring-offset-background focus-visible:ring-ring focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden",
|
||||||
isDragActive && 'border-muted-foreground/50',
|
isDragActive && "border-muted-foreground/50",
|
||||||
isDisabled && 'pointer-events-none opacity-60',
|
isDisabled && "pointer-events-none opacity-60",
|
||||||
className
|
className,
|
||||||
)}
|
)}
|
||||||
{...dropzoneProps}
|
{...dropzoneProps}
|
||||||
>
|
>
|
||||||
<input {...getInputProps()} />
|
<input {...getInputProps()} />
|
||||||
{isDragActive ? (
|
{isDragActive ? (
|
||||||
<div className='flex flex-col items-center justify-center gap-4 sm:px-5'>
|
<div className="flex flex-col items-center justify-center gap-4 sm:px-5">
|
||||||
<div className='rounded-full border border-dashed p-3'>
|
<div className="rounded-full border border-dashed p-3">
|
||||||
<IconUpload
|
<IconUpload
|
||||||
className='text-muted-foreground size-7'
|
className="text-muted-foreground size-7"
|
||||||
aria-hidden='true'
|
aria-hidden="true"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p className='text-muted-foreground font-medium'>
|
<p className="text-muted-foreground font-medium">
|
||||||
Drop the files here
|
Drop the files here
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className='flex flex-col items-center justify-center gap-4 sm:px-5'>
|
<div className="flex flex-col items-center justify-center gap-4 sm:px-5">
|
||||||
<div className='rounded-full border border-dashed p-3'>
|
<div className="rounded-full border border-dashed p-3">
|
||||||
<IconUpload
|
<IconUpload
|
||||||
className='text-muted-foreground size-7'
|
className="text-muted-foreground size-7"
|
||||||
aria-hidden='true'
|
aria-hidden="true"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className='space-y-px'>
|
<div className="space-y-px">
|
||||||
<p className='text-muted-foreground font-medium'>
|
<p className="text-muted-foreground font-medium">
|
||||||
Drag {`'n'`} drop files here, or click to select files
|
Drag {`'n'`} drop files here, or click to select files
|
||||||
</p>
|
</p>
|
||||||
<p className='text-muted-foreground/70 text-sm'>
|
<p className="text-muted-foreground/70 text-sm">
|
||||||
You can upload
|
You can upload
|
||||||
{maxFiles > 1
|
{maxFiles > 1
|
||||||
? ` ${maxFiles === Infinity ? 'multiple' : maxFiles}
|
? ` ${maxFiles === Infinity ? "multiple" : maxFiles}
|
||||||
files (up to ${formatBytes(maxSize)} each)`
|
files (up to ${maxSize} each)`
|
||||||
: ` a file with ${formatBytes(maxSize)}`}
|
: ` a file with ${maxSize}`}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -246,8 +245,8 @@ export function FileUploader(props: FileUploaderProps) {
|
|||||||
)}
|
)}
|
||||||
</Dropzone>
|
</Dropzone>
|
||||||
{files?.length ? (
|
{files?.length ? (
|
||||||
<ScrollArea className='h-fit w-full px-3'>
|
<ScrollArea className="h-fit w-full px-3">
|
||||||
<div className='max-h-48 space-y-4'>
|
<div className="max-h-48 space-y-4">
|
||||||
{files?.map((file, index) => (
|
{files?.map((file, index) => (
|
||||||
<FileCard
|
<FileCard
|
||||||
key={index}
|
key={index}
|
||||||
@@ -271,41 +270,39 @@ interface FileCardProps {
|
|||||||
|
|
||||||
function FileCard({ file, progress, onRemove }: FileCardProps) {
|
function FileCard({ file, progress, onRemove }: FileCardProps) {
|
||||||
return (
|
return (
|
||||||
<div className='relative flex items-center space-x-4'>
|
<div className="relative flex items-center space-x-4">
|
||||||
<div className='flex flex-1 space-x-4'>
|
<div className="flex flex-1 space-x-4">
|
||||||
{isFileWithPreview(file) ? (
|
{isFileWithPreview(file) ? (
|
||||||
<Image
|
<Image
|
||||||
src={file.preview}
|
src={file.preview}
|
||||||
alt={file.name}
|
alt={file.name}
|
||||||
width={48}
|
width={48}
|
||||||
height={48}
|
height={48}
|
||||||
loading='lazy'
|
loading="lazy"
|
||||||
className='aspect-square shrink-0 rounded-md object-cover'
|
className="aspect-square shrink-0 rounded-md object-cover"
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
<div className='flex w-full flex-col gap-2'>
|
<div className="flex w-full flex-col gap-2">
|
||||||
<div className='space-y-px'>
|
<div className="space-y-px">
|
||||||
<p className='text-foreground/80 line-clamp-1 text-sm font-medium'>
|
<p className="text-foreground/80 line-clamp-1 text-sm font-medium">
|
||||||
{file.name}
|
{file.name}
|
||||||
</p>
|
</p>
|
||||||
<p className='text-muted-foreground text-xs'>
|
<p className="text-muted-foreground text-xs">{file.size}</p>
|
||||||
{formatBytes(file.size)}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
{progress ? <Progress value={progress} /> : null}
|
{progress ? <Progress value={progress} /> : null}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='flex items-center gap-2'>
|
<div className="flex items-center gap-2">
|
||||||
<Button
|
<Button
|
||||||
type='button'
|
type="button"
|
||||||
variant='ghost'
|
variant="ghost"
|
||||||
size='icon'
|
size="icon"
|
||||||
onClick={onRemove}
|
onClick={onRemove}
|
||||||
disabled={progress !== undefined && progress < 100}
|
disabled={progress !== undefined && progress < 100}
|
||||||
className='size-8 rounded-full'
|
className="size-8 rounded-full"
|
||||||
>
|
>
|
||||||
<IconX className='text-muted-foreground' />
|
<IconX className="text-muted-foreground" />
|
||||||
<span className='sr-only'>Remove file</span>
|
<span className="sr-only">Remove file</span>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -313,5 +310,5 @@ function FileCard({ file, progress, onRemove }: FileCardProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isFileWithPreview(file: File): file is File & { preview: string } {
|
function isFileWithPreview(file: File): file is File & { preview: string } {
|
||||||
return 'preview' in file && typeof file.preview === 'string';
|
return "preview" in file && typeof file.preview === "string";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,39 @@
|
|||||||
import React from 'react';
|
import React from "react";
|
||||||
import { ScrollArea } from '@/components/ui/scroll-area';
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
||||||
|
import { Heading } from "@/components/ui/heading";
|
||||||
|
import { Separator } from "@/components/ui/separator";
|
||||||
|
|
||||||
export default function PageContainer({
|
export default function PageContainer({
|
||||||
children,
|
children,
|
||||||
scrollable = true
|
scrollable = true,
|
||||||
|
pageTitle,
|
||||||
|
pageDescription,
|
||||||
|
pageHeaderAction,
|
||||||
}: {
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
scrollable?: boolean;
|
scrollable?: boolean;
|
||||||
|
pageTitle?: string;
|
||||||
|
pageDescription?: string;
|
||||||
|
pageHeaderAction?: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="flex flex-1 flex-col space-y-4 p-4 md:px-6">
|
||||||
|
{(pageTitle || pageHeaderAction) && (
|
||||||
|
<div className="flex items-start justify-between">
|
||||||
|
{pageTitle && (
|
||||||
|
<Heading title={pageTitle} description={pageDescription || ""} />
|
||||||
|
)}
|
||||||
|
{pageHeaderAction}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{pageTitle && <Separator />}
|
||||||
{scrollable ? (
|
{scrollable ? (
|
||||||
<ScrollArea className='h-[calc(100dvh-52px)]'>
|
<ScrollArea className="flex-1">
|
||||||
<div className='flex flex-1 p-4 md:px-6'>{children}</div>
|
<div className="p-1">{children}</div>
|
||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
) : (
|
) : (
|
||||||
<div className='flex flex-1 p-4 md:px-6'>{children}</div>
|
<div className="flex-1">{children}</div>
|
||||||
)}
|
)}
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
35
src/features/customers/api/mutations.ts
Normal file
35
src/features/customers/api/mutations.ts
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
import { mutationOptions } from "@tanstack/react-query";
|
||||||
|
import { getQueryClient } from "@/lib/query-client";
|
||||||
|
import { createCustomer, updateCustomer, deleteCustomer } from "./service";
|
||||||
|
import { customerKeys } from "./queries";
|
||||||
|
import type { CustomerMutationPayload } from "./types";
|
||||||
|
|
||||||
|
export const createCustomerMutation = mutationOptions({
|
||||||
|
mutationFn: (data: CustomerMutationPayload) => createCustomer(data),
|
||||||
|
onSuccess: () => {
|
||||||
|
getQueryClient().invalidateQueries({ queryKey: customerKeys.all });
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export const updateCustomerMutation = mutationOptions({
|
||||||
|
mutationFn: ({
|
||||||
|
branch,
|
||||||
|
id,
|
||||||
|
values,
|
||||||
|
}: {
|
||||||
|
branch: string;
|
||||||
|
id: string;
|
||||||
|
values: CustomerMutationPayload;
|
||||||
|
}) => updateCustomer(branch, id, values),
|
||||||
|
onSuccess: () => {
|
||||||
|
getQueryClient().invalidateQueries({ queryKey: customerKeys.all });
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export const deleteCustomerMutation = mutationOptions({
|
||||||
|
mutationFn: ({ branch, id }: { branch: string; id: string }) =>
|
||||||
|
deleteCustomer(branch, id),
|
||||||
|
onSuccess: () => {
|
||||||
|
getQueryClient().invalidateQueries({ queryKey: customerKeys.all });
|
||||||
|
},
|
||||||
|
});
|
||||||
27
src/features/customers/api/queries.ts
Normal file
27
src/features/customers/api/queries.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import { queryOptions } from "@tanstack/react-query";
|
||||||
|
import { getCustomers, getCustomerById } from "./service";
|
||||||
|
import type { Customer, CustomerFilters } from "./types";
|
||||||
|
|
||||||
|
export type { Customer };
|
||||||
|
|
||||||
|
export const customerKeys = {
|
||||||
|
all: ["customers"] as const,
|
||||||
|
list: (filters: CustomerFilters) =>
|
||||||
|
[...customerKeys.all, "list", filters] as const,
|
||||||
|
detail: (branch: string, id: string) =>
|
||||||
|
[...customerKeys.all, "detail", branch, id] as const,
|
||||||
|
};
|
||||||
|
|
||||||
|
export const customersQueryOptions = (filters: CustomerFilters) =>
|
||||||
|
queryOptions({
|
||||||
|
queryKey: customerKeys.list(filters),
|
||||||
|
queryFn: () => getCustomers(filters),
|
||||||
|
staleTime: 60000, // 1 minute
|
||||||
|
});
|
||||||
|
|
||||||
|
export const customerByIdOptions = (branch: string, id: string) =>
|
||||||
|
queryOptions({
|
||||||
|
queryKey: customerKeys.detail(branch, id),
|
||||||
|
queryFn: () => getCustomerById(branch, id),
|
||||||
|
staleTime: 60000, // 1 minute
|
||||||
|
});
|
||||||
110
src/features/customers/api/service.ts
Normal file
110
src/features/customers/api/service.ts
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
import type {
|
||||||
|
Customer,
|
||||||
|
CustomerFilters,
|
||||||
|
CustomersResponse,
|
||||||
|
CustomerMutationPayload,
|
||||||
|
} from "./types";
|
||||||
|
|
||||||
|
const BASE_URL = "/api/customers";
|
||||||
|
|
||||||
|
export async function getCustomers(
|
||||||
|
filters: CustomerFilters,
|
||||||
|
): Promise<CustomersResponse> {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
|
||||||
|
if (filters.page) params.append("page", String(filters.page));
|
||||||
|
if (filters.limit) params.append("limit", String(filters.limit));
|
||||||
|
if (filters.status) params.append("status", filters.status);
|
||||||
|
if (filters.sortBy) params.append("sortBy", filters.sortBy);
|
||||||
|
if (filters.sortOrder) params.append("sortOrder", filters.sortOrder);
|
||||||
|
|
||||||
|
const url = params.toString() ? `${BASE_URL}?${params.toString()}` : BASE_URL;
|
||||||
|
|
||||||
|
const response = await fetch(url, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to fetch customers: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getCustomerById(
|
||||||
|
branch: string,
|
||||||
|
id: string,
|
||||||
|
): Promise<Customer> {
|
||||||
|
const response = await fetch(`${BASE_URL}/${branch}/${id}`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to fetch customer: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return data.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function createCustomer(
|
||||||
|
data: CustomerMutationPayload,
|
||||||
|
): Promise<Customer> {
|
||||||
|
const response = await fetch(BASE_URL, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(data),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to create customer: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await response.json();
|
||||||
|
return result.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function updateCustomer(
|
||||||
|
branch: string,
|
||||||
|
id: string,
|
||||||
|
data: CustomerMutationPayload,
|
||||||
|
): Promise<Customer> {
|
||||||
|
const response = await fetch(`${BASE_URL}/${branch}/${id}`, {
|
||||||
|
method: "PUT",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(data),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to update customer: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await response.json();
|
||||||
|
return result.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function deleteCustomer(
|
||||||
|
branch: string,
|
||||||
|
id: string,
|
||||||
|
): Promise<void> {
|
||||||
|
const response = await fetch(`${BASE_URL}/${branch}/${id}`, {
|
||||||
|
method: "DELETE",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to delete customer: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
51
src/features/customers/api/types.ts
Normal file
51
src/features/customers/api/types.ts
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
export type Customer = {
|
||||||
|
id: string;
|
||||||
|
branchId: string;
|
||||||
|
name: string;
|
||||||
|
email: string;
|
||||||
|
phone: string;
|
||||||
|
company: string;
|
||||||
|
address: string;
|
||||||
|
customerStatus: "active" | "inactive" | "pending";
|
||||||
|
customerType: "individual" | "corporate";
|
||||||
|
crmCustomerCode: string;
|
||||||
|
erpCustomerCode: string | null;
|
||||||
|
taxId: string;
|
||||||
|
createdAt: string;
|
||||||
|
updatedAt: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type CustomerFilters = {
|
||||||
|
page?: number;
|
||||||
|
limit?: number;
|
||||||
|
status?: "active" | "inactive" | "pending";
|
||||||
|
sortBy?: string;
|
||||||
|
sortOrder?: "asc" | "desc";
|
||||||
|
};
|
||||||
|
|
||||||
|
export type CustomersResponse = {
|
||||||
|
success: boolean;
|
||||||
|
data: Customer[];
|
||||||
|
pagination: {
|
||||||
|
page: number;
|
||||||
|
limit: number;
|
||||||
|
total: number;
|
||||||
|
totalPages: number;
|
||||||
|
hasNext: boolean;
|
||||||
|
hasPrev: boolean;
|
||||||
|
};
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type CustomerMutationPayload = {
|
||||||
|
name: string;
|
||||||
|
email: string;
|
||||||
|
phone: string;
|
||||||
|
company: string;
|
||||||
|
address: string;
|
||||||
|
customerStatus: "active" | "inactive" | "pending";
|
||||||
|
customerType: "individual" | "corporate";
|
||||||
|
crmCustomerCode: string;
|
||||||
|
erpCustomerCode?: string | null;
|
||||||
|
taxId: string;
|
||||||
|
};
|
||||||
222
src/features/customers/components/customer-form-sheet.tsx
Normal file
222
src/features/customers/components/customer-form-sheet.tsx
Normal file
@@ -0,0 +1,222 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import { useAppForm, useFormFields } from "@/components/ui/tanstack-form";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import {
|
||||||
|
Sheet,
|
||||||
|
SheetContent,
|
||||||
|
SheetDescription,
|
||||||
|
SheetFooter,
|
||||||
|
SheetHeader,
|
||||||
|
SheetTitle,
|
||||||
|
} from "@/components/ui/sheet";
|
||||||
|
import { Icons } from "@/components/icons";
|
||||||
|
import { useMutation } from "@tanstack/react-query";
|
||||||
|
import {
|
||||||
|
createCustomerMutation,
|
||||||
|
updateCustomerMutation,
|
||||||
|
} from "../api/mutations";
|
||||||
|
import type { Customer } from "../api/types";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
import { customerSchema, type CustomerFormValues } from "../schemas/customer";
|
||||||
|
import {
|
||||||
|
CUSTOMER_STATUS_OPTIONS,
|
||||||
|
CUSTOMER_TYPE_OPTIONS,
|
||||||
|
} from "../constants/status-options";
|
||||||
|
|
||||||
|
interface CustomerFormSheetProps {
|
||||||
|
customer?: Customer;
|
||||||
|
open: boolean;
|
||||||
|
onOpenChange: (open: boolean) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CustomerFormSheet({
|
||||||
|
customer,
|
||||||
|
open,
|
||||||
|
onOpenChange,
|
||||||
|
}: CustomerFormSheetProps) {
|
||||||
|
const isEdit = !!customer;
|
||||||
|
|
||||||
|
const createMutation = useMutation({
|
||||||
|
...createCustomerMutation,
|
||||||
|
onSuccess: () => {
|
||||||
|
toast.success("Customer created successfully");
|
||||||
|
onOpenChange(false);
|
||||||
|
form.reset();
|
||||||
|
},
|
||||||
|
onError: () => toast.error("Failed to create customer"),
|
||||||
|
});
|
||||||
|
|
||||||
|
const updateMutation = useMutation({
|
||||||
|
...updateCustomerMutation,
|
||||||
|
onSuccess: () => {
|
||||||
|
toast.success("Customer updated successfully");
|
||||||
|
onOpenChange(false);
|
||||||
|
},
|
||||||
|
onError: () => toast.error("Failed to update customer"),
|
||||||
|
});
|
||||||
|
|
||||||
|
const form = useAppForm({
|
||||||
|
defaultValues: {
|
||||||
|
name: customer?.name ?? "",
|
||||||
|
email: customer?.email ?? "",
|
||||||
|
phone: customer?.phone ?? "",
|
||||||
|
company: customer?.company ?? "",
|
||||||
|
address: customer?.address ?? "",
|
||||||
|
customerStatus: customer?.customerStatus ?? "active",
|
||||||
|
customerType: customer?.customerType ?? "corporate",
|
||||||
|
crmCustomerCode: customer?.crmCustomerCode ?? "",
|
||||||
|
erpCustomerCode: customer?.erpCustomerCode ?? null,
|
||||||
|
taxId: customer?.taxId ?? "",
|
||||||
|
} as CustomerFormValues,
|
||||||
|
validators: {
|
||||||
|
onSubmit: customerSchema,
|
||||||
|
},
|
||||||
|
onSubmit: async ({ value }) => {
|
||||||
|
if (isEdit && customer) {
|
||||||
|
await updateMutation.mutateAsync({
|
||||||
|
branch: customer.branchId,
|
||||||
|
id: customer.id,
|
||||||
|
values: value,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
await createMutation.mutateAsync(value);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { FormTextField, FormSelectField, FormTextareaField } =
|
||||||
|
useFormFields<CustomerFormValues>();
|
||||||
|
|
||||||
|
const isPending = createMutation.isPending || updateMutation.isPending;
|
||||||
|
const isLoading = createMutation.isPending || updateMutation.isPending;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Sheet open={open} onOpenChange={onOpenChange}>
|
||||||
|
<SheetContent className="flex flex-col">
|
||||||
|
<SheetHeader>
|
||||||
|
<SheetTitle>{isEdit ? "Edit Customer" : "New Customer"}</SheetTitle>
|
||||||
|
<SheetDescription>
|
||||||
|
{isEdit
|
||||||
|
? "Update the customer details below."
|
||||||
|
: "Fill in the details to create a new customer."}
|
||||||
|
</SheetDescription>
|
||||||
|
</SheetHeader>
|
||||||
|
|
||||||
|
<div className="flex-1 overflow-auto">
|
||||||
|
<form.AppForm>
|
||||||
|
<form.Form id="customer-form-sheet" className="space-y-4">
|
||||||
|
<FormTextField
|
||||||
|
name="name"
|
||||||
|
label="Name"
|
||||||
|
required
|
||||||
|
placeholder="Enter customer name"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="email"
|
||||||
|
label="Email"
|
||||||
|
required
|
||||||
|
type="email"
|
||||||
|
placeholder="customer@example.com"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="phone"
|
||||||
|
label="Phone"
|
||||||
|
required
|
||||||
|
type="tel"
|
||||||
|
placeholder="081-234-5678"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="company"
|
||||||
|
label="Company"
|
||||||
|
required
|
||||||
|
placeholder="Company name"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextareaField
|
||||||
|
name="address"
|
||||||
|
label="Address"
|
||||||
|
required
|
||||||
|
placeholder="Enter full address"
|
||||||
|
rows={3}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<FormSelectField
|
||||||
|
name="customerStatus"
|
||||||
|
label="Status"
|
||||||
|
required
|
||||||
|
options={CUSTOMER_STATUS_OPTIONS}
|
||||||
|
placeholder="Select status"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormSelectField
|
||||||
|
name="customerType"
|
||||||
|
label="Type"
|
||||||
|
required
|
||||||
|
options={CUSTOMER_TYPE_OPTIONS}
|
||||||
|
placeholder="Select type"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="crmCustomerCode"
|
||||||
|
label="CRM Code"
|
||||||
|
required
|
||||||
|
placeholder="CRM-2024-001"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="erpCustomerCode"
|
||||||
|
label="ERP Code"
|
||||||
|
placeholder="ERP-001"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FormTextField
|
||||||
|
name="taxId"
|
||||||
|
label="Tax ID"
|
||||||
|
required
|
||||||
|
placeholder="0105551234567"
|
||||||
|
/>
|
||||||
|
</form.Form>
|
||||||
|
</form.AppForm>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SheetFooter>
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => onOpenChange(false)}
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
<Button type="submit" form="customer-form-sheet" disabled={isPending}>
|
||||||
|
{isPending ? (
|
||||||
|
<Icons.spinner className="mr-2 h-4 w-4 animate-spin" />
|
||||||
|
) : (
|
||||||
|
<Icons.check className="mr-2 h-4 w-4" />
|
||||||
|
)}
|
||||||
|
{isEdit ? "Update Customer" : "Create Customer"}
|
||||||
|
</Button>
|
||||||
|
</SheetFooter>
|
||||||
|
</SheetContent>
|
||||||
|
</Sheet>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CustomerFormSheetTrigger() {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Button onClick={() => setOpen(true)}>
|
||||||
|
<Icons.add className="mr-2 h-4 w-4" /> Add Customer
|
||||||
|
</Button>
|
||||||
|
<CustomerFormSheet open={open} onOpenChange={setOpen} />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
src/features/customers/components/customer-listing.tsx
Normal file
39
src/features/customers/components/customer-listing.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import { HydrationBoundary, dehydrate } from "@tanstack/react-query";
|
||||||
|
import { getQueryClient } from "@/lib/query-client";
|
||||||
|
import { searchParamsCache } from "@/lib/searchparams";
|
||||||
|
import { customersQueryOptions } from "../api/queries";
|
||||||
|
import {
|
||||||
|
CustomersTable,
|
||||||
|
CustomersTableSkeleton,
|
||||||
|
} from "./customers-table/customers-table";
|
||||||
|
import { Suspense } from "react";
|
||||||
|
|
||||||
|
export default function CustomerListingPage() {
|
||||||
|
const page = searchParamsCache.get("page");
|
||||||
|
const name = searchParamsCache.get("name");
|
||||||
|
const pageLimit = searchParamsCache.get("perPage");
|
||||||
|
const sort = searchParamsCache.get("sort");
|
||||||
|
const status = searchParamsCache.get("status");
|
||||||
|
|
||||||
|
const filters = {
|
||||||
|
page,
|
||||||
|
limit: pageLimit,
|
||||||
|
...(name && { name }),
|
||||||
|
...(sort && { sort }),
|
||||||
|
...(status &&
|
||||||
|
["active", "inactive", "pending"].includes(status) && {
|
||||||
|
status: status as "active" | "inactive" | "pending",
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
|
const queryClient = getQueryClient();
|
||||||
|
void queryClient.prefetchQuery(customersQueryOptions(filters));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<HydrationBoundary state={dehydrate(queryClient)}>
|
||||||
|
<Suspense fallback={<CustomersTableSkeleton />}>
|
||||||
|
<CustomersTable />
|
||||||
|
</Suspense>
|
||||||
|
</HydrationBoundary>
|
||||||
|
);
|
||||||
|
}
|
||||||
154
src/features/customers/components/customers-table/columns.tsx
Normal file
154
src/features/customers/components/customers-table/columns.tsx
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
import { ColumnDef } from "@tanstack/react-table";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Checkbox } from "@/components/ui/checkbox";
|
||||||
|
import { DataTableColumnHeader } from "@/components/ui/table/data-table-column-header";
|
||||||
|
import { Icons } from "@/components/icons";
|
||||||
|
import { Customer } from "../../api/types";
|
||||||
|
|
||||||
|
export const columns: ColumnDef<Customer>[] = [
|
||||||
|
{
|
||||||
|
id: "select",
|
||||||
|
header: ({ table }) => (
|
||||||
|
<Checkbox
|
||||||
|
checked={
|
||||||
|
table.getIsAllPageRowsSelected() ||
|
||||||
|
(table.getIsSomePageRowsSelected() && "indeterminate")
|
||||||
|
}
|
||||||
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
||||||
|
aria-label="Select all"
|
||||||
|
className="translate-y-[2px]"
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<Checkbox
|
||||||
|
checked={row.getIsSelected()}
|
||||||
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
||||||
|
aria-label="Select row"
|
||||||
|
className="translate-y-[2px]"
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
enableSorting: false,
|
||||||
|
enableHiding: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "name",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Name" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<div className="h-8 w-8 rounded-full bg-primary/10 flex items-center justify-center">
|
||||||
|
<Icons.user className="h-4 w-4 text-primary" />
|
||||||
|
</div>
|
||||||
|
<div className="font-medium">{row.getValue("name")}</div>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "email",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Email" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<div className="max-w-[200px] truncate">{row.getValue("email")}</div>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "phone",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Phone" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => <div>{row.getValue("phone")}</div>,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "company",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Company" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<div className="max-w-[200px] truncate">{row.getValue("company")}</div>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "customerStatus",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Status" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const status = row.getValue("customerStatus") as string;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex items-center">
|
||||||
|
<span
|
||||||
|
className={`inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 ${
|
||||||
|
status === "active"
|
||||||
|
? "bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400"
|
||||||
|
: status === "inactive"
|
||||||
|
? "bg-gray-100 text-gray-800 dark:bg-gray-800/30 dark:text-gray-400"
|
||||||
|
: "bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{status.charAt(0).toUpperCase() + status.slice(1)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
filterFn: (row, id, value) => {
|
||||||
|
return value.includes(row.getValue(id));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "customerType",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="Type" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const type = row.getValue("customerType") as string;
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
{type === "corporate" ? (
|
||||||
|
<Icons.laptop className="h-4 w-4 text-muted-foreground" />
|
||||||
|
) : (
|
||||||
|
<Icons.user className="h-4 w-4 text-muted-foreground" />
|
||||||
|
)}
|
||||||
|
<span className="capitalize">{type}</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
filterFn: (row, id, value) => {
|
||||||
|
return value.includes(row.getValue(id));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "crmCustomerCode",
|
||||||
|
header: ({ column }) => (
|
||||||
|
<DataTableColumnHeader column={column} title="CRM Code" />
|
||||||
|
),
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<div className="max-w-[120px] truncate font-mono text-xs">
|
||||||
|
{row.getValue("crmCustomerCode")}
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "actions",
|
||||||
|
cell: ({ row }) => (
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
onClick={() => console.log("Edit", row.original.id)}
|
||||||
|
>
|
||||||
|
<Icons.userPen className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
onClick={() => console.log("Delete", row.original.id)}
|
||||||
|
>
|
||||||
|
<Icons.trash className="h-4 w-4 text-destructive" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
@@ -0,0 +1,169 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import { DataTable } from "@/components/ui/table/data-table";
|
||||||
|
import { DataTableToolbar } from "@/components/ui/table/data-table-toolbar";
|
||||||
|
import { DataTableSkeleton } from "@/components/ui/table/data-table-skeleton";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Icons } from "@/components/icons";
|
||||||
|
import { columns } from "./columns";
|
||||||
|
import { useDataTable } from "@/hooks/use-data-table";
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { parseAsInteger, parseAsString, useQueryStates } from "nuqs";
|
||||||
|
import { getSortingStateParser } from "@/lib/parsers";
|
||||||
|
import { customersQueryOptions } from "../../api/queries";
|
||||||
|
import {
|
||||||
|
CustomerFormSheet,
|
||||||
|
CustomerFormSheetTrigger,
|
||||||
|
} from "../customer-form-sheet";
|
||||||
|
import type { Customer } from "../../api/types";
|
||||||
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
||||||
|
import { deleteCustomerMutation } from "../../api/mutations";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
import {
|
||||||
|
AlertDialog,
|
||||||
|
AlertDialogAction,
|
||||||
|
AlertDialogCancel,
|
||||||
|
AlertDialogContent,
|
||||||
|
AlertDialogDescription,
|
||||||
|
AlertDialogFooter,
|
||||||
|
AlertDialogHeader,
|
||||||
|
AlertDialogTitle,
|
||||||
|
} from "@/components/ui/alert-dialog";
|
||||||
|
import { useParams } from "next/navigation";
|
||||||
|
|
||||||
|
const columnIds = columns.map((c) => c.id).filter(Boolean) as string[];
|
||||||
|
|
||||||
|
export function CustomersTable() {
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
const param = useParams();
|
||||||
|
const branch = param?.branch;
|
||||||
|
const [selectedCustomer, setSelectedCustomer] = useState<
|
||||||
|
Customer | undefined
|
||||||
|
>();
|
||||||
|
const [isEditSheetOpen, setIsEditSheetOpen] = useState(false);
|
||||||
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
||||||
|
const [customerToDelete, setCustomerToDelete] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const [params] = useQueryStates({
|
||||||
|
page: parseAsInteger.withDefault(1),
|
||||||
|
perPage: parseAsInteger.withDefault(10),
|
||||||
|
name: parseAsString,
|
||||||
|
status: parseAsString,
|
||||||
|
sort: getSortingStateParser(columnIds).withDefault([]),
|
||||||
|
});
|
||||||
|
|
||||||
|
const filters = {
|
||||||
|
page: params.page,
|
||||||
|
limit: params.perPage,
|
||||||
|
...(params.name && { search: params.name }),
|
||||||
|
...(params.status &&
|
||||||
|
["active", "inactive", "pending"].includes(params.status) && {
|
||||||
|
status: params.status as "active" | "inactive" | "pending",
|
||||||
|
}),
|
||||||
|
...(params.sort.length > 0 && { sort: JSON.stringify(params.sort) }),
|
||||||
|
};
|
||||||
|
|
||||||
|
const { data } = useSuspenseQuery(customersQueryOptions(filters));
|
||||||
|
|
||||||
|
const pageCount = Math.ceil((data.pagination?.total ?? 0) / params.perPage);
|
||||||
|
|
||||||
|
const { table } = useDataTable({
|
||||||
|
data: data.data || [],
|
||||||
|
columns,
|
||||||
|
pageCount,
|
||||||
|
shallow: true,
|
||||||
|
debounceMs: 500,
|
||||||
|
initialState: {
|
||||||
|
columnPinning: { right: ["actions"] },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const deleteMutation = useMutation({
|
||||||
|
...deleteCustomerMutation,
|
||||||
|
onSuccess: () => {
|
||||||
|
toast.success("Customer deleted successfully");
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["customers"] });
|
||||||
|
setDeleteDialogOpen(false);
|
||||||
|
setCustomerToDelete(null);
|
||||||
|
},
|
||||||
|
onError: () => toast.error("Failed to delete customer"),
|
||||||
|
});
|
||||||
|
|
||||||
|
const handleEdit = (customer: Customer) => {
|
||||||
|
setSelectedCustomer(customer);
|
||||||
|
setIsEditSheetOpen(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDelete = (customerId: string) => {
|
||||||
|
setCustomerToDelete(customerId);
|
||||||
|
setDeleteDialogOpen(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const confirmDelete = () => {
|
||||||
|
if (customerToDelete) {
|
||||||
|
deleteMutation.mutate({ branch, id: customerToDelete });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h1 className="text-2xl font-bold">Customers</h1>
|
||||||
|
<CustomerFormSheetTrigger />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DataTable table={table}>
|
||||||
|
<DataTableToolbar table={table} />
|
||||||
|
</DataTable>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<CustomerFormSheet
|
||||||
|
customer={selectedCustomer}
|
||||||
|
open={isEditSheetOpen}
|
||||||
|
onOpenChange={setIsEditSheetOpen}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<AlertDialog open={deleteDialogOpen} onOpenChange={setDeleteDialogOpen}>
|
||||||
|
<AlertDialogContent>
|
||||||
|
<AlertDialogHeader>
|
||||||
|
<AlertDialogTitle>Are you sure?</AlertDialogTitle>
|
||||||
|
<AlertDialogDescription>
|
||||||
|
This action cannot be undone. This will permanently delete the
|
||||||
|
customer and all associated data.
|
||||||
|
</AlertDialogDescription>
|
||||||
|
</AlertDialogHeader>
|
||||||
|
<AlertDialogFooter>
|
||||||
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
||||||
|
<AlertDialogAction
|
||||||
|
onClick={confirmDelete}
|
||||||
|
disabled={deleteMutation.isPending}
|
||||||
|
>
|
||||||
|
{deleteMutation.isPending ? (
|
||||||
|
<>
|
||||||
|
<Icons.spinner className="mr-2 h-4 w-4 animate-spin" />
|
||||||
|
Deleting...
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
"Delete"
|
||||||
|
)}
|
||||||
|
</AlertDialogAction>
|
||||||
|
</AlertDialogFooter>
|
||||||
|
</AlertDialogContent>
|
||||||
|
</AlertDialog>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CustomersTableSkeleton() {
|
||||||
|
return (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h1 className="text-2xl font-bold">Customers</h1>
|
||||||
|
<CustomerFormSheetTrigger />
|
||||||
|
</div>
|
||||||
|
<DataTableSkeleton columnCount={8} rowCount={10} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
10
src/features/customers/constants/status-options.ts
Normal file
10
src/features/customers/constants/status-options.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
export const CUSTOMER_STATUS_OPTIONS = [
|
||||||
|
{ value: "active", label: "Active" },
|
||||||
|
{ value: "inactive", label: "Inactive" },
|
||||||
|
{ value: "pending", label: "Pending" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export const CUSTOMER_TYPE_OPTIONS = [
|
||||||
|
{ value: "individual", label: "Individual" },
|
||||||
|
{ value: "corporate", label: "Corporate" },
|
||||||
|
];
|
||||||
16
src/features/customers/schemas/customer.ts
Normal file
16
src/features/customers/schemas/customer.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { z } from "zod";
|
||||||
|
|
||||||
|
export const customerSchema = z.object({
|
||||||
|
name: z.string().min(2, "ชื่อต้องมีอย่างน้อย 2 ตัวอักษร"),
|
||||||
|
email: z.string().email("กรุณาระบุอีเมลที่ถูกต้อง"),
|
||||||
|
phone: z.string().min(1, "กรุณาระบุเบอร์โทรศัพท์"),
|
||||||
|
company: z.string().min(1, "กรุณาระบุชื่อบริษัท"),
|
||||||
|
address: z.string().min(1, "กรุณาระบุที่อยู่"),
|
||||||
|
customerStatus: z.enum(["active", "inactive", "pending"]),
|
||||||
|
customerType: z.enum(["individual", "corporate"]),
|
||||||
|
crmCustomerCode: z.string().min(1, "กรุณาระบุรหัสลูกค้า CRM"),
|
||||||
|
erpCustomerCode: z.string().nullable().optional(),
|
||||||
|
taxId: z.string().min(1, "กรุณาระบุเลขประจำตัวผู้เสียภาษี"),
|
||||||
|
});
|
||||||
|
|
||||||
|
export type CustomerFormValues = z.infer<typeof customerSchema>;
|
||||||
@@ -2,8 +2,8 @@ import {
|
|||||||
createSearchParamsCache,
|
createSearchParamsCache,
|
||||||
createSerializer,
|
createSerializer,
|
||||||
parseAsInteger,
|
parseAsInteger,
|
||||||
parseAsString
|
parseAsString,
|
||||||
} from 'nuqs/server';
|
} from "nuqs/server";
|
||||||
|
|
||||||
export const searchParams = {
|
export const searchParams = {
|
||||||
page: parseAsInteger.withDefault(1),
|
page: parseAsInteger.withDefault(1),
|
||||||
@@ -12,7 +12,8 @@ export const searchParams = {
|
|||||||
gender: parseAsString,
|
gender: parseAsString,
|
||||||
category: parseAsString,
|
category: parseAsString,
|
||||||
role: parseAsString,
|
role: parseAsString,
|
||||||
sort: parseAsString
|
status: parseAsString,
|
||||||
|
sort: parseAsString,
|
||||||
// advanced filter
|
// advanced filter
|
||||||
// filters: getFiltersStateParser().withDefault([]),
|
// filters: getFiltersStateParser().withDefault([]),
|
||||||
// joinOperator: parseAsStringEnum(['and', 'or']).withDefault('and')
|
// joinOperator: parseAsStringEnum(['and', 'or']).withDefault('and')
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ export const branchMiddleware = new Elysia({ name: "branch" }).derive(
|
|||||||
currentBranchCode: currentBranch.code,
|
currentBranchCode: currentBranch.code,
|
||||||
accessibleBranches,
|
accessibleBranches,
|
||||||
userGroups,
|
userGroups,
|
||||||
} as BranchContext;
|
};
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,21 @@
|
|||||||
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
import { Elysia, t } from "elysia";
|
import { Elysia, t } from "elysia";
|
||||||
import * as service from "./service";
|
import * as service from "./service";
|
||||||
import { CustomerModel } from "./model";
|
import { CustomerModel } from "./model";
|
||||||
import { branchMiddleware, type BranchContext } from "@/middleware/branch";
|
import { branchMiddleware, type BranchContext } from "@/middleware/branch";
|
||||||
|
|
||||||
|
// Helper to safely extract branch context from any context
|
||||||
|
// @ts-expect-error - Elysia type inference limitation with middleware
|
||||||
|
function getBranchContext(ctx: any): BranchContext {
|
||||||
|
return {
|
||||||
|
userId: ctx.userId || "",
|
||||||
|
currentBranchId: ctx.currentBranchId || "",
|
||||||
|
currentBranchCode: ctx.currentBranchCode || "",
|
||||||
|
accessibleBranches: ctx.accessibleBranches || [],
|
||||||
|
userGroups: ctx.userGroups || [],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Create Elysia instance for customers module
|
// Create Elysia instance for customers module
|
||||||
export const customers = new Elysia({
|
export const customers = new Elysia({
|
||||||
prefix: "/customers",
|
prefix: "/customers",
|
||||||
@@ -10,14 +23,22 @@ export const customers = new Elysia({
|
|||||||
})
|
})
|
||||||
.use(branchMiddleware)
|
.use(branchMiddleware)
|
||||||
.model(CustomerModel)
|
.model(CustomerModel)
|
||||||
// GET /api/customers - Get all customers for current branch
|
// GET /api/customers - Get all customers for current branch with pagination
|
||||||
.get(
|
.get(
|
||||||
"/",
|
"/",
|
||||||
async ({ query, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
const { status } = query as { status?: string };
|
const { query } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
|
const { status, page, limit, sortBy, sortOrder } = query as {
|
||||||
|
status?: string;
|
||||||
|
page?: string;
|
||||||
|
limit?: string;
|
||||||
|
sortBy?: string;
|
||||||
|
sortOrder?: "asc" | "desc";
|
||||||
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const customers = await service.getCustomersByBranch(
|
const result = await service.getCustomersByBranch(
|
||||||
{
|
{
|
||||||
currentBranchId,
|
currentBranchId,
|
||||||
userId,
|
userId,
|
||||||
@@ -26,13 +47,25 @@ export const customers = new Elysia({
|
|||||||
userGroups: [],
|
userGroups: [],
|
||||||
},
|
},
|
||||||
status,
|
status,
|
||||||
|
page || limit
|
||||||
|
? {
|
||||||
|
page: page ? parseInt(page) : undefined,
|
||||||
|
limit: limit ? parseInt(limit) : undefined,
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
sortBy || sortOrder
|
||||||
|
? {
|
||||||
|
sortBy,
|
||||||
|
sortOrder,
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
data: customers,
|
data: result.data,
|
||||||
count: customers.length,
|
pagination: result.pagination,
|
||||||
message: `Found ${customers.length} customer(s)`,
|
message: `Found ${result.pagination.total} customer(s) (page ${result.pagination.page} of ${result.pagination.totalPages})`,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error fetching customers:", error);
|
console.error("Error fetching customers:", error);
|
||||||
@@ -53,13 +86,24 @@ export const customers = new Elysia({
|
|||||||
t.Literal("pending"),
|
t.Literal("pending"),
|
||||||
]),
|
]),
|
||||||
),
|
),
|
||||||
|
page: t.Optional(t.String()),
|
||||||
|
limit: t.Optional(t.String()),
|
||||||
|
sortBy: t.Optional(t.String()),
|
||||||
|
sortOrder: t.Optional(t.Union([t.Literal("asc"), t.Literal("desc")])),
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
response: t.Union([
|
response: t.Union([
|
||||||
t.Object({
|
t.Object({
|
||||||
success: t.Literal(true),
|
success: t.Literal(true),
|
||||||
data: t.Array(CustomerModel.Customer),
|
data: t.Array(CustomerModel.Customer),
|
||||||
count: t.Number(),
|
pagination: t.Object({
|
||||||
|
page: t.Number(),
|
||||||
|
limit: t.Number(),
|
||||||
|
total: t.Number(),
|
||||||
|
totalPages: t.Number(),
|
||||||
|
hasNext: t.Boolean(),
|
||||||
|
hasPrev: t.Boolean(),
|
||||||
|
}),
|
||||||
message: t.String(),
|
message: t.String(),
|
||||||
}),
|
}),
|
||||||
t.Object({
|
t.Object({
|
||||||
@@ -70,7 +114,7 @@ export const customers = new Elysia({
|
|||||||
]),
|
]),
|
||||||
detail: {
|
detail: {
|
||||||
description:
|
description:
|
||||||
"Get all customers for the current branch (from middleware)",
|
"Get all customers for the current branch with pagination and sorting",
|
||||||
parameters: [
|
parameters: [
|
||||||
{
|
{
|
||||||
name: "status",
|
name: "status",
|
||||||
@@ -82,6 +126,49 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
description: "Filter customers by status",
|
description: "Filter customers by status",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "page",
|
||||||
|
in: "query",
|
||||||
|
required: false,
|
||||||
|
schema: {
|
||||||
|
type: "integer",
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
description: "Page number (default: 1)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "limit",
|
||||||
|
in: "query",
|
||||||
|
required: false,
|
||||||
|
schema: {
|
||||||
|
type: "integer",
|
||||||
|
default: 20,
|
||||||
|
maximum: 100,
|
||||||
|
},
|
||||||
|
description: "Items per page (default: 20, max: 100)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "sortBy",
|
||||||
|
in: "query",
|
||||||
|
required: false,
|
||||||
|
schema: {
|
||||||
|
type: "string",
|
||||||
|
default: "createdAt",
|
||||||
|
},
|
||||||
|
description:
|
||||||
|
"Field to sort by (e.g., name, createdAt, customerStatus)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "sortOrder",
|
||||||
|
in: "query",
|
||||||
|
required: false,
|
||||||
|
schema: {
|
||||||
|
type: "string",
|
||||||
|
enum: ["asc", "desc"],
|
||||||
|
default: "desc",
|
||||||
|
},
|
||||||
|
description: "Sort order (default: desc)",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
security: [
|
security: [
|
||||||
{
|
{
|
||||||
@@ -91,11 +178,13 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
// GET /api/customers/:id - Get single customer by ID
|
// GET /api/customers/:customerId - Get single customer by ID
|
||||||
.get(
|
.get(
|
||||||
"/:id",
|
"/:customerId",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
const { id } = params;
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
|
const { customerId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const customer = await service.getCustomerById(
|
const customer = await service.getCustomerById(
|
||||||
@@ -106,7 +195,7 @@ export const customers = new Elysia({
|
|||||||
accessibleBranches: [],
|
accessibleBranches: [],
|
||||||
userGroups: [],
|
userGroups: [],
|
||||||
},
|
},
|
||||||
id,
|
customerId,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!customer) {
|
if (!customer) {
|
||||||
@@ -131,7 +220,7 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
params: t.Object({
|
params: t.Object({
|
||||||
id: t.String(),
|
customerId: t.String(),
|
||||||
}),
|
}),
|
||||||
response: t.Union([
|
response: t.Union([
|
||||||
t.Object({
|
t.Object({
|
||||||
@@ -157,7 +246,10 @@ export const customers = new Elysia({
|
|||||||
// POST /api/customers - Create new customer
|
// POST /api/customers - Create new customer
|
||||||
.post(
|
.post(
|
||||||
"/",
|
"/",
|
||||||
async ({ body, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { body } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Generate CRM customer code
|
// Generate CRM customer code
|
||||||
const crmCustomerCode =
|
const crmCustomerCode =
|
||||||
@@ -201,7 +293,6 @@ export const customers = new Elysia({
|
|||||||
customerStatus: t.Optional(t.String()),
|
customerStatus: t.Optional(t.String()),
|
||||||
customerType: t.Optional(t.String()),
|
customerType: t.Optional(t.String()),
|
||||||
taxId: t.Optional(t.String()),
|
taxId: t.Optional(t.String()),
|
||||||
// Add other fields as needed
|
|
||||||
}),
|
}),
|
||||||
response: t.Union([
|
response: t.Union([
|
||||||
t.Object({
|
t.Object({
|
||||||
@@ -225,11 +316,13 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
// PUT /api/customers/:id - Update customer
|
// PUT /api/customers/:customerId - Update customer
|
||||||
.put(
|
.put(
|
||||||
"/:id",
|
"/:customerId",
|
||||||
async ({ params, body, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
const { id } = params;
|
const { params, body } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
|
const { customerId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const customer = await service.updateCustomer(
|
const customer = await service.updateCustomer(
|
||||||
@@ -240,7 +333,7 @@ export const customers = new Elysia({
|
|||||||
accessibleBranches: [],
|
accessibleBranches: [],
|
||||||
userGroups: [],
|
userGroups: [],
|
||||||
},
|
},
|
||||||
id,
|
customerId,
|
||||||
body,
|
body,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -267,7 +360,7 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
params: t.Object({
|
params: t.Object({
|
||||||
id: t.String(),
|
customerId: t.String(),
|
||||||
}),
|
}),
|
||||||
body: t.Object({
|
body: t.Object({
|
||||||
name: t.Optional(t.String()),
|
name: t.Optional(t.String()),
|
||||||
@@ -277,7 +370,6 @@ export const customers = new Elysia({
|
|||||||
address: t.Optional(t.String()),
|
address: t.Optional(t.String()),
|
||||||
customerStatus: t.Optional(t.String()),
|
customerStatus: t.Optional(t.String()),
|
||||||
erpCustomerCode: t.Optional(t.String()),
|
erpCustomerCode: t.Optional(t.String()),
|
||||||
// Add other fields as needed
|
|
||||||
}),
|
}),
|
||||||
response: t.Union([
|
response: t.Union([
|
||||||
t.Object({
|
t.Object({
|
||||||
@@ -301,11 +393,13 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
// DELETE /api/customers/:id - Delete customer (soft delete)
|
// DELETE /api/customers/:customerId - Delete customer (soft delete)
|
||||||
.delete(
|
.delete(
|
||||||
"/:id",
|
"/:customerId",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
const { id } = params;
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
|
const { customerId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const customer = await service.deleteCustomer(
|
const customer = await service.deleteCustomer(
|
||||||
@@ -316,7 +410,7 @@ export const customers = new Elysia({
|
|||||||
accessibleBranches: [],
|
accessibleBranches: [],
|
||||||
userGroups: [],
|
userGroups: [],
|
||||||
},
|
},
|
||||||
id,
|
customerId,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!customer) {
|
if (!customer) {
|
||||||
@@ -342,7 +436,7 @@ export const customers = new Elysia({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
params: t.Object({
|
params: t.Object({
|
||||||
id: t.String(),
|
customerId: t.String(),
|
||||||
}),
|
}),
|
||||||
response: t.Union([
|
response: t.Union([
|
||||||
t.Object({
|
t.Object({
|
||||||
@@ -373,7 +467,9 @@ export const customers = new Elysia({
|
|||||||
// GET /api/customers/:customerId/contacts - Get visible contacts for customer
|
// GET /api/customers/:customerId/contacts - Get visible contacts for customer
|
||||||
.get(
|
.get(
|
||||||
"/:customerId/contacts",
|
"/:customerId/contacts",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { customerId } = params;
|
const { customerId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -444,7 +540,9 @@ export const customers = new Elysia({
|
|||||||
// POST /api/customers/:customerId/contacts - Create contact
|
// POST /api/customers/:customerId/contacts - Create contact
|
||||||
.post(
|
.post(
|
||||||
"/:customerId/contacts",
|
"/:customerId/contacts",
|
||||||
async ({ params, body, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params, body } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { customerId } = params;
|
const { customerId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -522,7 +620,9 @@ export const customers = new Elysia({
|
|||||||
// PUT /api/contacts/:contactId - Update contact
|
// PUT /api/contacts/:contactId - Update contact
|
||||||
.put(
|
.put(
|
||||||
"/contacts/:contactId",
|
"/contacts/:contactId",
|
||||||
async ({ params, body, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params, body } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -600,7 +700,9 @@ export const customers = new Elysia({
|
|||||||
// POST /api/contacts/:contactId/share - Share contact (make public)
|
// POST /api/contacts/:contactId/share - Share contact (make public)
|
||||||
.post(
|
.post(
|
||||||
"/contacts/:contactId/share",
|
"/contacts/:contactId/share",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -669,7 +771,9 @@ export const customers = new Elysia({
|
|||||||
// POST /api/contacts/:contactId/unshare - Unshare contact (make private)
|
// POST /api/contacts/:contactId/unshare - Unshare contact (make private)
|
||||||
.post(
|
.post(
|
||||||
"/contacts/:contactId/unshare",
|
"/contacts/:contactId/unshare",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -738,7 +842,9 @@ export const customers = new Elysia({
|
|||||||
// DELETE /api/contacts/:contactId - Delete contact
|
// DELETE /api/contacts/:contactId - Delete contact
|
||||||
.delete(
|
.delete(
|
||||||
"/contacts/:contactId",
|
"/contacts/:contactId",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -810,7 +916,9 @@ export const customers = new Elysia({
|
|||||||
// POST /api/contacts/:contactId/share-with - Share contact with specific user
|
// POST /api/contacts/:contactId/share-with - Share contact with specific user
|
||||||
.post(
|
.post(
|
||||||
"/contacts/:contactId/share-with",
|
"/contacts/:contactId/share-with",
|
||||||
async ({ params, body, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params, body } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
const { targetUserId, notes } = body as {
|
const { targetUserId, notes } = body as {
|
||||||
targetUserId: string;
|
targetUserId: string;
|
||||||
@@ -887,7 +995,9 @@ export const customers = new Elysia({
|
|||||||
// DELETE /api/contacts/:contactId/share/:targetUserId - Unshare contact from specific user
|
// DELETE /api/contacts/:contactId/share/:targetUserId - Unshare contact from specific user
|
||||||
.delete(
|
.delete(
|
||||||
"/contacts/:contactId/share/:targetUserId",
|
"/contacts/:contactId/share/:targetUserId",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId, targetUserId } = params;
|
const { contactId, targetUserId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -958,7 +1068,9 @@ export const customers = new Elysia({
|
|||||||
// GET /api/contacts/:contactId/shares - Get all shares for a contact
|
// GET /api/contacts/:contactId/shares - Get all shares for a contact
|
||||||
.get(
|
.get(
|
||||||
"/contacts/:contactId/shares",
|
"/contacts/:contactId/shares",
|
||||||
async ({ params, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { params } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { contactId } = params;
|
const { contactId } = params;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -1029,7 +1141,9 @@ export const customers = new Elysia({
|
|||||||
// GET /api/contacts/shared-with-me - Get contacts shared with current user
|
// GET /api/contacts/shared-with-me - Get contacts shared with current user
|
||||||
.get(
|
.get(
|
||||||
"/contacts/shared-with-me",
|
"/contacts/shared-with-me",
|
||||||
async ({ query, currentBranchId, userId }) => {
|
async (ctx: any) => {
|
||||||
|
const { query } = ctx;
|
||||||
|
const { currentBranchId, userId } = getBranchContext(ctx);
|
||||||
const { customerId } = query as { customerId?: string };
|
const { customerId } = query as { customerId?: string };
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import {
|
|||||||
type CustomerContactShare,
|
type CustomerContactShare,
|
||||||
type NewCustomerContactShare,
|
type NewCustomerContactShare,
|
||||||
} from "@/database/schema";
|
} from "@/database/schema";
|
||||||
import { eq, and, or, sql, exists } from "drizzle-orm";
|
import { eq, and, or, sql, exists, desc, asc } from "drizzle-orm";
|
||||||
import { BranchContext } from "@/middleware/branch";
|
import { BranchContext } from "@/middleware/branch";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -23,33 +23,82 @@ import { BranchContext } from "@/middleware/branch";
|
|||||||
// =========================================================
|
// =========================================================
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all customers for the current branch
|
* Get all customers for the current branch with pagination and sorting
|
||||||
* @param context - Branch context from middleware
|
* @param context - Branch context from middleware
|
||||||
* @param status - Optional status filter
|
* @param status - Optional status filter
|
||||||
* @returns Array of customers
|
* @param pagination - Pagination options (page, limit)
|
||||||
|
* @param sorting - Sorting options (sortBy, sortOrder)
|
||||||
|
* @returns Paginated customers with metadata
|
||||||
*/
|
*/
|
||||||
export async function getCustomersByBranch(
|
export async function getCustomersByBranch(
|
||||||
context: BranchContext,
|
context: BranchContext,
|
||||||
status?: string,
|
status?: string,
|
||||||
): Promise<Customer[]> {
|
pagination?: { page?: number; limit?: number },
|
||||||
|
sorting?: { sortBy?: string; sortOrder?: "asc" | "desc" },
|
||||||
|
): Promise<{
|
||||||
|
data: Customer[];
|
||||||
|
pagination: {
|
||||||
|
page: number;
|
||||||
|
limit: number;
|
||||||
|
total: number;
|
||||||
|
totalPages: number;
|
||||||
|
hasNext: boolean;
|
||||||
|
hasPrev: boolean;
|
||||||
|
};
|
||||||
|
}> {
|
||||||
const { currentBranchId } = context;
|
const { currentBranchId } = context;
|
||||||
|
|
||||||
|
// Default values
|
||||||
|
const page = pagination?.page || 1;
|
||||||
|
const limit = Math.min(pagination?.limit || 20, 100); // Max 100 per page
|
||||||
|
const offset = (page - 1) * limit;
|
||||||
|
const sortBy = sorting?.sortBy || "createdAt";
|
||||||
|
const sortOrder = sorting?.sortOrder || "desc";
|
||||||
|
|
||||||
|
// Build WHERE conditions
|
||||||
|
const whereConditions = [eq(customers.branchId, currentBranchId)];
|
||||||
if (status) {
|
if (status) {
|
||||||
return await db
|
whereConditions.push(eq(customers.customerStatus, status));
|
||||||
.select()
|
|
||||||
.from(customers)
|
|
||||||
.where(
|
|
||||||
and(
|
|
||||||
eq(customers.branchId, currentBranchId),
|
|
||||||
eq(customers.customerStatus, status),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return await db
|
// Build ORDER BY clause
|
||||||
|
let orderByClause;
|
||||||
|
const sortField = sortBy as keyof Customer;
|
||||||
|
if (sortOrder === "asc") {
|
||||||
|
orderByClause = asc(customers[sortField]);
|
||||||
|
} else {
|
||||||
|
orderByClause = desc(customers[sortField]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get total count
|
||||||
|
const [{ count: totalCount }] = await db
|
||||||
|
.select({ count: sql<number>`count(*)` })
|
||||||
|
.from(customers)
|
||||||
|
.where(and(...whereConditions));
|
||||||
|
|
||||||
|
// Get paginated data
|
||||||
|
const data = await db
|
||||||
.select()
|
.select()
|
||||||
.from(customers)
|
.from(customers)
|
||||||
.where(eq(customers.branchId, currentBranchId));
|
.where(and(...whereConditions))
|
||||||
|
.orderBy(orderByClause)
|
||||||
|
.limit(limit)
|
||||||
|
.offset(offset);
|
||||||
|
|
||||||
|
// Calculate pagination metadata
|
||||||
|
const totalPages = Math.ceil(Number(totalCount) / limit);
|
||||||
|
|
||||||
|
return {
|
||||||
|
data,
|
||||||
|
pagination: {
|
||||||
|
page,
|
||||||
|
limit,
|
||||||
|
total: Number(totalCount),
|
||||||
|
totalPages,
|
||||||
|
hasNext: page < totalPages,
|
||||||
|
hasPrev: page > 1,
|
||||||
|
},
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user