File size: 664 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { isFunction, isHTMLElement, sleep } from './index.js';
import { tick } from 'svelte';
export async function handleFocus(args) {
const { prop, defaultEl } = args;
await Promise.all([sleep(1), tick]);
if (prop === undefined) {
defaultEl?.focus();
return;
}
const returned = isFunction(prop) ? prop(defaultEl) : prop;
if (typeof returned === 'string') {
// Get el by selector, focus it
const el = document.querySelector(returned);
if (!isHTMLElement(el))
return;
el.focus();
}
else if (isHTMLElement(returned)) {
// Focus it
returned.focus();
}
}
|