Merge 75848ad4ebb3cbc51c7f1e18f2c2a8838a759730 into aaa04a43b5eaf14f8763390a2f6065c0ac87d8dc

This commit is contained in:
Kevin Gibbons 2023-11-05 04:39:08 +00:00 committed by GitHub
commit 188dba534c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 38 deletions

View File

@ -18,5 +18,7 @@ module.exports = {
eqeqeq: ['error', 'always', { null: 'ignore' }], eqeqeq: ['error', 'always', { null: 'ignore' }],
curly: ['error', 'multi-line'], curly: ['error', 'multi-line'],
'no-var': 'error', 'no-var': 'error',
'no-func-assign': 'off',
'no-inner-declarations': 'off',
}, },
}; };

View File

@ -124,13 +124,13 @@ function isElementVisible(element) {
function ensureTALinks() { function ensureTALinks() {
let channelContainerNodes = getChannelContainers(); let channelContainerNodes = getChannelContainers();
for (let channelContainer of channelContainerNodes) { for (let channelContainer of channelContainerNodes) {
channelContainer = adjustOwner(channelContainer); channelContainer = adjustOwner(channelContainer);
if (channelContainer.hasTA) continue; if (channelContainer.hasTA) continue;
channelContainer.hasTA = true; let channelButton = buildChannelButton(channelContainer);
buildChannelButton(channelContainer).then(channelButton => {
channelContainer.appendChild(channelButton); channelContainer.appendChild(channelButton);
}); channelContainer.hasTA = true;
} }
let titleContainerNodes = getTitleContainers(); let titleContainerNodes = getTitleContainers();
@ -143,34 +143,54 @@ function ensureTALinks() {
titleContainer.hasTA = true; titleContainer.hasTA = true;
} }
} }
ensureTALinks = throttled(ensureTALinks, 700);
// fix positioning of #owner div to fit new button
function adjustOwner(channelContainer) { function adjustOwner(channelContainer) {
return channelContainer.querySelector('#buttons') || channelContainer; return channelContainer.querySelector('#buttons') || channelContainer;
} }
function buildChannelButton(channelContainer) { function buildChannelButton(channelContainer) {
return new Promise(resolve => { let channelHandle = getChannelHandle(channelContainer);
let buttonDiv; channelContainer.taDerivedHandle = channelHandle;
let channelSubButton;
let spacer;
let channelDownloadButton;
// Delayed execution for interface to refresh let buttonDiv = buildChannelButtonDiv();
setTimeout(() => {
const channelHandle = getChannelHandle(channelContainer); let channelSubButton = buildChannelSubButton(channelHandle);
buttonDiv = buildChannelButtonDiv();
channelSubButton = buildChannelSubButton(channelHandle);
spacer = buildSpacer();
channelDownloadButton = buildChannelDownloadButton();
buttonDiv.appendChild(channelSubButton); buttonDiv.appendChild(channelSubButton);
channelContainer.taSubButton = channelSubButton;
let spacer = buildSpacer();
buttonDiv.appendChild(spacer); buttonDiv.appendChild(spacer);
let channelDownloadButton = buildChannelDownloadButton();
buttonDiv.appendChild(channelDownloadButton); buttonDiv.appendChild(channelDownloadButton);
resolve(buttonDiv); channelContainer.taDownloadButton = channelDownloadButton;
}, 2000);
if (!channelContainer.taObserver) {
function updateButtonsIfNecessary() {
let newHandle = getChannelHandle(channelContainer);
if (channelContainer.taDerivedHandle === newHandle) return;
console.log(`updating handle from ${channelContainer.taDerivedHandle} to ${newHandle}`);
channelContainer.taDerivedHandle = newHandle;
let channelSubButton = buildChannelSubButton(newHandle);
channelContainer.taSubButton.replaceWith(channelSubButton);
channelContainer.taSubButton = channelSubButton;
let channelDownloadButton = buildChannelDownloadButton();
channelContainer.taDownloadButton.replaceWith(channelDownloadButton);
channelContainer.taDownloadButton = channelDownloadButton;
}
channelContainer.taObserver = new MutationObserver(throttled(updateButtonsIfNecessary, 100));
channelContainer.taObserver.observe(channelContainer, {
attributes: true,
childList: true,
subtree: true,
}); });
} }
return buttonDiv;
}
function getChannelHandle(channelContainer) { function getChannelHandle(channelContainer) {
const channelHandleContainer = document.querySelector('#channel-handle'); const channelHandleContainer = document.querySelector('#channel-handle');
let channelHandle = channelHandleContainer ? channelHandleContainer.innerText : null; let channelHandle = channelHandleContainer ? channelHandleContainer.innerText : null;
@ -236,10 +256,10 @@ function checkChannelSubscribed(channelSubButton) {
console.log('Unknown state'); console.log('Unknown state');
} }
} }
function handleError() { function handleError(e) {
buttonError(channelSubButton); buttonError(channelSubButton);
channelSubButton.innerText = 'Error'; channelSubButton.innerText = 'Error';
console.log('error'); console.error('error', e);
} }
let channelHandle = channelSubButton.dataset.id; let channelHandle = channelSubButton.dataset.id;
@ -395,10 +415,11 @@ function checkVideoExists(taButton) {
} }
taButton.isChecked = true; taButton.isChecked = true;
} }
function handleError() { function handleError(e) {
buttonError(taButton); buttonError(taButton);
let videoId = taButton.dataset.id; let videoId = taButton.dataset.id;
console.log(`error: failed to get info from TA for video ${videoId}`); console.log(`error: failed to get info from TA for video ${videoId}`);
console.error(e);
} }
let videoId = taButton.dataset.id; let videoId = taButton.dataset.id;
@ -455,9 +476,8 @@ function sendUrl(url, action, button) {
} }
} }
function handleError(error) { function handleError(e) {
console.log('error'); console.log('error', e);
console.log(JSON.stringify(error));
buttonError(button); buttonError(button);
} }
@ -490,15 +510,20 @@ function cleanButtons() {
} }
let oldHref = document.location.href; let oldHref = document.location.href;
let throttleBlock;
const throttle = (callback, time) => { function throttled(callback, time) {
let throttleBlock = false;
let lastArgs;
return (...args) => {
lastArgs = args;
if (throttleBlock) return; if (throttleBlock) return;
throttleBlock = true; throttleBlock = true;
setTimeout(() => { setTimeout(() => {
callback();
throttleBlock = false; throttleBlock = false;
callback(...lastArgs);
}, time); }, time);
}; };
}
let observer = new MutationObserver(list => { let observer = new MutationObserver(list => {
const currentHref = document.location.href; const currentHref = document.location.href;
@ -507,7 +532,7 @@ let observer = new MutationObserver(list => {
oldHref = currentHref; oldHref = currentHref;
} }
if (list.some(i => i.type === 'childList' && i.addedNodes.length > 0)) { if (list.some(i => i.type === 'childList' && i.addedNodes.length > 0)) {
throttle(ensureTALinks, 700); ensureTALinks();
} }
}); });