add network listener

This commit is contained in:
Sasha 2024-07-03 17:21:07 +02:00
parent 069925b89b
commit ba8867c50e
No known key found for this signature in database
2 changed files with 37 additions and 3 deletions

View File

@ -34,7 +34,7 @@ export class ConnectionManager implements IConnectionManager {
private currentActiveParallelDialCount = 0;
private pendingPeerDialQueue: Array<PeerId> = [];
private isConnectedToNetwork: boolean = navigator.onLine;
private isConnectedToNetwork: boolean = window.navigator.onLine;
private isConnectedToWakuNetwork: boolean = false;
private constructor(

View File

@ -5,6 +5,7 @@ import {
type ContentTopic,
CoreProtocolResult,
CreateSubscriptionResult,
EConnectionStateEvents,
type IAsyncIterator,
type IDecodedMessage,
type IDecoder,
@ -48,6 +49,8 @@ export class SubscriptionManager implements ISubscriptionSDK {
readonly peers: Peer[];
readonly receivedMessagesHashStr: string[] = [];
private subscribeOptions: SubscribeOptions = DEFAULT_SUBSCRIBE_OPTIONS;
private keepAliveTimer: number | null = null;
private subscriptionCallbacks: Map<
@ -70,6 +73,8 @@ export class SubscriptionManager implements ISubscriptionSDK {
callback: Callback<T>,
options: SubscribeOptions = DEFAULT_SUBSCRIBE_OPTIONS
): Promise<SDKProtocolResult> {
this.subscribeOptions = options;
const decodersArray = Array.isArray(decoders) ? decoders : [decoders];
// check that all decoders are configured for the same pubsub topic as this subscription
@ -236,11 +241,40 @@ export class SubscriptionManager implements ISubscriptionSDK {
}
private startNetworkMonitoring(): void {
// this.protocol.addLibp2pEventListener("waku:connection", (evt) => console.log(evt));
// @ts-expect-error: tmp change while PR in draft
this.protocol.addLibp2pEventListener(
EConnectionStateEvents.CONNECTION_STATUS,
this.networkStateListener as () => void
);
}
private stopNetworkMonitoring(): void {
// this.protocol.removeLibp2pEventListener("waku:connection", (evt) => console.log(evt));
// @ts-expect-error: tmp change while PR in draft
this.protocol.removeLibp2pEventListener(
EConnectionStateEvents.CONNECTION_STATUS,
this.networkStateListener as () => void
);
}
private async networkStateListener(isConnected: boolean): Promise<void> {
if (!isConnected) {
this.stopKeepAlivePings();
return;
}
const result = await this.ping();
const renewPeerPromises = result.failures.map((v) => {
if (v.peerId) {
// @ts-expect-error: tmp change while PR in draft
return this.protocol.renewPeer(v.peerId);
}
});
await Promise.all(renewPeerPromises);
this.startKeepAlivePings(
this.subscribeOptions?.keepAlive || DEFAULT_SUBSCRIBE_OPTIONS.keepAlive
);
}
private startKeepAlivePings(interval: number): void {