mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
refactor: make view components more modular
This commit is contained in:
parent
18c9cd4bd1
commit
a8574c4f0c
12 changed files with 372 additions and 621 deletions
|
@ -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(),
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue