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

@cutii/react-native-twitter-signin

v0.0.4

Published

Social Signin with Twitter

Downloads

4

Readme

npm version

Fork of https://github.com/GoldenOwlAsia/react-native-twitter-signin

Forked to add promise support and exceptions support. As well as making it working for RN0.29+.

Also - in opposition to GoldenOwl twitter signin, this plugin have an option to fail if email is not available to you. Note that this is not standard, you can login without email - I've made it this way to support our app.

Table of contents

Prerequisites

Since Twitter Kit can only be used via Fabric, make sure you install Fabric properly:

  • iOS install Fabric according to this guide: https://docs.fabric.io/ios/fabric/getting-started.html
  • Android install Fabric according to this guide: https://docs.fabric.io/android/fabric/migration/android-studio.html

Fabric will use your Twitter accounts to generate API keys and tokens therefore you have to redo this every time you change your Twitter credentials.

Setup

Firstly, install the npm package:

npm install react-native-luzgan-twitter-signin --save

iOS

It is pretty simple to install it for iOS:

  • Open you Xcode IDE
  • In Libraries choose Add files... and add the 2 files ios/TwitterSignin/TwitterSignin.h and ios/TwitterSignin/TwitterSignin.m in your node_modules/react-native-luzgan-twitter-signin folder
  • Rebuild your project to make sure no build error

Android

On Android, it will use Gradle so all you need to do is to point to the correct project location:

  • In your ${project_dir}/android/settings.gradle add this:

    include ':react-native-luzgan-twitter-signin'
    project(':react-native-luzgan-twitter-signin').projectDir = new File(rootProject.projectDir,'../node_modules/react-native-luzgan-twitter-signin/android')
  • In your ${project_dir}/android/app/build.gradle add this:

    depedencies {
       ...
       compile project(':react-native-luzgan-twitter-signin')
       ...
    }
  • RN0.29+ In you MainApplication.java makes use of the package as following:

        [...]
        //add in the imports
        import com.luzgan.twittersignin.TwitterSigninPackage;
        [...]
        /**
        * A list of packages used by the app. If the app uses additional views
        * or modules besides the default ones, add more packages here.
        */
        @Override
        protected List<ReactPackage> getPackages() {
           return Arrays.<ReactPackage>asList(
             new MainReactPackage(),
             new TwitterSigninPackage(false) //Add that. If you want to see an error on empty email do new TwitterSigninPackage(true)
           );
         }

Keeps in mind that all the configure is for your build tools to recognise the files. So open your Xcode and Android Studio to try making builds and make sure they pass.

Usage

  • Import your native module as follow:

        import React from 'react-native';
        var {
          NativeModules
          } = React;
        const { TwitterSignin } = NativeModules;
        class TwitterButton extends SocialButton {
          _twitterSignIn() {
            TwitterSignin.logIn({TWITTER_COMSUMER_KEY}, {TWITTER_CONSUMER_SECRET})
            .then((data) => {
             //use data
            }).catch((err) => {
             //handle err
            });
          }
          render() {
            return (
              <Icon name='social-twitter' size={32} color='white' style={styles.icon} onPress={this._twitterSignIn.bind(this)}/>
            );
          }
        };

Copyright and license

Code and documentation copyright 2016 Lukasz Holc. Code released under the MIT license.