Rotate cache
This commit is contained in:
parent
e546972af1
commit
1464dc6e17
|
@ -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() : [];
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import * as _ from 'lodash';
|
||||
import { Cache } from './cache';
|
||||
import { AdCachedPosting, AdCacheRecord, AdCache } from './ad-cache';
|
||||
|
||||
|
|
Loading…
Reference in New Issue