refactor: make view components more modular

This commit is contained in:
zyachel 2022-08-03 14:52:14 +05:30
parent 18c9cd4bd1
commit a8574c4f0c
12 changed files with 372 additions and 621 deletions

View file

@ -40,9 +40,9 @@ const getAnswers = async slug => {
author: {
uid: ansObj.node.answer.author.uid,
isAnon: ansObj.node.answer.author.isAnon,
avatar: ansObj.node.answer.author.profileImageUrl,
image: ansObj.node.answer.author.profileImageUrl,
isVerified: ansObj.node.answer.author.isVerified,
profile: ansObj.node.answer.author.profileUrl,
url: ansObj.node.answer.author.profileUrl,
name: `${ansObj.node.answer.author.names[0].givenName} ${ansObj.node.answer.author.names[0].familyName}`,
credential: ansObj.node.answer.authorCredential?.translatedString,
// additionalCredentials: ansObj.node.answer?.credibilityFacts.map(),

View file

@ -35,7 +35,7 @@ const getTopic = async slug => {
uid: author.user.uid,
name: `${author.user.names[0].givenName} ${author.user.names[0].familyName}`,
profile: author.user.profileUrl,
avatar: author.user.profileImageUrl,
image: author.user.profileImageUrl,
isAnon: author.user.isAnon,
isVerified: author.user.isVerified,
numFollowers: author.user.followerCount,