New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-detect-offline-api

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-detect-offline-api - npm Package Compare versions

Comparing version

to
1.0.1

6

dist/index.d.ts

@@ -7,6 +7,6 @@ /**

apiUrl: string;
render: Function;
render?: Function;
checkInterval: number | null;
onOnline: Function;
onOffline: Function;
onOnline?: Function;
onOffline?: Function;
};

@@ -13,0 +13,0 @@ export default class ReactDetectOfflineAPI extends React.Component<Props> {

@@ -1,2 +0,2 @@

import { createElement, Component } from 'react';
import { createElement, Fragment, Component } from 'react';

@@ -54,7 +54,11 @@ /*! *****************************************************************************

_this.setState({ online: true }, function () {
_this.props.onOnline();
if (_this.props.onOnline) {
_this.props.onOnline();
}
});
})).catch(function () {
_this.setState({ online: false }, function () {
_this.props.onOffline();
if (_this.props.onOffline) {
_this.props.onOffline();
}
});

@@ -88,3 +92,5 @@ });

}
return (createElement("div", null, this.props.render(this.state)));
return (createElement(Fragment, null, this.props.render && this.props.render({
online: this.state.online,
})));
};

@@ -91,0 +97,0 @@ return ReactDetectOfflineAPI;

@@ -58,7 +58,11 @@ 'use strict';

_this.setState({ online: true }, function () {
_this.props.onOnline();
if (_this.props.onOnline) {
_this.props.onOnline();
}
});
})).catch(function () {
_this.setState({ online: false }, function () {
_this.props.onOffline();
if (_this.props.onOffline) {
_this.props.onOffline();
}
});

@@ -92,3 +96,5 @@ });

}
return (React.createElement("div", null, this.props.render(this.state)));
return (React.createElement(React.Fragment, null, this.props.render && this.props.render({
online: this.state.online,
})));
};

@@ -95,0 +101,0 @@ return ReactDetectOfflineAPI;

{
"name": "react-detect-offline-api",
"version": "1.0.0",
"version": "1.0.1",
"description": "Detect whether your API is online of offline",

@@ -5,0 +5,0 @@ "author": "jvorcak",

@@ -9,2 +9,4 @@ # react-detect-offline-api

[Demo](https://webscopeio.github.io/react-detect-offline-api/)
## Usage

@@ -11,0 +13,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet