-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthenticate.js
49 lines (43 loc) · 2.07 KB
/
authenticate.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
chrome.storage.sync.get(["schedule"], async function (data) {
schedule = new Schedule(data.schedule);
if (schedule.cannotMerge(new Date())) {
var successful = document.getElementsByClassName('branch-action-state-clean')[0];
if (successful) { // It's passed all other requirements, let's change it to dirty
successful.classList.remove('branch-action-state-clean');
successful.classList.add('branch-action-state-dirty');
var detailBox = document.getElementsByClassName('mergeability-details')[0];
var div = document.createElement('div');
div.className = 'branch-action-item';
div.innerHTML =
"<div class=\"branch-action-item-icon completeness-indicator completeness-indicator-error\">\n" +
"<svg class=\"octicon octicon-x\" viewBox=\"0 0 12 16\" version=\"1.1\" width=\"12\" height=\"16\" aria-hidden=\"true\"><path fill-rule=\"evenodd\" d=\"M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z\"></path></svg>\n" +
"</div>\n" +
"<div class=\"h4 status-heading text-red\">You should not be merging on " + new Date().toLocaleString('en-gb', {weekday: 'long'}) + "</div>\n" +
"<span class=\"status-meta\">Only merge if this is significantly low-impact, or an emergency bug fix.</span>\n";
detailBox.prepend(div);
let primaryBtns = detailBox.getElementsByClassName('btn-primary');
primaryBtns[0].classList.remove('btn-primary');
primaryBtns[1].classList.remove('btn-primary');
primaryBtns[1].classList.remove('btn-primary');
}
}
});
class Schedule
{
constructor(schedule) {
this.schedule = schedule;
return this;
}
restrictDay(day) {
this.schedule[day] = false;
}
unrestrictDay(day) {
this.schedule[day] = true;
}
canMerge(date) {
return this.schedule[date.getDay()];
}
cannotMerge(date) {
return !this.canMerge(date);
}
}