This repository was archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserscript.js
114 lines (92 loc) · 3.7 KB
/
userscript.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// ==UserScript==
// @name PlanItPoker Linker
// @namespace http://artemeon.de/
// @version 0.2
// @description Automatically link the issue numbers back to your issue tracking system.
// @author Marc Reichel
// @match https://www.planitpoker.com/board/
// @icon https://www.google.com/s2/favicons?sz=64&domain=planitpoker.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
/**
* ------------------------------------------------------------------------
* URL Config
* ------------------------------------------------------------------------
*
* Please provide an URL template to your issue tracking
* system of choice. Use the {id} placeholder for the
* issue ID. It will be replaced automatically.
*
* Example: https://github.com/artemeon/planitpoker-linker/issues/{id}
*
*/
const urlTemplate = '';
/**
* ------------------------------------------------------------------------
* Prefix Config
* ------------------------------------------------------------------------
*
* Please provide a prefix for the issue number.
* Like '#' for GitHub or 'XYZ-' for Jira.
*
*/
const issuePrefix = '#';
/**
* ========================================================================
* END OF CONFIG! DO NOT EDIT ANYTHING BELOW!
* ========================================================================
*/
const observeDOM = (function (){
const MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
return function (element, callback) {
if (!element || element.nodeType !== 1) {
return;
}
if (MutationObserver) {
const mutationObserver = new MutationObserver(callback);
mutationObserver.observe(element, { childList: true, subtree: true });
return mutationObserver;
} else if (window.addEventListener) {
element.addEventListener('DOMNodeInserted', callback, false);
element.addEventListener('DOMNodeRemoved', callback, false);
}
}
})();
const addLink = function (node, parentNode) {
let text = node.innerText;
const regex = new RegExp(`${issuePrefix}([0-9]+)`);
const issue = text.match(regex);
const href = urlTemplate.replace('{id}', issue[1]);
let linkElement = parentNode.querySelector('[data-github-link]');
if (!linkElement) {
linkElement = document.createElement('a');
linkElement.dataset.githubLink = '';
linkElement.target = "_blanc";
linkElement.style.display = "inline-block";
linkElement.style.padding = "0 10px";
linkElement.style.fontSize = "20px";
parentNode.appendChild(linkElement);
}
linkElement.href = href;
linkElement.innerText = issue[0];
parentNode.querySelector('a[data-github-link]').addEventListener('click', (event) => {
event.stopPropagation();
});
};
setTimeout(() => {
const title = document.querySelector('.page-board-vote .story-title');
if (!title) {
return;
}
title.style.display = "flex";
title.style.alignItems = "center";
document.querySelector('.page-board-vote .story-title .story-title-inner').style.flex = "1 1 0%";
const text = document.querySelector('.page-board-vote .story-title .story-title-inner .story-text');
addLink(text, title);
observeDOM(text, function (m) {
addLink(text, title);
});
}, 2000);
})();