mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 05:57:38 +03:00
as there are two routes for answers(/unanswered/:slug and /:slug), and both contained similar code, reduced controllers(for the routes) in api as well as in views to just one controller handling the logic to fetch data.
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
/* eslint-disable no-unused-vars */
|
|
////////////////////////////////////////////////////////
|
|
// IMPORTS
|
|
////////////////////////////////////////////////////////
|
|
import catchAsyncErrors from '../utils/catchAsyncErrors.js';
|
|
import getAnswers from '../fetchers/getAnswers.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 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!",
|
|
});
|
|
};
|