From 1464dc6e173cbfcf523b850e01c201a4294ec9b5 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 9 Jul 2019 19:33:12 -0500 Subject: [PATCH] Rotate cache --- chat/AdView.vue | 2 +- chat/ConversationView.vue | 11 ++++++++--- learn/ad-cache.ts | 5 ++++- learn/channel-conversation-cache.ts | 1 + 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/chat/AdView.vue b/chat/AdView.vue index 6a92130..ab4ff11 100644 --- a/chat/AdView.vue +++ b/chat/AdView.vue @@ -56,7 +56,7 @@ export default class AdView extends CustomDialog { const cache = core.cache.adCache.get(this.character.name); - this.messages = (cache) ? _.takeRight(cache.posts, 20) : []; + this.messages = (cache) ? _.takeRight(cache.posts, 10).reverse() : []; } diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 31dce47..a945409 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -647,12 +647,17 @@ &.match { border-left: 12px solid #027b02; - background-color: rgba(1, 76, 1, 0.45); + background-color: rgba(1, 115, 1, 0.45); } &.weak-match { border-left: 12px solid #015a01; - background-color: rgba(0, 58, 0, 0.35); + background-color: rgba(0, 70, 0, 0.4); + + .bbcode { + filter: grayscale(0.25); + opacity: 0.77; + } } &.neutral { @@ -680,7 +685,7 @@ .bbcode, .user-view, .message-time { - opacity: 0.4; + opacity: 0.55; } } diff --git a/learn/ad-cache.ts b/learn/ad-cache.ts index f4bacbb..f3e2cf2 100644 --- a/learn/ad-cache.ts +++ b/learn/ad-cache.ts @@ -1,3 +1,4 @@ +import * as _ from 'lodash'; import { Cache } from './cache'; export interface AdCachedPosting { @@ -13,7 +14,7 @@ export interface AdPosting extends AdCachedPosting { export class AdCacheRecord { protected name: string; - readonly posts: AdCachedPosting[] = []; + posts: AdCachedPosting[] = []; constructor(name: string, posting?: AdPosting) { this.name = name; @@ -30,6 +31,8 @@ export class AdCacheRecord { message: ad.message } ); + + this.posts = _.takeRight(this.posts, 25); } diff --git a/learn/channel-conversation-cache.ts b/learn/channel-conversation-cache.ts index 8f8a19c..6385848 100644 --- a/learn/channel-conversation-cache.ts +++ b/learn/channel-conversation-cache.ts @@ -1,3 +1,4 @@ +import * as _ from 'lodash'; import { Cache } from './cache'; import { AdCachedPosting, AdCacheRecord, AdCache } from './ad-cache';