quetre/controllers/viewController.js
zyachel 0a35cdaa15 feat(route): add new route
add /topic/:slug route both in api as well as in view
2022-05-22 19:35:02 +05:30

45 lines
1.6 KiB
JavaScript

/* eslint-disable no-unused-vars */
////////////////////////////////////////////////////////
// IMPORTS
////////////////////////////////////////////////////////
import catchAsyncErrors from '../utils/catchAsyncErrors.js';
import getAnswers from '../fetchers/getAnswers.js';
import getTopic from '../fetchers/getTopic.js';
import { nonSlugRoutes } from '../utils/constants.js';
////////////////////////////////////////////////////////
// EXPORTS
////////////////////////////////////////////////////////
export const about = (req, res, next) => {
res.render('about', { title: 'About' });
};
export const privacy = (req, res, next) => {
res.render('privacy', { title: 'Privacy' });
};
export const answers = catchAsyncErrors(async (req, res, next) => {
const { slug } = req.params;
// added this so that a request by browser to get favicon doesn't end up being interpreted as a slug
if (nonSlugRoutes.includes(slug)) return next();
const answersData = await getAnswers(slug);
res.status(200).render('answers', {
title: answersData.question.text.spans.map(span => span.text).join(''),
data: answersData,
});
});
export const topic = catchAsyncErrors(async (req, res, next) => {
const topicData = await getTopic(req.params.slug);
res.status(200).render('topic', { title: topicData.name, data: topicData });
});
export const unimplemented = (req, res, next) => {
res.status(503).render('error', {
title: 'Not yet implemented',
statusCode: 503,
message: "This route isn't yet implemented. Check back sometime later!",
});
};