-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighlight.js
149 lines (128 loc) · 5.08 KB
/
highlight.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
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
class Comment {
constructor(author, comment, link) {
this.author = author;
this.comment = comment;
this.link = link;
}
}
(function() {
console.log("hn inline comments loaded");
async function insertComments(inlineComments) {
inlineComments.sort((a, b) => findQuote(a.comment_text).length - findQuote(b.comment_text).length);
while (inlineComments.length > 0) {
const comment = inlineComments.pop();
const quote = findQuote(comment.comment_text);
const associatedComments = [new Comment(comment.author, findComment(comment.comment_text), linkToComment(comment.objectID))];
for (let i = 0; i < inlineComments.length; i++) {
const each = inlineComments[i];
otherQuote = findQuote(each.comment_text);
if (quote.includes(otherQuote)) {
inlineComments.splice(i, 1);
associatedComments.push(new Comment(each.author, findComment(each.comment_text), linkToComment(each.objectID)));
i--; // Adjust index after removal
}
}
highlightMultiple(quote, associatedComments);
}
}
chrome.runtime.onMessage.addListener((message) => {
if (message.command === "highlight") {
insertComments(message.data);
}
});
})();
function linkToComment(commentId) {
// Validate that commentId is a number
if (!/^\d+$/.test(commentId)) {
console.error("Invalid commentId: must be a number");
return null;
}
return `https://news.ycombinator.com/item?id=${commentId}`;
}
function findQuote(comment) {
const split = comment.split("<p>")[0];
const decoded = decodeHtml(split);
// Remove the indent char and the whitespace formatting
const indentRemoved = decoded.replace(">", "").trim();
// Commenters sometimes then use quotes
if (indentRemoved.startsWith('"') && indentRemoved.endsWith('"')) {
return indentRemoved.slice(1, -1); // Remove the quote
}
return indentRemoved;
}
function findComment(comment) {
const quoteRemoved = comment.split("<p>").slice(1).join('<br />');
const decoded = decodeHtml(quoteRemoved);
return decoded.trim();
}
function decodeHtml(htmlString) {
const parser = new DOMParser();
const doc = parser.parseFromString(htmlString, 'text/html');
return doc.documentElement.textContent;
}
function matchElement(quote) {
const quoteEscaped = quote.replace(/"/g, '"');
const xpaths = [
`//p[contains(normalize-space(text()),"${quoteEscaped}")]`, // First attempt to find p element containing text
`//text()[contains(normalize-space(.),"${quoteEscaped}")]`, // Now try all text elements
];
for (const xpath of xpaths) {
const matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
if (matchingElement.singleNodeValue != null) {
return matchingElement.singleNodeValue;
}
}
}
function highlightMultiple(quote, associatedComments) {
const matchingElement = matchElement(quote);
if (!matchingElement) {
console.log("Did not find: " + quote);
return;
}
const allText = matchingElement.textContent.replace(/\n/g, ' ');
const [textBefore, textAfter] = allText.split(quote);
const highlightDiv = divWithClassName("hn-inline-highlight");
if (associatedComments[0].link) {
highlightDiv.addEventListener("click", () => {
window.location.href = link;
});
}
const extensionDiv = divWithClassName("hn-inline-extension");
for (const each of associatedComments) {
const extensionHeaderDiv = divWithClassName("hn-inline-extension-header");
extensionHeaderDiv.appendChild(createAuthorElement(each.author));
const commentTextDiv = divWithClassName("hn-inline-comment-text");
addText(commentTextDiv, each.comment);
const commentDiv = document.createElement('div');
commentDiv.appendChild(extensionHeaderDiv);
commentDiv.appendChild(commentTextDiv);
extensionDiv.appendChild(commentDiv);
}
highlightDiv.appendChild(document.createTextNode(quote));
highlightDiv.appendChild(extensionDiv);
const container = document.createElement('div');
if (textBefore) {
container.appendChild(document.createTextNode(textBefore));
}
container.appendChild(highlightDiv);
if (textAfter) {
container.appendChild(document.createTextNode(textAfter));
}
matchingElement.replaceWith(container);
}
function createAuthorElement(author) {
const authorA = document.createElement("a");
authorA.innerText = author;
return authorA;
}
function addText(node, text) {
text.split(/<br\s*\/?>/i).forEach((part, index) => {
if (index > 0) node.appendChild(document.createElement('br'));
if (part.trim()) node.appendChild(document.createTextNode(part));
});
}
function divWithClassName(className) {
const div = document.createElement("div");
div.className = className;
return div;
}