-
-
+
+
+
+
+
+
No Peers Discovered
+
Waiting for someone to announce!
-
No Peers Discovered
-
Waiting for someone to announce!
+
+
+
+
+
No Search Results
+
Your search didn't match any Peers!
+
+
+
@@ -277,6 +297,7 @@
config: null,
peers: {},
+ peersSearchTerm: "",
selectedPeer: null,
chatItems: [],
@@ -562,6 +583,13 @@
return peerB.last_announce_timestamp - peerA.last_announce_timestamp;
});
},
+ searchedPeers() {
+ return this.peersOrderedByLatestAnnounce.filter((peer) => {
+ const search = this.peersSearchTerm.toLowerCase();
+ const matchesAppData = (peer.app_data || "").toLowerCase().includes(search);
+ return matchesAppData;
+ });
+ },
selectedPeerChatItems() {
// get all chat items related to the selected peer