-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
757 lines (757 loc) · 37.8 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
const getHtmlChildren = (elem)=>Array.from(elem.children ?? []);
const getHtmlName = (elem)=>elem.tagName?.toLowerCase().replace("_", "-") || "text";
const getHtmlOwnerDocument = (elem)=>elem?.ownerDocument;
const getHtmlParentElement = (elem)=>elem?.parentElement;
const findBreadthHtmlDescendant = (elems, func)=>{
for (const elem of elems)if (func(elem)) return elem;
for (const elem of elems){
const descendant = findBreadthHtmlDescendant(getHtmlChildren(elem), func);
if (descendant) return descendant;
}
};
const findBreadthHtmlDescendants = (elems, func, result = [])=>{
for (const elem of elems)if (func(elem)) result.push(elem);
for (const elem of elems)findBreadthHtmlDescendants(getHtmlChildren(elem), func, result);
return result;
};
const existsHtmlElement = (elem)=>elem;
const existsHtmlParentElement = (elem)=>elem.parentElement;
const isHtmlElement = (elem)=>elem.nodeType === 1;
const findHtmlAscendant = (elem, func)=>{
if (!existsHtmlElement(elem)) return undefined;
if (func(elem)) return elem;
return findHtmlAscendant(getHtmlParentElement(elem), func);
};
const findHtmlAscendants = (elem, func, result = [])=>{
if (!existsHtmlElement(elem)) return [];
if (existsHtmlElement(elem)) result.push(elem);
if (func(elem)) return result;
return findHtmlAscendants(getHtmlParentElement(elem), func, result);
};
const findHtmlDescendants = (elem, func, result = [], findStrategy = findBreadthHtmlDescendants)=>findStrategy(getHtmlChildren(elem), func, result);
const logHtmlElement = ($elem, $parent, message, props, logger)=>logger($elem, `${message} elem:`, getHtmlName($elem), "props:", props, "parent:", $parent && getHtmlName($parent));
const appendHtmlNode = (node, parent)=>parent.appendChild(node);
const createHtmlElement = (document, tagName)=>document.createElement(tagName);
const createHtmlElementNS = (document, ns, tagName)=>document.createElementNS(ns, tagName);
const renderHtmlElement = (tagName, namespace, $parent)=>{
const document = getHtmlOwnerDocument($parent);
const $elem = namespace ? createHtmlElementNS(document, namespace, tagName) : createHtmlElement(document, tagName);
appendHtmlNode($elem, $parent);
return $elem;
};
const getHtmlChildNode = (node, index)=>node.childNodes[index];
const getHtmlChildNodes = (node)=>Array.from(node.childNodes);
const getHtmlParentNode = (node)=>node.parentNode;
const replaceHtmlNode = (node, oldNode)=>getHtmlParentNode(oldNode).replaceChild(node, oldNode);
const removeHtmlNode = (node)=>getHtmlParentNode(node).removeChild(node);
const unrenderHtmlElement = ($elem)=>getHtmlParentElement($elem) ? removeHtmlNode($elem) : $elem;
const UnsafeTagNames = Object.freeze([
"SCRIPT",
"IFRAME"
]);
const isSafeTagName = (tagName)=>!UnsafeTagNames.includes(tagName.toUpperCase());
const validateHtmlElement = (elem)=>isHtmlElement(elem) ? "" : "Element type should be HTML Element.";
const validateHtmlTagName = (name)=>isSafeTagName(name) ? "" : "Unsafe html tag " + name;
const insertHtmlNode = (node, oldNode)=>getHtmlParentNode(oldNode).insertBefore(node, oldNode) && node;
const existsHtmlNodeChildren = (node)=>node.childNodes !== 0;
const HtmlMimeType = "text/html";
const parseHtml = (html)=>new DOMParser().parseFromString(html, HtmlMimeType).documentElement;
const registerDomParser = async (url, global = globalThis)=>Object.assign(global, {
...await import(url)
});
const registerLinkeDomParser = async (url = "npm:[email protected]", global = globalThis)=>Object.assign(global, {
...await import(url),
Event: global.Event,
InputEvent: global.InputEvent,
EventTarget: global.EventTarget
});
const isHtmlText = (elem)=>elem.nodeType === 3;
const getHtmlText = ($elem)=>isHtmlText($elem) && $elem.textContent;
const createHtmlText = (document, text)=>document.createTextNode(text);
const insertHtmlText = (text, $elem, $parent)=>{
const document = getHtmlOwnerDocument($parent);
const $text = createHtmlText(document, text);
return insertHtmlNode($text, $elem);
};
const logHtmlText = ($text, $parent, message, logger)=>logger($text, `${message} text:`, getHtmlText($text), "parent:", $parent && getHtmlName($parent));
const renderHtmlText = (text, $parent)=>{
const document = getHtmlOwnerDocument($parent);
const $text = createHtmlText(document, text);
return appendHtmlNode($text, $parent);
};
const unrenderHtmlText = ($elem)=>getHtmlParentElement($elem) ? removeHtmlNode($elem) : $elem;
const setHtmlText = ($elem, text)=>$elem.textContent = text;
const updateHtmlText = (text, $elem)=>{
setHtmlText($elem, text);
return $elem;
};
const getEffect = (effects, name)=>effects[name];
const getEffects = (elem)=>elem.__effects;
const runInitialFunc = (effect)=>effect.initialFunc?.();
const runFunc = (effect)=>effect.func?.();
const runInitialEffects = (effects)=>effects ? Object.values(effects).map(runInitialFunc) : [];
const runEffects = (effects)=>effects ? Object.values(effects).map(runFunc) : [];
const setDepsEffect = (effect, deps)=>effect.deps = deps;
const setEffect = (effects, effect)=>effects[effect.name] = effect;
const setEffects = (elem, effects = {})=>elem.__effects = elem.__effects ?? effects;
const setFuncEffect = (effect, func)=>effect.func = func;
const setInitialFuncEffect = (effect, func)=>effect.initialFunc = func;
const setInitialEffect = (effects, name, func)=>setInitialFuncEffect(getEffect(effects, name), func);
const resetEffectFunc = (effect)=>effect.func = undefined;
const equalValues = (value1, value2)=>value1 === value2;
const ReservedPropNames = Object.freeze([
"children"
]);
const getObjectPropNames = (obj)=>Object.getOwnPropertyNames(obj);
const isReservedObjectPropName = (propName)=>ReservedPropNames.includes(propName);
const getObjectPropsLength = (obj)=>getObjectPropNames(obj).filter((propName)=>!isReservedObjectPropName(propName)).length;
const equalObjectsPropsLength = (obj1, obj2)=>getObjectPropsLength(obj1) === getObjectPropsLength(obj2);
const existsObject = (obj)=>obj != null;
const existsObjects = (obj1, obj2)=>existsObject(obj1) && existsObject(obj2);
const isObjectType = (value)=>typeof value === "object" && value !== null;
const equalArraysLength = (arr1, arr2)=>arr1.length === arr2.length;
const existsArray = (arr)=>arr != null;
const existArrays = (arr1, arr2)=>existsArray(arr1) && existsArray(arr2);
const isArrayType = (value)=>value instanceof Array;
const isFunctionType = (value)=>typeof value === "function";
const equalArrayItems = (arr1, arr2)=>arr1.every((_, index)=>equalData(arr1[index], arr2[index]));
const equalArrays = (arr1, arr2)=>{
if (!existArrays(arr1, arr2)) return equalValues(arr1, arr2);
if (!equalArraysLength(arr1, arr2)) return false;
return equalArrayItems(arr1, arr2);
};
const equalData = (value1, value2)=>{
if (isFunctionType(value1) && isFunctionType(value2)) return true;
if (isArrayType(value1) && isArrayType(value2)) return equalArrays(value1, value2);
if (isObjectType(value1) && isObjectType(value2)) return equalObjects(value1, value2);
return equalValues(value1, value2);
};
const equalObjectsProp = (obj1, obj2, propName)=>isReservedObjectPropName(propName) || equalData(obj1[propName], obj2[propName]);
const equalObjectsProps = (obj1, obj2)=>getObjectPropNames(obj1).every((propName)=>equalObjectsProp(obj1, obj2, propName));
const equalObjects = (obj1, obj2)=>{
if (!existsObjects(obj1, obj2)) return equalValues(obj1, obj2);
if (!equalObjectsPropsLength(obj1, obj2)) return false;
return equalObjectsProps(obj1, obj2);
};
const createEffect = (name, func, deps)=>({
name,
func,
deps,
initialFunc: undefined
});
const existsEffect = (effects, name)=>effects[name];
const isDefaultDeps = (deps)=>deps === undefined;
const useEffect = (effects, name, func, deps)=>{
if (!existsEffect(effects, name)) return setEffect(effects, createEffect(name, func, deps));
const effect = getEffect(effects, name);
if (equalArrays(effect.deps, deps) && !isDefaultDeps(deps)) return resetEffectFunc(effect), effect;
setDepsEffect(effect, deps);
setFuncEffect(effect, func);
return effect;
};
const isFunctionLazyLoader = (loader)=>typeof loader === "function";
const validateLazyLoader = (loader)=>isFunctionLazyLoader(loader) ? "" : "Lazy loader should be function.";
const throwError = (message)=>{
if (!message) return false;
throw new Error(message);
};
const createMemo = (name, value, deps)=>({
name,
value,
deps
});
const setMemo = (states, memo)=>states[memo.name] = memo;
const setMemoDeps = (memo, deps)=>memo.deps = deps;
const setMemoValue = (memo, value)=>memo.value = value;
const getMemo = (memos, name)=>memos[name];
const getMemoUsage = (memo)=>[
memo.value,
(func)=>setMemoValue(memo, func())
];
const existsMemo = (states, name)=>states[name];
const isDefaultDeps1 = (deps)=>deps === undefined;
const useMemo = (states, name, func, deps)=>{
if (!existsMemo(states, name)) {
const memo = setMemo(states, createMemo(name, func(), deps));
return getMemoUsage(memo);
}
const memo = getMemo(states, name);
if (equalArrays(memo.deps, deps) && !isDefaultDeps1(deps)) return getMemoUsage(memo);
setMemoDeps(memo, deps);
setMemoValue(memo, func());
return getMemoUsage(memo);
};
const setState = (states, state)=>states[state.name] = state;
const setStateDeps = (state, deps)=>state.deps = deps;
const setStateValue = (state, value)=>state.value = value;
const setStates = (elem, states = {})=>elem.__states = elem.__states ?? states;
const getState = (states, name)=>states[name];
const getStates = (elem)=>elem.__states;
const getStateUsage = (state)=>[
state.value,
(value)=>setStateValue(state, value)
];
const createState = (name, value, deps)=>({
name,
value,
deps
});
const existsState = (states, name)=>states[name];
const isDefaultDeps2 = (deps)=>deps === undefined;
const useState = (states, name, value, deps)=>{
if (!existsState(states, name)) {
const state = setState(states, createState(name, value, deps));
return getStateUsage(state);
}
const state = getState(states, name);
if (equalArrays(state.deps, deps) && !isDefaultDeps2(deps)) return getStateUsage(state);
setStateDeps(state, deps);
setStateValue(state, value);
return getStateUsage(state);
};
const setContext = (contexts, context)=>contexts[context.name] = context;
const setContexts = (elem, contexts = {})=>elem.__contexts = elem.__contexts ?? contexts;
const setContextValue = (context, value)=>(context.value = value, context);
const createContext = (name, value)=>({
name,
value
});
const getContext = (contexts, name)=>contexts[name];
const getContexts = (elem)=>elem.__contexts;
const existsContext = (contexts, name)=>name in contexts;
const isContextConsumer = (elem, name)=>getHtmlName(elem) !== "context" && existsContext(getContexts(elem), name);
const isContextProducer = (elem, name)=>getHtmlName(elem) === "context" && existsContext(getContexts(elem), name);
const findProducer = (elem, name)=>findHtmlAscendant(elem, (elem)=>isContextProducer(elem, name));
const getContextValue = (contexts, name)=>getContext(contexts, name).value;
const getProducerContextValue = (name, fallbackValue, elem)=>{
const producer = findProducer(elem, name);
if (!producer) return fallbackValue;
const contexts = getContexts(producer);
const context = getContext(contexts, name);
return context.value;
};
const findConsumer = (elem, name)=>findHtmlDescendants(elem, (elem)=>isContextConsumer(elem, name));
const isJsxPropsChildrenArray = (props)=>props.children instanceof Array;
const toJsxPropsChildrenArray = (props)=>isJsxPropsChildrenArray(props) ? props.children : [
props.children
];
const JsxElementType = Symbol.for("react.element");
const JsxFragmentType = Symbol.for("react.fragment");
const JsxTypes = Object.freeze([
JsxElementType,
JsxFragmentType
]);
const isJsxFragment = (elem)=>elem?.type === JsxFragmentType;
const replaceJsxFragments = (elems)=>isJsxFragment(elems[0]) ? toJsxPropsChildrenArray(elems[0].props) : elems;
const InvalidValues = [
true,
false,
null,
undefined
];
const isJsxText = (value)=>value?.$$typeof === undefined;
const isValidJsxText = (value)=>!InvalidValues.includes(value);
const existsJsxElement = (elem)=>!!elem || elem === "";
const isJsxElement = (elem)=>typeof elem.type === 'string';
const isJsxElementsArray = (elems)=>elems instanceof Array;
const isJsxKeyElement = (elem)=>elem.key != undefined;
const isJsxType = (elem)=>typeof elem.$$typeof === "symbol" ? JsxTypes.includes(elem.$$typeof) : true;
const sanitizeJsxElements = (elems)=>replaceJsxFragments(elems).filter((elem)=>isValidJsxText(elem) && isJsxType(elem));
const getJsxFactoryName = (elem)=>elem.type.name.toLowerCase().replace("_", "-");
const isJsxFactory = (elem)=>typeof elem.type === "function";
const getJsxFragmentName = ()=>"fragment";
const getJsxText = (value)=>isJsxText(value) && value?.toString();
const getJsxTextName = ()=>"text";
const getJsxElement = (store)=>store.__elem;
const getJsxElementKey = (elem)=>elem.key;
const getJsxElementName = (elem)=>elem.type;
const getJsxElementProps = (elem)=>elem.props;
const getJsxName = (elem)=>isJsxFactory(elem) && getJsxFactoryName(elem) || isJsxElement(elem) && getJsxElementName(elem) || isJsxFragment(elem) && getJsxFragmentName() || getJsxTextName();
const getJsxProps = getJsxElementProps;
const getJsxKey = getJsxElementKey;
const storeJsxElement = (store, elem)=>store.__elem = elem;
const validateJsxElement = (elem)=>isJsxType(elem) ? "" : "Element should be jsx element.";
const runJsxFactory = (elem, $elem, props)=>elem.type(Object.freeze(props), $elem);
const buildJsxFactoryChildren = (elem, $elem)=>{
const props = getJsxElementProps(elem);
const children = sanitizeJsxElements(toJsxPropsChildrenArray(props));
const elems = runJsxFactory(elem, $elem, {
...props,
children
});
return sanitizeJsxElements(isJsxElementsArray(elems) ? elems : [
elems
]);
};
const JavaScriptProtocolRegex = /^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i;
const UnsafeHtmlPropNames = Object.freeze([
"innerHTML",
"outerHTML"
]);
const UrlHtmlPropNames = Object.freeze([
"action",
"background",
"dynsrv",
"href",
"lowsrc",
"src"
]);
const isJavascriptInjection = (propValue)=>JavaScriptProtocolRegex.test(propValue || "");
const isUrlHtmlPropName = (propName)=>UrlHtmlPropNames.includes(propName);
const isSafeUrlHtmlPropValue = (props, propName)=>isUrlHtmlPropName(propName) ? !isJavascriptInjection(props[propName]) : true;
const isDangerouslyHtmlPropName = (propName)=>propName === "html";
const isSafeHtmlPropName = (props, propName)=>!UnsafeHtmlPropNames.includes(propName) && isSafeUrlHtmlPropValue(props, propName);
const isUnsafeHtmlCssPropName = (elem, propName)=>elem.tagName !== "STYLE" && propName === "css";
const toAriaCamelCaseName = (attrName)=>`aria${attrName[5].toUpperCase()}${attrName.substring(6)}`;
const AriaHtmlPropMappings = Object.freeze({
"aria-autocomplete": "ariaAutoComplete",
"aria-colcount": "ariaColCount",
"aria-colindex": "ariaColIndex",
"aria-colindextext": "ariaColIndexText",
"aria-haspopup": "ariaHasPopUp",
"aria-keyshortcuts": "ariaKeyShortcuts",
"aria-multiselectable": "ariaMultiSelectable",
"aria-posinset": "ariaPosInSet",
"aria-readonly": "ariaReadOnly",
"aria-roledescription": "ariaRoleDescription",
"aria-rowcount": "ariaRowCount",
"aria-rowindex": "ariaRowIndex",
"aria-rowspan": "ariaRowSpan",
"aria-setsize": "ariaSetSize",
"aria-valuemax": "ariaValueMax",
"aria-valuemin": "ariaValueMin",
"aria-valuenow": "ariaValueNow",
"aria-valuetext": "ariaValueText"
});
const SpecialHtmlPropMappings = Object.freeze({
class: "className",
for: "htmlFor",
readonly: "readOnly",
tabindex: "tabIndex",
css: "innerHTML",
html: "innerHTML"
});
const isEmptyHtmlPropValue = (propValue)=>propValue == undefined || propValue === "";
const isSvgHtmlPropValue = (elem, propName)=>elem[propName]?.constructor?.name.startsWith("SVG");
const ReservedHtmlPropNames = Object.freeze([
"children"
]);
const ToggleHtmlPropNames = Object.freeze([
"checked",
"disabled",
"hidden",
"readOnly",
"readonly",
"selected"
]);
const isEventHandlerName = (propName)=>propName.startsWith("on");
const isReservedHtmlPropName = (propName)=>ReservedHtmlPropNames.includes(propName);
const isAriaHtmlPropName = (propName)=>propName.startsWith("aria-");
const isClassNameHtmlPropName = (propName)=>propName === "className";
const isHtmlPropName = (props, propName)=>propName in props;
const isInternalHtmlPropName = (propName)=>propName.startsWith("__");
const isSpecialHtmlPropName = (propName)=>propName in SpecialHtmlPropMappings;
const mapHtmlPropName = (propName)=>isSpecialHtmlPropName(propName) && SpecialHtmlPropMappings[propName] || isAriaHtmlPropName(propName) && (AriaHtmlPropMappings[propName] || toAriaCamelCaseName(propName)) || propName;
const isInternalOrHtmlPrtopName = (elem, propName)=>isHtmlPropName(elem, mapHtmlPropName(propName)) || isInternalHtmlPropName(propName);
const isStyleHtmlPropName = (propName)=>propName === "style";
const isToggleHtmlPropName = (propName)=>ToggleHtmlPropNames.includes(propName);
const isValidHtmlPropName = (elem, propName)=>isInternalOrHtmlPrtopName(elem, propName) && !isReservedHtmlPropName(propName) && !isEventHandlerName(propName) && !isSvgHtmlPropValue(elem, propName);
const getHtmlPropNames = (elem)=>Object.getOwnPropertyNames(elem);
const getValidHtmlPropNames = (elem, props)=>getHtmlPropNames(props).filter((propName)=>isValidHtmlPropName(elem, propName)).filter((propName)=>isSafeHtmlPropName(props, propName));
const NeutralCSSPropValue = "*";
const getHtmlPropValue = (props, propName)=>props[propName];
const getToggleHtmlPropValue = (propValue)=>isEmptyHtmlPropValue(propValue) || propValue;
const getHtmlPropDescriptor = (elem, propName)=>Object.getOwnPropertyDescriptor(elem, propName);
const isWritableHtmlProp = (elem, propName)=>{
const propDescriptor = getHtmlPropDescriptor(elem, propName);
if (propDescriptor && "writable" in propDescriptor) return propDescriptor.writable;
if (propDescriptor && "set" in propDescriptor) return true;
return true;
};
const EncodingCharsRegex = /[^\w. ]/gi;
const getHtmlEntity = (__char)=>`&#${__char.charCodeAt(0)};`;
const encodeHtml = (string)=>string.replace(EncodingCharsRegex, getHtmlEntity);
const resolveHtmlPropValue = (elem, propName, propValue)=>isToggleHtmlPropName(propName) && getToggleHtmlPropValue(propValue) || isUnsafeHtmlCssPropName(elem, propName) && NeutralCSSPropValue || isDangerouslyHtmlPropName(propName) && encodeHtml(propValue) || propValue;
const setPropValue = (elem, propName, propValue)=>elem[propName] = propValue;
const setStyleHtmlPropValues = (elem, style)=>Object.assign(elem.style, style);
const setHtmlPropValue = (elem, propName, propValue)=>{
if (isStyleHtmlPropName(propName)) return setStyleHtmlPropValues(elem, propValue);
if (isInternalHtmlPropName(propName)) return setPropValue(elem, propName, propValue);
if (!isWritableHtmlProp(elem, propName)) return;
setPropValue(elem, mapHtmlPropName(propName), resolveHtmlPropValue(elem, propName, propValue));
return propValue;
};
const setHtmlProps = (elem, props)=>getValidHtmlPropNames(elem, props).reduce((elem, propName)=>(setHtmlPropValue(elem, propName, getHtmlPropValue(props, propName)), elem), elem);
const unsetPropValue = (elem, propName)=>elem[propName] = isClassNameHtmlPropName(propName) ? "" : undefined;
const unsetHtmlPropValue = (elem, propName)=>{
if (!isWritableHtmlProp(elem, propName)) return;
return unsetPropValue(elem, mapHtmlPropName(propName));
};
const unsetInternalHtmlProps = (elem)=>getHtmlPropNames(elem).filter(isInternalHtmlPropName).reduce((elem, propName)=>(unsetHtmlPropValue(elem, propName), elem), elem);
const unsetHtmlProps = (elem, props)=>getValidHtmlPropNames(elem, props).reduce((elem, propName)=>(unsetHtmlPropValue(elem, propName), elem), elem);
const isFunctionHtmlAttrValue = (attrValue)=>typeof attrValue === "function";
const isSvgHtmlPropValue1 = (elem, attrName)=>elem[attrName]?.constructor?.name.startsWith("SVG");
const isSvgPropOrHtmlNonPropName = (elem, attrName)=>!isHtmlPropName1(elem, mapHtmlPropName(attrName)) || isSvgHtmlPropValue1(elem, attrName);
const isHtmlPropName1 = (elem, propName)=>propName in elem;
const isEventHandlerName1 = (attrName)=>attrName.startsWith("on");
const isInternalHtmlAttrName = (attrName)=>attrName.startsWith("__");
const isXmlnsHtmlAttrName = (attrName)=>attrName === "xmlns";
const isValidHtmlAttrName = (elem, attrName)=>isSvgPropOrHtmlNonPropName(elem, attrName) && !isEventHandlerName1(attrName) && !isInternalHtmlAttrName(attrName) && !isXmlnsHtmlAttrName(attrName);
const getHtmlAttrNames = (attrs)=>Object.getOwnPropertyNames(attrs);
const getValidHtmlAttrNames = (elem, attrs)=>getHtmlAttrNames(attrs).filter((attrName)=>isValidHtmlAttrName(elem, attrName));
const setAttrValue = (elem, attrName, attrValue)=>elem.setAttributeNS?.(null, attrName, attrValue);
const setHtmlAttrValue = (elem, attrName, attrValue)=>{
if (isFunctionHtmlAttrValue(attrValue)) return undefined;
setAttrValue(elem, attrName, attrValue);
return attrValue;
};
const setHtmlAttrs = (elem, props)=>getValidHtmlAttrNames(elem, props).reduce((elem, attrName)=>(setHtmlAttrValue(elem, attrName, props[attrName]), elem), elem);
const removeHtmlAttr = (elem, attrName)=>elem.removeAttribute(attrName);
const unsetHtmlAttrs = (elem, props)=>getValidHtmlAttrNames(elem, props).reduce((elem, attrName)=>(removeHtmlAttr(elem, attrName), elem), elem);
const createCustomEvent = (eventName, detail)=>new CustomEvent(eventName, {
bubbles: true,
cancelable: true,
detail
});
const dispatchEvent = (elem, eventName, detail)=>elem.dispatchEvent(createCustomEvent(eventName, detail));
const getHtmlEventName = (handlerName)=>handlerName.replace("on", "");
const isFunctionHtmlPropValue = (props, propName)=>typeof props[propName] === "function";
const isHtmlEventHandlerName = (propName)=>propName.startsWith("on");
const getHtmlPropNames1 = (props)=>Object.getOwnPropertyNames(props);
const getValidHtmlEventHandlerNames = (props)=>getHtmlPropNames1(props).filter(isHtmlEventHandlerName).filter((propName)=>isFunctionHtmlPropValue(props, propName));
const getEventHandlerStoreName = (handlerName)=>"__" + handlerName;
const getEventHandlerFromStore = (elem, handlerName)=>elem[getEventHandlerStoreName(handlerName)];
const storeHtmlEventHandler = (elem, handlerName, handler)=>elem[getEventHandlerStoreName(handlerName)] = handler;
const setHtmlEventHandler = (elem, handlerName, handler)=>{
elem.addEventListener(getHtmlEventName(handlerName), handler);
storeHtmlEventHandler(elem, handlerName, handler);
return handlerName;
};
const setHtmlEventHandlers = (elem, props)=>getValidHtmlEventHandlerNames(props).map((handlerName)=>setHtmlEventHandler(elem, handlerName, props[handlerName]));
const unstoreHtmlEventHandler = (elem, handlerName)=>delete elem[getEventHandlerStoreName(handlerName)];
const unsetHtmlEventHandler = (elem, handlerName)=>{
elem.removeEventListener(getHtmlEventName(handlerName), getEventHandlerFromStore(elem, handlerName));
unstoreHtmlEventHandler(elem, handlerName);
return handlerName;
};
const unsetHtmlEventHandlers = (elem, props)=>getValidHtmlEventHandlerNames(props).map((handlerName)=>unsetHtmlEventHandler(elem, handlerName));
const throwError1 = (message)=>{
if (!message) return false;
throw new Error(message);
};
const setIgnore = ($elem, $parent)=>$elem.__ignore = [
...$parent.__ignore
];
const isIgnoredElement = ($elem)=>$elem.__ignore?.includes(getHtmlName($elem));
const isIgnoreSet = (elem)=>elem.__ignore instanceof Array;
const enableIgnoring = ($elem, $parent)=>isIgnoreSet($elem) || isIgnoreSet($parent) && setIgnore($elem, $parent);
const setLog = ($elem, $parent)=>$elem.__log = [
...$parent.__log
];
const isLogCategoryEnabled = (elem, category)=>elem.__log.includes(category);
const isLogEnabled = (elem, category)=>isLogSet(elem) && isLogCategoryEnabled(elem, category);
const isLogSet = (elem)=>elem.__log instanceof Array;
const enableLogging = ($elem, $parent)=>isLogSet($elem) || isLogSet($parent) && setLog($elem, $parent);
const getJsxElementNS = (elem)=>getJsxProps(elem).xmlns;
const getHtmlElementNS = ($elem)=>$elem && getJsxElement($elem) && getJsxProps(getJsxElement($elem)).xmlns;
const getElementNS = (elem, $elem)=>getJsxElementNS(elem) || getHtmlElementNS($elem);
const getMaxLengthElements = (elems, $elems)=>elems.length > $elems.length ? elems : $elems;
const Category = "rendering";
const LogHeader = "[rendering]";
const logError = (elem, ...args)=>isLogEnabled(elem, Category) && console.error(LogHeader, ...args);
const logInfo = (elem, ...args)=>isLogEnabled(elem, Category) && console.info(LogHeader, ...args);
const logElement = ($elem, message)=>logHtmlElement($elem, getHtmlParentElement($elem), message, getJsxProps(getJsxElement($elem)), logInfo);
const logElementOrText = ($elem, message)=>isHtmlText($elem) ? logText($elem, message) : logElement($elem, message);
const logText = ($elem, message)=>logHtmlText($elem, getHtmlParentElement($elem), message, logInfo);
const renderElement = (elem, $parent)=>{
if (isJsxText(elem)) {
const $text = renderHtmlText(elem, $parent);
logText($text, "render");
return $text;
}
throwError1(validateHtmlElement($parent));
throwError1(validateHtmlTagName(getJsxName(elem)));
throwError1(validateJsxElement(elem));
const props = getJsxProps(elem);
const $elem = renderHtmlElement(getJsxName(elem), getElementNS(elem, $parent), $parent);
setHtmlAttrs($elem, props);
setHtmlProps($elem, props);
setHtmlEventHandlers($elem, props);
enableIgnoring($elem, $parent);
enableLogging($elem, $parent);
storeJsxElement($elem, elem);
logElement($elem, "render");
return $elem;
};
const dispatchError = (elem, error)=>dispatchEvent(elem, "error", {
error
});
const handleError = (func, elem)=>{
try {
return func();
} catch (error) {
logError(elem, error.message, error.stack);
dispatchError(elem, error);
throw error;
}
};
const resolveJsxChildren = (elem, $elem)=>isJsxFactory(elem) && handleError(()=>buildJsxFactoryChildren(elem, $elem), $elem) || isJsxElement(elem) && sanitizeJsxElements(toJsxPropsChildrenArray(elem.props)) || [];
const renderElementChildren = ($elem)=>resolveJsxChildren(getJsxElement($elem), $elem).map((child)=>renderElement(child, $elem));
const equalElementNames = (elem, $elem)=>getJsxName(elem) === getHtmlName($elem);
const equalElementProps = (elem, $elem)=>equalObjects(getJsxProps(elem), getJsxProps(getJsxElement($elem)));
const equalTexts = (elem, $elem)=>getJsxText(elem) === getHtmlText($elem);
const existsElement = (elem)=>!!elem;
const existsNoSkipElementProp = (elem)=>getJsxProps(elem)["no-skip"];
const isRenderedElement = (elem)=>existsHtmlParentElement(elem) && !existsHtmlNodeChildren(elem);
const isUpdatedElement = (elem)=>existsHtmlParentElement(elem) && existsHtmlNodeChildren(elem);
const isUnrenderedElement = (elem)=>!existsHtmlParentElement(elem);
const isStyleElement = (elem)=>getHtmlName(elem) === "style";
const shouldSkipChildren = ($elem)=>isStyleElement($elem) || isIgnoredElement($elem) || isHtmlText($elem);
const renderElementTree = (elem, $parent = parseHtml("<main></main>"))=>{
const $elems = [
renderElement(elem, $parent)
];
for (const $elem of $elems){
if (shouldSkipChildren($elem)) continue;
$elems.push(...renderElementChildren($elem));
}
$elems.forEach(($elem)=>runEffects(getEffects($elem)));
return $elems;
};
const updateElement = (elem, $elem)=>{
logElementOrText($elem, "update");
if (isJsxText(elem)) return updateHtmlText(elem, $elem);
throwError1(validateHtmlElement($elem));
throwError1(validateJsxElement(elem));
const props = getJsxProps(elem);
unsetHtmlEventHandlers($elem, props);
setHtmlAttrs($elem, props);
setHtmlProps($elem, props);
setHtmlEventHandlers($elem, props);
storeJsxElement($elem, elem);
return $elem;
};
const unrenderElement = ($elem)=>{
logElementOrText($elem, "unrender");
if (isHtmlText($elem)) return unrenderHtmlText($elem);
throwError1(validateHtmlElement($elem));
const props = getJsxProps(getJsxElement($elem));
runInitialEffects(getEffects($elem));
unsetHtmlAttrs($elem, props);
unsetHtmlProps($elem, props);
unsetHtmlEventHandlers($elem, props);
unsetInternalHtmlProps($elem);
unrenderHtmlElement($elem);
return $elem;
};
const replaceElement = ($elem, $oldElem)=>{
logElementOrText($oldElem, "replace");
isHtmlText($oldElem) ? replaceHtmlNode($elem, $oldElem) : replaceHtmlNode($elem, $oldElem);
return $elem;
};
const isRenderReconciliation = (elem, $elem)=>existsJsxElement(elem) && !existsHtmlElement($elem);
const isUnrenderReconciliation = (elem, $elem)=>existsHtmlElement($elem) && !existsJsxElement(elem);
const isReplaceReconciliation = (elem, $elem)=>!equalElementNames(elem, $elem);
const isUpdateReconciliation = (elem, $elem)=>{
if (isJsxElement(elem)) return true;
if (isJsxFactory(elem) && !equalElementProps(elem, $elem)) return true;
if (isJsxFactory(elem) && existsNoSkipElementProp(elem)) return true;
if (isJsxText(elem) && !equalTexts(elem, $elem)) return true;
return false;
};
const ReconciliationTypes = Object.freeze({
render: 0,
update: 1,
replace: 2,
unrender: 3,
skip: 4
});
const getReconciliationType = (elem, $elem)=>{
if (isRenderReconciliation(elem, $elem)) return ReconciliationTypes.render;
if (isUnrenderReconciliation(elem, $elem)) return ReconciliationTypes.unrender;
if (isReplaceReconciliation(elem, $elem)) return ReconciliationTypes.replace;
if (isUpdateReconciliation(elem, $elem)) return ReconciliationTypes.update;
return ReconciliationTypes.skip;
};
const reconcileElement = (elem, $elem, $parent)=>{
switch(getReconciliationType(elem, $elem)){
case ReconciliationTypes.render:
return renderElement(elem, $parent);
case ReconciliationTypes.replace:
return [
replaceElement(renderElement(elem, $parent), $elem),
unrenderElement($elem)
];
case ReconciliationTypes.update:
return updateElement(elem, $elem);
case ReconciliationTypes.unrender:
return unrenderElement($elem);
default:
return [];
}
};
const equalKeyElements = (elem, $elem)=>getJsxKey(elem) === getJsxKey(getJsxElement($elem));
const findKeyElements = (elem, $elems)=>$elems.find(($elem)=>equalKeyElements(elem, $elem));
const moveKeyElement = ($source, $target, $parent)=>$target === $source && $source || $source && $target && insertHtmlNode($target, $source) || $source && insertHtmlText("", $source, $parent);
const orderKeyElements = (elems, $elems, $parent)=>{
elems.forEach((elem, index)=>moveKeyElement(getHtmlChildNode($parent, index), findKeyElements(elem, $elems), $parent));
return getHtmlChildNodes($parent);
};
const orderHtmlChildren = ($elem, children)=>existsElement(children[0]) && isJsxKeyElement(children[0]) ? orderKeyElements(children, getHtmlChildNodes($elem), $elem) : getHtmlChildNodes($elem);
const updateElementChildren = ($elem)=>{
const children = resolveJsxChildren(getJsxElement($elem), $elem);
const $children = orderHtmlChildren($elem, children);
return getMaxLengthElements(children, $children).flatMap((_, index)=>reconcileElement(children[index], $children[index], $elem));
};
const unrenderElementChildren = ($elem)=>getHtmlChildNodes($elem).map(unrenderElement);
const updateElementTree = ($elem, elem = getJsxElement($elem))=>{
const $elems = [
updateElement(elem, $elem)
];
for (const $elem of $elems){
if (shouldSkipChildren($elem)) continue;
if (isRenderedElement($elem)) {
$elems.push(...renderElementChildren($elem));
continue;
}
if (isUpdatedElement($elem)) {
$elems.push(...updateElementChildren($elem));
continue;
}
if (isUnrenderedElement($elem)) {
$elems.push(...unrenderElementChildren($elem));
continue;
}
}
$elems.forEach(($elem)=>runEffects(getEffects($elem)));
return $elems;
};
const unrenderElementTree = ($elem)=>{
const $elems = [
unrenderElement($elem)
];
for (const $elem of $elems){
if (shouldSkipChildren($elem)) continue;
$elems.push(...unrenderElementChildren($elem));
}
return $elems;
};
const render = (elem, $parent = parseHtml("<main></main>"))=>{
$parent.ownerDocument.__render = $parent.ownerDocument.__render || renderElementTree;
$parent.ownerDocument.__update = $parent.ownerDocument.__update || updateElementTree;
$parent.ownerDocument.__unrender = $parent.ownerDocument.__unrender || unrenderElementTree;
return renderElementTree(elem, $parent)[0];
};
export { updateElementTree as update };
export { unrenderElementTree as unrender };
export { render as render };
const updateConsumerContext = (name, value, elem)=>{
const contexts = getContexts(elem);
const context = getContext(contexts, name);
if (equalData(context.value, value)) return;
setContextValue(context, value);
return updateElementTree(elem);
};
const updateProducerContext = (name, value, elem)=>{
const contexts = getContexts(elem);
const context = getContext(contexts, name);
return setContextValue(context, value);
};
const updateContexts = (name, value, elem)=>{
const producer = findProducer(elem, name);
updateProducerContext(name, value, producer);
return findConsumer(producer, name).map((consumer)=>updateConsumerContext(name, value, consumer));
};
const useContext = (contexts, name, initialValue, elem)=>{
if (!existsContext(contexts, name)) {
const contextValue = getProducerContextValue(name, initialValue, elem);
const context = createContext(name, contextValue);
setContext(contexts, context);
}
return [
getContextValue(contexts, name),
(value)=>updateContexts(name, value, elem)
];
};
const Context = ({ name, value, children }, elem)=>{
const [, setContext] = useContext(setContexts(elem), name, value, elem);
useEffect(setEffects(elem), "setcontext", ()=>setContext(value, elem), [
value
]);
return children;
};
const isErrorBoundaryElement = (elem, boundary)=>elem === boundary;
const getErrorPath = (source, boundary)=>findHtmlAscendants(source, (elem)=>isErrorBoundaryElement(elem, boundary));
const getEventDetailError = (event)=>event.detail?.error;
const toStringErrorPath = (elems)=>elems.map(getHtmlName).reverse().join("/");
const ErrorBoundary = ({ path, error, children }, elem)=>{
unsetHtmlEventHandler(elem, "onerror");
setHtmlEventHandler(elem, "onerror", (event)=>{
event.stopPropagation();
return updateErrorBoundary(elem, event);
});
return error ? React.createElement("error", null, React.createElement("span", {
class: "path"
}, `Path: ${path}`), React.createElement("pre", {
class: "error"
}, `Error: ${error}`)) : children;
};
const updateErrorBoundary = (elem, event)=>{
const error = getEventDetailError(event);
const path = getErrorPath(event.target, elem);
return updateElementTree(elem, React.createElement(ErrorBoundary, {
error: error?.message,
path: toStringErrorPath(path)
}));
};
const setService = (services, name, value)=>services[name] = value;
const setServices = (elem)=>elem.ownerDocument.__services = elem.ownerDocument.__services || {};
const Service = (props, elem)=>{
const services = setServices(elem);
setService(services, props.name, props.value);
return props.children;
};
const setElementPropsHidden = (elem, value)=>(elem.props.hidden = value, elem);
const setElementsPropsHidden = (elems, value)=>elems.map((elem)=>setElementPropsHidden(elem, value));
const Suspense = ({ suspending = true, fallback, children })=>{
setElementPropsHidden(fallback, !suspending);
setElementsPropsHidden(children, suspending);
return React.createElement(React.Fragment, null, fallback, ...children);
};
const getService = (services, name)=>services?.[name];
const getServices = (elem)=>elem.ownerDocument.__services;
export { getEffects as getEffects };
export { setEffects as setEffects, setInitialEffect as setInitialEffect, setInitialFuncEffect as setInitialFuncEffect };
export { useEffect as useEffect };
export { dispatchEvent as dispatchEvent };
export { setHtmlEventHandler as setHtmlEventHandler };
export { useMemo as useMemo };
export { getStates as getStates };
export { setStates as setStates };
export { useState as useState };
export { registerDomParser as registerDomParser, registerLinkeDomParser as registerLinkeDomParser };
export { Context as Context };
const Lazy = (props, elem)=>{
throwError(validateHtmlElement(elem));
throwError(validateLazyLoader(props.loader));
const [child, setChild] = useState(setStates(elem), "child", undefined, []);
useEffect(setEffects(elem), "load child", async ()=>{
const child = await props.loader(props);
setChild(child);
const $child = getHtmlChildren(elem)[0];
return $child ? updateElementTree($child, child) : render(child, elem);
}, [
props
]);
return child ?? React.createElement(React.Fragment, null);
};
export { ErrorBoundary as ErrorBoundary };
export { Lazy as Lazy };
export { Service as Service };
export { Suspense as Suspense };
export { getContexts as getContexts };
export { setContexts as setContexts };
export { useContext as useContext };
export { getServices as getServices };
export { setServices as setServices };
export { getService as useService };