aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/NoticeComponent.tsx
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2021-01-17 14:39:29 -0500
committerAjay Ramachandran <[email protected]>2021-01-17 14:39:29 -0500
commit551355d21a0e45552be7e9c2bfab2b918a298943 (patch)
tree4bfe3793a7d0fd2ac53859a53e2b8c4d1b14ea7f /src/components/NoticeComponent.tsx
parente269b1aec605ae5afb55572cb9a0177529862209 (diff)
downloadSponsorBlock-551355d21a0e45552be7e9c2bfab2b918a298943.tar.gz
SponsorBlock-551355d21a0e45552be7e9c2bfab2b918a298943.zip
Made countdown timer better support video playback speeds
Diffstat (limited to 'src/components/NoticeComponent.tsx')
-rw-r--r--src/components/NoticeComponent.tsx18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/components/NoticeComponent.tsx b/src/components/NoticeComponent.tsx
index da25aa65..3867fa0a 100644
--- a/src/components/NoticeComponent.tsx
+++ b/src/components/NoticeComponent.tsx
@@ -8,6 +8,8 @@ export interface NoticeProps {
timed?: boolean,
idSuffix?: string,
+ videoSpeed?: () => number,
+
fadeIn?: boolean,
// Callback for when this is closed
@@ -19,7 +21,7 @@ export interface NoticeProps {
export interface NoticeState {
noticeTitle: string,
- maxCountdownTime?: () => number,
+ maxCountdownTime: () => number,
countdownTime: number,
countdownText: string,
@@ -28,6 +30,8 @@ export interface NoticeState {
class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
countdownInterval: NodeJS.Timeout;
+ intervalVideoSpeed: number;
+
idSuffix: string;
amountOfPreviousNotices: number;
@@ -154,7 +158,11 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
countdown(): void {
if (!this.props.timed) return;
- const countdownTime = this.state.countdownTime - 1;
+ const countdownTime = Math.min(this.state.countdownTime - 1, this.state.maxCountdownTime());
+
+ if (this.props.videoSpeed && this.intervalVideoSpeed != this.props.videoSpeed()) {
+ this.setupInterval();
+ }
if (countdownTime <= 0) {
//remove this from setInterval
@@ -217,7 +225,11 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
setupInterval(): void {
if (this.countdownInterval) clearInterval(this.countdownInterval);
- this.countdownInterval = setInterval(this.countdown.bind(this), 1000);
+
+ const intervalDuration = this.props.videoSpeed ? 1000 / this.props.videoSpeed() : 1000;
+ this.countdownInterval = setInterval(this.countdown.bind(this), intervalDuration);
+
+ if (this.props.videoSpeed) this.intervalVideoSpeed = this.props.videoSpeed();
}
resetCountdown(): void {