-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update FAQ card to support answerV2 instead of answer #1142
Conversation
J=BACK-2436 TEST=manual Created test site using jambo template and verified that FAQ answer was rendered properly
cards/faq-accordion/component.js
Outdated
if (profile.answerV2 && profile.answerV2.html) { | ||
profileAnswer = profile.answerV2.html; | ||
} else if (profile.answerV2 && profile.answerV2.json) { | ||
console.warn('JSON is not supported, please switch to HTML.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think we should say use the word 'convert' rather than 'switch' because the feature on the backend uses the word 'convert' as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated in most recent commit
|
||
return { | ||
title: profile.question || profile.name, // The header text of the card | ||
// subtitle: '', // The sub-header text of the card | ||
details: profile.answer ? ANSWERS.formatRichText(profile.answer, "answer", linkTarget) : null, // The text in the body of the card |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be a good idea to add a 3rd if statement which maintains this functionality of calling ANSWERS.formatRichText if profile.answers exists. That way if someone upgrades to this version of the hitchhiker-theme, it won't break any existing sites which use the faq-accordion card
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that makes sense! i've added that check into the logic in the most recent commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
J=BACK-2436
TEST=manual
Created test site using jambo template and verified that FAQ answer was rendered properly