Commit a034ce66 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'graph-commit-tooltip-date' into 'master'

Add date to graph commit tooltip

See merge request gitlab-org/gitlab!71881
parents 7c214e2e 160f397b
import Raphael from 'raphael/raphael';
import { formatDate } from '~/lib/utils/datetime_utility';
Raphael.prototype.commitTooltip = function commitTooltip(x, y, commit) {
const boxWidth = 300;
const icon = this.image(gon.relative_url_root + commit.author.icon, x, y, 20, 20);
const nameText = this.text(x + 25, y + 10, commit.author.name);
const idText = this.text(x, y + 35, commit.id);
const messageText = this.text(x, y + 50, commit.message.replace(/\r?\n/g, ' \n '));
const textSet = this.set(icon, nameText, idText, messageText).attr({
const dateText = this.text(x, y + 35, formatDate(commit.date));
const idText = this.text(x, y + 55, commit.id);
const messageText = this.text(x, y + 70, commit.message.replace(/\r?\n/g, ' \n '));
const textSet = this.set(icon, nameText, dateText, idText, messageText).attr({
'text-anchor': 'start',
font: '12px Monaco, monospace',
});
......@@ -14,6 +16,9 @@ Raphael.prototype.commitTooltip = function commitTooltip(x, y, commit) {
font: '14px Arial',
'font-weight': 'bold',
});
dateText.attr({
fill: '#666',
});
idText.attr({
fill: '#AAA',
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment