-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponent-labels-for-jira-scrum.user.js
43 lines (37 loc) · 1.44 KB
/
component-labels-for-jira-scrum.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// ==UserScript==
// @name Component-labels for JIRA Scrum
// @namespace https://github.com/yewton
// @description Show components as labels in JIRA Scrum
// @include https://www.example.org/secure/RapidBoard.jspa*
// @version 0.0.2
// @grant GM_xmlhttpRequest
// @require https://code.jquery.com/jquery-1.12.0.min.js
// ==/UserScript==
// cf. http://slides.com/kbigwheel/how-to-greasemonkey-in-ajax#/5
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function(mutations, observer) {
$('.js-issue').filter(function () {
return !!!$(this).data('cl-added');
}).each(function () {
var $issue = $(this);
$issue.data('cl-added', true);
var key = $issue.data('issue-key');
if (!!!key) return;
var id = $issue.data('issue-id');
var $end = $issue.find('span.ghx-end');
$.get('/rest/api/2/issue/' + key + '?fields=components', function (data) {
data.fields.components.forEach(function (component) {
var marker = 'cl-label-' + component.id;
if (0 < $end.find('.' + marker).length) return;
var seed = component.id + component.name.charCodeAt(0);
var label = (seed % 9) + 1;
var $c = $('<span class="aui-label ghx-label-' + label + ' ' + marker + '">' + component.name + '</span>');
$end.prepend($c);
});
});
});
});
observer.observe(document, {
subtree: true,
attributes: true
});