burnchart/README.md

74 lines
3.5 KiB
Markdown
Raw Normal View History

2013-08-11 18:51:19 +00:00
#GitHub Burndown Chart
##Rework in Progress
2012-09-17 10:33:48 +00:00
2013-08-11 18:51:19 +00:00
##Project Charter
2012-09-17 10:33:48 +00:00
2013-08-11 18:51:19 +00:00
The app is to display a burndown chart from a set of GitHub issues in a milestone.
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
If we can, do all processing and storage on the client which makes the app run for "free" on `gh-pages` etc.
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
Show:
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
* Upcoming issues by size.
* Issues closed today.
* For each issue show other tags and assignee (avatar).
* Number of working days left.
2013-08-11 19:26:31 +00:00
* To whom open issues still belong.
* Projected ship date (project running late/not).
* For each user/avatar what is their % progress and number of open/closed issues.
* Heat: if we are struck/very productive for a period of time, colorize the chart line.
* For milestones with no due date, show an estimate as to when it will probably be finished.
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
Allow:
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
* Toggle non working days.
* Have a print view.
* Customization of the theme (own logo/colors etc.).
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
Configure:
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
* Repos for users/orgs.
* Private api keys.
* Non working days.
* Label pattern to determine size (?).
* How often to poll for updates (limited by GH API).
2012-05-23 15:17:39 +00:00
2013-08-11 18:51:19 +00:00
Be:
2012-09-17 08:11:27 +00:00
2013-08-11 18:51:19 +00:00
* Responsive.
* As lightweight as possible (do we need Backbone/jQuery?).
* Well documented and modularized.
2013-08-11 22:44:04 +00:00
* Handling upstream API downtimes.
* Testing the algo by way of using the proxy service to fake responses.
* Handling daylight savings et al.
2013-08-11 18:51:19 +00:00
Usage envisaged in these three scenarios:
2013-08-11 18:51:19 +00:00
1. Use the `gh-pages` branch of this repo to connect and visualize a public repo.
2013-08-11 22:44:04 +00:00
* App requesting a static JSON config file, merging with LocalStorage.
2013-08-11 18:51:19 +00:00
1. Deploy the app on a static server elsewhere with custom `config`.
2013-08-11 22:44:04 +00:00
* App requesting a static JSON config file, merging with LocalStorage.
2013-08-11 19:26:31 +00:00
1. Proxy requests through a service to not disclose private api keys publicly.
2013-08-11 22:44:04 +00:00
* Proxy app wrapping a request with API credentials. When requesting the config file we get the file dynamically stating which URL to use to make requests. API keys are scrubbed from the JSON file. When someone makes a request to us, wrap their request (only GET requests to specific endpoints!) and pipe the response back.
* All this works as a Connect Middleware.
* Also, make this cache responses for a given amount of time (poll time). This way people concerned with a big amount of requests can share the same resource.
2013-08-11 19:26:31 +00:00
##Design
###Initialization
1. Get [milestones](http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository) and determine which one is ending the soonest.
1. For this milestone get both [open & closed](http://developer.github.com/v3/issues/#list-issues-for-a-repository) issues (can span [multiple pages](http://developer.github.com/v3/#pagination)).
1. Filter out issues not matching our pattern. For those that do keep tally and insert them to a map of days. Keep track of issue ids of open and closed issues.
1. Determine what the average velocity per day needs to be.
1. Go from the front (milestone creation date) to the back (milestone due date) day by day.
1. For each day that has an entry in the map, add them to the end array (for actual).
1. For expected just keep reducing the total by velocity every day.
1. Profit.
###Poll
An issue can be re-opened so we need to keep track of changes to individual tickets. Assume that polls happen quite frequently in the day and not say once a week or something.
1. Get both open & closed tickets sorted by their `created` and `updated` in a descending order. Do not need to get all pages back to UNIX time...
1. If we have a mismatch between our previous arrays of open/closed issue ids then determine if we need to move an issue (change of state) from one group to another.