-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
78 lines (68 loc) · 2.27 KB
/
background.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
class TabListener {
setLink(link) {
this.link = link;
this.ran = false;
}
onUpdate = async (_, changeInfo, tab) => {
//only run once per page
if (this.ran == false
&& tab.url == this.link.url
&& changeInfo.status == "complete") {
const quoteComments = await getQuoteComments(this.link.id);
if (quoteComments.length > 0) {
await chrome.scripting.insertCSS({
target: { tabId: tab.id },
files: ["hn-inline.css"],
});
await chrome.scripting.executeScript({
target : { tabId : tab.id },
files : [ "highlight.js" ],
});
chrome.tabs.sendMessage(tab.id, {
command: "highlight",
data: quoteComments
});
this.ran = true;
}
}
}
}
const tabListener = new TabListener();
chrome.runtime.onMessage.addListener(
async function(request, sender, sendResponse) {
if (request.command == "clicked") {
tabListener.setLink(request);
chrome.tabs.onUpdated.addListener(tabListener.onUpdate);
}
}
);
async function getQuoteComments(submissionId) {
console.log("Getting comments on submissionId: " + submissionId);
let quotedComments = [];
let commentsResponse = await fetch(`https://hn.algolia.com/api/v1/search?tags=comment,story_${submissionId}&hitsPerPage=200`);
let comments = await commentsResponse.json();
let pagesOfComments = comments.nbPages;
let currentPage = 0;
console.log("Received number of pages: " + pagesOfComments);
do {
for (j = 0; j < comments.hits.length; j++) {
const comment = comments.hits[j];
if (isTopLevelComment(comment) && searchCommentForQuoteSymbol(comment)) {
quotedComments.push(comment);
console.log(comment.comment_text);
}
}
currentPage++;
if (pagesOfComments > 1) {
commentsResponse = await fetch(`https://hn.algolia.com/api/v1/search?tags=comment,story_${submissionId}&page=${currentPage}&hitsPerPage=200`);
comments = await commentsResponse.json();
}
} while (currentPage < pagesOfComments)
return quotedComments;
}
function isTopLevelComment(comment) {
return comment.parent_id == comment.story_id;
}
function searchCommentForQuoteSymbol(comment) {
return comment.comment_text.startsWith(">");
}