diff options
author | mini-bomba <[email protected]> | 2023-03-24 23:42:09 +0100 |
---|---|---|
committer | mini-bomba <[email protected]> | 2023-03-24 23:59:59 +0100 |
commit | 1ef6c1977facd3085942ab941b545d807da3f4bd (patch) | |
tree | 4f7c06f8699864f214a064ab76bd568ebe605c70 /src/utils | |
parent | e1b30204ce7062e565f6c522ac0639ef918f9bdb (diff) | |
download | SponsorBlock-1ef6c1977facd3085942ab941b545d807da3f4bd.tar.gz SponsorBlock-1ef6c1977facd3085942ab941b545d807da3f4bd.zip |
Don't attach controls to inline preview players
Co-authored-by: Ajay <[email protected]>
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/pageUtils.ts | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/utils/pageUtils.ts b/src/utils/pageUtils.ts index 5462fde4..38bf4748 100644 --- a/src/utils/pageUtils.ts +++ b/src/utils/pageUtils.ts @@ -14,9 +14,9 @@ export function getControls(): HTMLElement { ]; for (const controlsSelector of controlsSelectors) { - const controls = document.querySelectorAll(controlsSelector); + const controls = Array.from(document.querySelectorAll(controlsSelector)).filter(el => !isInPreviewPlayer(el)); - if (controls && controls.length > 0) { + if (controls.length > 0) { return <HTMLElement> controls[controls.length - 1]; } } @@ -24,6 +24,10 @@ export function getControls(): HTMLElement { return null; } +export function isInPreviewPlayer(element: Element): boolean { + return !!element.closest("#inline-preview-player"); +} + export function isVisible(element: HTMLElement): boolean { return element && element.offsetWidth > 0 && element.offsetHeight > 0; } @@ -65,12 +69,12 @@ export function getExistingChapters(currentVideoID: VideoID, duration: number): if (timeElement && description?.innerText?.length > 0 && link.getAttribute("href")?.includes(currentVideoID)) { const time = getFormattedTimeToSeconds(timeElement.innerText.replace(".", ":")); if (time === null) return []; - + if (lastSegment) { lastSegment.segment[1] = time; chapters.push(lastSegment); } - + lastSegment = { segment: [time, null], category: "chapter" as Category, @@ -112,4 +116,4 @@ export function getLocalizedMessage(text: string): string | false { } else { return false; } -}
\ No newline at end of file +} |