Add scores to messages loaded with loadMore()
This commit is contained in:
parent
c31e3bde02
commit
d316407627
|
@ -100,6 +100,9 @@ abstract class Conversation implements Interfaces.Conversation {
|
||||||
if(this.messages.length >= this.allMessages.length) return false;
|
if(this.messages.length >= this.allMessages.length) return false;
|
||||||
this.maxMessages += 50;
|
this.maxMessages += 50;
|
||||||
this.messages = this.allMessages.slice(-this.maxMessages);
|
this.messages = this.allMessages.slice(-this.maxMessages);
|
||||||
|
|
||||||
|
EventBus.$emit('conversation-load-more', { conversation: this });
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -117,20 +117,7 @@ export class CacheManager {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
_.each(
|
this.populateAllConversationsWithScore(c.character.name, score);
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -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(
|
// EventBus.$on(
|
||||||
// 'private-message',
|
// 'private-message',
|
||||||
|
@ -240,6 +236,7 @@ export class CacheManager {
|
||||||
|
|
||||||
if (next) {
|
if (next) {
|
||||||
try {
|
try {
|
||||||
|
// tslint:disable-next-line: binary-expression-operand-order
|
||||||
if ((false) && (next)) {
|
if ((false) && (next)) {
|
||||||
console.log(`Fetch '${next.name}' for channel '${next.channelId}', gap: ${(Date.now() - this.lastFetch)}ms`);
|
console.log(`Fetch '${next.name}' for channel '${next.channelId}', gap: ${(Date.now() - this.lastFetch)}ms`);
|
||||||
this.lastFetch = Date.now();
|
this.lastFetch = Date.now();
|
||||||
|
@ -305,6 +302,12 @@ export class CacheManager {
|
||||||
// this.addProfile(message.sender.name);
|
// this.addProfile(message.sender.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async onLoadMoreConversation(data: SelectConversationEvent): Promise<void> {
|
||||||
|
await this.onSelectConversation(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
async onSelectConversation(data: SelectConversationEvent): Promise<void> {
|
async onSelectConversation(data: SelectConversationEvent): Promise<void> {
|
||||||
const conversation = data.conversation;
|
const conversation = data.conversation;
|
||||||
const channel = _.get(conversation, 'channel') as (Channel.Channel | undefined);
|
const channel = _.get(conversation, 'channel') as (Channel.Channel | undefined);
|
||||||
|
@ -345,7 +348,7 @@ export class CacheManager {
|
||||||
return;
|
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) {
|
if (!p) {
|
||||||
await this.queueForFetching(chatMessage.sender.name, true, channel.id);
|
await this.queueForFetching(chatMessage.sender.name, true, channel.id);
|
||||||
|
@ -360,7 +363,8 @@ export class CacheManager {
|
||||||
skipStore: boolean,
|
skipStore: boolean,
|
||||||
char: Character.Character,
|
char: Character.Character,
|
||||||
conv: ChannelConversation,
|
conv: ChannelConversation,
|
||||||
msg?: Message
|
msg?: Message,
|
||||||
|
populateAll: boolean = true
|
||||||
): Promise<CharacterCacheRecord | undefined> {
|
): Promise<CharacterCacheRecord | undefined> {
|
||||||
if (!core.characters.ownProfile) {
|
if (!core.characters.ownProfile) {
|
||||||
return undefined;
|
return undefined;
|
||||||
|
@ -376,13 +380,46 @@ export class CacheManager {
|
||||||
) || undefined;
|
) || undefined;
|
||||||
|
|
||||||
if ((p) && (msg)) {
|
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;
|
msg.score = p.matchScore;
|
||||||
|
|
||||||
|
if (populateAll) {
|
||||||
|
this.populateAllConversationsWithScore(char.name, p.matchScore);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return p;
|
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<void> {
|
async stop(): Promise<void> {
|
||||||
if (this.profileTimer) {
|
if (this.profileTimer) {
|
||||||
clearTimeout(this.profileTimer);
|
clearTimeout(this.profileTimer);
|
||||||
|
|
|
@ -137,6 +137,10 @@ export class ProfileCache extends AsyncCache<CharacterCacheRecord> {
|
||||||
const k = AsyncCache.nameKey(c.character.name);
|
const k = AsyncCache.nameKey(c.character.name);
|
||||||
const score = ProfileCache.score(c);
|
const score = ProfileCache.score(c);
|
||||||
|
|
||||||
|
if (score === 0) {
|
||||||
|
console.log(`Storing score 0 for character ${c.character.name}`);
|
||||||
|
}
|
||||||
|
|
||||||
if ((this.store) && (!skipStore)) {
|
if ((this.store) && (!skipStore)) {
|
||||||
await this.store.storeProfile(c);
|
await this.store.storeProfile(c);
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,7 +81,7 @@ export class IndexedStore implements PermanentIndexedStore {
|
||||||
furryPreference: ca.furryPreference,
|
furryPreference: ca.furryPreference,
|
||||||
species: ca.species,
|
species: ca.species,
|
||||||
age: ca.age,
|
age: ca.age,
|
||||||
domSubRole: null, // domSubRole
|
domSubRole: ca.subDomRole, // domSubRole
|
||||||
position: null, // position
|
position: null, // position
|
||||||
|
|
||||||
lastMetaFetched: null,
|
lastMetaFetched: null,
|
||||||
|
|
Loading…
Reference in New Issue