-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle.js
64 lines (53 loc) · 1.51 KB
/
handle.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
const getDistTop = (el) => window.pageYOffset + el.getBoundingClientRect().top;
const getCommentBoxDistTop = (el) => {
const commentBoxHeight = el.querySelector(".review-comment").clientHeight;
const elDistTop = getDistTop(el);
const scrollDist = elDistTop - commentBoxHeight;
return scrollDist;
};
let lastIdx = 0;
const getNextOpenConversation = (divs) => {
const itemToReturn = divs[lastIdx];
if (lastIdx < divs.length - 1) {
lastIdx++;
} else {
lastIdx = 0;
}
return itemToReturn;
};
const createNextConversationBtn = () => {
const btnContainer = document.querySelector(".pr-review-tools");
if (!btnContainer) {
return;
}
const btn = document.createElement("button");
btn.textContent = "Next open conversation";
btn.classList.add("nod-next-open-conversation");
btn.addEventListener("click", () => {
const resolveDivs = getResolveDivs();
if (!resolveDivs) {
return disableBtn(btn);
}
const divToGo = getNextOpenConversation(resolveDivs);
window.scrollTo({
top: getCommentBoxDistTop(divToGo),
behavior: "smooth",
});
});
btnContainer.appendChild(btn);
return btn;
};
const addCloseConversationEvents = () => {
const elems = getResolveDivs();
if (!elems) return;
map(elems, (item) => {
const resolveBtn = getButtonByContent("resolve conversation", item);
resolveBtn.addEventListener("click", (e) => {
clearCache();
});
});
};
const exec = (() => {
createNextConversationBtn();
addCloseConversationEvents();
})();