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

mopinion-react-native-sdk

v2.1.4

Published

Collect in-app feedback with Mopinion for React Native. Built fully in React Native for optimal integration with your RN app.

Downloads

1,219

Readme

license

Mopinion for React Native

Easily collect in-app feedback with the Mopinion SDK for React Native.

Installation

To install the Mopinion SDK into your React Native Application:

  1. In a terminal window, navigate to the root directory of your project and run:
npm install mopinion-react-native-sdk @react-native-async-storage/async-storage react-native-webview react-native-view-shot react-native-image-picker --save

Note: since React Native 60 uses autolinking and the autolinking depth is only of the direct dependencies we now specifiy dependencies which require native modules as peerDependencies. This is a breaking change introduced in version 1.0.0.

  1. Link assets by running the following command in your projects root directory:

react-native link mopinion-react-native-sdk

  1. Install native modules by running pod install. Run the following command from your root directory.

cd ios && pod install && cd ..

If you're using React Native 59 and lower do the following as well.

react-native link react-native-view-shot
react-native link @react-native-async-storage/async-storage
react-native link react-native-webview
react-native link react-native-image-picker

Note: Xcode 12.5 requires at least React Native 0.64.1.

  1. Optional: When using the image upload functionality

The SDK allows users to pick an image from her/his device to upload as a screenshot. To enable this on iOS, in Xcode make sure to add the Privacy - Photo Library Usage Description permission to the Info.plist of your app if it is missing:

<key>NSPhotoLibraryUsageDescription</key>
<string>To use an image from your library as a screenshot</string>

Implementing the SDK

Import the Mopinion SDK in your main app file:

import { MopinionSDK, MopinionDeployment } from 'mopinion-react-native-sdk'

Loading your deployment

Add a <MopinionDeployment /> component with your deployment ID to your JSX:

<MopinionDeployment deploymentID={'YOUR_ID_HERE'} />

Trigger forms by calling the event emitter.

MopinionSDK.event('_button')

Passing meta data from your app into Mopinion forms

You can send an object of data along with the feedback sent by your users using the metaData prop. This is useful for passing along various metadata that you might want to have linked to a users feedback.

<MopinionDeployment
	//required
	deploymentID={'YOUR_ID_HERE'}
	//optional
	metaData={{
		meta:'value',
		meta2:'value2',
		meta3:'value3'
	}}
	fireWhenReady={['event']} //Array of events to fire when to deployment is ready
	modalAnimationDuration={400} //Customize the animation duration of the feedback dialog, default = 400, set to 0 to disable animations

	onOpen={(data) => {
		//Fires the moment a form opens
		//data
		/*
			{
				formKey:'Formkey of the form that opened'
			}
		*/
	}}
	onFormLoaded={(data) => {
		//Fires when a form opened and the form configuration was loaded
		//data
		/*
			{
				formKey:'Formkey of the form that opened',
				formName:'Name of the form'
			}
		*/
	}}
	onClose={(data) => {
		//Fires when a form closes after being open
		//data
		/*
			{
				formKey:'Formkey of the form that opened',
				formName:'Name of the form'
			}
		*/
	}}
	onFeedbackSent={(data) => {
		//Fires when the feedback on the final page is submitted
		//data
		/*
			{
				formKey:'Formkey of the form that opened',
				formName:'Name of the form',
				feedback: [] //An array of objects with feedback data
			}
		*/
	}}
/>

Support

Mopinion For React Native is maintained by the Mopinion Development Team. For support contact [email protected]