From ce26885a906c4e5377b7c6943e4c815a37406b15 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Wed, 30 Dec 2020 19:59:56 -0600 Subject: [PATCH] Skip auto ad --- CHANGELOG.md | 4 ++ chat/ConversationView.vue | 84 +++++++++++++++++++++++---------------- chat/ads/ad-manager.ts | 4 ++ 3 files changed, 58 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 861ff4c..23f7812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Canary +* Skip button for auto-post ads + + ## 1.8.0 * Added colorblind mode (settings -> rising -> colorblind mode) diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index c2ba950..2660acb 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -108,8 +108,9 @@
{{adAutoPostUpdate}}
{{l('admgr.renew')}} @@ -503,6 +504,12 @@ } + skipAd(): void { + this.conversation.adManager.skipAd(); + this.updateAutoPostingState(); + } + + stopAutoPostAds(): void { this.conversation.adManager.stop(); } @@ -525,6 +532,35 @@ } + updateAutoPostingState() { + const adManager = this.conversation.adManager; + + this.adAutoPostNextAd = adManager.getNextAd() || null; + + if(this.adAutoPostNextAd) { + const diff = ((adManager.getNextPostDue() || new Date()).getTime() - Date.now()) / 1000; + const expDiff = ((adManager.getExpireDue() || new Date()).getTime() - Date.now()) / 1000; + + const diffMins = Math.floor(diff / 60); + const diffSecs = Math.floor(diff % 60); + const expDiffMins = Math.floor(expDiff / 60); + const expDiffSecs = Math.floor(expDiff % 60); + + this.adAutoPostUpdate = l( + ((adManager.getNextPostDue()) && (!adManager.getFirstPost())) ? 'admgr.postingBegins' : 'admgr.nextPostDue', + diffMins, + diffSecs + ) + l('admgr.expiresIn', expDiffMins, expDiffSecs); + + this.adsRequireSetup = false; + } else { + this.adAutoPostNextAd = null; + + this.adAutoPostUpdate = l('admgr.noAds'); + this.adsRequireSetup = true; + } + }; + refreshAutoPostingTimer(): void { if (this.autoPostingUpdater) window.clearInterval(this.autoPostingUpdater); @@ -535,38 +571,8 @@ return; } - const updateAutoPostingState = () => { - const adManager = this.conversation.adManager; - - this.adAutoPostNextAd = adManager.getNextAd() || null; - - if(this.adAutoPostNextAd) { - const diff = ((adManager.getNextPostDue() || new Date()).getTime() - Date.now()) / 1000; - const expDiff = ((adManager.getExpireDue() || new Date()).getTime() - Date.now()) / 1000; - - const diffMins = Math.floor(diff / 60); - const diffSecs = Math.floor(diff % 60); - const expDiffMins = Math.floor(expDiff / 60); - const expDiffSecs = Math.floor(expDiff % 60); - - this.adAutoPostUpdate = l( - ((adManager.getNextPostDue()) && (!adManager.getFirstPost())) ? 'admgr.postingBegins' : 'admgr.nextPostDue', - diffMins, - diffSecs - ) + l('admgr.expiresIn', expDiffMins, expDiffSecs); - - this.adsRequireSetup = false; - } else { - this.adAutoPostNextAd = null; - - this.adAutoPostUpdate = l('admgr.noAds'); - this.adsRequireSetup = true; - } - }; - - this.autoPostingUpdater = window.setInterval(updateAutoPostingState, 1000); - - updateAutoPostingState(); + this.autoPostingUpdater = window.setInterval(() => this.updateAutoPostingState(), 1000); + this.updateAutoPostingState(); } @@ -673,6 +679,16 @@ position: relative; margin-top: 5px; + .adAction { + &:hover { + color: rgba(255, 255, 255, 0.8); + } + + &:active { + color: rgba(255, 255, 255, 0.6); + } + } + .renew-autoposts { display: block; float: right; diff --git a/chat/ads/ad-manager.ts b/chat/ads/ad-manager.ts index 3563166..d1ad972 100644 --- a/chat/ads/ad-manager.ts +++ b/chat/ads/ad-manager.ts @@ -47,6 +47,10 @@ export class AdManager { return this.active; } + skipAd(): void { + this.adIndex += 1; + } + // tslint:disable-next-line private async delay(ms: number): Promise { return new Promise((resolve) => setTimeout(resolve, ms));