diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue
index a5a1134..fabc137 100644
--- a/chat/ConversationView.vue
+++ b/chat/ConversationView.vue
@@ -90,7 +90,8 @@
{{(adAutoPostNextAd ? adAutoPostNextAd.substr(0, 64) : '')}}...
- {{l('admgr.renew')}}
+ {{l('admgr.renew')}}
+ {{l('admgr.setup')}}
@@ -174,6 +175,8 @@
import {isCommand} from './slash_commands';
import UserView from './UserView.vue';
import UserChannelList from './UserChannelList.vue';
+ import * as _ from 'lodash';
+
@Component({
components: {
@@ -211,6 +214,7 @@
autoPostingUpdater = 0;
adAutoPostUpdate: string | null = null;
adAutoPostNextAd: string | null = null;
+ adsRequireSetup = false;
isChannel = Conversation.isChannel;
isPrivate = Conversation.isPrivate;
showNonMatchingAds = true;
@@ -281,7 +285,7 @@
get messages(): ReadonlyArray {
if(this.search === '') return this.conversation.messages;
const filter = new RegExp(this.search.replace(/[^\w]/gi, '\\$&'), 'i');
- return this.conversation.messages.filter((x) => filter.test(x.text));
+ return this.conversation.messages.filter((x) => filter.test(x.text) || (filter.test(_.get(x, 'sender.name', '') as string)));
}
async sendButton(): Promise {
@@ -337,7 +341,9 @@
}
@Watch('conversation.typingStatus')
- typingStatusChanged(_: string, oldValue: string): void {
+ // tslint:disable-next-line: ban-ts-ignore
+ // @ts-ignore-next
+ typingStatusChanged(str: string, oldValue: string): void {
if(oldValue === 'clear') this.keepScroll();
}
@@ -504,10 +510,13 @@
diffMins,
diffSecs
) + l('admgr.expiresIn', expDiffMins, expDiffSecs);
+
+ this.adsRequireSetup = false;
} else {
this.adAutoPostNextAd = null;
this.adAutoPostUpdate = l('admgr.noAds');
+ this.adsRequireSetup = true;
}
};
diff --git a/chat/localize.ts b/chat/localize.ts
index 3a95d0c..48a1386 100644
--- a/chat/localize.ts
+++ b/chat/localize.ts
@@ -24,6 +24,7 @@ const strings: {[key: string]: string | undefined} = {
'admgr.activeHeader': 'Auto-Posting Ads',
'admgr.comingNext': 'Coming Next',
'admgr.renew': 'Renew',
+ 'admgr.setup': 'Setup Ads',
'admgr.toggleAutoPost': 'Auto-Post Ads',
'consoleWarning.head': 'THIS IS THE DANGER ZONE.',
'consoleWarning.body': `ANYTHING YOU WRITE OR PASTE IN HERE COULD BE USED TO STEAL YOUR PASSWORDS OR TAKE OVER YOUR ENTIRE COMPUTER. This is where happiness goes to die. If you aren't a developer or a special kind of daredevil, please get out of here!`,