Declare and initialize the spotcheck variable using the initializeSpotChecks().
Anonymous users
If you wish not to keep track of users' data, you can follow the below syntax for initialization.
import { initializeSpotChecks } from 'surveysparrow-react-native-sdk';
//Initialize once at the root of the App
useLayoutEffect(() => {
initializeSpotChecks({
domainName: ‘your-domain-name',
targetToken: 'your-target-token’,
// Should Not Pass userDetails as const
userDetails: {},
variables: {},
customProperties: {},
});
},[]);
Known Users
If you wish to keep track of users' data and perform conditional Survey triggers, you can follow the below syntax for initialization.
import { initializeSpotChecks } from 'surveysparrow-react-native-sdk';
//Initialize once at the root of the App
useLayoutEffect(() => {
initializeSpotChecks({
domainName: ‘your-domain-name',
targetToken: 'your-target-token’',
userDetails: {
email:"<user_email>",
mobile:"<user_mobile>",
uuid: '<uuid_value>' // Optional
},
variables: {
sparrowLang: "ta" // Eg: ta, en,
<api_identifier_of_variable>:"<variable_value>",
},
customProperties: {
<custom_property_name>: ‘<custom_property_value>’
},
});
},[]);
Add Spotcheck inside the navigation container only once in the App component
import Spotcheck from 'surveysparrow-react-native-sdk';
<NavigationContainer>
<Stack.Navigator>
<your-app-code>
</Stack.Navigator>
<Spotcheck/>
</NavigationContainer>
Screen Track
It provides the ability to keep track of screens the users are visiting and to enable the survey trigger on that screen.
If a survey needs to be triggered when the user completes a payment, then the TrackEvent function should be called with the respective ScreenName and optional custom properties.