Spaces:
Sleeping
Sleeping
File size: 5,829 Bytes
19dd95f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# Project Overview Endpoint
## Purpose
Single endpoint that replaces 4 separate calls to get complete project structure. Returns project details, regions, roles, subcontractors, and team info based on user permissions.
**Replaces:**
- `GET /projects/{id}`
- `GET /projects/{id}/regions`
- `GET /projects/{id}/project-roles`
- `GET /projects/{id}/subcontractors`
## Endpoint
```
GET /api/v1/projects/{project_id}/overview
```
**Query Params:**
- `refresh` (optional): `true` to force cache refresh
**Cache:** 12 hours
## Response Structure
### For Managers/Admins
```json
{
"project": {
"id": "uuid",
"title": "Project Name",
"project_type": "customer_service",
"status": "active",
"client_id": "uuid",
"client_name": "Client Name",
"contractor_id": "uuid",
"contractor_name": "Contractor Name",
"primary_manager_id": "uuid",
"primary_manager_name": "Manager Name",
"service_type": "ftth",
"planned_start_date": "2025-01-01",
"planned_end_date": "2025-12-31",
"activation_requirements": [...],
"photo_requirements": [...],
"budget": {...},
"is_closed": false,
"created_at": "2025-01-01T00:00:00Z"
},
"regions": [
{
"id": "uuid",
"region_name": "Nairobi West",
"region_code": "NRB-W",
"manager_id": "uuid",
"manager_name": "Regional Manager",
"is_active": true,
"city": "Nairobi",
"latitude": -1.2921,
"longitude": 36.8219
}
],
"roles": [
{
"id": "uuid",
"role_name": "Technician",
"compensation_type": "commission",
"commission_percentage": 15.0,
"base_amount": 500.0,
"is_active": true
}
],
"subcontractors": [
{
"id": "uuid",
"subcontractor_id": "uuid",
"subcontractor_name": "SubCo Ltd",
"scope_description": "Installation work",
"project_region_id": "uuid",
"region_name": "Nairobi West",
"contract_value": 50000.0,
"is_active": true
}
],
"team_summary": {
"total_members": 25,
"by_role": {
"field_agent": 15,
"dispatcher": 3,
"sales_agent": 5,
"project_manager": 2
},
"by_region": {
"Nairobi West": 10,
"Mombasa": 8,
"Project-wide": 7
}
},
"my_involvement": null,
"cached_at": "2025-12-02T10:00:00Z",
"cache_expires_in_seconds": 43200
}
```
### For Field Agents/Sales Agents
```json
{
"project": {
"id": "uuid",
"title": "Project Name",
"project_type": "customer_service",
"status": "active",
"client_name": "Client Name",
"contractor_name": "Contractor Name",
"service_type": "ftth",
"activation_requirements": [...],
"photo_requirements": [...]
},
"regions": [
{
"id": "uuid",
"region_name": "Nairobi West",
"is_active": true,
"city": "Nairobi"
}
],
"roles": null,
"subcontractors": null,
"team_summary": null,
"my_involvement": {
"user_id": "uuid",
"user_name": "John Doe",
"user_email": "john@example.com",
"user_role": "field_agent",
"team_role": "technician",
"project_role_id": "uuid",
"project_role_name": "Senior Technician",
"assigned_region_id": "uuid",
"assigned_region_name": "Nairobi West",
"is_lead": false,
"assigned_at": "2025-01-15T08:00:00Z",
"subcontractor_id": null,
"subcontractor_name": null
},
"cached_at": "2025-12-02T10:00:00Z",
"cache_expires_in_seconds": 43200
}
```
## Frontend Usage
### Display Project Overview Page
```typescript
// Fetch overview
const response = await fetch(`/api/v1/projects/${projectId}/overview`);
const data = await response.json();
// Show project header
showProjectHeader({
title: data.project.title,
status: data.project.status,
client: data.project.client_name,
contractor: data.project.contractor_name
});
// Show regions (all users see all regions)
data.regions.forEach(region => {
const isMyRegion = data.my_involvement?.assigned_region_id === region.id;
renderRegionCard(region, isMyRegion); // Highlight user's region
});
// Role-specific rendering
if (data.my_involvement) {
// Field agent/sales agent view
showMyInvolvement({
role: data.my_involvement.team_role,
region: data.my_involvement.assigned_region_name,
projectRole: data.my_involvement.project_role_name
});
} else {
// Manager/admin view
showRoles(data.roles);
showSubcontractors(data.subcontractors);
showTeamSummary(data.team_summary);
}
```
### Check User's Region Assignment
```typescript
// Highlight user's assigned region in UI
const myRegionId = data.my_involvement?.assigned_region_id;
data.regions.forEach(region => {
const card = createRegionCard(region);
if (region.id === myRegionId) {
card.classList.add('my-region', 'highlighted');
}
});
```
### Display Requirements (Field Agents)
```typescript
// Show what photos are required
data.project.photo_requirements.forEach(req => {
console.log(`${req.type}: ${req.min_photos}-${req.max_photos} photos`);
});
// Show activation form fields
data.project.activation_requirements.forEach(field => {
renderFormField({
name: field.field,
label: field.label,
type: field.type,
required: field.required,
options: field.options
});
});
```
## Key Points
1. **Single call** - Replaces 4 separate API calls
2. **Role-based** - Response adapts to user permissions automatically
3. **Long cache** - 12 hours (structure rarely changes)
4. **All see regions** - Everyone sees all regions, UI highlights user's assigned region
5. **Field agents** - See their involvement only, not other team members
6. **Managers** - See complete project structure and team composition
## Error Responses
- `404` - Project not found
- `403` - User not authorized to access project
- `500` - Server error
|