Badge Component
The Badge component visually represents user achievements, showcasing earned badges within your application.
Component Visuals

In this video, you'll learn:
How to set up the
QuestProviderwith your API credentials.Configuration of the
Badgecomponent with required props.Integration of the component into your React application.
Installation
To install the Quest react-sdk into your project, follow these steps:
Open your terminal/command prompt.
Navigate to your project's root directory using the
cdcommand if you're not already there.Run the following command to install the
quest-sdkpackage using npm:
npm install @questlabs/react-sdkThis command will download and install the package and its dependencies into your project.
Props of Badge Component
The Badgecomponent accepts the following props
userId
string
required
The userId prop is a unique identifier for the user whose badges you want to display. It is required to fetch and display the user's badges.
token
string
required
The token prop is an authentication token or API key that authorizes access to badge data. It is required to fetch badge information for the specified user.
Usage
To integrate the Badgecomponent into your React application, follow these steps
Import the CSS: In your JavaScript or TypeScript file where you're using the
Badges, import the CSS styles for the component. This ensures that the component's styling is applied correctly.
import '@questlabs/react-sdk/dist/style.css'Import the Badge Component: Import the
Badgecomponent from the@questlabs/react-sdkpackage.Import the QuestProvider Component: Import the
QuestProvidercomponent from the@questlabs/react-sdkpackage.
import { QuestProvider, Badge } from '@questlabs/react-sdk';Pass the Required Props: Pass the required props to the
QuestProvider. The required props areapiKey,apiSecret, andentityId. and required props for theBadgecomponent areuserId, token
<QuestProvider
apiKey="your-api-key"
entityId="your-entity-id"
>
<Badge
userId="userId"
token="your-token"
/>
</QuestProvider>Example Usage
Here's an example of how to use the Badgecomponent within your React application
import { QuestProvider, Badge } from '@questlabs/react-sdk';
import '@questlabs/react-sdk/dist/style.css';
function App() {
return (
<div>
<QuestProvider
apiKey="your-api-key""
entityId="your-entity-id""
>
<Badge
userId="userId"
token="token"
/>
</QuestProvider>
</div>
);
}
export default App;Last updated