Move focusManager to ES6

This commit is contained in:
Xantios Krugor 2020-08-03 14:20:31 +02:00
parent 7f72eca5fa
commit bafe857271
4 changed files with 7 additions and 5 deletions

View File

@ -110,6 +110,7 @@
"src/components/favoriteitems.js",
"src/components/fetchhelper.js",
"src/components/filterdialog/filterdialog.js",
"src/components/focusManager.js",
"src/components/groupedcards.js",
"src/components/homeScreenSettings/homeScreenSettings.js",
"src/components/homesections/homesections.js",

View File

@ -1,4 +1,6 @@
define(['dom', 'scrollManager'], function (dom, scrollManager) {
import dom from 'dom';
import scrollManager from 'scrollManager';
'use strict';
var scopes = [];
@ -472,7 +474,7 @@ define(['dom', 'scrollManager'], function (dom, scrollManager) {
}
}
return {
export default {
autoFocus: autoFocus,
focus: focus,
focusableParent: focusableParent,
@ -505,4 +507,3 @@ define(['dom', 'scrollManager'], function (dom, scrollManager) {
focusLast: focusLast,
moveFocus: moveFocus
};
});

View File

@ -771,7 +771,7 @@ define(['globalize', 'listView', 'layoutManager', 'userSettings', 'focusManager'
loading.hide();
if (refresh) {
focusManager.autoFocus(self.itemsContainer);
focusManager.default.autoFocus(self.itemsContainer);
}
});

View File

@ -697,7 +697,7 @@ define(['browser', 'layoutManager', 'dom', 'focusManager', 'ResizeObserver', 'sc
function onFrameClick(e) {
if (e.which === 1) {
var focusableParent = focusManager.focusableParent(e.target);
var focusableParent = focusManager.default.focusableParent(e.target);
if (focusableParent && focusableParent !== document.activeElement) {
focusableParent.focus();
}