mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
⚡ debug options for (e.g.) document.body
This commit is contained in:
parent
72227a80df
commit
dba4e93b88
14
dist/dde-with-signals.js
vendored
14
dist/dde-with-signals.js
vendored
@ -557,16 +557,18 @@ var st = {
|
|||||||
};
|
};
|
||||||
function ut(t, e, ...r) {
|
function ut(t, e, ...r) {
|
||||||
let { current: n } = x;
|
let { current: n } = x;
|
||||||
n.prevent || n.host(function(o) {
|
n.host(function(o) {
|
||||||
o[D] || (o[D] = [], _.disconnected(
|
if (o[D])
|
||||||
|
return o[D].push([[t, e], ...r]);
|
||||||
|
o[D] = [], !n.prevent && _.disconnected(
|
||||||
() => (
|
() => (
|
||||||
/*!
|
/*!
|
||||||
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
||||||
* You can investigate the `__dde_reactive` key of the element.
|
* You can investigate the `__dde_reactive` key of the element.
|
||||||
* */
|
* */
|
||||||
o[D].forEach(([[c, u]]) => R(c, u, c[l] && c[l].host && c[l].host() === o))
|
o[D].forEach(([[c, u]]) => R(c, u, c[l] && c[l].host && c[l].host() === o))
|
||||||
)
|
)
|
||||||
)(o)), o[D].push([[t, e], ...r]);
|
)(o);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function it(t, e, r) {
|
function it(t, e, r) {
|
||||||
|
14
dist/esm-with-signals.js
vendored
14
dist/esm-with-signals.js
vendored
@ -555,16 +555,18 @@ var st = {
|
|||||||
};
|
};
|
||||||
function ut(t, e, ...r) {
|
function ut(t, e, ...r) {
|
||||||
let { current: n } = x;
|
let { current: n } = x;
|
||||||
n.prevent || n.host(function(o) {
|
n.host(function(o) {
|
||||||
o[D] || (o[D] = [], _.disconnected(
|
if (o[D])
|
||||||
|
return o[D].push([[t, e], ...r]);
|
||||||
|
o[D] = [], !n.prevent && _.disconnected(
|
||||||
() => (
|
() => (
|
||||||
/*!
|
/*!
|
||||||
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
||||||
* You can investigate the `__dde_reactive` key of the element.
|
* You can investigate the `__dde_reactive` key of the element.
|
||||||
* */
|
* */
|
||||||
o[D].forEach(([[c, u]]) => R(c, u, c[l] && c[l].host && c[l].host() === o))
|
o[D].forEach(([[c, u]]) => R(c, u, c[l] && c[l].host && c[l].host() === o))
|
||||||
)
|
)
|
||||||
)(o)), o[D].push([[t, e], ...r]);
|
)(o);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function it(t, e, r) {
|
function it(t, e, r) {
|
||||||
|
@ -92,6 +92,8 @@ import { enviroment as env } from "./dom-common.js";
|
|||||||
import { el } from "./dom.js";
|
import { el } from "./dom.js";
|
||||||
import { scope } from "./dom.js";
|
import { scope } from "./dom.js";
|
||||||
// TODO: third argument for handle `cache_tmp` in re-render
|
// TODO: third argument for handle `cache_tmp` in re-render
|
||||||
|
// TODO: clear cache on disconnect
|
||||||
|
// TODO: extract cache to separate (exportable) function
|
||||||
signal.el= function(s, map){
|
signal.el= function(s, map){
|
||||||
const mark_start= el.mark({ type: "reactive" }, true);
|
const mark_start= el.mark({ type: "reactive" }, true);
|
||||||
const mark_end= mark_start.end;
|
const mark_end= mark_start.end;
|
||||||
@ -191,20 +193,19 @@ export const signals_config= {
|
|||||||
};
|
};
|
||||||
function removeSignalsFromElements(s, listener, ...notes){
|
function removeSignalsFromElements(s, listener, ...notes){
|
||||||
const { current }= scope;
|
const { current }= scope;
|
||||||
if(current.prevent) return;
|
|
||||||
current.host(function(element){
|
current.host(function(element){
|
||||||
if(!element[key_reactive]){
|
if(element[key_reactive])
|
||||||
element[key_reactive]= [];
|
return element[key_reactive].push([ [ s, listener ], ...notes ]);
|
||||||
on.disconnected(()=>
|
element[key_reactive]= [];
|
||||||
/*!
|
if(current.prevent) return; // typically document.body, doenst need auto-remove as it should happen on page leave
|
||||||
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
on.disconnected(()=>
|
||||||
* You can investigate the `__dde_reactive` key of the element.
|
/*!
|
||||||
* */
|
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
|
||||||
element[key_reactive].forEach(([ [ s, listener ] ])=>
|
* You can investigate the `__dde_reactive` key of the element.
|
||||||
removeSignalListener(s, listener, s[mark] && s[mark].host && s[mark].host() === element))
|
* */
|
||||||
)(element);
|
element[key_reactive].forEach(([ [ s, listener ] ])=>
|
||||||
}
|
removeSignalListener(s, listener, s[mark] && s[mark].host && s[mark].host() === element))
|
||||||
element[key_reactive].push([ [ s, listener ], ...notes ]);
|
)(element);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user