1.0.0 • Published 4 years ago

react-native-internet-popup v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

A Internet Popup library. It display a beatiful bar at bottom of screen when you are offline and back to online.

Support us with a star 🌟

📖 Getting started

$ npm install react-native-internet-popup --save

$ yarn add react-native-internet-popup

Linking (Mostly automatic installation)

ReactNative < 0.60

$ react-native link react-native-internet-popup

💻 Usage

import InternetPopup from 'react-native-internet-popup';

In your AppNavigation.js or App.js file

class AppNavigation extends React.Component {
	state = {
		unsubscribe: null,
	};

	// --------------- LIFECYCLE ---------------
	componentDidMount() {
		console.disableYellowBox = true;
	}

	componentWillUnmount() {
		if (this.state.unsubscribe) {
			this.state.unsubscribe();
		}
	}

	// --------------- RENDER ---------------
	render() {
		return (
			<SafeAreaProvider>
				<NavigationContainer ref={navigationRef}>
					<Stack.Navigator initialRouteName='SplashScreen' screenOptions={screenOptions}>
						<Stack.Screen name='SplashScreen' component={SplashScreen} options={{ headerShown: false }} />
						<Stack.Screen name='AuthModule' component={AuthStack} options={{ headerShown: false }} />
						<Stack.Screen name='HomeModule' component={TabNavigator} options={{ headerShown: false }} />
					</Stack.Navigator>
				</NavigationContainer>
				<InternetPopup
					removeEventListener={(unsubscribe) => {
						this.setState({ unsubscribe });
					}}
					onNetworkChange={(isConnected) => console.log(isConnected)}
					isConnected={this.props.Common.isNetworkAvailable} // Value is comming from Redux connection
				/>
			</SafeAreaProvider>
		);
	}
}

💡 Props

KeyTypeDescription
removeEventListener(unsubscribe) => voidGive unsubscribe function to remove netInfo event listener. call it in componentWillUnmount method
onNetworkChange(isConnected) => voidGive isConnected boolean value whether internet is connected or not
isConnectedbooleanYou can pass your own internet connection boolean value
  • All above props are not required.

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list below. ✨

💪 Support Development

There are few ways you can do it:

  • Starring and sharing the projects you like 🚀
  • Please follow dilipsuthar97 on GitHub.

Thanks! ❤️ dilipsuthar97.github.io

📱 Social

Twitter GitHub

📜 License

Copyright 2020 Dilip Suthar (dilipsuthar97)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.