Fixed UI blocking when creating conversation, more review comments

pull/157/head
Beaudan 6 years ago
parent e735b3ca41
commit 6ba7fb20b8

@ -182,11 +182,10 @@
}
try {
const swarmNodes = await window.LokiSnodeAPI.getFreshSwarmNodes(id);
conversation.set({ swarmNodes });
await window.Signal.Data.saveConversation(conversation.attributes, {
Conversation: Whisper.Conversation,
});
window.LokiSnodeAPI.refreshSwarmNodesForPubKey(id);
} catch (error) {
window.log.error(
'Conversation save failed! ',

@ -678,11 +678,9 @@ async function getSwarmNodesByPubkey(pubkey) {
async function saveSwarmNodesForPubKey(pubKey, swarmNodes, { Conversation }) {
const conversation = await getConversationById(pubKey, { Conversation });
conversation.set({ swarmNodes });
await updateConversation(
conversation.id,
conversation.attributes,
{ Conversation }
);
await updateConversation(conversation.id, conversation.attributes, {
Conversation,
});
}
async function getConversationCount() {

@ -123,11 +123,9 @@ class LokiMessageAPI {
new Error('Ran out of swarm nodes to query')
);
}
await window.Signal.Data.saveSwarmNodesForPubkey(
pubKey,
swarmNodes,
{ Conversation: Whisper.Conversation }
);
await window.Signal.Data.saveSwarmNodesForPubKey(pubKey, swarmNodes, {
Conversation: Whisper.Conversation,
});
}
const remainingRequests =
MINIMUM_SUCCESSFUL_REQUESTS - completedNodes.length;

@ -106,6 +106,13 @@ class LokiSnodeAPI {
return this.ourSwarmNodes;
}
async refreshSwarmNodesForPubKey(pubKey) {
const newNodes = await this.getFreshSwarmNodes(pubKey);
await window.Signal.Data.saveSwarmNodesForPubKey(pubKey, newNodes, {
Conversation: Whisper.Conversation,
});
}
async getFreshSwarmNodes(pubKey) {
if (!(pubKey in this.swarmsPendingReplenish)) {
this.swarmsPendingReplenish[pubKey] = new Promise(async resolve => {

@ -12,13 +12,15 @@
const friendKeys = await window.Signal.Data.getPubKeysWithFriendStatus(
window.friends.friendRequestStatusEnum.friends
);
await Promise.all(friendKeys.map(async pubKey => {
try {
await sendOnlineBroadcastMessage(pubKey);
} catch(e) {
log.warn(`Failed to send online broadcast message to ${pubKey}`);
}
}));
await Promise.all(
friendKeys.map(async pubKey => {
try {
await sendOnlineBroadcastMessage(pubKey);
} catch (e) {
log.warn(`Failed to send online broadcast message to ${pubKey}`);
}
})
);
}
async function sendOnlineBroadcastMessage(pubKey) {

Loading…
Cancel
Save