mirror of https://github.com/waku-org/js-waku.git
Refresh peer stats every second
This commit is contained in:
parent
278439df82
commit
a1218c1223
|
@ -76,6 +76,13 @@ function App() {
|
|||
);
|
||||
const [messages, setMessages] = useState<Message[]>([]);
|
||||
const [address, setAddress] = useState<string>();
|
||||
const [peerStats, setPeerStats] = useState<{
|
||||
relayPeers: number;
|
||||
lightPushPeers: number;
|
||||
}>({
|
||||
relayPeers: 0,
|
||||
lightPushPeers: 0,
|
||||
});
|
||||
|
||||
const classes = useStyles();
|
||||
|
||||
|
@ -148,12 +155,17 @@ function App() {
|
|||
};
|
||||
}, [waku, address, EncryptionKeyPair]);
|
||||
|
||||
let relayPeers = 0;
|
||||
let lightPushPeers = 0;
|
||||
if (waku) {
|
||||
relayPeers = waku.relay.getPeers().size;
|
||||
lightPushPeers = waku.lightPush.peers.length;
|
||||
}
|
||||
useEffect(() => {
|
||||
if (!waku) return;
|
||||
|
||||
const interval = setInterval(() => {
|
||||
setPeerStats({
|
||||
relayPeers: waku.relay.getPeers().size,
|
||||
lightPushPeers: waku.lightPush.peers.length,
|
||||
});
|
||||
}, 1000);
|
||||
return () => clearInterval(interval);
|
||||
}, [waku]);
|
||||
|
||||
let addressDisplay = '';
|
||||
if (address) {
|
||||
|
@ -177,7 +189,8 @@ function App() {
|
|||
/>
|
||||
</IconButton>
|
||||
<Typography className={classes.peers} aria-label="connected-peers">
|
||||
Peers: {relayPeers} relay, {lightPushPeers} light push
|
||||
Peers: {peerStats.relayPeers} relay, {peerStats.lightPushPeers}{' '}
|
||||
light push
|
||||
</Typography>
|
||||
<Typography variant="h6" className={classes.title}>
|
||||
Ethereum Direct Message
|
||||
|
|
Loading…
Reference in New Issue