import { getFocusMerge } from './focusMerge'; export var focusOn = function (target, focusOptions) { if ('focus' in target) { target.focus(focusOptions); } if ('contentWindow' in target && target.contentWindow) { target.contentWindow.focus(); } }; var guardCount = 0; var lockDisabled = false; /** * Sets focus at a given node. The last focused element will help to determine which element(first or last) should be focused. * HTML markers (see {@link import('./constants').FOCUS_AUTO} constants) can control autofocus * @param topNode * @param lastNode * @param options */ export var setFocus = function (topNode, lastNode, options) { if (options === void 0) { options = {}; } var focusable = getFocusMerge(topNode, lastNode); if (lockDisabled) { return; } if (focusable) { if (guardCount > 2) { // tslint:disable-next-line:no-console console.error('FocusLock: focus-fighting detected. Only one focus management system could be active. ' + 'See https://github.com/theKashey/focus-lock/#focus-fighting'); lockDisabled = true; setTimeout(function () { lockDisabled = false; }, 1); return; } guardCount++; focusOn(focusable.node, options.focusOptions); guardCount--; } };