@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
28 lines • 1.51 kB
JavaScript
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
import { Plugin } from '../Plugin';
export class NetworkPlugin extends Plugin {
constructor(options) {
super();
this.options = options;
_defineProperty(this, "name", 'NetworkPlugin');
_defineProperty(this, "features", ['Network']);
_defineProperty(this, "initializationTimeout", 5000);
}
async initialize() {
var _this$options;
if (!(((_this$options = this.options) === null || _this$options === void 0 ? void 0 : _this$options.offlineMode) ?? true) && !(await this.isInternetReachable())) {
throw new Error('No internet connection');
}
}
async isInternetReachable() {
try {
await fetch('https://google.com');
return true;
} catch {
return false;
}
}
}
//# sourceMappingURL=NetworkPlugin.js.map