jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js

454 lines
13 KiB
JavaScript
Raw Normal View History

2016-01-29 19:43:11 -07:00
define([], function () {
function autoFocus(view, defaultToFirst) {
var element = view.querySelector('*[autofocus]');
if (element) {
focus(element);
2016-04-11 07:05:43 -07:00
return element;
2016-01-29 19:43:11 -07:00
} else if (defaultToFirst !== false) {
element = getFocusableElements(view)[0];
if (element) {
focus(element);
2016-04-11 07:05:43 -07:00
return element;
2016-01-29 19:43:11 -07:00
}
}
2016-04-11 07:05:43 -07:00
return null;
2016-01-29 19:43:11 -07:00
}
function focus(element) {
var tagName = element.tagName;
2016-05-09 20:36:43 -07:00
if (tagName == 'PAPER-INPUT' || tagName == 'EMBY-DROPDOWN-MENU') {
2016-03-23 19:29:49 -07:00
element = element.querySelector('input') || element;
2016-01-29 19:43:11 -07:00
}
2016-03-23 19:29:49 -07:00
try {
element.focus();
} catch (err) {
console.log('Error in focusManager.autoFocus: ' + err);
}
2016-01-29 19:43:11 -07:00
}
2016-05-09 20:36:43 -07:00
var focusableTagNames = ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON', 'A', 'PAPER-BUTTON', 'PAPER-INPUT', 'PAPER-TEXTAREA', 'PAPER-FAB', 'PAPER-CHECKBOX', 'PAPER-ICON-ITEM', 'PAPER-MENU-ITEM', 'EMBY-DROPDOWN-MENU'];
var focusableContainerTagNames = ['BODY', 'DIALOG'];
2016-01-29 19:43:11 -07:00
var focusableQuery = focusableTagNames.join(',') + ',.focusable';
function isFocusable(elem) {
if (focusableTagNames.indexOf(elem.tagName) != -1) {
return true;
}
if (elem.classList && elem.classList.contains('focusable')) {
return true;
}
return false;
}
function focusableParent(elem) {
while (!isFocusable(elem)) {
elem = elem.parentNode;
if (!elem) {
return null;
}
}
return elem;
}
2016-04-10 14:45:06 -07:00
// Determines if a focusable element can be focused at a given point in time
function isCurrentlyFocusable(elem) {
2016-01-29 19:43:11 -07:00
if (elem.disabled) {
return false;
}
if (elem.getAttribute('tabindex') == "-1") {
return false;
}
// http://stackoverflow.com/questions/19669786/check-if-element-is-visible-in-dom
if (elem.offsetParent === null) {
return false;
}
return true;
}
function getFocusableElements(parent) {
var elems = (parent || document).querySelectorAll(focusableQuery);
var focusableElements = [];
for (var i = 0, length = elems.length; i < length; i++) {
var elem = elems[i];
2016-04-10 14:45:06 -07:00
if (isCurrentlyFocusable(elem)) {
2016-01-29 19:43:11 -07:00
focusableElements.push(elem);
}
}
return focusableElements;
}
function isFocusContainer(elem, direction) {
if (focusableContainerTagNames.indexOf(elem.tagName) != -1) {
return true;
}
2016-05-09 20:36:43 -07:00
if (elem.classList.contains('focuscontainer')) {
return true;
}
2016-01-29 19:43:11 -07:00
if (direction < 2) {
if (elem.classList.contains('focuscontainer-x')) {
return true;
}
}
else if (direction == 3) {
if (elem.classList.contains('focuscontainer-down')) {
return true;
}
}
return false;
}
function getFocusContainer(elem, direction) {
while (!isFocusContainer(elem, direction)) {
elem = elem.parentNode;
if (!elem) {
return document.body;
}
}
return elem;
}
2016-03-12 00:28:13 -07:00
function getWindowData(win, documentElement) {
2016-01-29 19:43:11 -07:00
2016-03-12 00:28:13 -07:00
return {
pageYOffset: win.pageYOffset,
pageXOffset: win.pageXOffset,
clientTop: documentElement.clientTop,
clientLeft: documentElement.clientLeft
};
}
2016-01-29 19:43:11 -07:00
2016-03-12 00:28:13 -07:00
function getOffset(elem, windowData) {
2016-01-29 19:43:11 -07:00
2016-03-12 00:28:13 -07:00
var box = { top: 0, left: 0 };
2016-01-29 19:43:11 -07:00
// Support: BlackBerry 5, iOS 3 (original iPhone)
// If we don't have gBCR, just use 0,0 rather than error
if (elem.getBoundingClientRect) {
box = elem.getBoundingClientRect();
}
return {
2016-03-12 00:28:13 -07:00
top: box.top + windowData.pageYOffset - windowData.clientTop,
left: box.left + windowData.pageXOffset - windowData.clientLeft
2016-01-29 19:43:11 -07:00
};
}
2016-03-12 00:28:13 -07:00
function getViewportBoundingClientRect(elem, windowData) {
2016-01-29 19:43:11 -07:00
2016-03-12 00:28:13 -07:00
var offset = getOffset(elem, windowData);
2016-01-29 19:43:11 -07:00
2016-03-12 00:28:13 -07:00
var posY = offset.top - windowData.pageXOffset;
var posX = offset.left - windowData.pageYOffset;
2016-01-29 19:43:11 -07:00
var width = elem.offsetWidth;
var height = elem.offsetHeight;
return {
left: posX,
top: posY,
width: width,
height: height,
right: posX + width,
bottom: posY + height
};
}
function nav(activeElement, direction) {
activeElement = activeElement || document.activeElement;
if (activeElement) {
activeElement = focusableParent(activeElement);
}
var container = activeElement ? getFocusContainer(activeElement, direction) : document.body;
if (!activeElement) {
autoFocus(container, true);
return;
}
var focusableContainer = parentWithClass(activeElement, 'focusable');
2016-03-12 00:28:13 -07:00
var doc = activeElement.ownerDocument;
var windowData = getWindowData(doc.defaultView, doc.documentElement);
var rect = getViewportBoundingClientRect(activeElement, windowData);
2016-01-29 19:43:11 -07:00
var focusableElements = [];
var focusable = container.querySelectorAll(focusableQuery);
for (var i = 0, length = focusable.length; i < length; i++) {
var curr = focusable[i];
if (curr == activeElement) {
continue;
}
// Don't refocus into the same container
if (curr == focusableContainer) {
continue;
}
2016-04-10 14:45:06 -07:00
if (!isCurrentlyFocusable(curr)) {
2016-01-29 19:43:11 -07:00
continue;
}
2016-03-12 00:28:13 -07:00
var elementRect = getViewportBoundingClientRect(curr, windowData);
2016-01-29 19:43:11 -07:00
switch (direction) {
case 0:
// left
if (elementRect.left >= rect.left) {
continue;
}
if (elementRect.right == rect.right) {
continue;
}
break;
case 1:
// right
if (elementRect.right <= rect.right) {
continue;
}
if (elementRect.left == rect.left) {
continue;
}
break;
case 2:
// up
if (elementRect.top >= rect.top) {
continue;
}
if (elementRect.bottom >= rect.bottom) {
continue;
}
break;
case 3:
// down
if (elementRect.bottom <= rect.bottom) {
continue;
}
if (elementRect.top <= rect.top) {
continue;
}
break;
default:
break;
}
focusableElements.push({
element: curr,
clientRect: elementRect
});
}
var nearest = getNearestElements(focusableElements, rect, direction);
if (nearest.length) {
var nearestElement = nearest[0].node;
// See if there's a focusable container, and if so, send the focus command to that
var nearestElementFocusableParent = parentWithClass(nearestElement, 'focusable');
if (nearestElementFocusableParent && nearestElementFocusableParent != nearestElement && activeElement) {
if (parentWithClass(activeElement, 'focusable') != nearestElementFocusableParent) {
nearestElement = nearestElementFocusableParent;
}
}
focus(nearestElement);
}
}
function parentWithClass(elem, className) {
while (!elem.classList || !elem.classList.contains(className)) {
elem = elem.parentNode;
if (!elem) {
return null;
}
}
return elem;
}
2016-02-28 14:31:45 -07:00
function intersectsInternal(a1, a2, b1, b2) {
return (b1 >= a1 && b1 <= a2) || (b2 >= a1 && b2 <= a2);
}
function intersects(a1, a2, b1, b2) {
return intersectsInternal(a1, a2, b1, b2) || intersectsInternal(b1, b2, a1, a2);
}
2016-01-29 19:43:11 -07:00
function getNearestElements(elementInfos, options, direction) {
// Get elements and work out x/y points
var cache = [],
point1x = parseFloat(options.left) || 0,
point1y = parseFloat(options.top) || 0,
point2x = parseFloat(point1x + options.width - 1) || point1x,
point2y = parseFloat(point1y + options.height - 1) || point1y,
// Shortcuts to help with compression
min = Math.min,
max = Math.max;
var sourceMidX = options.left + (options.width / 2);
var sourceMidY = options.top + (options.height / 2);
// Loop through all elements and check their positions
for (var i = 0, length = elementInfos.length; i < length; i++) {
var elementInfo = elementInfos[i];
var elem = elementInfo.element;
var off = elementInfo.clientRect,
x = off.left,
y = off.top,
x2 = x + off.width - 1,
2016-02-28 14:31:45 -07:00
y2 = y + off.height - 1;
var intersectX = intersects(point1x, point2x, x, x2);
var intersectY = intersects(point1y, point2y, y, y2);
2016-01-29 19:43:11 -07:00
var midX = off.left + (off.width / 2);
var midY = off.top + (off.height / 2);
var distX;
var distY;
2016-02-28 14:31:45 -07:00
var distX2;
var distY2;
2016-01-29 19:43:11 -07:00
switch (direction) {
case 0:
// left
2016-02-28 14:31:45 -07:00
distX = distX2 = Math.abs(point1x - Math.min(point1x, x2));
2016-01-29 19:43:11 -07:00
distY = intersectY ? 0 : Math.abs(sourceMidY - midY);
2016-02-28 14:31:45 -07:00
distY2 = Math.abs(sourceMidY - midY);
2016-01-29 19:43:11 -07:00
break;
case 1:
// right
2016-02-28 14:31:45 -07:00
distX = distX2 = Math.abs(point2x - Math.max(point2x, x));
2016-01-29 19:43:11 -07:00
distY = intersectY ? 0 : Math.abs(sourceMidY - midY);
2016-02-28 14:31:45 -07:00
distY2 = Math.abs(sourceMidY - midY);
2016-01-29 19:43:11 -07:00
break;
case 2:
// up
2016-02-28 14:31:45 -07:00
distY = distY2 = Math.abs(point1y - Math.min(point1y, y2));
2016-01-29 19:43:11 -07:00
distX = intersectX ? 0 : Math.abs(sourceMidX - midX);
2016-02-28 14:31:45 -07:00
distX2 = Math.abs(sourceMidX - midX);
2016-01-29 19:43:11 -07:00
break;
case 3:
// down
2016-02-28 14:31:45 -07:00
distY = distY2 = Math.abs(point2y - Math.max(point2y, y));
2016-01-29 19:43:11 -07:00
distX = intersectX ? 0 : Math.abs(sourceMidX - midX);
2016-02-28 14:31:45 -07:00
distX2 = Math.abs(sourceMidX - midX);
2016-01-29 19:43:11 -07:00
break;
default:
break;
}
var distT = Math.sqrt(distX * distX + distY * distY);
2016-02-28 14:31:45 -07:00
var distT2 = Math.sqrt(distX2 * distX2 + distY2 * distY2);
2016-01-29 19:43:11 -07:00
cache.push({
node: elem,
distX: distX,
distY: distY,
2016-02-28 14:31:45 -07:00
distT: distT,
distT2: distT2
2016-01-29 19:43:11 -07:00
});
}
cache.sort(sortNodesT);
2016-02-28 14:31:45 -07:00
//if (direction >= 2) {
2016-01-29 19:43:11 -07:00
// cache.sort(sortNodesX);
//} else {
// cache.sort(sortNodesY);
//}
return cache;
}
function sortNodesX(a, b) {
var result = a.distX - b.distX;
if (result == 0) {
2016-02-28 14:31:45 -07:00
return a.distT - b.distT;
2016-01-29 19:43:11 -07:00
}
return result;
}
function sortNodesT(a, b) {
2016-02-28 14:31:45 -07:00
var result = a.distT - b.distT;
if (result == 0) {
return a.distT2 - b.distT2;
}
return result;
2016-01-29 19:43:11 -07:00
}
function sortNodesY(a, b) {
var result = a.distY - b.distY;
if (result == 0) {
2016-02-28 14:31:45 -07:00
return a.distT - b.distT;
2016-01-29 19:43:11 -07:00
}
return result;
}
2016-04-09 12:04:14 -07:00
function sendText(text) {
var elem = document.activeElement;
elem.value = text;
}
2016-01-29 19:43:11 -07:00
return {
autoFocus: autoFocus,
focus: focus,
focusableParent: focusableParent,
getFocusableElements: getFocusableElements,
moveLeft: function (sourceElement) {
nav(sourceElement, 0);
},
moveRight: function (sourceElement) {
nav(sourceElement, 1);
},
moveUp: function (sourceElement) {
nav(sourceElement, 2);
},
moveDown: function (sourceElement) {
nav(sourceElement, 3);
2016-04-09 12:04:14 -07:00
},
2016-04-10 14:45:06 -07:00
sendText: sendText,
isCurrentlyFocusable: isCurrentlyFocusable
2016-01-29 19:43:11 -07:00
};
});