![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/pusher-js/src/runtimes/web/ |
import Reachability from 'core/reachability'; import { default as EventsDispatcher } from 'core/events/dispatcher'; /** Really basic interface providing network availability info. * * Emits: * - online - when browser goes online * - offline - when browser goes offline */ export class NetInfo extends EventsDispatcher implements Reachability { constructor() { super(); var self = this; // This is okay, as IE doesn't support this stuff anyway. if (window.addEventListener !== undefined) { window.addEventListener( 'online', function() { self.emit('online'); }, false ); window.addEventListener( 'offline', function() { self.emit('offline'); }, false ); } } /** Returns whether browser is online or not * * Offline means definitely offline (no connection to router). * Inverse does NOT mean definitely online (only currently supported in Safari * and even there only means the device has a connection to the router). * * @return {Boolean} */ isOnline(): boolean { if (window.navigator.onLine === undefined) { return true; } else { return window.navigator.onLine; } } } export var Network = new NetInfo();