Questions? Ask in Slack #vcc-ui
@volvo-cars/react-faqs
This package provides a set of helpful React components and methods that help with creating FAQs, which are used to provide a compact display of longer information. A FAQ renders an accordion to show and hide questions and answers as needed.
$ yarn add @volvo-cars/react-faqs
💡 This package includes Typescript definitions
The SimpleFaqs
component renders a list of FAQs as accordions with a question in the summary and an answer in the details section. It takes a faqs
(questions/answers) array of objects with question
and answer
as properties. question
and answer
should be of type string. To use a React Node refer to the Composition example.
Sometimes you might want to avoid rendering a large list of FAQs on a page, therefore it's possible to select a certain number of FAQs to show initially, and hide the rest until expanded with a Show more
button. This can be done by passing initialLength
prop to SimpleFaqs
. The text of the Show more
button can be controlled by the showMoreText
and showLessText
props.
Rendering custom React nodes can be done with composition as follows
You can also control which FAQs will be open by default using the defaultExpanded
prop, it takes an array of FAQ
indices that should be expanded by default.
The FAQ components are accessible by default, they add necessary roles, aria labels, keyboard interaction with
Enter and Space as well as tab focus following WAI:ARIA guidelines.
It also sends focus back to the first element in the hidden FAQs when the Show more
button is toggled with the keyboard, for a better user experience.
Properly marked up FAQ pages may be eligible to have a rich result on Search and an Action on the Google Assistant, which can help pages reach the right users on Google search. Structured data is a standardized format for providing information about a page and classifying the page content.
The FaqStructuredData
component renders a script tag with structured data in JSON-ld format. It takes a faqs
array of objects with question
and answer
as properties. question
and answer
have to be of type string
.
FaqStructuredData
<FaqStructuredDatafaqs={[{ question: 'Question 1', answer: 'Answer 1' },{ question: 'Question 2', answer: 'Answer 2' },{ question: 'Question 3', answer: 'Answer 3' },]}/>
Which renders the following HTML:
<script type="application/ld+json">{"@context": "https://schema.org","@type": "FAQPage","mainEntity": [{"@type": "Question","name": "Question 1","acceptedAnswer": {"@type": "Answer","text": "Answer 1"}},{"@type": "Question","name": "Question 2","acceptedAnswer": {"@type": "Answer","text": "Answer 2"}},{"@type": "Question","name": "Question 3","acceptedAnswer": {"@type": "Answer","text": "Answer 3"}}]}</script>
If you need to render multiple FaqStructuredData
components on a single page, it is required to provide the same faqPageId
prop on all usages of this component in a single page, this is to convey that the FAQPage items are related or the structured data will be invalid since each page can only have one FAQPage definition.
The faqPageId
is usually the path of the page that is being rendered (ex: intl/v/cars/xc90-hybrid
) as the id mostly static in the lifetime of the page.
<><FaqStructuredDatafaqPageId="intl/v/cars/xc90-hybrid"faqs={[{ question: 'Question 1', answer: 'Answer 1' },{ question: 'Question 2', answer: 'Answer 2' },{ question: 'Question 3', answer: 'Answer 3' },]}/><FaqStructuredDatafaqPageId="intl/v/cars/xc90-hybrid"faqs={[{ question: 'Question 5', answer: 'Answer 5' },{ question: 'Question 6', answer: 'Answer 6' },{ question: 'Question 7', answer: 'Answer 7' },]}/></>
Which renders the following HTML:
<script type="application/ld+json">{"@context": "https://schema.org","@type": "FAQPage","@id": "intl/v/cars/xc90-hybrid","mainEntity": [{"@type": "Question","name": "Question 1","acceptedAnswer": { "@type": "Answer", "text": "Answer 1" }},{"@type": "Question","name": "Question 2","acceptedAnswer": { "@type": "Answer", "text": "Answer 2" }},{"@type": "Question","name": "Question 3","acceptedAnswer": { "@type": "Answer", "text": "Answer 3" }}]}</script><script type="application/ld+json">{"@context": "https://schema.org","@type": "FAQPage","@id": "intl/v/cars/xc90-hybrid","mainEntity": [{"@type": "Question","name": "Question 5","acceptedAnswer": { "@type": "Answer", "text": "Answer 5" }},{"@type": "Question","name": "Question 6","acceptedAnswer": { "@type": "Answer", "text": "Answer 6" }},{"@type": "Question","name": "Question 7","acceptedAnswer": { "@type": "Answer", "text": "Answer 7" }}]}</script>
The above two JSON-ld objects are considered as one since they share the same @id
.
generateStructuredData
If you need to generate a JSON-ld object you can use the generateStructuredData
function:
generateStructuredData([{ question: 'Question 5', answer: 'Answer 5' },{ question: 'Question 6', answer: 'Answer 6' },{ question: 'Question 7', answer: 'Answer 7' },],'/intl/pdp');
Which renders the following JS object:
{"@context": "https://schema.org","@type": "FAQPage","@id": "/intl/pdp",mainEntity: [{"@type": "Question",name: "Question 5",acceptedAnswer: { "@type": "Answer", text: "Answer 5" },},{"@type": "Question",name: "Question 6",acceptedAnswer: { "@type": "Answer", text: "Answer 6" },},{"@type": "Question",name: "Question 7",acceptedAnswer: { "@type": "Answer", text: "Answer 7" },},],}
SimpleFaqs
Name | Description | Type | Default Value |
---|---|---|---|
defaultExpanded | An array of indices to be expanded by default | number[] | undefined |
faqs | An array of questions and answers to be rendered | {question:ReactNode,answer:ReactNode, trackEventLabel?:string}[] | undefined |
initialLength | How many FAQs to show initially, the rest are toggled by a button | number | undefined |
showMoreText | Button text to be rendered when the hidden FAQs are collapsed | string | undefined |
showLessText | Button text to be rendered when the hidden FAQs are expanded | string | undefined |
multiple | Allow opening multiple FAQs at the same time | boolean | false |
Faqs
Name | Description | Type | Default Value |
---|---|---|---|
initialLength | How many FAQs to show initially, the rest are toggled by a button | number | undefined |
showMoreText | Button text to be rendered when the hidden FAQs are collapsed | string | undefined |
showLessText | Button text to be rendered when the hidden FAQs are expanded | string | undefined |
multiple | Allow opening multiple FAQs at the same time | boolean | false |
Faq
Name | Description | Type | Default Value |
---|---|---|---|
defaultExpanded | Faq should be expanded by default | boolean | undefined |
Question
Name | Description | Type | Default Value |
---|---|---|---|
trackEventLabel | A custom event label to be sent with analytics events | string | undefined |
FaqStructuredData
Name | Description | Type | Default Value |
---|---|---|---|
faqs | An array of questions and answers to be rendered in the structured data | {question:string,answer:string}[] | undefined |
faqPageId | A unique id, usually a URI at a page level that is shared between multiple FaqStructuredData components. Required if more than one components are rendered on the same page | string | undefined |
generateStructuredData(faqs, faqPageId)
Name | Description | Type | Default Value |
---|---|---|---|
faqs | An array of questions and answers to be rendered in the structured data | {question:string,answer:string}[] | undefined |
faqPageId | A unique id, usually a URI at a page level that is shared between multiple generateStructuredData calls. Required if more than one JSON-ld object is needed | string | undefined |