1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-04-04 12:45:54 +02:00

asyncQueue

This commit is contained in:
Jan Andrle 2024-12-12 17:16:31 +01:00
parent c085f268e8
commit 89553383bb
Signed by: jaandrle
GPG Key ID: B3A25AED155AFFAB
3 changed files with 9 additions and 0 deletions

@ -1,6 +1,12 @@
//TODO: https://www.npmjs.com/package/html-element
import { enviroment as env } from './src/dom-common.js';
env.ssr= " ssr";
const wa_store= new Set();
env.qa= function(promise){ wa_store.add(promise); return promise; };
env.qw= function(){ return Promise.allSettled(Array.from(wa_store)).then(()=> wa_store.clear()); };
export const asyncQueue= env.ww;
const { setDeleteAttr }= env;
/** @param {HTMLElement} obj */
env.setDeleteAttr= function(obj, prop, value){

@ -6,6 +6,8 @@ export const enviroment= {
H: globalThis.HTMLElement,
S: globalThis.SVGElement,
M: globalThis.MutationObserver,
qa: (p)=> p,
qw: ()=> Promise.resolve(),
};
import { isUndef } from './helpers.js';
function setDeleteAttr(obj, prop, val){

@ -1,6 +1,7 @@
import { signals } from "./signals-common.js";
import { enviroment as env } from './dom-common.js';
export function asyncQueueAdd(promise){ return env.qa(promise); }
/** @type {{ scope: object, prevent: boolean, host: function }[]} */
const scopes= [ {
get scope(){ return env.D.body; },