diff --git a/chat/conversations.ts b/chat/conversations.ts index 5b6724d..76cef6f 100644 --- a/chat/conversations.ts +++ b/chat/conversations.ts @@ -100,6 +100,9 @@ abstract class Conversation implements Interfaces.Conversation { if(this.messages.length >= this.allMessages.length) return false; this.maxMessages += 50; this.messages = this.allMessages.slice(-this.maxMessages); + + EventBus.$emit('conversation-load-more', { conversation: this }); + return true; } diff --git a/learn/cache-manager.ts b/learn/cache-manager.ts index 515c392..a1dde08 100644 --- a/learn/cache-manager.ts +++ b/learn/cache-manager.ts @@ -117,20 +117,7 @@ export class CacheManager { } ); - _.each( - core.conversations.channelConversations, - (ch: ChannelConversation) => { - _.each( - ch.messages, (m: Conversation.Message) => { - if ((m.type === Message.Type.Ad) && (m.sender) && (m.sender.name === c.character.name)) { - // console.log('Update score', score, ch.name, m.sender.name, m.text, m.id); - - m.score = score; - } - } - ); - } - ); + this.populateAllConversationsWithScore(c.character.name, score); } @@ -226,6 +213,15 @@ export class CacheManager { } ); + EventBus.$on( + 'conversation-load-more', + async(data: SelectConversationEvent) => { + // this promise is intentionally NOT chained + // tslint:disable-next-line: no-floating-promises + this.onLoadMoreConversation(data); + } + ); + // EventBus.$on( // 'private-message', @@ -240,6 +236,7 @@ export class CacheManager { if (next) { try { + // tslint:disable-next-line: binary-expression-operand-order if ((false) && (next)) { console.log(`Fetch '${next.name}' for channel '${next.channelId}', gap: ${(Date.now() - this.lastFetch)}ms`); this.lastFetch = Date.now(); @@ -305,6 +302,12 @@ export class CacheManager { // this.addProfile(message.sender.name); } + + async onLoadMoreConversation(data: SelectConversationEvent): Promise { + await this.onSelectConversation(data); + } + + async onSelectConversation(data: SelectConversationEvent): Promise { const conversation = data.conversation; const channel = _.get(conversation, 'channel') as (Channel.Channel | undefined); @@ -345,7 +348,7 @@ export class CacheManager { return; } - const p = await this.resolvePScore(false, chatMessage.sender, conversation as ChannelConversation, chatMessage); + const p = await this.resolvePScore(false, chatMessage.sender, conversation as ChannelConversation, chatMessage, true); if (!p) { await this.queueForFetching(chatMessage.sender.name, true, channel.id); @@ -360,7 +363,8 @@ export class CacheManager { skipStore: boolean, char: Character.Character, conv: ChannelConversation, - msg?: Message + msg?: Message, + populateAll: boolean = true ): Promise { if (!core.characters.ownProfile) { return undefined; @@ -376,13 +380,46 @@ export class CacheManager { ) || undefined; if ((p) && (msg)) { + // if (p.matchScore === 0) { + // console.log(`Fetched score 0 for character ${char.name}`); + // + // p.matchScore = ProfileCache.score(p.character); + // + // await core.cache.profileCache.register(p.character, false); + // + // console.log(`Re-scored character ${char.name} to ${p.matchScore}`); + // } + msg.score = p.matchScore; + + if (populateAll) { + this.populateAllConversationsWithScore(char.name, p.matchScore); + } } return p; } + // tslint:disable-next-line: prefer-function-over-method + protected populateAllConversationsWithScore(characterName: string, score: number): void { + _.each( + core.conversations.channelConversations, + (ch: ChannelConversation) => { + _.each( + ch.messages, (m: Conversation.Message) => { + if ((m.type === Message.Type.Ad) && (m.sender) && (m.sender.name === characterName)) { + // console.log('Update score', score, ch.name, m.sender.name, m.text, m.id); + + m.score = score; + } + } + ); + } + ); + } + + async stop(): Promise { if (this.profileTimer) { clearTimeout(this.profileTimer); diff --git a/learn/profile-cache.ts b/learn/profile-cache.ts index 747d4d4..70d7170 100644 --- a/learn/profile-cache.ts +++ b/learn/profile-cache.ts @@ -137,6 +137,10 @@ export class ProfileCache extends AsyncCache { const k = AsyncCache.nameKey(c.character.name); const score = ProfileCache.score(c); + if (score === 0) { + console.log(`Storing score 0 for character ${c.character.name}`); + } + if ((this.store) && (!skipStore)) { await this.store.storeProfile(c); } diff --git a/learn/store/indexed.ts b/learn/store/indexed.ts index 508d26b..45c547a 100644 --- a/learn/store/indexed.ts +++ b/learn/store/indexed.ts @@ -81,7 +81,7 @@ export class IndexedStore implements PermanentIndexedStore { furryPreference: ca.furryPreference, species: ca.species, age: ca.age, - domSubRole: null, // domSubRole + domSubRole: ca.subDomRole, // domSubRole position: null, // position lastMetaFetched: null,