quetre/controllers/viewController.js
zyachel e76605dd7a refactor: split view logic into many standalone pieces
split the code so as to make at least the answers part reusable.
also added grouped the code in new directories.
2022-07-23 15:54:53 +05:30

87 lines
2.7 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', {
meta: {
title: 'About',
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
imageUrl: `${req.urlObj.origin}/icon.svg`,
description:
'Quetre is a libre front-end for Quora. See any answer without being tracked, without being required to log in, and without being bombarded by pesky ads.',
},
});
};
export const privacy = (req, res, next) => {
res.render('privacy', {
meta: {
title: 'Privacy',
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
imageUrl: `${req.urlObj.origin}/icon.svg`,
description: 'Privacy Policy of Quetre, a libre front-end for Quora.',
},
});
};
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);
const title = answersData.question.text.section[0].spans
.map(span => span.text)
.join('');
res.status(200).render('answers', {
data: answersData,
meta: {
title,
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
imageUrl: `${req.urlObj.origin}/icon.svg`,
description: `Answers to ${title}`,
},
});
});
export const topic = catchAsyncErrors(async (req, res, next) => {
const topicData = await getTopic(req.params.slug);
res.status(200).render('topic', {
data: topicData,
meta: {
title: topicData.name,
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
imageUrl: `${req.urlObj.origin}/icon.svg`,
description: `Information about ${topicData.name} topic.`,
},
});
});
export const unimplemented = (req, res, next) => {
const message =
"This route isn't yet implemented. Check back sometime later!";
res.status(501).render('error', {
data: {
statusCode: 501,
message,
},
meta: {
title: 'Not yet implemented',
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
imageUrl: `${req.urlObj.origin}/icon.svg`,
urlObj: req.urlObj,
description: message,
},
});
};