@ -656,8 +656,21 @@ async function removeAllSessions(id) {
// Conversation
function setifyProperty ( data , propertyName ) {
if ( ! data ) return data ;
const returnData = data ;
if ( returnData [ propertyName ] ) {
returnData [ propertyName ] = new Set ( returnData [ propertyName ] ) ;
}
return returnData ;
}
async function getSwarmNodesByPubkey ( pubkey ) {
return channels . getSwarmNodesByPubkey ( pubkey ) ;
let swarmNodes = await channels . getSwarmNodesByPubkey ( pubkey ) ;
if ( Array . isArray ( swarmNodes ) ) {
swarmNodes = new Set ( swarmNodes ) ;
}
return swarmNodes ;
}
async function getConversationCount ( ) {
@ -665,7 +678,11 @@ async function getConversationCount() {
}
async function saveConversation ( data ) {
await channels . saveConversation ( data ) ;
const storeData = data ;
if ( storeData . swarmNodes ) {
storeData . swarmNodes = Array . from ( storeData . swarmNodes ) ;
}
await channels . saveConversation ( storeData ) ;
}
async function saveConversations ( data ) {
@ -673,7 +690,7 @@ async function saveConversations(data) {
}
async function getConversationById ( id , { Conversation } ) {
const data = await channels . getConversationById ( id ) ;
const data = setifyProperty ( await channels . getConversationById ( id ) , 'swarmNodes' ) ;
return new Conversation ( data ) ;
}
@ -684,6 +701,9 @@ async function updateConversation(id, data, { Conversation }) {
}
const merged = merge ( { } , existing . attributes , data ) ;
if ( merged . swarmNodes instanceof Set ) {
merged . swarmNodes = Array . from ( merged . swarmNodes ) ;
}
await channels . updateConversation ( merged ) ;
}
@ -704,7 +724,8 @@ async function _removeConversations(ids) {
}
async function getAllConversations ( { ConversationCollection } ) {
const conversations = await channels . getAllConversations ( ) ;
const conversations = ( await channels . getAllConversations ( ) )
. map ( c => setifyProperty ( c , 'swarmNodes' ) ) ;
const collection = new ConversationCollection ( ) ;
collection . add ( conversations ) ;
@ -717,7 +738,8 @@ async function getAllConversationIds() {
}
async function getAllPrivateConversations ( { ConversationCollection } ) {
const conversations = await channels . getAllPrivateConversations ( ) ;
const conversations = ( await channels . getAllPrivateConversations ( ) )
. map ( c => setifyProperty ( c , 'swarmNodes' ) ) ;
const collection = new ConversationCollection ( ) ;
collection . add ( conversations ) ;
@ -725,7 +747,8 @@ async function getAllPrivateConversations({ ConversationCollection }) {
}
async function getAllGroupsInvolvingId ( id , { ConversationCollection } ) {
const conversations = await channels . getAllGroupsInvolvingId ( id ) ;
const conversations = ( await channels . getAllGroupsInvolvingId ( id ) )
. map ( c => setifyProperty ( c , 'swarmNodes' ) ) ;
const collection = new ConversationCollection ( ) ;
collection . add ( conversations ) ;
@ -733,7 +756,8 @@ async function getAllGroupsInvolvingId(id, { ConversationCollection }) {
}
async function searchConversations ( query , { ConversationCollection } ) {
const conversations = await channels . searchConversations ( query ) ;
const conversations = ( await channels . searchConversations ( query ) )
. map ( c => setifyProperty ( c , 'swarmNodes' ) ) ;
const collection = new ConversationCollection ( ) ;
collection . add ( conversations ) ;