mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 19:47:04 +03:00
Remove some redundant checks
This commit is contained in:
14
src/popup.ts
14
src/popup.ts
@@ -146,17 +146,13 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
let currentVideoID = null;
|
let currentVideoID = null;
|
||||||
|
|
||||||
//show proper disable skipping button
|
//show proper disable skipping button
|
||||||
const disableSkipping = Config.config.disableSkipping;
|
if (Config.config.disableSkipping) {
|
||||||
if (disableSkipping != undefined && disableSkipping) {
|
|
||||||
PageElements.disableSkipping.style.display = "none";
|
PageElements.disableSkipping.style.display = "none";
|
||||||
PageElements.enableSkipping.style.display = "unset";
|
PageElements.enableSkipping.style.display = "unset";
|
||||||
PageElements.toggleSwitch.checked = false;
|
PageElements.toggleSwitch.checked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//if the don't show notice again variable is true, an option to
|
if (Config.config.dontShowNotice) {
|
||||||
// disable should be available
|
|
||||||
const dontShowNotice = Config.config.dontShowNotice;
|
|
||||||
if (dontShowNotice != undefined && dontShowNotice) {
|
|
||||||
PageElements.showNoticeAgain.style.display = "unset";
|
PageElements.showNoticeAgain.style.display = "unset";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,8 +191,6 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//get the amount of times this user has skipped a sponsor
|
|
||||||
if (Config.config.skipCount != undefined) {
|
|
||||||
if (Config.config.skipCount != 1) {
|
if (Config.config.skipCount != 1) {
|
||||||
PageElements.sponsorTimesSkipsDoneEndWord.innerText = chrome.i18n.getMessage("Segments");
|
PageElements.sponsorTimesSkipsDoneEndWord.innerText = chrome.i18n.getMessage("Segments");
|
||||||
} else {
|
} else {
|
||||||
@@ -205,10 +199,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
|
|
||||||
PageElements.sponsorTimesSkipsDoneDisplay.innerText = Config.config.skipCount.toLocaleString();
|
PageElements.sponsorTimesSkipsDoneDisplay.innerText = Config.config.skipCount.toLocaleString();
|
||||||
PageElements.sponsorTimesSkipsDoneContainer.style.display = "unset";
|
PageElements.sponsorTimesSkipsDoneContainer.style.display = "unset";
|
||||||
}
|
|
||||||
|
|
||||||
//get the amount of time this user has saved.
|
|
||||||
if (Config.config.minutesSaved != undefined) {
|
|
||||||
if (Config.config.minutesSaved != 1) {
|
if (Config.config.minutesSaved != 1) {
|
||||||
PageElements.sponsorTimeSavedEndWord.innerText = chrome.i18n.getMessage("minsLower");
|
PageElements.sponsorTimeSavedEndWord.innerText = chrome.i18n.getMessage("minsLower");
|
||||||
} else {
|
} else {
|
||||||
@@ -216,7 +207,6 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
PageElements.sponsorTimeSavedDisplay.innerText = getFormattedHours(Config.config.minutesSaved);
|
PageElements.sponsorTimeSavedDisplay.innerText = getFormattedHours(Config.config.minutesSaved);
|
||||||
}
|
|
||||||
|
|
||||||
// Must be delayed so it only happens once loaded
|
// Must be delayed so it only happens once loaded
|
||||||
setTimeout(() => PageElements.sponsorblockPopup.classList.remove("preload"), 250);
|
setTimeout(() => PageElements.sponsorblockPopup.classList.remove("preload"), 250);
|
||||||
|
|||||||
Reference in New Issue
Block a user