2013-03-11 09:52:27 +01:00
|
|
|
class BranchGraph
|
|
|
|
constructor: (@element, @options) ->
|
|
|
|
@preparedCommits = {}
|
|
|
|
@mtime = 0
|
|
|
|
@mspace = 0
|
|
|
|
@parents = {}
|
|
|
|
@colors = ["#000"]
|
2013-03-21 13:34:15 +01:00
|
|
|
@offsetX = 120
|
|
|
|
@offsetY = 20
|
2013-03-20 10:19:01 +01:00
|
|
|
@unitTime = 30
|
2013-03-21 13:34:15 +01:00
|
|
|
@unitSpace = 10
|
2013-03-11 09:52:27 +01:00
|
|
|
@load()
|
2011-11-13 12:58:45 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
load: ->
|
|
|
|
$.ajax
|
|
|
|
url: @options.url
|
|
|
|
method: "get"
|
|
|
|
dataType: "json"
|
|
|
|
success: $.proxy((data) ->
|
|
|
|
$(".loading", @element).hide()
|
|
|
|
@prepareData data.days, data.commits
|
|
|
|
@buildGraph()
|
|
|
|
, this)
|
2011-11-15 09:34:30 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
prepareData: (@days, @commits) ->
|
|
|
|
@collectParents()
|
|
|
|
|
|
|
|
for c in @commits
|
|
|
|
c.isParent = true if c.id of @parents
|
|
|
|
@preparedCommits[c.id] = c
|
|
|
|
|
|
|
|
@collectColors()
|
|
|
|
|
|
|
|
collectParents: ->
|
|
|
|
for c in @commits
|
|
|
|
@mtime = Math.max(@mtime, c.time)
|
|
|
|
@mspace = Math.max(@mspace, c.space)
|
|
|
|
for p in c.parents
|
|
|
|
@parents[p[0]] = true
|
2013-03-20 10:17:12 +01:00
|
|
|
@mspace = Math.max(@mspace, p[1])
|
2013-03-11 09:52:27 +01:00
|
|
|
|
|
|
|
collectColors: ->
|
|
|
|
k = 0
|
|
|
|
while k < @mspace
|
|
|
|
@colors.push Raphael.getColor(.8)
|
|
|
|
# Skipping a few colors in the spectrum to get more contrast between colors
|
|
|
|
Raphael.getColor()
|
|
|
|
Raphael.getColor()
|
|
|
|
k++
|
|
|
|
|
|
|
|
buildGraph: ->
|
2013-03-20 10:17:12 +01:00
|
|
|
graphHeight = $(@element).height()
|
2013-03-11 09:52:27 +01:00
|
|
|
graphWidth = $(@element).width()
|
2013-03-22 02:07:11 +01:00
|
|
|
ch = Math.max(graphHeight, @offsetY + @unitTime * @mtime + 150)
|
|
|
|
cw = Math.max(graphWidth, @offsetX + @unitSpace * @mspace + 300)
|
2013-03-21 13:34:15 +01:00
|
|
|
@r = r = Raphael(@element.get(0), cw, ch)
|
2013-03-11 09:52:27 +01:00
|
|
|
top = r.set()
|
|
|
|
cuday = 0
|
|
|
|
cumonth = ""
|
2013-03-21 13:34:15 +01:00
|
|
|
barHeight = Math.max(graphHeight, @unitTime * @days.length + 320)
|
|
|
|
|
2013-03-22 02:07:11 +01:00
|
|
|
r.rect(0, 0, 26, barHeight).attr fill: "#222"
|
|
|
|
r.rect(26, 0, 20, barHeight).attr fill: "#444"
|
2013-03-11 09:52:27 +01:00
|
|
|
|
|
|
|
for day, mm in @days
|
|
|
|
if cuday isnt day[0]
|
|
|
|
# Dates
|
2013-03-22 02:07:11 +01:00
|
|
|
r.text(36, @offsetY + @unitTime * mm, day[0])
|
2013-03-11 09:52:27 +01:00
|
|
|
.attr(
|
|
|
|
font: "12px Monaco, monospace"
|
2012-12-05 00:57:21 +01:00
|
|
|
fill: "#DDD"
|
2013-03-11 09:52:27 +01:00
|
|
|
)
|
|
|
|
cuday = day[0]
|
|
|
|
|
|
|
|
if cumonth isnt day[1]
|
|
|
|
# Months
|
2013-03-22 02:07:11 +01:00
|
|
|
r.text(13, @offsetY + @unitTime * mm, day[1])
|
2013-03-11 09:52:27 +01:00
|
|
|
.attr(
|
|
|
|
font: "12px Monaco, monospace"
|
2012-12-05 00:57:21 +01:00
|
|
|
fill: "#EEE"
|
2013-03-11 09:52:27 +01:00
|
|
|
)
|
|
|
|
cumonth = day[1]
|
|
|
|
|
|
|
|
for commit in @commits
|
2013-03-21 13:34:15 +01:00
|
|
|
x = @offsetX + @unitSpace * (@mspace - commit.space)
|
|
|
|
y = @offsetY + @unitTime * commit.time
|
2013-03-11 09:52:27 +01:00
|
|
|
|
2013-03-19 10:42:46 +01:00
|
|
|
@drawDot(x, y, commit)
|
2013-03-11 09:52:27 +01:00
|
|
|
|
2013-03-19 10:42:46 +01:00
|
|
|
@drawLines(x, y, commit)
|
2013-03-11 09:52:27 +01:00
|
|
|
|
2013-03-19 10:42:46 +01:00
|
|
|
@appendLabel(x, y, commit.refs) if commit.refs
|
2012-12-05 00:57:21 +01:00
|
|
|
|
2013-03-19 10:42:46 +01:00
|
|
|
@appendAnchor(top, commit, x, y)
|
2013-02-05 04:34:35 +01:00
|
|
|
|
2013-03-20 10:17:12 +01:00
|
|
|
@markCommit(x, y, commit, graphHeight)
|
2013-03-11 09:52:27 +01:00
|
|
|
|
|
|
|
top.toFront()
|
|
|
|
@bindEvents()
|
|
|
|
|
|
|
|
bindEvents: ->
|
|
|
|
drag = {}
|
|
|
|
element = @element
|
|
|
|
dragger = (event) ->
|
|
|
|
element.scrollLeft drag.sl - (event.clientX - drag.x)
|
|
|
|
element.scrollTop drag.st - (event.clientY - drag.y)
|
|
|
|
|
|
|
|
element.on mousedown: (event) ->
|
|
|
|
drag =
|
|
|
|
x: event.clientX
|
|
|
|
y: event.clientY
|
|
|
|
st: element.scrollTop()
|
|
|
|
sl: element.scrollLeft()
|
|
|
|
$(window).on "mousemove", dragger
|
|
|
|
|
|
|
|
$(window).on
|
|
|
|
mouseup: ->
|
|
|
|
$(window).off "mousemove", dragger
|
|
|
|
keydown: (event) ->
|
|
|
|
# left
|
|
|
|
element.scrollLeft element.scrollLeft() - 50 if event.keyCode is 37
|
|
|
|
# top
|
|
|
|
element.scrollTop element.scrollTop() - 50 if event.keyCode is 38
|
|
|
|
# right
|
|
|
|
element.scrollLeft element.scrollLeft() + 50 if event.keyCode is 39
|
|
|
|
# bottom
|
|
|
|
element.scrollTop element.scrollTop() + 50 if event.keyCode is 40
|
|
|
|
|
|
|
|
appendLabel: (x, y, refs) ->
|
2013-03-21 13:34:15 +01:00
|
|
|
r = @r
|
2013-03-11 09:52:27 +01:00
|
|
|
shortrefs = refs
|
|
|
|
# Truncate if longer than 15 chars
|
|
|
|
shortrefs = shortrefs.substr(0, 15) + "…" if shortrefs.length > 17
|
2013-03-26 01:46:10 +01:00
|
|
|
text = r.text(x + 4, y, shortrefs).attr(
|
2013-03-20 10:17:12 +01:00
|
|
|
"text-anchor": "start"
|
2013-03-11 09:52:27 +01:00
|
|
|
font: "10px Monaco, monospace"
|
|
|
|
fill: "#FFF"
|
2012-12-23 22:46:27 +01:00
|
|
|
title: refs
|
2013-03-11 09:52:27 +01:00
|
|
|
)
|
|
|
|
textbox = text.getBBox()
|
|
|
|
# Create rectangle based on the size of the textbox
|
2013-03-26 01:46:10 +01:00
|
|
|
rect = r.rect(x, y - 7, textbox.width + 5, textbox.height + 5, 4).attr(
|
2013-03-11 09:52:27 +01:00
|
|
|
fill: "#000"
|
2013-03-20 10:17:12 +01:00
|
|
|
"fill-opacity": .5
|
2013-03-11 09:52:27 +01:00
|
|
|
stroke: "none"
|
|
|
|
)
|
2013-03-20 10:17:12 +01:00
|
|
|
triangle = r.path(["M", x - 5, y, "L", x - 15, y - 4, "L", x - 15, y + 4, "Z"]).attr(
|
2013-03-11 09:52:27 +01:00
|
|
|
fill: "#000"
|
2013-03-20 10:17:12 +01:00
|
|
|
"fill-opacity": .5
|
2013-03-11 09:52:27 +01:00
|
|
|
stroke: "none"
|
|
|
|
)
|
2013-03-20 10:17:12 +01:00
|
|
|
|
|
|
|
label = r.set(rect, text)
|
|
|
|
label.transform(["t", -rect.getBBox().width - 15, 0])
|
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
# Set text to front
|
|
|
|
text.toFront()
|
2012-12-23 22:46:27 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
appendAnchor: (top, commit, x, y) ->
|
2013-03-21 13:34:15 +01:00
|
|
|
r = @r
|
2013-03-11 09:52:27 +01:00
|
|
|
options = @options
|
|
|
|
anchor = r.circle(x, y, 10).attr(
|
|
|
|
fill: "#000"
|
|
|
|
opacity: 0
|
2012-12-07 19:06:46 +01:00
|
|
|
cursor: "pointer"
|
2013-03-11 09:52:27 +01:00
|
|
|
).click(->
|
|
|
|
window.open options.commit_url.replace("%s", commit.id), "_blank"
|
|
|
|
).hover(->
|
2013-03-20 10:17:12 +01:00
|
|
|
@tooltip = r.commitTooltip(x + 5, y, commit)
|
2013-03-11 09:52:27 +01:00
|
|
|
top.push @tooltip.insertBefore(this)
|
|
|
|
, ->
|
|
|
|
@tooltip and @tooltip.remove() and delete @tooltip
|
|
|
|
)
|
|
|
|
top.push anchor
|
|
|
|
|
2013-03-19 10:42:46 +01:00
|
|
|
drawDot: (x, y, commit) ->
|
2013-03-21 13:34:15 +01:00
|
|
|
r = @r
|
2013-03-19 10:42:46 +01:00
|
|
|
r.circle(x, y, 3).attr(
|
|
|
|
fill: @colors[commit.space]
|
|
|
|
stroke: "none"
|
|
|
|
)
|
2013-03-20 10:19:01 +01:00
|
|
|
r.rect(@offsetX + @unitSpace * @mspace + 10, y - 10, 20, 20).attr(
|
|
|
|
fill: "url(#{commit.author.icon})"
|
|
|
|
stroke: @colors[commit.space]
|
|
|
|
"stroke-width": 2
|
|
|
|
)
|
|
|
|
r.text(@offsetX + @unitSpace * @mspace + 35, y, commit.message.split("\n")[0]).attr(
|
|
|
|
"text-anchor": "start"
|
|
|
|
font: "14px Monaco, monospace"
|
|
|
|
)
|
2013-03-19 10:42:46 +01:00
|
|
|
|
|
|
|
drawLines: (x, y, commit) ->
|
2013-03-21 13:34:15 +01:00
|
|
|
r = @r
|
2013-03-22 03:59:36 +01:00
|
|
|
for parent, i in commit.parents
|
2013-03-19 10:42:46 +01:00
|
|
|
parentCommit = @preparedCommits[parent[0]]
|
2013-03-21 13:34:15 +01:00
|
|
|
parentY = @offsetY + @unitTime * parentCommit.time
|
|
|
|
parentX1 = @offsetX + @unitSpace * (@mspace - parentCommit.space)
|
|
|
|
parentX2 = @offsetX + @unitSpace * (@mspace - parent[1])
|
2013-03-20 10:17:12 +01:00
|
|
|
|
2013-03-22 03:59:36 +01:00
|
|
|
# Set line color
|
|
|
|
if parentCommit.space <= commit.space
|
|
|
|
color = @colors[commit.space]
|
|
|
|
|
|
|
|
else
|
|
|
|
color = @colors[parentCommit.space]
|
|
|
|
|
|
|
|
# Build line shape
|
|
|
|
if parent[1] is commit.space
|
2013-03-26 01:46:10 +01:00
|
|
|
offset = [0, 5]
|
|
|
|
arrow = "l-2,5,4,0,-2,-5,0,5"
|
2013-03-19 10:42:46 +01:00
|
|
|
|
2013-03-22 03:59:36 +01:00
|
|
|
else if parent[1] < commit.space
|
2013-03-26 01:46:10 +01:00
|
|
|
offset = [3, 3]
|
|
|
|
arrow = "l5,0,-2,4,-3,-4,4,2"
|
2013-03-19 10:42:46 +01:00
|
|
|
|
|
|
|
else
|
2013-03-26 01:46:10 +01:00
|
|
|
offset = [-3, 3]
|
|
|
|
arrow = "l-5,0,2,4,3,-4,-4,2"
|
2013-03-22 03:59:36 +01:00
|
|
|
|
|
|
|
# Start point
|
2013-03-26 01:46:10 +01:00
|
|
|
route = ["M", x + offset[0], y + offset[1]]
|
2013-03-22 03:59:36 +01:00
|
|
|
|
|
|
|
# Add arrow if not first parent
|
|
|
|
if i > 0
|
|
|
|
route.push(arrow)
|
|
|
|
|
|
|
|
# Circumvent if overlap
|
|
|
|
if commit.space isnt parentCommit.space or commit.space isnt parent[1]
|
|
|
|
route.push(
|
|
|
|
"L", parentX2, y + 10,
|
|
|
|
"L", parentX2, parentY - 5,
|
|
|
|
)
|
|
|
|
|
|
|
|
# End point
|
|
|
|
route.push("L", parentX1, parentY)
|
|
|
|
|
|
|
|
r
|
|
|
|
.path(route)
|
|
|
|
.attr(
|
|
|
|
stroke: color
|
|
|
|
"stroke-width": 2)
|
2013-03-19 10:42:46 +01:00
|
|
|
|
2013-03-20 10:17:12 +01:00
|
|
|
markCommit: (x, y, commit, graphHeight) ->
|
2013-03-19 10:42:46 +01:00
|
|
|
if commit.id is @options.commit_id
|
2013-03-21 13:34:15 +01:00
|
|
|
r = @r
|
2013-03-20 10:17:12 +01:00
|
|
|
r.path(["M", x + 5, y, "L", x + 15, y + 4, "L", x + 15, y - 4, "Z"]).attr(
|
2013-03-19 10:42:46 +01:00
|
|
|
fill: "#000"
|
2013-03-20 10:17:12 +01:00
|
|
|
"fill-opacity": .5
|
2013-03-19 10:42:46 +01:00
|
|
|
stroke: "none"
|
|
|
|
)
|
|
|
|
# Displayed in the center
|
2013-03-20 10:17:12 +01:00
|
|
|
@element.scrollTop(y - graphHeight / 2)
|
2013-03-19 10:42:46 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
Raphael::commitTooltip = (x, y, commit) ->
|
|
|
|
boxWidth = 300
|
|
|
|
boxHeight = 200
|
|
|
|
icon = @image(commit.author.icon, x, y, 20, 20)
|
|
|
|
nameText = @text(x + 25, y + 10, commit.author.name)
|
|
|
|
idText = @text(x, y + 35, commit.id)
|
|
|
|
messageText = @text(x, y + 50, commit.message)
|
|
|
|
textSet = @set(icon, nameText, idText, messageText).attr(
|
|
|
|
"text-anchor": "start"
|
|
|
|
font: "12px Monaco, monospace"
|
|
|
|
)
|
|
|
|
nameText.attr(
|
|
|
|
font: "14px Arial"
|
2012-12-28 16:36:42 +01:00
|
|
|
"font-weight": "bold"
|
2013-03-11 09:52:27 +01:00
|
|
|
)
|
2012-12-28 16:36:42 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
idText.attr fill: "#AAA"
|
|
|
|
@textWrap messageText, boxWidth - 50
|
|
|
|
rect = @rect(x - 10, y - 10, boxWidth, 100, 4).attr(
|
|
|
|
fill: "#FFF"
|
|
|
|
stroke: "#000"
|
|
|
|
"stroke-linecap": "round"
|
2012-12-28 16:36:42 +01:00
|
|
|
"stroke-width": 2
|
2013-03-11 09:52:27 +01:00
|
|
|
)
|
|
|
|
tooltip = @set(rect, textSet)
|
|
|
|
rect.attr(
|
|
|
|
height: tooltip.getBBox().height + 10
|
|
|
|
width: tooltip.getBBox().width + 10
|
|
|
|
)
|
|
|
|
|
|
|
|
tooltip.transform ["t", 20, 20]
|
|
|
|
tooltip
|
2012-12-28 16:36:42 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
Raphael::textWrap = (t, width) ->
|
|
|
|
content = t.attr("text")
|
|
|
|
abc = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
t.attr text: abc
|
|
|
|
letterWidth = t.getBBox().width / abc.length
|
|
|
|
t.attr text: content
|
|
|
|
words = content.split(" ")
|
|
|
|
x = 0
|
|
|
|
s = []
|
2012-12-28 16:36:42 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
for word in words
|
|
|
|
if x + (word.length * letterWidth) > width
|
|
|
|
s.push "\n"
|
|
|
|
x = 0
|
|
|
|
x += word.length * letterWidth
|
|
|
|
s.push word + " "
|
2012-12-28 16:36:42 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
t.attr text: s.join("")
|
|
|
|
b = t.getBBox()
|
|
|
|
h = Math.abs(b.y2) - Math.abs(b.y) + 1
|
|
|
|
t.attr y: b.y + h
|
2012-12-28 16:36:42 +01:00
|
|
|
|
2013-03-11 09:52:27 +01:00
|
|
|
@BranchGraph = BranchGraph
|