mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-06 22:47:37 +03:00
feat: add profile route
This commit is contained in:
parent
a8574c4f0c
commit
49f5a3e74e
11 changed files with 710 additions and 9 deletions
|
@ -6,6 +6,7 @@ import catchAsyncErrors from '../utils/catchAsyncErrors.js';
|
|||
import getAnswers from '../fetchers/getAnswers.js';
|
||||
import getTopic from '../fetchers/getTopic.js';
|
||||
import { nonSlugRoutes } from '../utils/constants.js';
|
||||
import getProfile from '../fetchers/getProfile.js';
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// EXPORTS
|
||||
|
@ -43,7 +44,7 @@ export const answers = catchAsyncErrors(async (req, res, next) => {
|
|||
.map(span => span.text)
|
||||
.join('');
|
||||
|
||||
res.status(200).render('answers', {
|
||||
return res.status(200).render('answers', {
|
||||
data: answersData,
|
||||
meta: {
|
||||
title,
|
||||
|
@ -68,6 +69,20 @@ export const topic = catchAsyncErrors(async (req, res, next) => {
|
|||
});
|
||||
});
|
||||
|
||||
export const profile = catchAsyncErrors(async (req, res, next) => {
|
||||
const profileData = await getProfile(req.params.name);
|
||||
|
||||
res.status(200).render('profile', {
|
||||
data: profileData,
|
||||
meta: {
|
||||
title: profileData.basic.name,
|
||||
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
|
||||
imageUrl: `${req.urlObj.origin}/icon.svg`,
|
||||
description: `${profileData.basic.name}'s profile.`,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
export const unimplemented = (req, res, next) => {
|
||||
const message =
|
||||
"This route isn't yet implemented. Check back sometime later!";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue