Giter Site home page Giter Site logo

sbeca / react-native-netinfo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from react-native-netinfo/react-native-netinfo

0.0 2.0 0.0 881 KB

React Native Network Info API for Android & iOS

License: MIT License

JavaScript 7.64% Java 16.32% TypeScript 53.35% Python 1.55% Objective-C 7.58% Ruby 0.42% C# 13.13%

react-native-netinfo's Introduction

@react-native-community/netinfo

CircleCI Status Supports Android, iOS, and Windows MIT License

React Native Network Info API for Android, iOS & Windows. It allows you to get information on:

  • Connection type
  • Connection quality

Getting started

Install the library using either Yarn:

yarn add @react-native-community/netinfo

or npm:

npm install --save @react-native-community/netinfo

You then need to link the native parts of the library for the platforms you are using. The easiest way to link the library is using the CLI tool by running this command from the root of your project:

react-native link @react-native-community/netinfo

If you can't or don't want to use the CLI tool, you can also manually link the library using the instructions below (click on the arrow to show them):

Manually link the library on iOS

Either follow the instructions in the React Native documentation to manually link the framework or link using Cocoapods by adding this to your Podfile:

pod 'react-native-netinfo', :path => '../node_modules/@react-native-community/netinfo'
Manually link the library on Android

Make the following changes:

android/settings.gradle

include ':react-native-community-netinfo'
project(':react-native-community-netinfo').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/netinfo/android')

android/app/build.gradle

dependencies {
   ...
   implementation project(':react-native-community-netinfo')
}

android/app/src/main/.../MainApplication.java

On top, where imports are:

import com.reactnativecommunity.netinfo.NetInfoPackage;

Add the NetInfoPackage class to your list of exported packages.

@Override
protected List<ReactPackage> getPackages() {
    return Arrays.asList(
            new MainReactPackage(),
            new NetInfoPackage()
    );
}
Manually link the library on Windows
  • Open the solution in Visual Studio for your Windows apps
  • Right click in the Explorer and click Add > Existing Project...
  • Navigate to ./<app-name>/node_modules/@react-native-community/netinfo/windows/RNCNetInfo/ and add RNCNetInfo.csproj
  • This time right click on your React Native Windows app under your solutions directory and click Add > Reference...
  • Check the RNCNetInfo you just added and press ok
  • Open up MainReactNativeHost.cs for your app and edit the file like so:
+ using ReactNativeCommunity.NetInfo;
......
        protected override List<IReactPackage> Packages => new List<IReactPackage>
        {
            new MainReactPackage(),
+           new RNCNetInfoPackage(),
        };

React Native Compatibility

To use this library you need to ensure you are using the correct version of React Native. If you are using a version of React Native that is lower than 0.57 you will need to upgrade that before attempting to use this library.

@react-native-community/netinfo version Required React Native Version
3.x.x >= 0.59
2.x.x >= 0.57
1.x.x >= 0.57

Migrating from the core react-native module

This module was created when the NetInfo was split out from the core of React Native. To migrate to this module you need to follow the installation instructions above and then change you imports from:

import { NetInfo } from "react-native";

to:

import NetInfo from "@react-native-community/netinfo";

Note that the API was updated after it was extracted from NetInfo to support some new features, however, the previous API is still available and works with no updates to your code.

Usage

Import the library:

import NetInfo from "@react-native-community/netinfo";

Get the network state once:

NetInfo.fetch().then(state => {
  console.log("Connection type", state.type);
  console.log("Is connected?", state.isConnected);
});

Subscribe to network state updates:

// Subscribe
const unsubscribe = NetInfo.addEventListener(state => {
  console.log("Connection type", state.type);
  console.log("Is connected?", state.isConnected);
});

// Unsubscribe
unsubscribe();

API

Types

NetInfoState

Describes the current state of the network. It is an object with these properties:

Property Type Description
type NetInfoStateType The type of the current connection.
isConnected boolean If there is an active network connection. Note that this DOES NOT mean that internet is reachable.
details The value depends on the type value. See below.

The details value depends on the type value.

type is none or unknown

details is null.

type is wifi, bluetooth, ethernet, wimax, vpn, or other

details has these properties:

Property Type Description
isConnectionExpensive boolean If the network connection is considered "expensive". This could be in either energy or monetary terms.
type is cellular

details has these properties:

Property Type Description
isConnectionExpensive boolean If the network connection is considered "expensive". This could be in either energy or monetary terms.
cellularGeneration NetInfoCellularGeneration The generation of the cell network the user is connected to. This can give an indication of speed, but no guarantees.

NetInfoStateType

Describes the current type of network connection. It is an enum with these possible values:

Value Platform Description
none Android, iOS, Windows No network connection is active
unknown Android, iOS, Windows The network state could not or has yet to be be determined
cellular Android, iOS, Windows Active network over cellular
wifi Android, iOS, Windows Active network over Wifi
bluetooth Android Active network over Bluetooth
ethernet Android, Windows Active network over wired ethernet
wimax Android Active network over WiMax
vpn Android Active network over VPN
other Android, iOS, Windows Active network over another type of network

NetInfoCellularGeneration

Describes the current generation of the cellular connection. It is an enum with these possible values:

Value Description
null Either we are not currently connected to a cellular network or type could not be determined
2g Currently connected to a 2G cellular network. Includes CDMA, EDGE, GPRS, and IDEN type connections
3g Currently connected to a 3G cellular network. Includes EHRPD, EVDO, HSPA, HSUPA, HSDPA, and UTMS type connections
4g Currently connected to a 4G cellular network. Includes HSPAP and LTE type connections

Methods

fetch()

Returns a Promise that resolves to a NetInfoState object.

Example:

NetInfo.fetch().then(state => {
  console.log("Connection type", state.type);
  console.log("Is connected?", state.isConnected);
});

addEventListener()

Subscribe to connection information. The callback is called with a parameter of type NetInfoState whenever the connection state changes. Your listener will be called with the latest information soon after you subscribe and then with any subsequent changes afterwards. You should not assume that the listener is called in the same way across devices or platforms.

Parameter Type Description
listener (state: NetInfoState) => void The listener which will be called whenever the connection state changes

Example:

// Subscribe
const unsubscribe = NetInfo.addEventListener(state => {
  console.log("Connection type", state.type);
  console.log("Is connected?", state.isConnected);
});

// Unsubscribe
unsubscribe();

useNetInfo()

A React Hook which can be used to get access to the latest state. It returns a hook with the NetInfoState type.

Example:

import {useNetInfo} from "@react-native-community/netinfo";

const YourComplement = () => {
  const netInfo = useNetInfo();

  return (
    <View>
      <Text>Type: {netInfo.type}</Text>
      <Text>Is Connected? {netInfo.isConnected}</Text>
    </View>
  );
};

Troubleshooting

Errors while running Jest tests

If you do not have a Jest Setup file configured, you should add the following to your Jest settings and create the jest.setup.js file in project root:

setupFiles: ['<rootDir>/jest.setup.js']

You should then add the following to your Jest setup file to mock the NetInfo Native Module:

import { NativeModules } from 'react-native';

NativeModules.RNCNetInfo = {
  getCurrentState: jest.fn(),
  addListener: jest.fn(),
  removeListeners: jest.fn()
};

Issues with the iOS simulator

There is a known issue with the iOS Simulator which causes it to not receive network change notifications correctly when the host machine disconnects and then connects to Wifi. If you are having issues with iOS then please test on an actual device before reporting any bugs.

Maintainers

Contributing

Please see the contributing guide.

License

The library is released under the MIT license. For more information see LICENSE.

react-native-netinfo's People

Contributors

aaronechiu avatar alburdette619 avatar andreicoman11 avatar axe-fb avatar bestander avatar draperunner avatar gabelevi avatar hramos avatar javache avatar jeffmo avatar lebedev avatar matt-oakes avatar mikehardy avatar mrlaessig avatar mwilc0x avatar nicklockwood avatar nmote avatar rafaellincoln avatar rubennorte avatar sahrens avatar salakar avatar satya164 avatar sbeca avatar scottsmudger avatar semantic-release-bot avatar shailesh17 avatar sophiebits avatar tadeuzagallo avatar titozzz avatar vjeux avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.