Referral Components
The Referral components are reusable React components designed to facilitate user referrals and rewards. It allows users to earn rewards by sharing a referral code with friends.
Last updated
The Referral components are reusable React components designed to facilitate user referrals and rewards. It allows users to earn rewards by sharing a referral code with friends.
Last updated
To unlock early access to the component Get Access
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 cd
command if you're not already there.
Run the following command to install the quest-sdk
package using npm:
This command will download and install the package and its dependencies into your project.
Make sure your project has npm and Node.js installed, and that you have the necessary permissions to install packages in your project directory.
To integrate the ReferEarn
component into your React application, follow these steps
Import the CSS: In your JavaScript or TypeScript file where you're using the ReferEarn
, import the CSS styles for the component. This ensures that the component's styling is applied correctly.
Import the TutorialComponent: Import the ReferEarn
component from the @questlabs/react-sdk
package.
Import the QuestProvider Component: Import the QuestProvider
component from the @questlabs/react-sdk
package.
Pass the Required Props: Pass the required props to the QuestProvider
. The required props are apiKey
, and entityId
. and required props for the ReferEarn
component are userId, questId, token
Replace "your-api-key"
and "your-entity-id"
with your actual Quest API credentials
Replace "your-token"
, "your-user-id", "your-questId"
with your actual configuration details.
Here's an example of how to use the ReferEarn
component within your React application
The ReferEarn
component accepts the following props:
questId
string
required
The unique identifier for the referral quest associated with the user.
userId
string
required
The user's unique identifier, often used for tracking referrals.
token
string
required
A user authentication token required for making API requests.
heading
string
optional
Heading for the referral component.
headingColor
string
optional
set the heading color
description
string
optional
Description for the referral component.
referralLink
string
optional
Referral link.
shareButtonText
string
optional
Text for the share button.
secondaryIconColor
string
optional
Color of secondary icons.
gradientBackground
boolean
optional
Indicates whether to use a gradient background.
primaryHeading
string
optional
Primary heading for the gradient background.
primaryDescription
string
optional
Primary description for the gradient background.
onCopy
function
optional
Callback function triggered on referral code copy.
showReferralCode
boolean
optional
Indicates whether to show the referral code.
isOpen
boolean
optional
if true open the component else not
bgColor
string
optional
set background color
uniqueUserId
string
optional
a unique user'id for all user
showPoweredBy
boolean
optional
Indicates whether to show the "Powered by QuestLabs" footer.
uniqueEmailId
string
optional
a unique email'id for all user
styleConfig
object
optional
An object containing CSS properties for styling various components within the refer earn process, including form, topbar, label, headings, descriptions, Primary button .
The above example uses all the props.
You can customize the UI with type of styleConfig would be
The ReferEarn
component offers the following features:
Referral Code Retrieval: It fetches a unique referral code for the user, which they can share with others to earn rewards.
Copy to Clipboard: Users can easily copy their referral code to the clipboard with a single click, simplifying the sharing process.
Social Media Sharing: The component provides icons for sharing the referral code on popular social media platforms, such as Twitter and Telegram.
Customization: Users can customize the appearance of the component by specifying the color
and bgColor
props to match their application's design.