36 lines
1,017 B
TypeScript
36 lines
1,017 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import {
|
|
CheckNetworkStatusPayloadType,
|
|
NetworkActionType,
|
|
} from '../state/ducks/network';
|
|
import { getSocketStatus } from '../shims/socketStatus';
|
|
import * as log from '../logging/log';
|
|
import { SECOND } from '../util/durations';
|
|
|
|
type NetworkActions = {
|
|
checkNetworkStatus: (x: CheckNetworkStatusPayloadType) => NetworkActionType;
|
|
closeConnectingGracePeriod: () => NetworkActionType;
|
|
};
|
|
|
|
export function initializeNetworkObserver(
|
|
networkActions: NetworkActions
|
|
): void {
|
|
log.info('Initializing network observer');
|
|
|
|
const refresh = () => {
|
|
networkActions.checkNetworkStatus({
|
|
isOnline: navigator.onLine,
|
|
socketStatus: getSocketStatus(),
|
|
});
|
|
};
|
|
|
|
window.Whisper.events.on('socketStatusChange', refresh);
|
|
|
|
window.addEventListener('online', refresh);
|
|
window.addEventListener('offline', refresh);
|
|
window.setTimeout(() => {
|
|
networkActions.closeConnectingGracePeriod();
|
|
}, 5 * SECOND);
|
|
}
|