janpaul123-valle_tmp_8577620427908266060740786834009.web.val.run
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
import { blob } from "https://esm.town/v/std/blob";
import { Hono } from "npm:hono";
import { html } from "https://esm.town/v/stevekrouse/html";
// Initialize sample stories and store them in blob storage
const SAMPLE_STORIES_KEY = "hn_sample_stories";
async function initializeSampleStories() {
const existingStories = await blob.getJSON(SAMPLE_STORIES_KEY);
if (!existingStories) {
const sampleStories = Array.from({ length: 30 }).map((_, idx) => ({
id: idx + 1,
title: `Sample Story ${idx + 1}`,
url: `https://example.com/story${idx + 1}`,
votes: Math.floor(Math.random() * 100),
}));
await blob.setJSON(SAMPLE_STORIES_KEY, sampleStories);
}
}
await initializeSampleStories();
// Hono app setup
const app = new Hono();
// Serve main page with stories
app.get("/", async (c) => {
const stories = await blob.getJSON(SAMPLE_STORIES_KEY) || [];
const storiesHtml = stories
.sort((a, b) => b.votes - a.votes)
.map((story, idx) => `<tr class="athing"><td align="right" valign="top" class="title">${idx + 1}.</td><td valign="top" class="votelinks">
<form method="POST" action="/vote" style="margin-bottom: 0;">
<input type="hidden" name="id" value="${story.id}" />
<center>
<button type="submit" style="background: none; border: none; cursor: pointer;">
<img src="https://news.ycombinator.com/grayarrow2x.gif" width="10" />
</button>
</center>
</form></td>
<td class="title"><a href="${story.url}" class="storylink">${story.title}</a></td></tr>
<tr><td colspan="2"></td>
<td class="subtext"><span class="score">${story.votes} points</span></td></tr>`).join("");
return html(`<!DOCTYPE html>
<html>
<head>
<title>Hacker News</title>
<style>
body {
font: 10pt Verdana, Geneva, sans-serif;
background-color: #f6f6ef;
}
table {
width: 100%;
border-spacing: 0;
}
tr.athing td.title {
padding: 0 4px;
}
.fatitem td {
padding-bottom: 10px;
}
.subtext {
margin: 2px 0 5px;
padding-left: 20px;
font: 7pt Verdana, Geneva, sans-serif;
}
.storylink {
color: #000000;
text-decoration: none;
}
.storylink:visited {
color: #828282;
}
.score {
color: #828282;
}
.votelinks {
padding: 0 4px;
}
.pagetop {
background-color: #ff6600;
padding: 2px;
}
.pagetop a {
color: #000000;
text-decoration: none;
}
.pagetop a:visited {
color: #000000;
}
</style>
</head>
<body>
<center>
<table id="hnmain" border="0" cellpadding="0" cellspacing="0" width="85%">
<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ff6600">
<tr>
<td style="padding: 2px;">
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
July 17, 2024