pawajs 1.4.33 → 1.4.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -0
- package/index.js +34 -45
- package/merger/for.js +2 -1
- package/merger/switch.js +2 -2
- package/package.json +1 -1
- package/pawaElement.js +2 -2
package/index.d.ts
CHANGED
|
@@ -194,6 +194,13 @@ export function getPrimaryDirectives(): Set<string>;
|
|
|
194
194
|
*/
|
|
195
195
|
export function RegisterComponent(...args: (string | Function)[]): void;
|
|
196
196
|
|
|
197
|
+
export namespace RegisterComponent {
|
|
198
|
+
/**
|
|
199
|
+
* Registers components lazily. The component's bundle is only fetched when the element enters the viewport.
|
|
200
|
+
*/
|
|
201
|
+
export function lazy(...args: (string | Function)[]): Promise<void>;
|
|
202
|
+
}
|
|
203
|
+
|
|
197
204
|
/**
|
|
198
205
|
* Runs a side effect or lifecycle hook.
|
|
199
206
|
* @param {(comment:PawaComment) => void | (() => void)} callback - Effect function,comment for component hacking and optionally returning cleanup .
|
package/index.js
CHANGED
|
@@ -275,53 +275,42 @@ export const RegisterComponent = (...args) => {
|
|
|
275
275
|
}
|
|
276
276
|
});
|
|
277
277
|
}
|
|
278
|
-
export const
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
console.log(entry.isVisible,entry.isIntersecting,entry);
|
|
285
|
-
|
|
286
|
-
}
|
|
287
|
-
if (entry.isIntersecting) {
|
|
288
|
-
|
|
289
|
-
const allThisSame=lazyComponentElement.get(element.tagName)
|
|
290
|
-
const lazyCompo=lazyComponents.get(element.tagName)
|
|
291
|
-
lazyCompo.component().then(res =>{
|
|
292
|
-
if (res[lazyCompo.name]) {
|
|
293
|
-
components.set(element.tagName, res[lazyCompo.name])
|
|
294
|
-
lazyComponents.delete(lazyCompo.name)
|
|
295
|
-
const compo=res[lazyCompo.name]
|
|
296
|
-
for (const {element:el,func} of allThisSame) {
|
|
297
|
-
if (el) {
|
|
298
|
-
console.log(el);
|
|
299
|
-
|
|
300
|
-
if (el._component) {
|
|
301
|
-
el._component.component=compo
|
|
302
|
-
}
|
|
303
|
-
keepContext(el._stateContext)
|
|
304
|
-
el._stateContext._hasRun=false
|
|
305
|
-
func()
|
|
306
|
-
el._stateContext._hasRun=true
|
|
307
|
-
}
|
|
278
|
+
export const createIntersectionObserver = (element, observeBy) => {
|
|
279
|
+
const observer = new IntersectionObserver(entries => {
|
|
280
|
+
entries.forEach(entry => {
|
|
281
|
+
if (entry.isIntersecting) {
|
|
282
|
+
const tagName = element.tagName;
|
|
283
|
+
const lazyData = lazyComponents.get(tagName);
|
|
308
284
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
285
|
+
if (!lazyData) return;
|
|
286
|
+
|
|
287
|
+
lazyData.component().then(res => {
|
|
288
|
+
const compoFunc = res[lazyData.name];
|
|
289
|
+
if (!compoFunc) return;
|
|
290
|
+
|
|
291
|
+
components.set(tagName, compoFunc);
|
|
292
|
+
lazyComponents.delete(tagName);
|
|
293
|
+
|
|
294
|
+
const instances = lazyComponentElement.get(tagName) || [];
|
|
295
|
+
while (instances.length > 0) {
|
|
296
|
+
const { element: el, func } = instances.shift();
|
|
297
|
+
if (el) {
|
|
298
|
+
if (el._component) el._component.component = compoFunc;
|
|
299
|
+
|
|
300
|
+
keepContext(el._stateContext);
|
|
301
|
+
el._stateContext._hasRun = false;
|
|
302
|
+
func();
|
|
303
|
+
el._stateContext._hasRun = true;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
observer.disconnect();
|
|
307
|
+
}).catch(err => console.error(`Lazy load failed for ${tagName}:`, err));
|
|
313
308
|
}
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
}
|
|
320
|
-
})
|
|
321
|
-
insectObserver.observe(observeBy?observeBy:element)
|
|
322
|
-
return insectObserver
|
|
323
|
-
intersectionObserver.observe(observeBy?observeBy:element)
|
|
324
|
-
return intersectionObserver
|
|
309
|
+
});
|
|
310
|
+
}, { rootMargin: '100px' });
|
|
311
|
+
|
|
312
|
+
observer.observe(observeBy || element);
|
|
313
|
+
return observer;
|
|
325
314
|
}
|
|
326
315
|
RegisterComponent.lazy=async(...args)=>{
|
|
327
316
|
if (typeof args[0] === 'string') {
|
package/merger/for.js
CHANGED
|
@@ -79,9 +79,10 @@ export const merger_for = (el, stateContext, attr, arrayName, arrayItem, indexes
|
|
|
79
79
|
let indexKey=0
|
|
80
80
|
keyOrder.forEach((value,key)=>{
|
|
81
81
|
if(update)return;
|
|
82
|
-
if(div.children[indexKey]
|
|
82
|
+
if(div.children[indexKey]?.getAttribute('data-for-index') !== key){
|
|
83
83
|
update=true
|
|
84
84
|
}
|
|
85
|
+
indexKey++
|
|
85
86
|
})
|
|
86
87
|
}
|
|
87
88
|
const next = () => Promise.all(removeElement).then(async (res) => {
|
package/merger/switch.js
CHANGED
|
@@ -99,7 +99,7 @@ export const merger_switch=(el,attr,stateContext,resume=false,{comment,endCommen
|
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
if(firstEnter === false && resume && oldChain.id
|
|
102
|
+
if(firstEnter === false && resume && oldChain.id === latestChain.id){
|
|
103
103
|
el.removeAttribute(attr.name)
|
|
104
104
|
if (stateContext._hasRun) {
|
|
105
105
|
stateContext._hasRun = false
|
|
@@ -109,7 +109,7 @@ export const merger_switch=(el,attr,stateContext,resume=false,{comment,endCommen
|
|
|
109
109
|
let isIndex=0
|
|
110
110
|
children.forEach((value, index) => {
|
|
111
111
|
number.index = isIndex
|
|
112
|
-
isIndex++
|
|
112
|
+
isIndex++
|
|
113
113
|
if (number.notRender !== null && isIndex <= number.notRender) return
|
|
114
114
|
render(value,context,number)
|
|
115
115
|
})
|
package/package.json
CHANGED
package/pawaElement.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {components,lazyComponents ,escapePawaAttribute,getPawaAttributes,getDependentAttribute,getPrimaryDirectives } from './index.js';
|
|
2
2
|
import {splitAndAdd,replaceTemplateOperators,setPawaDevError,getEvalValues} from './utils.js';
|
|
3
3
|
import PawaComponent from './pawaComponent.js';
|
|
4
|
-
import {
|
|
4
|
+
import { createIntersectionObserver } from './index.js';
|
|
5
5
|
import { addLazyComponentElement } from './index.js';
|
|
6
6
|
import { lazyComponentElement } from './index.js';
|
|
7
7
|
|
|
@@ -54,7 +54,7 @@ export class PawaElement {
|
|
|
54
54
|
if (lazyComponents.has(this._el.tagName)) {
|
|
55
55
|
this._lazy=true
|
|
56
56
|
if (!lazyComponentElement.has(this._el.tagName)) {
|
|
57
|
-
|
|
57
|
+
createIntersectionObserver(this._el)
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
}
|