improve readability
This commit is contained in:
parent
1bac4bd6ab
commit
59be53225e
|
@ -12,6 +12,7 @@ import type {
|
||||||
UsePeersResults,
|
UsePeersResults,
|
||||||
} from "./types";
|
} from "./types";
|
||||||
import { OrderedSet } from "./ordered_array";
|
import { OrderedSet } from "./ordered_array";
|
||||||
|
import { getPeerIdsForProtocol } from "./utils";
|
||||||
|
|
||||||
export const usePersistentNick = (): [
|
export const usePersistentNick = (): [
|
||||||
string,
|
string,
|
||||||
|
@ -194,15 +195,9 @@ export const usePeers = (params: UsePeersParams): UsePeersResults => {
|
||||||
|
|
||||||
setPeers({
|
setPeers({
|
||||||
allConnected: peers.map((p) => p.id),
|
allConnected: peers.map((p) => p.id),
|
||||||
storePeers: peers
|
storePeers: getPeerIdsForProtocol(node.store, peers),
|
||||||
.filter((p) => p.protocols.includes(node.store?.multicodec || ""))
|
filterPeers: getPeerIdsForProtocol(node.filter, peers),
|
||||||
.map((p) => p.id),
|
lightPushPeers: getPeerIdsForProtocol(node.lightPush, peers),
|
||||||
filterPeers: peers
|
|
||||||
.filter((p) => p.protocols.includes(node.filter?.multicodec || ""))
|
|
||||||
.map((p) => p.id), // hardcoding codec since we don't export it currently
|
|
||||||
lightPushPeers: peers
|
|
||||||
.filter((p) => p.protocols.includes(node.lightPush?.multicodec || ""))
|
|
||||||
.map((p) => p.id),
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import type { Peer } from "@libp2p/interface-peer-store";
|
import type { Peer } from "@libp2p/interface-peer-store";
|
||||||
|
import { IFilter, ILightPush, IStore } from "@waku/interfaces";
|
||||||
|
|
||||||
export async function handleCatch(
|
export async function handleCatch(
|
||||||
promise?: Promise<Peer[]>
|
promise?: Promise<Peer[]>
|
||||||
|
@ -13,3 +14,14 @@ export async function handleCatch(
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getPeerIdsForProtocol(
|
||||||
|
protocol: IStore | ILightPush | IFilter | undefined,
|
||||||
|
peers: Peer[]
|
||||||
|
) {
|
||||||
|
return protocol
|
||||||
|
? peers
|
||||||
|
.filter((p) => p.protocols.includes(protocol.multicodec))
|
||||||
|
.map((p) => p.id)
|
||||||
|
: [];
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue