diff --git a/.gitignore b/.gitignore index 97c08d2..6ee9746 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ node_modules/ /electron/app /electron/dist /mobile/www -/webchat/dist \ No newline at end of file +/webchat/dist + +.idea/workspace.xml diff --git a/chat/ConversationSettings.vue b/chat/ConversationSettings.vue index 12b2726..75b628f 100644 --- a/chat/ConversationSettings.vue +++ b/chat/ConversationSettings.vue @@ -35,6 +35,12 @@ +
+ + +
+ + @@ -58,6 +64,7 @@ highlightWords!: string; joinMessages!: Conversation.Setting; defaultHighlights!: boolean; + ads!: string[]; load(): void { const settings = this.conversation.settings; @@ -66,16 +73,29 @@ this.highlightWords = settings.highlightWords.join(','); this.joinMessages = settings.joinMessages; this.defaultHighlights = settings.defaultHighlights; + this.ads = settings.adSettings.ads.slice(0); + + if (this.ads.length === 0) { + this.ads.push(''); + } } submit(): void { this.conversation.settings = { notify: this.notify, highlight: this.highlight, - highlightWords: this.highlightWords.split(',').map((x) => x.trim()).filter((x) => x.length), + highlightWords: this.highlightWords.split(',').map((x) => x.trim()).filter((x) => (x.length > 0)), joinMessages: this.joinMessages, - defaultHighlights: this.defaultHighlights + defaultHighlights: this.defaultHighlights, + adSettings: { + ads: this.ads.filter((ad: string) => (ad.length > 0)) + } }; } + + + addAd(): void { + this.ads.push(''); + } } \ No newline at end of file diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index ad26b29..65ee938 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -69,6 +69,16 @@ +
+

Auto-Posting Ads

+
{{adAutoPostUpdate}}
+ + + +