-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Added Team Projects mockup data v1
- Loading branch information
1 parent
6ab67b2
commit b5e6126
Showing
1 changed file
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
{ | ||
"team-projects": { | ||
"title": "Team Projects", | ||
"description": "This visualization showcases the work in progress of active projects at IXT", | ||
"sensors": { | ||
"github": { | ||
"values": { | ||
"project-1": { | ||
"title": "Project 1", | ||
"logo": "https://avatars.githubusercontent.com/u/9919?s=200&v=4", | ||
"pullRequests": { | ||
"pr_id_1": { | ||
"title": "Feature: Add user authentication", | ||
"description": "Implementing Firebase Auth", | ||
"author": "user_123", | ||
"createdAt": 1704537600000, | ||
"status": "open", | ||
"sourceBranch": "feature/auth", | ||
"targetBranch": "main", | ||
"commits": { | ||
"commit_1": { | ||
"hash": "abc123", | ||
"message": "Initial auth setup", | ||
"timestamp": 1704537600000 | ||
} | ||
}, | ||
"checks": { | ||
"check_1": { | ||
"name": "Unit Tests", | ||
"status": "passed", | ||
"timestamp": 1704537700000, | ||
"type": "automatic" | ||
}, | ||
"check_2": { | ||
"name": "Code Review", | ||
"status": "pending", | ||
"reviewerId": "user_456", | ||
"type": "manual" | ||
} | ||
}, | ||
"timeline": { | ||
"event_1": { | ||
"type": "pr_created", | ||
"timestamp": 1704537600000, | ||
"actor": "user_123" | ||
}, | ||
"event_2": { | ||
"type": "check_completed", | ||
"checkId": "check_1", | ||
"timestamp": 1704537700000, | ||
"status": "passed" | ||
} | ||
}, | ||
"reviewers": { | ||
"user_456": { | ||
"status": "pending", | ||
"assignedAt": 1704537650000 | ||
} | ||
} | ||
} | ||
}, | ||
"branches": { | ||
"main": { | ||
"lastCommit": "def456", | ||
"lastUpdated": 1704537500000 | ||
}, | ||
"feature/auth": { | ||
"lastCommit": "abc123", | ||
"lastUpdated": 1704537600000 | ||
} | ||
}, | ||
"users": { | ||
"user_123": { | ||
"name": "John Doe", | ||
"email": "john@example.com", | ||
"activePRs": { | ||
"pr_id_1": true | ||
} | ||
}, | ||
"user_456": { | ||
"name": "Jane Smith", | ||
"email": "jane@example.com", | ||
"assignedReviews": { | ||
"pr_id_1": true | ||
} | ||
} | ||
} | ||
}, | ||
"project-2": { | ||
"title": "Project 2", | ||
"logo": "https://avatars.githubusercontent.com/u/9919?s=200&v=4", | ||
"pullRequests": { | ||
"pr_id_1": { | ||
"title": "Feature: Add user authentication", | ||
"description": "Implementing Firebase Auth", | ||
"author": "user_123", | ||
"createdAt": 1704537600000, | ||
"status": "open", | ||
"sourceBranch": "feature/auth", | ||
"targetBranch": "main", | ||
"commits": { | ||
"commit_1": { | ||
"hash": "abc123", | ||
"message": "Initial auth setup", | ||
"timestamp": 1704537600000 | ||
} | ||
}, | ||
"checks": { | ||
"check_1": { | ||
"name": "Unit Tests", | ||
"status": "passed", | ||
"timestamp": 1704537700000, | ||
"type": "automatic" | ||
}, | ||
"check_2": { | ||
"name": "Code Review", | ||
"status": "pending", | ||
"reviewerId": "user_456", | ||
"type": "manual" | ||
} | ||
}, | ||
"timeline": { | ||
"event_1": { | ||
"type": "pr_created", | ||
"timestamp": 1704537600000, | ||
"actor": "user_123" | ||
}, | ||
"event_2": { | ||
"type": "check_completed", | ||
"checkId": "check_1", | ||
"timestamp": 1704537700000, | ||
"status": "passed" | ||
} | ||
}, | ||
"reviewers": { | ||
"user_456": { | ||
"status": "pending", | ||
"assignedAt": 1704537650000 | ||
} | ||
} | ||
} | ||
}, | ||
"branches": { | ||
"main": { | ||
"lastCommit": "def456", | ||
"lastUpdated": 1704537500000 | ||
}, | ||
"feature/auth": { | ||
"lastCommit": "abc123", | ||
"lastUpdated": 1704537600000 | ||
} | ||
}, | ||
"users": { | ||
"user_123": { | ||
"name": "John Doe", | ||
"email": "john@example.com", | ||
"activePRs": { | ||
"pr_id_1": true | ||
} | ||
}, | ||
"user_456": { | ||
"name": "Jane Smith", | ||
"email": "jane@example.com", | ||
"assignedReviews": { | ||
"pr_id_1": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |