All Projects → rh389 → react-native-store-view

rh389 / react-native-store-view

Licence: MIT License
Wraps SKStoreProductViewController for use in react-native projects

Programming Languages

objective c
16641 projects - #2 most used programming language
javascript
184084 projects - #8 most used programming language
shell
77523 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to react-native-store-view

IOSIphoneHttps
ios超级签-ipa-新版IOS苹果企业签,直接签名直接下载安装,无需进入appstore商城——不需要经过App Store直接下载游戏吗?下载完不知道怎么安装?需要通过第三方软件来安装?绕过苹果检测,测试可以使用HTTPD或者Tomcat构建,使用plist文件
Stars: ✭ 61 (+110.34%)
Mutual labels:  app-store
TJStoreReviewController
A handy wrapper around SKStoreReviewController
Stars: ✭ 18 (-37.93%)
Mutual labels:  app-store
Harpy
Harpy checks a user's currently installed version of your iOS app against the version that is currently available in the App Store. If a new version is available, an alert can be presented to the user informing them of the newer version, and giving them the option to update the application.
Stars: ✭ 2,619 (+8931.03%)
Mutual labels:  app-store
Eigen
The Art World in Your Pocket or Your Trendy Tech Company's Tote, Artsy's mobile app.
Stars: ✭ 2,874 (+9810.34%)
Mutual labels:  app-store
skydroid
A decentralized domain-based App Store for Android.
Stars: ✭ 132 (+355.17%)
Mutual labels:  app-store

ReactNativeStoreView

Wraps SKStoreProductViewController to open items in the App Store from within react-native projects.

CI Status npm version

Demo gif

NB: v2 and v3 require React Native v0.40 or above. Use v1 for React Native <= 0.39

Installation

With link

  1. npm install --save react-native-store-view
  2. react-native link

With CocoaPods

  1. npm install --save react-native-store-view
  2. Add pod 'ReactNativeStoreView', :path => '../node_modules/react-native-store-view' to your project's Podfile, modifying the path as necessary.
  3. pod install

API

isAvailable():Promise

Resolves with a boolean indicating whether SKStoreProductViewController is available on the current platform (iOS >= 6.0). Resolves false on Android.

loadProductWithParameters(params):Promise

Load a product in the background, in preparation for displaying. Resolves when loading is complete, or rejects with an passed-through error if the underlying call fails.

params is an object with up to four properties, corresponding to SKStoreProductViewController's parameters

  • iTunesItemIdentifier (number, required)
  • affiliateToken (string, optional, iOS 8.0+)
  • campaignToken (string, optional, iOS 8.0+)
  • providerToken (string, optional, iOS 8.3+)
  • advertisingPartnerToken (string, optional, iOS 9.3+)

presentViewController(animated:boolean = true):Promise

Display the store view as a modal. Resolve when animation completes.

dismiss(animated:boolean = true):Promise

Dismiss the store programmatically (not required if the user dismisses the store). Resolve when animation completes.

addListener(eventName:string, callback:(payload: any) => any)

Add a listener for the given event (see below).

removeListener(eventName:string, callback:(payload: any) => any)

Removes the specified listener for the specified event. Be sure to pass the same function reference as passed to addListener.

once(eventName:string, callback:(payload: any) => any)

Calls the callback at most once on the next occurrence of the event. Removes the listener if the event fires.

Events

The module fires events:

  • loading - Begun loading a product in the background.
  • loaded - Product loaded and ready to present.
  • presenting - presentViewController has been called.
  • presented - presentViewController has finished animating and the store is now in the foreground.
  • dismissing - Either dismiss has been called or the user has pressed Done.
  • dismissed - dismiss has finished animating and the store is gone from view.

(NB: If listening for events in native code or when importing the module directly from NativeModules, loading becomes RJHStoreViewManagerLoading etc to avoid conflicts with other modules sharing the global emitter.)

Example usage

import React, {Component} from "react";
import {Text, View, TouchableHighlight} from "react-native";
import * as StoreViewManager from "react-native-store-view";

class ReactNativeStoreViewExample extends Component {

  dismissListener = () => console.log('Store view dismissed');

  constructor() {
    StoreViewManager.addListener('dismiss', this.dismissListener);
  }
  
  componentWillUnmount() {
    StoreViewManager.removeListener('dismiss', this.dismissListener);
  }

  render() {
    return (
      <View>
        <TouchableHighlight onPress={this.onPressButton}>
          <Text>
            Tap here to open the app store
          </Text>
        </TouchableHighlight>
      </View>
    );
  }

  onPressButton() {
    StoreViewManager.loadProductWithParameters({
      iTunesItemIdentifier: 364709193 // The only mandatory parameter is a numeric App Store ID. This one is iBooks.
      //, affiliateToken: 'string, optional, iOS 8.0+'
      //, campaignToken: 'string, optional, iOS 8.0+'
      //, providerToken: 'string, optional, iOS 8.3+'
      //, advertisingPartnerToken: 'string, optional, iOS 9.3+'
    })
      .then(() => {
        console.log('SKStoreProductViewController successfully loaded the product over the net, but is not yet displaying anything');
        StoreViewManager.presentViewController();
      })
      .then(() => {
        console.log('SKStoreProductViewController is now modal. When it is dismissed, we\'ll return to this view.');
      })
      .catch((err) => {
        console.error(err);
      });
  }
}

See the ReactNativeStoreViewExample project for more.

Known limitations

SKStoreProductViewController is not supported for use in a simulator environment, and so neither is this module. You'll need to test your application using a real device.

License

ReactNativeStoreView is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].