1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/lib/utils/focusHandler.ts

44 lines
1.4 KiB
TypeScript

// The purpose of this handler is to have all focus/blur calls go through the same place, which
// makes it easier to log what happens. This is useful when one unknown component is stealing focus
// from another component. Potentially it could also be used to resolve conflict situations when
// multiple components try to set the focus at the same time.
import Logger from '@joplin/utils/Logger';
const logger = Logger.create('focusHandler');
enum ToggleFocusAction {
Focus = 'focus',
Blur = 'blur',
}
interface FocusableElement {
focus: ()=> void;
blur: ()=> void;
}
const toggleFocus = (source: string, element: FocusableElement, action: ToggleFocusAction) => {
if (!element) {
logger.warn(`Tried action "${action}" on an undefined element: ${source}`);
return;
}
if (!element[action]) {
logger.warn(`Element does not have a "${action}" method: ${source}`);
return;
}
logger.debug(`Action "${action}" from "${source}"`);
element[action]();
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
export const focus = (source: string, element: any) => {
toggleFocus(source, element, ToggleFocusAction.Focus);
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
export const blur = (source: string, element: any) => {
toggleFocus(source, element, ToggleFocusAction.Blur);
};