- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
import { parentAutofocusables } from './DOMutils';
|
|
import { contains } from './DOMutils';
|
|
import { asArray } from './array';
|
|
const getParents = (node, parents = []) => {
|
|
parents.push(node);
|
|
if (node.parentNode) {
|
|
getParents(node.parentNode.host || node.parentNode, parents);
|
|
}
|
|
return parents;
|
|
};
|
|
/**
|
|
* finds a parent for both nodeA and nodeB
|
|
* @param nodeA
|
|
* @param nodeB
|
|
* @returns {boolean|*}
|
|
*/
|
|
export const getCommonParent = (nodeA, nodeB) => {
|
|
const parentsA = getParents(nodeA);
|
|
const parentsB = getParents(nodeB);
|
|
// tslint:disable-next-line:prefer-for-of
|
|
for (let i = 0; i < parentsA.length; i += 1) {
|
|
const currentParent = parentsA[i];
|
|
if (parentsB.indexOf(currentParent) >= 0) {
|
|
return currentParent;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
export const getTopCommonParent = (baseActiveElement, leftEntry, rightEntries) => {
|
|
const activeElements = asArray(baseActiveElement);
|
|
const leftEntries = asArray(leftEntry);
|
|
const activeElement = activeElements[0];
|
|
let topCommon = false;
|
|
leftEntries.filter(Boolean).forEach((entry) => {
|
|
topCommon = getCommonParent(topCommon || entry, entry) || topCommon;
|
|
rightEntries.filter(Boolean).forEach((subEntry) => {
|
|
const common = getCommonParent(activeElement, subEntry);
|
|
if (common) {
|
|
if (!topCommon || contains(common, topCommon)) {
|
|
topCommon = common;
|
|
}
|
|
else {
|
|
topCommon = getCommonParent(common, topCommon);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
// TODO: add assert here?
|
|
return topCommon;
|
|
};
|
|
/**
|
|
* return list of nodes which are expected to be autofocused inside a given top nodes
|
|
* @param entries
|
|
* @param visibilityCache
|
|
*/
|
|
export const allParentAutofocusables = (entries, visibilityCache) => entries.reduce((acc, node) => acc.concat(parentAutofocusables(node, visibilityCache)), []);
|