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

v3.0.2

Published

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

Downloads

1,471

Readme

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 --save
  1. Link icon font
npx react-native-asset -asset node_modules/mopinion-react-native-sdk/assets/fonts
  1. Install peerDependencies, these have to be installed separately because they require linking of native modules.
npm install @react-native-async-storage/async-storage react-native-webview react-native-view-shot react-native-image-picker  --save
  1. Install native modules:
cd ios && bundle exec pod install

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, make sure to add the Privacy - Photo Library Usage Description permission to the Info.plist of your app in Xcode:

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

Implementing the SDK

Import the MopinionDeployment component in your main app file:

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

Add a <MopinionDeployment /> component with your deployment ID to the top level of your app structure:


function YourApp() {
	//...
	return (
		<TopLevel>
			{
				//app content
			}
			<MopinionDeployment deploymentID="YOUR_DEPLOYMENT_ID" />
		</TopLevel>
	);
}

Trigger events from anywhere you might want to show a form.

Pro tip, preemptively implement event calls in relevant places throughout your application so other teams working with Mopinion can easily add or remove forms via the Mopinion platform without changes to your app code. Forms are only shown if the event matches parameters defined in your deployment.

import { MopinionSDK } from 'mopinion-react-native-sdk';

//...

<PurchaseButton
	onPress={() => {
		handlePurchase();
		MopinionSDK.event('purchase_completed);
	}}
/>

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'
	}}
/>

Properties

| Property | Description | Type | | ------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------------------- | | deploymentID | Required the identifier of your deployment | string | | metaData | An object with string values which will be passed along as feedback when your users submit a form | Record<string, string \| number> | | fireWhenReady | Array of events to fire when the deployment is ready | Array<string> | | modalAnimationDuration | Customize the animation duration of the feedback dialog (default: 400, set to 0 to disable animations) | number | | onOpen | Callback fired when a form opens | function | | onFormLoaded | Callback fired when a form configuration is loaded | function | | onClose | Callback fired when a form closes after being open | function | | onFeedbackSent | Callback fired when a feedback form has been fully submitted | function |

Support

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