janpaul123-valle_tmp_701816702132716405607952805626981.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
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 => `<li>${story.title} - ${story.votes} votes
<a href="${story.url}" target="_blank">(link)</a>
<form method="POST" action="/vote" style="display:inline;">
<input type="hidden" name="id" value="${story.id}" />
<button type="submit">Upvote</button>
</form>
</li>`).join("");
return html(`<ul>${storiesHtml}</ul>
<h2>Submit a New Story</h2>
<form method="POST" action="/submit">
<input type="text" name="title" placeholder="Title" required />
<input type="url" name="url" placeholder="URL" required />
<button type="submit">Submit</button>
</form>`);
});
// Handle story submission
app.post("/submit", async (c) => {
const formData = await c.req.parseBody();
const title = formData.title;
const url = formData.url;
const stories = await blob.getJSON(SAMPLE_STORIES_KEY) || [];
const newStory = {
id: stories.length + 1,
title,
url,
votes: 0,
};
stories.push(newStory);
await blob.setJSON(SAMPLE_STORIES_KEY, stories);
return c.redirect("/");
});
// Handle story upvote
app.post("/vote", async (c) => {
const formData = await c.req.parseBody();
const id = parseInt(formData.id, 10);
const stories = await blob.getJSON(SAMPLE_STORIES_KEY) || [];
const story = stories.find(s => s.id === id);
if (story) {
story.votes += 1;
await blob.setJSON(SAMPLE_STORIES_KEY, stories);
}
return c.redirect("/");
});
export default app.fetch;
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