-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathbuild.js
More file actions
150 lines (137 loc) · 4.99 KB
/
build.js
File metadata and controls
150 lines (137 loc) · 4.99 KB
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
const fs = require("fs");
const process = require("child_process");
process.execSync("mkdir -p dist");
process.execSync("cp style.css dist/style.css");
const template = fs.readFileSync("./template.html", "utf-8");
const blogs = require("./blogs.json");
const sum = (xs) => (xs || []).reduce((a, b) => a + b, 0);
blogs.sort(() => Math.random() - 0.5);
// blogs.sort((a, b) => (sum(b?.hn?.map(x => x.points + x.comments)) || 0) - (sum(a?.hn?.map(x => x.points + x.comments)) || 0));
let index = "";
for (const blog of blogs) {
blog.title = (blog.title || "").trim();
blog.desc = (blog.desc || "").trim();
if (!blog.url) continue;
if (
3 >
0 +
!!blog.title +
((blog.desc || "").length > 40) +
!!blog.about +
!!blog.now +
!!blog.feed +
3 * ((blog.hn || []).length > 1)
)
continue;
const link = blog.url
.replace(/^https?:\/\//, "")
.replace(/[^A-Za-z0-9]/g, (c) => `<wbr/>${c}`);
index += `<div class="blog">`;
index += `<h2><a href="${blog.url}">${link}</a></h2>`;
const linkTitles = ["about", "now", "feed", "news"];
const links = [blog.about, blog.now, blog.feed, blog.news]
.map((x, i) => x && `<a href=${x}>${linkTitles[i]}</a>`)
.filter((x) => x)
.join(" • ");
const title_ = [blog.title, links].filter((x) => x).join(` • `);
if (title_) index += `<p><strong>${title_}</strong></p>`;
if (blog.desc) index += `<p class="small"><em>${blog.desc}</em></p>`;
if (blog.hn) {
index += `<table>`;
for (const { id, comments, created_at, points, url, title } of blog.hn)
index += `
<tr>
<td>${points}</td>
<td><a href="https://news.ycombinator.com/item?id=${id}">${comments}</a></td>
<td>${created_at.slice(0, 4)}</td>
<td><a href="${url}">${title}</a></td>
</tr>
`;
index += `</table>`;
}
index += `</div>`;
}
index += `
<script>
function shuffle () {
const main = document.querySelector("main");
const temp = main.cloneNode(true);
for (let i = temp.children.length + 1; i--; )
temp.appendChild(temp.children[Math.random() * i |0]);
main.parentNode.replaceChild(temp, main);
}
const x = document.getElementById('shuffle').style.display = 'initial';
const openLinksInNewTab = window.location.search.substring(1).split("&").includes("newTab");
const anchorTarget = openLinksInNewTab ? "_blank" : "_self";
const links = document.getElementById("index").getElementsByTagName("a");
for (let i = 0; i < links.length; i++) {
links[i].target = anchorTarget;
}
</script>
`;
fs.writeFileSync(
"./dist/index.html",
template.replace("{{body}}", `<main id="index">${index}</main>`),
);
const about = `
<div>
<h2>hello world,</h2>
<p><a href="/">blogs.hn</a> is a directory of tech sites, primarily sourced from <a href="https://news.ycombinator.com">HackerNews</a>.</p>
<p>To submit/update a blog, <a href="https://github.com/surprisetalk/blogs.hn/blob/main/blogs.json">edit blogs.json in a pull-request</a>.</p>
<p>If you like sites with RSS feeds, consider checking out <a href="https://ooh.directory">ooh.directory</a>. If you don't have an RSS reader, I highly recommend <a href="https://reederapp.com">Reeder 5</a>.</p>
<p>You can import all the RSS feeds via <a href="/blogs.hn.opml" download>this OPML file</a>.</p>
<p>And if you aren't already, <em>you should</em> <a href="https://www.benkuhn.net/writing/">write things on the internet</a>. All you need is <a href="https://github.com/surprisetalk/worstpress">worstpress</a> and some markdown files! You can <a href="mailto:hello@taylor.town">email me</a> if you need help getting started.</p>
<p>Every blog is a window into a skull. Don't be afraid to ask questions and kindle friendships! Remember to be kind, courteous, and succinct.</p>
<p>Thanks for stopping by.</p>
<br/>
<p style="padding-left: 1rem;">🐸 <a href="https://taylor.town"><strong>Taylor Troesh</strong></a></p>
</div>
`;
fs.writeFileSync(
"./dist/about.html",
template.replace("{{body}}", `<main id="about">${about}</main>`),
);
const escxml = (unsafe) => {
return unsafe.replace(/[<>&'"]/g, (c) => {
switch (c) {
case "<":
return "<";
case ">":
return ">";
case "&":
return "&";
case "'":
return "'";
case '"':
return """;
default:
return c;
}
});
};
fs.writeFileSync(
"./dist/blogs.hn.opml",
`<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>blogs.hn</title>
</head>
<body>
${blogs
.filter((blog) => blog.title && blog.feed && blog.url)
.map((blog) =>
`<outline type="rss" text="${escxml(blog.title.trim())}" title="${escxml(blog.title.trim())}" htmlUrl="${blog.url.trim()}" xmlUrl="${blog.feed.trim()}" />`.replace(
/\s+/gi,
" ",
),
)
.join("\n")}
</body>
</opml>`,
"utf-8",
);
fs.writeFileSync(
"./dist/_headers",
["/*.opml", " Content-Type: text/xml"].join("\n"),
"utf-8",
);