react-detect-offline-api
Advanced tools
Comparing version
@@ -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
38948
3.34%209
6.09%55
3.77%