2012-12-05 00:57:21 +01:00
|
|
|
!function(){
|
2011-11-13 12:58:45 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
var BranchGraph = function(element, options){
|
2012-12-07 19:06:46 +01:00
|
|
|
this.element = element;
|
2012-12-07 22:05:17 +01:00
|
|
|
this.options = options;
|
2012-12-05 00:57:21 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
this.preparedCommits = {};
|
2012-12-05 00:57:21 +01:00
|
|
|
this.mtime = 0;
|
|
|
|
this.mspace = 0;
|
|
|
|
this.parents = {};
|
|
|
|
this.colors = ["#000"];
|
|
|
|
|
2012-12-07 19:06:46 +01:00
|
|
|
this.load();
|
2012-12-05 00:57:21 +01:00
|
|
|
};
|
|
|
|
|
2012-12-07 19:06:46 +01:00
|
|
|
BranchGraph.prototype.load = function(){
|
|
|
|
$.ajax({
|
2012-12-07 22:05:17 +01:00
|
|
|
url: this.options.url,
|
2012-12-07 19:06:46 +01:00
|
|
|
method: 'get',
|
|
|
|
dataType: 'json',
|
|
|
|
success: $.proxy(function(data){
|
|
|
|
$('.loading', this.element).hide();
|
|
|
|
this.prepareData(data.days, data.commits);
|
2012-12-07 22:05:17 +01:00
|
|
|
this.buildGraph();
|
2012-12-07 19:06:46 +01:00
|
|
|
}, this)
|
|
|
|
});
|
2012-12-07 22:05:17 +01:00
|
|
|
};
|
2012-12-07 19:06:46 +01:00
|
|
|
|
|
|
|
BranchGraph.prototype.prepareData = function(days, commits){
|
|
|
|
this.days = days;
|
2012-12-07 22:05:17 +01:00
|
|
|
this.dayCount = days.length;
|
2012-12-07 19:06:46 +01:00
|
|
|
this.commits = commits;
|
2012-12-07 22:05:17 +01:00
|
|
|
this.commitCount = commits.length;
|
|
|
|
|
|
|
|
this.collectParents();
|
|
|
|
|
2012-12-07 19:06:46 +01:00
|
|
|
this.mtime += 4;
|
|
|
|
this.mspace += 10;
|
2012-12-07 22:05:17 +01:00
|
|
|
for (var i = 0; i < this.commitCount; i++) {
|
2012-12-05 00:57:21 +01:00
|
|
|
if (this.commits[i].id in this.parents) {
|
|
|
|
this.commits[i].isParent = true;
|
2011-11-13 12:58:45 +01:00
|
|
|
}
|
2012-12-07 22:05:17 +01:00
|
|
|
this.preparedCommits[this.commits[i].id] = this.commits[i];
|
2012-12-05 00:57:21 +01:00
|
|
|
}
|
2012-12-07 22:05:17 +01:00
|
|
|
this.collectColors();
|
|
|
|
};
|
|
|
|
|
|
|
|
BranchGraph.prototype.collectParents = function(){
|
|
|
|
for (var i = 0; i < this.commitCount; i++) {
|
|
|
|
for (var j = 0, jj = this.commits[i].parents.length; j < jj; j++) {
|
|
|
|
this.parents[this.commits[i].parents[j][0]] = true;
|
2011-11-13 12:58:45 +01:00
|
|
|
}
|
2012-12-07 22:05:17 +01:00
|
|
|
this.mtime = Math.max(this.mtime, this.commits[i].time);
|
|
|
|
this.mspace = Math.max(this.mspace, this.commits[i].space);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
BranchGraph.prototype.collectColors = function(){
|
2012-12-05 00:57:21 +01:00
|
|
|
for (var k = 0; k < this.mspace; k++) {
|
2012-12-23 17:00:26 +01:00
|
|
|
this.colors.push(Raphael.getColor(.8));
|
|
|
|
// Skipping a few colors in the spectrum to get more contrast between colors
|
|
|
|
Raphael.getColor();Raphael.getColor();
|
2012-12-05 00:57:21 +01:00
|
|
|
}
|
|
|
|
};
|
2011-11-15 09:34:30 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
BranchGraph.prototype.buildGraph = function(){
|
|
|
|
var graphWidth = $(this.element).width()
|
2013-01-25 16:52:11 +01:00
|
|
|
, ch = this.mspace * 20 + 100
|
|
|
|
, cw = Math.max(graphWidth, this.mtime * 20 + 260)
|
2012-12-07 22:05:17 +01:00
|
|
|
, r = Raphael(this.element.get(0), cw, ch)
|
2012-12-05 00:57:21 +01:00
|
|
|
, top = r.set()
|
|
|
|
, cuday = 0
|
2012-12-07 19:06:46 +01:00
|
|
|
, cumonth = ""
|
2012-12-07 22:05:17 +01:00
|
|
|
, offsetX = 20
|
|
|
|
, offsetY = 60
|
2013-01-29 09:25:17 +01:00
|
|
|
, barWidth = Math.max(graphWidth, this.dayCount * 20 + 320)
|
|
|
|
, scrollLeft = cw;
|
2012-12-07 19:06:46 +01:00
|
|
|
|
|
|
|
this.raphael = r;
|
2012-12-05 00:57:21 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
r.rect(0, 0, barWidth, 20).attr({fill: "#222"});
|
|
|
|
r.rect(0, 20, barWidth, 20).attr({fill: "#444"});
|
2012-12-05 00:57:21 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
for (mm = 0; mm < this.dayCount; mm++) {
|
2012-12-05 00:57:21 +01:00
|
|
|
if(this.days[mm] != null){
|
|
|
|
if(cuday != this.days[mm][0]){
|
2012-12-07 22:05:17 +01:00
|
|
|
// Dates
|
|
|
|
r.text(offsetX + mm * 20, 31, this.days[mm][0]).attr({
|
2012-12-28 16:36:42 +01:00
|
|
|
font: "12px Monaco, monospace",
|
2012-12-05 00:57:21 +01:00
|
|
|
fill: "#DDD"
|
|
|
|
});
|
|
|
|
cuday = this.days[mm][0];
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-12-05 00:57:21 +01:00
|
|
|
if(cumonth != this.days[mm][1]){
|
2012-12-07 22:05:17 +01:00
|
|
|
// Months
|
|
|
|
r.text(offsetX + mm * 20, 11, this.days[mm][1]).attr({
|
2012-12-28 16:36:42 +01:00
|
|
|
font: "12px Monaco, monospace",
|
2012-12-05 00:57:21 +01:00
|
|
|
fill: "#EEE"
|
|
|
|
});
|
|
|
|
cumonth = this.days[mm][1];
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-12-05 00:57:21 +01:00
|
|
|
}
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-12-05 00:57:21 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
for (i = 0; i < this.commitCount; i++) {
|
|
|
|
var x = offsetX + 20 * this.commits[i].time
|
2013-01-30 14:20:00 +01:00
|
|
|
, y = offsetY + 10 * this.commits[i].space
|
|
|
|
, c
|
|
|
|
, ps;
|
2012-12-28 16:36:42 +01:00
|
|
|
|
|
|
|
// Draw dot
|
2012-12-05 00:57:21 +01:00
|
|
|
r.circle(x, y, 3).attr({
|
|
|
|
fill: this.colors[this.commits[i].space],
|
|
|
|
stroke: "none"
|
|
|
|
});
|
2012-12-23 22:46:27 +01:00
|
|
|
|
2012-12-28 16:36:42 +01:00
|
|
|
// Draw lines
|
2012-12-05 00:57:21 +01:00
|
|
|
for (var j = 0, jj = this.commits[i].parents.length; j < jj; j++) {
|
2012-12-07 22:05:17 +01:00
|
|
|
c = this.preparedCommits[this.commits[i].parents[j][0]];
|
2013-01-30 14:20:00 +01:00
|
|
|
ps = this.commits[i].parent_spaces[j];
|
2012-12-05 00:57:21 +01:00
|
|
|
if (c) {
|
2012-12-07 22:05:17 +01:00
|
|
|
var cx = offsetX + 20 * c.time
|
2013-01-30 14:20:00 +01:00
|
|
|
, cy = offsetY + 10 * c.space
|
|
|
|
, psy = offsetY + 10 * ps;
|
2013-01-31 09:29:36 +01:00
|
|
|
if (c.space == this.commits[i].space && c.space == ps) {
|
2012-12-07 22:05:17 +01:00
|
|
|
r.path([
|
|
|
|
"M", x, y,
|
2013-01-23 13:34:19 +01:00
|
|
|
"L", cx, cy
|
2012-12-07 22:05:17 +01:00
|
|
|
]).attr({
|
2012-12-05 00:57:21 +01:00
|
|
|
stroke: this.colors[c.space],
|
|
|
|
"stroke-width": 2
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if (c.space < this.commits[i].space) {
|
2013-01-30 14:20:00 +01:00
|
|
|
r.path([
|
|
|
|
"M", x - 5, y,
|
|
|
|
"l-5-2,0,4,5,-2",
|
|
|
|
"L", x - 10, y,
|
|
|
|
"L", x - 15, psy,
|
|
|
|
"L", cx + 5, psy,
|
|
|
|
"L", cx, cy])
|
2012-12-05 00:57:21 +01:00
|
|
|
.attr({
|
|
|
|
stroke: this.colors[this.commits[i].space],
|
|
|
|
"stroke-width": 2
|
|
|
|
});
|
|
|
|
} else {
|
2013-01-30 14:20:00 +01:00
|
|
|
r.path([
|
|
|
|
"M", x - 3, y + 6,
|
|
|
|
"l-4,3,4,2,0,-5",
|
|
|
|
"L", x - 5, y + 10,
|
|
|
|
"L", x - 10, psy,
|
|
|
|
"L", cx + 5, psy,
|
|
|
|
"L", cx, cy])
|
2012-12-05 00:57:21 +01:00
|
|
|
.attr({
|
|
|
|
stroke: this.colors[c.space],
|
|
|
|
"stroke-width": 2
|
|
|
|
});
|
|
|
|
}
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-12-05 00:57:21 +01:00
|
|
|
}
|
2012-12-28 16:36:42 +01:00
|
|
|
|
|
|
|
if (this.commits[i].refs) {
|
|
|
|
this.appendLabel(x, y, this.commits[i].refs);
|
|
|
|
}
|
|
|
|
|
2013-02-05 04:34:35 +01:00
|
|
|
// mark commit and displayed in the center
|
|
|
|
if (this.commits[i].id == this.options.commit_id) {
|
|
|
|
r.path([
|
|
|
|
'M', x, y - 5,
|
|
|
|
'L', x + 4, y - 15,
|
|
|
|
'L', x - 4, y - 15,
|
|
|
|
'Z'
|
|
|
|
]).attr({
|
|
|
|
"fill": "#000",
|
|
|
|
"fill-opacity": .7,
|
|
|
|
"stroke": "none"
|
|
|
|
});
|
|
|
|
scrollLeft = x - graphWidth / 2;
|
|
|
|
}
|
|
|
|
|
2012-12-07 19:06:46 +01:00
|
|
|
this.appendAnchor(top, this.commits[i], x, y);
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
|
|
|
top.toFront();
|
2013-01-29 09:25:17 +01:00
|
|
|
this.element.scrollLeft(scrollLeft);
|
2012-12-07 22:05:17 +01:00
|
|
|
this.bindEvents();
|
|
|
|
};
|
|
|
|
|
|
|
|
BranchGraph.prototype.bindEvents = function(){
|
|
|
|
var drag = {}
|
|
|
|
, element = this.element;
|
2012-12-07 19:06:46 +01:00
|
|
|
|
2012-12-07 22:05:17 +01:00
|
|
|
var dragger = function(event){
|
|
|
|
element.scrollLeft(drag.sl - (event.clientX - drag.x));
|
|
|
|
element.scrollTop(drag.st - (event.clientY - drag.y));
|
2011-11-12 23:30:51 +01:00
|
|
|
};
|
2012-12-07 22:05:17 +01:00
|
|
|
|
|
|
|
element.on({
|
|
|
|
mousedown: function (event) {
|
|
|
|
drag = {
|
|
|
|
x: event.clientX,
|
|
|
|
y: event.clientY,
|
|
|
|
st: element.scrollTop(),
|
|
|
|
sl: element.scrollLeft()
|
|
|
|
};
|
|
|
|
$(window).on('mousemove', dragger);
|
2012-12-07 19:06:46 +01:00
|
|
|
}
|
2012-12-07 22:05:17 +01:00
|
|
|
});
|
|
|
|
$(window).on({
|
|
|
|
mouseup: function(){
|
|
|
|
//bars.animate({opacity: 0}, 300);
|
|
|
|
$(window).off('mousemove', dragger);
|
|
|
|
},
|
|
|
|
keydown: function(event){
|
|
|
|
if(event.keyCode == 37){
|
|
|
|
// left
|
|
|
|
element.scrollLeft( element.scrollLeft() - 50);
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-12-07 22:05:17 +01:00
|
|
|
if(event.keyCode == 38){
|
|
|
|
// top
|
|
|
|
element.scrollTop( element.scrollTop() - 50);
|
|
|
|
}
|
|
|
|
if(event.keyCode == 39){
|
|
|
|
// right
|
|
|
|
element.scrollLeft( element.scrollLeft() + 50);
|
|
|
|
}
|
|
|
|
if(event.keyCode == 40){
|
|
|
|
// bottom
|
|
|
|
element.scrollTop( element.scrollTop() + 50);
|
|
|
|
}
|
2012-12-07 19:06:46 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2012-12-23 22:46:27 +01:00
|
|
|
BranchGraph.prototype.appendLabel = function(x, y, refs){
|
|
|
|
var r = this.raphael
|
|
|
|
, shortrefs = refs
|
|
|
|
, text, textbox, rect;
|
|
|
|
|
2012-12-28 16:36:42 +01:00
|
|
|
if (shortrefs.length > 17){
|
2012-12-23 22:46:27 +01:00
|
|
|
// Truncate if longer than 15 chars
|
2012-12-28 16:36:42 +01:00
|
|
|
shortrefs = shortrefs.substr(0,15) + "…";
|
2012-12-23 22:46:27 +01:00
|
|
|
}
|
|
|
|
|
2012-12-28 16:36:42 +01:00
|
|
|
text = r.text(x+5, y+8 + 10, shortrefs).attr({
|
|
|
|
font: "10px Monaco, monospace",
|
2012-12-23 22:46:27 +01:00
|
|
|
fill: "#FFF",
|
|
|
|
title: refs
|
|
|
|
});
|
|
|
|
|
|
|
|
textbox = text.getBBox();
|
|
|
|
text.transform([
|
|
|
|
't', textbox.height/-4, textbox.width/2 + 5,
|
|
|
|
'r90'
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Create rectangle based on the size of the textbox
|
|
|
|
rect = r.rect(x, y, textbox.width + 15, textbox.height + 5, 4).attr({
|
2012-12-28 16:36:42 +01:00
|
|
|
"fill": "#000",
|
|
|
|
"fill-opacity": .7,
|
|
|
|
"stroke": "none"
|
|
|
|
});
|
|
|
|
|
|
|
|
triangle = r.path([
|
|
|
|
'M', x, y + 5,
|
|
|
|
'L', x + 4, y + 15,
|
|
|
|
'L', x - 4, y + 15,
|
|
|
|
'Z'
|
|
|
|
]).attr({
|
|
|
|
"fill": "#000",
|
|
|
|
"fill-opacity": .7,
|
|
|
|
"stroke": "none"
|
2012-12-23 22:46:27 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Rotate and reposition rectangle over text
|
|
|
|
rect.transform([
|
|
|
|
'r', 90, x, y,
|
2012-12-28 16:36:42 +01:00
|
|
|
't', 15, -9
|
2012-12-23 22:46:27 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
// Set text to front
|
|
|
|
text.toFront();
|
|
|
|
};
|
|
|
|
|
2012-12-28 16:36:42 +01:00
|
|
|
BranchGraph.prototype.appendAnchor = function(top, commit, x, y) {
|
2012-12-07 22:05:17 +01:00
|
|
|
var r = this.raphael
|
|
|
|
, options = this.options
|
|
|
|
, anchor;
|
|
|
|
anchor = r.circle(x, y, 10).attr({
|
2012-12-07 19:06:46 +01:00
|
|
|
fill: "#000",
|
|
|
|
opacity: 0,
|
|
|
|
cursor: "pointer"
|
|
|
|
})
|
|
|
|
.click(function(){
|
2013-01-31 02:37:23 +01:00
|
|
|
window.open(options.commit_url.replace('%s', commit.id), '_blank');
|
2012-12-07 19:06:46 +01:00
|
|
|
})
|
2012-12-07 22:05:17 +01:00
|
|
|
.hover(function(){
|
2012-12-28 16:36:42 +01:00
|
|
|
this.tooltip = r.commitTooltip(x, y + 5, commit);
|
|
|
|
top.push(this.tooltip.insertBefore(this));
|
2012-12-07 22:05:17 +01:00
|
|
|
}, function(){
|
2012-12-28 16:36:42 +01:00
|
|
|
this.tooltip && this.tooltip.remove() && delete this.tooltip;
|
2012-12-07 22:05:17 +01:00
|
|
|
});
|
|
|
|
top.push(anchor);
|
2012-12-05 00:57:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
this.BranchGraph = BranchGraph;
|
|
|
|
|
|
|
|
}(this);
|
2012-12-28 16:36:42 +01:00
|
|
|
Raphael.fn.commitTooltip = function(x, y, commit){
|
|
|
|
var nameText, idText, messageText
|
|
|
|
, boxWidth = 300
|
|
|
|
, boxHeight = 200;
|
|
|
|
|
|
|
|
nameText = this.text(x, y + 10, commit.author.name);
|
|
|
|
idText = this.text(x, y + 35, commit.id);
|
|
|
|
messageText = this.text(x, y + 50, commit.message);
|
|
|
|
|
|
|
|
textSet = this.set(nameText, idText, messageText).attr({
|
|
|
|
"text-anchor": "start",
|
|
|
|
"font": "12px Monaco, monospace"
|
|
|
|
});
|
|
|
|
|
|
|
|
nameText.attr({
|
|
|
|
"font": "14px Arial",
|
|
|
|
"font-weight": "bold"
|
|
|
|
});
|
|
|
|
|
|
|
|
idText.attr({
|
|
|
|
"fill": "#AAA"
|
|
|
|
});
|
|
|
|
|
|
|
|
textWrap(messageText, boxWidth - 50);
|
|
|
|
|
|
|
|
var rect = this.rect(x - 10, y - 10, boxWidth, 100, 4).attr({
|
|
|
|
"fill": "#FFF",
|
|
|
|
"stroke": "#000",
|
|
|
|
"stroke-linecap": "round",
|
|
|
|
"stroke-width": 2
|
|
|
|
});
|
|
|
|
var tooltip = this.set(rect, textSet);
|
|
|
|
|
|
|
|
rect.attr({
|
|
|
|
"height" : tooltip.getBBox().height + 10,
|
|
|
|
"width" : tooltip.getBBox().width + 10
|
|
|
|
});
|
|
|
|
|
|
|
|
tooltip.transform([
|
|
|
|
't', 20, 20
|
|
|
|
]);
|
|
|
|
|
|
|
|
return tooltip;
|
2011-11-12 23:30:51 +01:00
|
|
|
};
|
2012-12-28 16:36:42 +01:00
|
|
|
|
|
|
|
function textWrap(t, width) {
|
|
|
|
var content = t.attr("text");
|
|
|
|
var abc = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
|
|
t.attr({
|
|
|
|
"text" : abc
|
|
|
|
});
|
|
|
|
var letterWidth = t.getBBox().width / abc.length;
|
|
|
|
|
|
|
|
t.attr({
|
|
|
|
"text" : content
|
|
|
|
});
|
|
|
|
|
|
|
|
var words = content.split(" ");
|
|
|
|
var x = 0, s = [];
|
|
|
|
for ( var i = 0; i < words.length; i++) {
|
|
|
|
|
|
|
|
var l = words[i].length;
|
|
|
|
if (x + (l * letterWidth) > width) {
|
|
|
|
s.push("\n");
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
x += l * letterWidth;
|
|
|
|
s.push(words[i] + " ");
|
|
|
|
}
|
|
|
|
t.attr({
|
|
|
|
"text" : s.join("")
|
|
|
|
});
|
|
|
|
var b = t.getBBox()
|
|
|
|
, h = Math.abs(b.y2) - Math.abs(b.y) + 1;
|
|
|
|
t.attr({
|
|
|
|
"y": b.y + h
|
|
|
|
});
|
2013-01-23 13:34:19 +01:00
|
|
|
}
|