npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-qualaroo-mobile-sdk

v2.1.3

Published

React Native Bridge for Qualaroo Mobile SDK

Downloads

19

Readme

react-native-qualaroo-mobile-sdk

React Native Bridge for Qualaroo Mobile SDK

Released Versions

Note: Before updating the SDK version here, please ensure that you have saved the design changes in the Qualaroo Nudge Editor

2.1.3(Latest)- 11 June 2024

2.1.2(Previous)- 7 April 2024

Getting started

1. Install package

$ npm install react-native-qualaroo-mobile-sdk --save

2. iOS specific

  • make sure your ios/Podfile contains:
target '<YOUR_TARGET_NAME>' do
  ...
  use_frameworks!
  pod 'Qualaroo', :git => 'https://github.com/qualaroo/ios-sdk.git', :tag => '1.14.16'
  ...
end
  • navigate to ios directory and run pod install
  • make sure Always Embed Swift Standard Libraries in your main project's Build Options is set to true

Usage

import QualarooMobileSdk from 'react-native-qualaroo-mobile-sdk';

//In order to be able to use Qualaroo SDK you need to to initialize it first.
QualarooMobileSdk.init("<your_api_key">)

//Display survey with a given alias:
QualarooMobileSdk.showSurvey("survey_alias")

//Set unique user id
QualarooMobileSdk.setUserId("HAL_9000");

//Set user property "name" to "Hal"
QualarooMobileSdk.setUserProperty("name", "Hal");

//remove property "name"
QualarooMobileSdk.removeUserProperty("name");

//You can set preferred language that you want to use when displaying surveys.
QualarooMobileSdk.setPreferredLanguage("fr")

Observe survey related events

In order to be able to listen to events, you need to add listeners

Step 1:
import {
  NativeModules, NativeEventEmitter, 
  Platform
} from 'react-native';

Step 2:
 const listner = Platform.select({
    ios: new NativeEventEmitter(NativeModules.QualarooEventEmiiter),
    android: DeviceEventEmitter,
  });

Step 3:
 listner?.addListener('survey_shown',(_surveyAlias:string) =>{
     //survey has just been shown to a user
    })
    listner?.addListener('survey_dismissed',(_surveyAlias:string) =>{
//survey has been dismissed by a user
    })
    listner?.addListener('survey_finished',(_surveyAlias:string) =>{
//user has completed the survey by answering all of the questions
    })

Example

import * as React from 'react';

import {
  Button,
  DeviceEventEmitter,
  StyleSheet,
  View,
  NativeModules, NativeEventEmitter, 
  Platform
} from 'react-native';
import QualarooMobileSdk from 'react-native-qualaroo-mobile-sdk';


export default function App() {
 const listner = Platform.select({
    ios: new NativeEventEmitter(NativeModules.QualarooEventEmiiter),
    android: DeviceEventEmitter,
  });
  React.useEffect(() => {
    QualarooMobileSdk.init('<your_key_here>');
  
    listner?.addListener('survey_shown',(_surveyAlias:string) =>{
    })
    listner?.addListener('survey_dismissed',(_surveyAlias:string) =>{
    })
    listner?.addListener('survey_finished',(_surveyAlias:string) =>{
    })
  }, []);

  return (
    <View style={styles.container}>
      <Button
        title={'show'}
        onPress={() => {
          QualarooMobileSdk.showSurvey("<your_survey_alias>")
        }}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },
});

For Android Specific

Add Reciever in your AndroidManifest.xml file

  <receiver
        android:name="com.qualaroomobilesdk.QualarooMobileSdkEventReceiver"
        android:exported="false">
        <intent-filter>
          <action android:name="com.qualaroo.event.ACTION_SURVEY_EVENT"/>
        </intent-filter>
  </receiver>