+
@@ -209,6 +213,7 @@
adAutoPostNextAd: string | null = null;
isChannel = Conversation.isChannel;
isPrivate = Conversation.isPrivate;
+ showNonMatchingAds = true;
@Hook('mounted')
mounted(): void {
@@ -389,6 +394,27 @@
if(conv.channel.mode === 'both') conv.mode = mode;
}
+
+ toggleNonMatchingAds(): void {
+ this.showNonMatchingAds = !this.showNonMatchingAds;
+ }
+
+
+ /* tslint:disable */
+ getMessageWrapperClasses(): any {
+ if (!this.isChannel(this.conversation)) {
+ return {};
+ }
+
+ const conv = this.conversation;
+ const classes:any = {};
+
+ classes['messages-' + conv.mode] = true;
+ classes['hide-non-matching'] = !this.showNonMatchingAds;
+
+ return classes;
+ }
+
acceptReport(sfc: {callid: number}): void {
core.connection.send('SFC', {action: 'confirm', callid: sfc.callid});
}
@@ -682,6 +708,13 @@
}
}
+
+ .messages.hide-non-matching .message.message-score {
+ &.mismatch {
+ display: none;
+ }
+ }
+
.message {
&.message-event {
font-size: 85%;
diff --git a/chat/ImagePreview.vue b/chat/ImagePreview.vue
index 3895467..f588107 100644
--- a/chat/ImagePreview.vue
+++ b/chat/ImagePreview.vue
@@ -19,6 +19,31 @@