Merge pull request #125 from DeepDoge/master

Made yt video pause, since we use new tab now
This commit is contained in:
kodxana 2022-07-08 23:24:19 +02:00 committed by GitHub
commit 1f29fc7c29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,11 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
fontSize: '14px',
textDecoration: 'none',
...target.platform.button.style?.button,
}}>
}}
onClick={() => findVideoElementAwait().then((videoElement) => {
videoElement.pause()
})}
>
<img src={target.platform.button.icon} height={16}
style={{ transform: 'scale(1.5)', ...target.platform.button.style?.icon }} />
<span>{target.platform.button.text}</span>
@ -137,7 +141,11 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
// We should get this from background, so the caching works and we don't get errors in the future if yt decides to impliment CORS
async function requestResolveById(...params: Parameters<typeof resolveById>): ReturnType<typeof resolveById> {
const json = await new Promise<string | null | 'error'>((resolve) => chrome.runtime.sendMessage({ json: JSON.stringify(params) }, resolve))
if (json === 'error') throw new Error("Background error.")
if (json === 'error')
{
console.error("Background error on:", params)
throw new Error("Background error.")
}
return json ? JSON.parse(json) : null
}
@ -152,10 +160,10 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
while (true) {
await sleep(500)
const url = new URL(location.href);
let target = (await getTargetsByURL(url))[url.href]
const url: URL = (urlCache?.href === location.href) ? urlCache : new URL(location.href);
try {
if (settings.redirect) {
const target = (await getTargetsByURL(url))[url.href]
if (!target) continue
if (url === urlCache) continue
@ -179,12 +187,15 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
}
}
else {
if (urlCache !== url) updateButton(null)
let target = (await getTargetsByURL(url))[url.href]
if (!target) {
const descriptionElement = document.querySelector(sourcePlatform.htmlQueries.videoDescription)
if (descriptionElement) {
const anchors = Array.from(descriptionElement.querySelectorAll<HTMLAnchorElement>('a'))
for (const anchor of anchors) {
if (!anchor.href) continue
const url = new URL(anchor.href)
let lbryURL: URL | null = null
if (sourcePlatform === sourcePlatfromSettings['youtube.com']) {
@ -209,7 +220,7 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
}
}
if (target) {
if (target?.type === 'video') {
const videoElement = document.querySelector<HTMLVideoElement>(sourcePlatform.htmlQueries.videoPlayer)
if (videoElement) target.time = videoElement.currentTime > 3 && videoElement.currentTime < videoElement.duration - 1 ? videoElement.currentTime : null
}
@ -217,7 +228,9 @@ import { getExtensionSettingsAsync, getSourcePlatfromSettingsFromHostname, getTa
// We run it anyway with null target to hide the button
updateButton(target)
}
} catch (error) {
console.error(error)
}
urlCache = url
}