forked from sigvef/github-pull-request-colorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.js
More file actions
227 lines (202 loc) · 6.33 KB
/
content.js
File metadata and controls
227 lines (202 loc) · 6.33 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
function colorizeAnnotations() {
for (const element of document.querySelectorAll(".check-annotation code")) {
const div = document.createElement("div");
div.classList.add("highlight", "highlight-source-diff");
const pre = element.firstChild;
const lines = pre.textContent.split("\n");
div.appendChild(pre);
element.replaceWith(div);
pre.removeChild(pre.firstChild);
for (const line of lines) {
const span = document.createElement("span");
span.textContent = line + "\n";
if (line[0] === "+") {
span.classList.add("pl-mi1");
} else if (line[0] === "-") {
span.classList.add("pl-md");
} else if (line[0] === "@") {
span.classList.add("pl-mdr");
}
pre.appendChild(span);
}
}
}
function colorizePullRequests() {
function setUpdateNotification(text) {
const container = document.querySelector(
".Box .Box-header .table-list-header-toggle"
);
const notificationElement = document.createElement("div");
notificationElement.textContent = text;
notificationElement.classList.add(
"github-pull-request-colorizer--notification"
);
container.appendChild(notificationElement);
}
const onError = () => {
setUpdateNotification(
"Checking for github-pull-request-colorizer updates doesn't work in this browser, it seems :/ Consider investigating and making a pull request!"
);
};
fetch(
"https://api.github.com/repos/sigvef/github-pull-request-colorizer/contents/manifest.json"
)
.then((response) => {
if (response.status !== 403) {
return response.json();
}
throw new Error("ratelimited");
})
.then((data) => {
try {
const localManifest = chrome.runtime.getManifest();
const masterManifest = JSON.parse(atob(data.content));
if (masterManifest.version !== localManifest.version) {
setUpdateNotification(
"Update for GitHub Pull Request Colorizer is available!"
);
}
} catch {
onError();
}
})
.catch((e) => {
if (e.message !== "ratelimited") {
onError();
}
});
const me = document
.querySelector('summary[aria-label="View profile and more"] img.avatar')
.alt.slice(1);
const colorMode = document.querySelector("html").dataset.colorMode;
let darkMode = false;
if (colorMode === "auto") {
if (
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches
) {
darkMode = true;
}
} else if (colorMode === "dark") {
darkMode = true;
}
[].forEach.call(document.querySelectorAll(".js-issue-row"), (row) => {
const isPR = !!row.querySelector('[aria-label="Open pull request"]');
const isDraftPR = !!row.querySelector(
'[aria-label="Open draft pull request"]'
);
row.classList.add("github-pull-request-colorizer--row");
if (darkMode) {
row.classList.add("github-pull-request-colorizer--dark-mode");
}
const approved =
(row.querySelector("a.Link--muted.tooltipped") || {}).innerText ===
"Approved";
const changesRequested =
(row.querySelector("a.Link--muted.tooltipped") || {}).innerText ===
"Changes requested";
const reviewRequired = !(approved || changesRequested);
const assignee = (
row.querySelector(".from-avatar") || { alt: "" }
).alt.slice(1);
const author = (row.querySelector(".opened-by .Link--muted") || {})
.innerText;
const title = (row.querySelector(".Link--primary.h4") || {}).innerText;
const failsTravis = !!row.querySelector(
".commit-build-statuses .color-fg-danger"
);
const passesTravis = !!row.querySelector(
".commit-build-statuses .color-fg-success"
);
const skipLabel = row.querySelector(
'a.IssueLabel[data-name="Skip colorization"]'
);
const repositoryElement = row.querySelector(
"[data-hovercard-type=repository]"
);
const informationLineElement = row.querySelector("span.opened-by");
const titleElement = row.querySelector(".Link--primary.h4");
const PRIconElement = row.querySelector("div.flex-shrink-0.pt-2.pl-3");
const repoFullName = (
repositoryElement ? repositoryElement.innerText : ""
).trim();
const buildStatusElement = row.querySelector(".commit-build-statuses");
if (repositoryElement) {
const name = repositoryElement.innerText;
repositoryElement.innerText = name.replace(/^HyreAS\//, "");
repositoryElement.classList.add(
"github-pull-request-colorizer--repository"
);
}
if (informationLineElement) {
informationLineElement.parentElement.classList.add(
"github-pull-request-colorizer--information-line"
);
}
if (PRIconElement) {
PRIconElement.style.display = "none";
}
if (titleElement) {
titleElement.classList.add("github-pull-request-colorizer--title");
}
if (buildStatusElement) {
const parent = buildStatusElement.parentElement;
if (parent) {
parent.classList.add(
"github-pull-request-colorizer--build-status-parent"
);
}
}
let highlight = false;
if (failsTravis && author === me) {
highlight = true;
}
if (changesRequested && author === me) {
highlight = true;
}
if (
!failsTravis &&
isPR &&
reviewRequired &&
author !== me &&
(assignee === me || assignee === "")
) {
highlight = true;
}
if (approved && passesTravis) {
highlight = true;
}
if (title.slice(0, 3) === "WIP") {
highlight = true;
}
if (title.slice(0, 5) === "[WIP]") {
highlight = true;
}
if (title.slice(0, 3) === "WIP" && author != me) {
highlight = false;
}
if (title.slice(0, 5) === "[WIP]" && author != me) {
highlight = false;
}
if (skipLabel) {
highlight = false;
}
if (highlight) {
row.classList.add("github-pull-request-colorizer--highlight");
}
if (isDraftPR) {
row.classList.add("github-pull-request-colorizer--draft-pr");
}
});
}
try {
colorizePullRequests();
} catch (e) {
console.log(e);
}
try {
colorizeAnnotations();
} catch (e) {}
document.addEventListener("DOMContentLoaded", colorizePullRequests);
document.addEventListener("DOMContentLoaded", colorizeAnnotations);
setInterval(colorizeAnnotations, 500);