mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
73 lines
2.2 KiB
JavaScript
73 lines
2.2 KiB
JavaScript
define(["focusManager"], function (focusManager) {
|
|
"use strict";
|
|
|
|
/**
|
|
* Previously selected element.
|
|
*/
|
|
var activeElement;
|
|
|
|
/**
|
|
* Start AutoFocuser
|
|
*/
|
|
function enable() {
|
|
window.addEventListener("focusin", function (e) {
|
|
activeElement = e.target;
|
|
});
|
|
|
|
console.log("AutoFocuser enabled");
|
|
}
|
|
|
|
/**
|
|
* Set focus on a suitable element, taking into account the previously selected.
|
|
*/
|
|
function autoFocus(container) {
|
|
container = container || document.body;
|
|
|
|
var candidates = [];
|
|
|
|
if (activeElement) {
|
|
// These elements are recreated
|
|
if (activeElement.classList.contains("btnPreviousPage")) {
|
|
candidates.push(container.querySelector(".btnPreviousPage"));
|
|
candidates.push(container.querySelector(".btnNextPage"));
|
|
} else if (activeElement.classList.contains("btnNextPage")) {
|
|
candidates.push(container.querySelector(".btnNextPage"));
|
|
candidates.push(container.querySelector(".btnPreviousPage"));
|
|
} else if (activeElement.classList.contains("btnSelectView")) {
|
|
candidates.push(container.querySelector(".btnSelectView"));
|
|
}
|
|
|
|
candidates.push(activeElement);
|
|
}
|
|
|
|
candidates = candidates.concat(Array.from(container.querySelectorAll(".btnResume")));
|
|
candidates = candidates.concat(Array.from(container.querySelectorAll(".btnPlay")));
|
|
|
|
var notFound = candidates.every(function (element) {
|
|
if (focusManager.isCurrentlyFocusable(element)) {
|
|
focusManager.focus(element);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
if (notFound) {
|
|
// FIXME: Multiple itemsContainers
|
|
var itemsContainer = container.querySelector(".itemsContainer");
|
|
|
|
if (itemsContainer) {
|
|
notFound = !focusManager.autoFocus(itemsContainer);
|
|
}
|
|
}
|
|
|
|
if (notFound) {
|
|
focusManager.autoFocus(container);
|
|
}
|
|
}
|
|
|
|
return {
|
|
enable: enable,
|
|
autoFocus: autoFocus
|
|
};
|
|
});
|