bigly-chat/client/player.js
2024-10-30 20:37:20 -04:00

20 lines
No EOL
491 B
JavaScript

import Route from "../route.js";
import comment from "./comment.js";
import initDb from "../db.js";
let db = await initDb();
let main = new Route([comment], async function (req, res, input) {
let videoData = await db.all('SELECT * FROM video WHERE id = ?', [
req.query.id
]);
if (videoData.length == 0) return;
videoData = videoData[0];
return res.render('player', {
...input,
videoData,
ogType: 'video'
});
});
export default main;