-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
list-hn-polls-separately.js
executable file
·160 lines (137 loc) · 4.24 KB
/
list-hn-polls-separately.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
150
151
152
153
154
155
156
157
158
159
160
import { format } from "timeago.js";
import { getUrlParams } from "../libs/utils";
function navbarLink() {
const navbar = document.querySelector("span.pagetop");
if (!navbar) {
return false;
}
const submitLink = navbar.querySelector('a[href="submit"]');
if (!submitLink) {
return false;
}
const pollsLink = document.createElement("a");
const separator = document.createTextNode(" | ");
pollsLink.innerText = "polls";
pollsLink.href = "/#polls";
navbar.insertBefore(pollsLink, submitLink);
navbar.insertBefore(separator, submitLink);
return pollsLink;
}
async function getPollItems(page) {
const order = getUrlParams("order") === "score" ? "score" : undefined;
const rawResults = await fetch(
`https://hn.algolia.com/api/v1/${
order ? "search" : "search_by_date"
}?tags=poll&page=${page}&hitsPerPage=30`
)
.then((res) => res.json())
.then((obj) => obj.hits);
const results = [];
for (const result of rawResults) {
results.push({
id: result.objectID,
author: result.author,
comments:
result.num_comments +
" comment" +
(result.num_comments === 1 ? "" : "s"),
points: result.points + " point" + (result.points === 1 ? "" : "s"),
title: result.title,
date: format(result.created_at),
});
}
return results;
}
async function setPollItems() {
const itemlistTable = document.querySelector("table.itemlist > tbody");
const stories = itemlistTable.querySelectorAll(":scope > tr");
const [moreSpace, moreButton] = [...stories].slice(-2);
for (const row of stories) {
row.remove();
}
const pageNumber = Number(getUrlParams("p"));
const realPageNumber = pageNumber === 0 ? 1 : pageNumber;
const order = getUrlParams("order") === "score" ? "score" : undefined;
const orderUrl = `/?p=${realPageNumber}${order ? "" : "&order=score"}#polls`;
itemlistTable.innerHTML = `
<tr style="height:6px"></tr>
<tr>
<td colspan="2"></td>
<td>
Polls are listed in ${
order ? "order of 'most points'" : "reverse chronological order"
}.
<a href='${orderUrl}'><u>Order by ${order ? "date" : "score"}</u>.</a>
<br>You can also <a href="/newpoll"><u>create a new poll</u></a>.
</td>
</tr>
<tr style="height:12px"></tr>
`;
const items = await getPollItems(realPageNumber - 1);
items.forEach((item, index) => {
itemlistTable.innerHTML += `
<tr class='athing' id='${item.id}'>
<td align="right" valign="top" class="title">
<span class="rank">${(realPageNumber - 1) * 30 + index + 1}.</span>
</td>
<td valign="top" class="votelinks nosee">
<center>
<div class="votearrow" title="upvote"></div>
</a>
</center>
</td>
<td class="title">
<a href="item?id=${item.id}" class="storylink">${item.title}</a>
</td>
</tr>
<tr>
<td colspan="2"></td>
<td class="subtext">
<span class="score" id="score_${item.id}">${item.points}</span>
by
<a href="user?id=${item.author}" class="hnuser">${item.author}</a>
<span class="age"><a href="item?id=${item.id}">${item.date}</a></span>
|
<a href="https://hn.algolia.com/?query=${encodeURI(
item.title
)}&sort=byDate&dateRange=all&type=poll&storyText=false&prefix&page=0" class="hnpast">past</a>
|
<a href="https://www.google.com/search?q=${encodeURI(item.title)}">web</a>
|
<a href="item?id=${item.id}">${item.comments}</a>
</td>
</tr>
<tr class="spacer" style="height:5px"></tr>
`;
});
moreButton.querySelector("a").href = `/?p=${realPageNumber + 1}#polls`;
itemlistTable.append(moreSpace, moreButton);
document.title = "Polls | Hacker News";
}
async function init(metadata) {
const pollsLink = navbarLink();
if (metadata.path === "/") {
if (window.location.hash === "#polls") {
pollsLink.style.color = "#ffffff";
await setPollItems();
} else {
window.addEventListener("hashchange", () => {
if (window.location.hash === "#polls") {
window.location.reload();
}
});
}
}
return Boolean(pollsLink);
}
const details = {
id: "list-hn-polls-separately",
pages: {
include: ["*"],
exclude: [],
},
loginRequired: false,
awaitInit: true,
init,
};
export default details;