UX mejorada
All checks were successful
build-and-deploy / build (push) Successful in 10s
build-and-deploy / deploy (push) Successful in 14s

This commit is contained in:
2025-09-06 17:56:35 -06:00
parent 7a5bd7f78e
commit 1783db4b2c
3 changed files with 137 additions and 4 deletions

View File

@@ -15,6 +15,29 @@ const client = new MongoClient(uri);
let db;
let amigosCollection;
const clients = new Set();
function sseHeaders(res) {
res.setHeader('Content-Type', 'text/event-stream');
res.setHeader('Cache-Control', 'no-cache');
res.setHeader('Connection', 'keep-alive');
res.flushHeaders && res.flushHeaders();
}
function sendEvent(res, event, data) {
if (event) res.write(`event: ${event}\n`);
res.write(`data: ${JSON.stringify(data)}\n\n`);
}
function broadcast(event, data) {
for (const res of clients) {
try {
sendEvent(res, event, data);
} catch (_) {
// client may be closed
}
}
}
// Connect to MongoDB
async function connectDB() {
@@ -62,14 +85,35 @@ app.post('/api/amigos', async (req, res) => {
id: result.insertedId,
nombre
});
// SSE notify
broadcast('amigoAdded', { id: result.insertedId, nombre });
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// SSE endpoint
app.get('/api/events', async (req, res) => {
sseHeaders(res);
clients.add(res);
try {
const amigos = await amigosCollection.find({}).toArray();
sendEvent(res, 'init', { amigos });
} catch (_) {
sendEvent(res, 'init', { amigos: [] });
}
req.on('close', () => {
clients.delete(res);
try { res.end(); } catch (_) {}
});
});
// Start server
connectDB().then(() => {
app.listen(PORT, () => {
console.log(`Server running on http://localhost:${PORT}`);
});
});
});