-
Notifications
You must be signed in to change notification settings - Fork 1
/
element.ts
1044 lines (1019 loc) · 24.8 KB
/
element.ts
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
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { isRef, ref, Ref, watch, watchEffect, watchRef } from './composition';
type BaseEleChild = Ele<HTMLElement | SVGElement | Text | Comment>;
// 子元素
type EleChild = BaseEleChild | EleChildPromise | undefined;
// 异步子元素
type EleChildPromise = Promise<BaseEleChild | undefined>;
// 子元素集合
type EleChildren = (
| BaseEleChild
| EleChildPromise
| Ref<BaseEleChild | EleChildPromise | undefined>
)[];
// 异步子元素
type EleChildrenPromise = Promise<BaseEleChild[] | undefined>;
// 子元素
type EleChildenRef = Ref<BaseEleChild[] | EleChildrenPromise | undefined>;
/**
* @description 元素创建配置
*/
type EleCreateOptions = {
beforeCreat?: () => void;
onCreated?: () => void;
};
/**
* @description 元素挂载配置
*/
type EleMountOptions = {
beforeMount?: () => void;
onMounted?: () => void;
};
/**
* @description 元素卸载配置
*/
type EleDestroyOptions = {
beforeDestroy?: () => void;
onDestroyed?: () => void;
};
/**
* @description 事件配置
*/
type EleEventOptions = EleCreateOptions & EleMountOptions & EleDestroyOptions;
/**
* @description 元素
*/
type Ele<T extends HTMLElement | SVGElement | Text | Comment> =
EleEventOptions & {
ele: T;
};
/**
* @description 创建元素节点
* @param eleName
* @param props
* @param attrs
* @param children
* @returns
*/
function createElementNode<T extends keyof HTMLElementTagNameMap>(
tagName: T,
props?: { [key: string]: any },
attrs?: { [key: string]: any },
children?: EleChild | EleChildenRef | EleChildren,
options?: EleEventOptions
): Ele<HTMLElementTagNameMap[T]> {
// 挂载状态
const beforemount = ref(false);
// 挂载状态
const mounted = ref(false);
// 销毁状态
const beforedestroy = ref(false);
// 销毁状态
const destroyed = ref(false);
// 事件处理
const {
onCreated,
beforeCreat,
onMounted,
beforeMount,
beforeDestroy,
onDestroyed,
} = options || {};
// 订阅
const subscribe = (e: EleEventOptions) => {
const { onMounted, beforeMount, beforeDestroy, onDestroyed } = e;
if (beforeMount) {
watch(
beforemount,
() => {
if (beforemount.value) {
beforeMount();
return;
}
},
true
);
}
if (onMounted) {
watch(
mounted,
() => {
if (mounted.value) {
onMounted();
return;
}
},
true
);
}
if (beforeDestroy) {
watch(
beforedestroy,
() => {
if (beforedestroy.value) {
beforeDestroy();
return;
}
},
true
);
}
if (onDestroyed) {
watch(
destroyed,
() => {
if (destroyed.value) {
onDestroyed();
return;
}
},
true
);
}
};
// 取消订阅
const unsubscribe = (_e: EleMountOptions) => {
//懒得写
};
// 创建元素前
beforeCreat && beforeCreat();
// 创建普通元素
const ele = document.createElement(tagName);
// 处理属性
handleProps(ele, props);
// 处理属性
handleAttributes(ele, attrs, subscribe, unsubscribe);
// 处理子元素
handleChildren(ele, children, subscribe, unsubscribe);
// 收集挂载前
const collectBeforeMount = () => {
beforemount.value = true;
beforeMount && beforeMount();
};
// 收集挂载
const collectOnMounted = () => {
mounted.value = true;
onMounted && onMounted();
};
// 收集销毁前
const collectBeforeDestroy = () => {
beforedestroy.value = true;
beforeDestroy && beforeDestroy();
};
// 收集销毁
const collectOnDestroyed = () => {
destroyed.value = true;
onDestroyed && onDestroyed();
};
// 创建元素后
onCreated && onCreated();
return {
ele,
beforeMount: collectBeforeMount,
onMounted: collectOnMounted,
beforeDestroy: collectBeforeDestroy,
onDestroyed: collectOnDestroyed,
};
}
/**
* @description 创建svg元素
* @param tagName
* @param props
* @param attrs
* @param children
* @returns
*/
function createNSElementNode<T extends keyof SVGElementTagNameMap>(
tagName: T,
props?: { [key: string]: any },
attrs?: { [key: string]: any },
children?: EleChild | EleChildenRef | EleChildren,
options?: EleEventOptions
): Ele<SVGElementTagNameMap[T]> {
// 挂载状态
const beforemount = ref(false);
// 挂载状态
const mounted = ref(false);
// 销毁状态
const beforedestroy = ref(false);
// 销毁状态
const destroyed = ref(false);
// 事件处理
const {
onCreated,
beforeCreat,
onMounted,
beforeMount,
beforeDestroy,
onDestroyed,
} = options || {};
// 订阅
const subscribe = (e: EleEventOptions) => {
const { onMounted, beforeMount, beforeDestroy, onDestroyed } = e;
if (beforeMount) {
watch(
beforemount,
() => {
if (beforemount.value) {
beforeMount();
return;
}
},
true
);
}
if (onMounted) {
watch(
mounted,
() => {
if (mounted.value) {
onMounted();
return;
}
},
true
);
}
if (beforeDestroy) {
watch(
beforedestroy,
() => {
if (beforedestroy.value) {
beforeDestroy();
return;
}
},
true
);
}
if (onDestroyed) {
watch(
destroyed,
() => {
if (destroyed.value) {
onDestroyed();
return;
}
},
true
);
}
};
// 取消订阅
const unsubscribe = (_e: EleMountOptions) => {
//
};
// 创建元素前
beforeCreat && beforeCreat();
// svg元素命名空间
const ns = 'http://www.w3.org/2000/svg';
// 创建svg元素
const ele = document.createElementNS(ns, tagName);
// 处理属性
handleProps(ele, props);
// 处理属性
handleAttributes(ele, attrs, subscribe, unsubscribe);
// 处理子元素
handleChildren(ele, children, subscribe, unsubscribe);
// 收集挂载前
const collectBeforeMount = () => {
beforemount.value = true;
beforeMount && beforeMount();
};
// 收集挂载
const collectOnMounted = () => {
mounted.value = true;
onMounted && onMounted();
};
// 收集销毁前
const collectBeforeDestroy = () => {
beforedestroy.value = true;
beforeDestroy && beforeDestroy();
};
// 收集销毁
const collectOnDestroyed = () => {
destroyed.value = true;
onDestroyed && onDestroyed();
};
// 创建元素后
onCreated && onCreated();
return {
ele,
beforeMount: collectBeforeMount,
onMounted: collectOnMounted,
beforeDestroy: collectBeforeDestroy,
onDestroyed: collectOnDestroyed,
};
}
/**
* @description 处理属性
* @param ele
* @param props
*/
function handleProps(
ele: HTMLElement | SVGElement,
props?: { [key: string]: any }
) {
// props属性设置
for (const key in props) {
// Ref 属性
if (isRef(props[key])) {
const refVal = <Ref>props[key];
watchEffect(() => (ele[key] = refVal.value));
continue;
}
ele[key] = props[key];
}
}
/**
* @description 处理svg属性
* @param ele
* @param attrs
*/
function handleAttributes(
ele: HTMLElement | SVGElement,
attrs?: { [key: string]: any },
subscribe?: (e: EleMountOptions) => void,
unsubscribe?: (e: EleMountOptions) => void
) {
// 属性存在
if (attrs) {
// attrs属性设置
for (const key in attrs) {
// 处理普通属性
handleAttribute(ele, key, attrs[key], subscribe, unsubscribe);
}
}
}
/**
* @description 处理事件选项
*/
function handleEventOptions(option: string[]) {
if (option.length) {
const options: AddEventListenerOptions = {
capture: option.includes('capture'),
once: option.includes('once'),
passive: option.includes('passive'),
};
return options;
}
}
/**
* @description 处理属性
* @param ele
* @param key
* @param value
*/
function handleAttribute(
ele: HTMLElement | SVGElement,
key: string,
value: any,
subscribe?: (e: EleMountOptions) => void,
_unsubscribe?: (e: EleMountOptions) => void
) {
// 处理完的key
const formatKey = key.toLowerCase();
// 事件绑定
if (formatKey.startsWith('on')) {
// 事件监听
const [event] = formatKey.match(/(?<=on).*/)!;
// 事件类型
if (event) {
const [eventType, ...option] = event.split('_');
const options = handleEventOptions(option);
// Ref 函数
if (isRef(value)) {
const refVal = <Ref<EventListener>>value;
const refListener = watchRef(refVal, () =>
refVal.value
? (e) => {
option.includes('prevent') && e.preventDefault();
option.includes('stop') && e.stopPropagation();
const callback = refVal.value;
callback(e);
}
: undefined
);
// 设置事件监听
refListener.value &&
ele.addEventListener(eventType, refListener.value, options);
// 监听事件变化
watch(refListener, (newVal, oldVal) => {
// 移除旧事件监听
oldVal && ele.removeEventListener(eventType, oldVal);
// 设置新事件监听
newVal && ele.addEventListener(eventType, newVal, options);
});
return;
}
// 普通函数
if (value instanceof Function) {
// 设置事件监听
ele.addEventListener(eventType, value, options);
}
}
return;
}
// 特殊属性
const specificAttrs = ['checked', 'selected', 'disabled', 'enabled'];
// 特殊 key
if (specificAttrs.includes(formatKey)) {
// Ref
if (isRef(value)) {
const refVal = <Ref>value;
watchEffect(() => {
if (refVal.value) {
ele.setAttribute(formatKey, '');
} else {
ele.removeAttribute(formatKey);
}
});
return;
}
// 普通属性值
if (value) {
ele.setAttribute(formatKey, '');
} else {
ele.removeAttribute(formatKey);
}
return;
}
// ref 属性名
if (key === 'ref') {
// Ref
if (isRef(value)) {
const refVal = <Ref>value;
subscribe &&
subscribe({
onMounted() {
refVal.value = ele;
},
});
return;
}
// Ref 函数
if (value instanceof Function) {
const refFn = <Function>value;
subscribe &&
subscribe({
onMounted() {
refFn(ele);
},
});
return;
}
return;
}
// xlink命名空间
if (key.startsWith('xlink:')) {
// xlink属性命名空间
const attrNS = 'http://www.w3.org/1999/xlink';
if (value) {
ele.setAttributeNS(attrNS, key, value);
} else {
ele.removeAttributeNS(attrNS, key);
}
return;
}
// Ref 属性值
if (key && isRef(value)) {
const refVal = <Ref>value;
// 监听影响
watchEffect(() => {
ele.setAttribute(key, refVal.value);
});
return;
}
// 普通属性
if (key) {
// 普通属性
ele.setAttribute(key, value);
}
}
/**
* @description 处理子元素
* @param ele
* @param children
*/
function handleChildren(
ele: HTMLElement | SVGElement,
children?: EleChild | EleChildenRef | EleChildren,
subscribe?: (e: EleMountOptions) => void,
unsubscribe?: (e: EleMountOptions) => void
) {
// Ref
if (isRef(children)) {
// 注释元素
const comment = document.createComment('');
// 监听元素变化
watch(children, async (newEle, oldEle) => {
if (!newEle && oldEle) {
// Promise
if (oldEle instanceof Promise) {
const oldEleRes = await oldEle;
if (oldEleRes) {
oldEleRes.forEach((ele) => {
unsubscribe && unsubscribe(ele);
ele.beforeDestroy && ele.beforeDestroy();
});
}
}
// unPromise
if (!(oldEle instanceof Promise)) {
oldEle.forEach((ele) => {
unsubscribe && unsubscribe(ele);
ele.beforeDestroy && ele.beforeDestroy();
});
}
ele.replaceChildren(comment);
// Promise
if (oldEle instanceof Promise) {
const oldEleRes = await oldEle;
if (oldEleRes) {
oldEleRes.forEach((ele) => {
ele.onDestroyed && ele.onDestroyed();
});
}
}
// unPromise
if (!(oldEle instanceof Promise)) {
oldEle.forEach((ele) => {
ele.onDestroyed && ele.onDestroyed();
});
}
return;
}
if (newEle) {
if (oldEle) {
// Promise
if (oldEle instanceof Promise) {
const oldEleRes = await oldEle;
if (oldEleRes) {
oldEleRes.forEach((ele) => {
unsubscribe && unsubscribe(ele);
ele.beforeDestroy && ele.beforeDestroy();
});
}
}
// unPromise
if (!(oldEle instanceof Promise)) {
oldEle.forEach((ele) => {
unsubscribe && unsubscribe(ele);
ele.beforeDestroy && ele.beforeDestroy();
});
}
}
// Promise
if (newEle instanceof Promise) {
const newEleRes = await newEle;
if (newEleRes) {
const eles = newEleRes.map((v) => {
if (v.beforeMount || v.onMounted) {
subscribe && subscribe(v);
}
return v.ele;
});
ele.replaceChildren(createElementBlock(eles));
}
return;
}
// unPromise
const eles = newEle.map((v) => {
if (v.beforeMount || v.onMounted) {
subscribe && subscribe(v);
}
return v.ele;
});
ele.replaceChildren(createElementBlock(eles));
// 销毁
if (oldEle) {
// Promise
if (oldEle instanceof Promise) {
const oldEleRes = await oldEle;
if (oldEleRes) {
oldEleRes.forEach((ele) => {
ele.onDestroyed && ele.onDestroyed();
});
}
}
// unPromise
if (!(oldEle instanceof Promise)) {
oldEle.forEach((ele) => {
ele.onDestroyed && ele.onDestroyed();
});
}
}
return;
}
});
// Promise
if (children.value instanceof Promise) {
// 插入注释元素
ele.appendChild(comment);
children.value.then((childrenEle) => {
if (childrenEle) {
const eles = childrenEle.map((v) => {
if (v.beforeMount || v.onMounted) {
subscribe && subscribe(v);
}
return v.ele;
});
ele.replaceChildren(createElementBlock(eles));
}
});
return;
}
// unPromise
if (children.value) {
const eles = children.value.map((v) => {
if (v.beforeMount || v.onMounted) {
subscribe && subscribe(v);
}
return v.ele;
});
ele.appendChild(createElementBlock(eles));
return;
}
// 插入元素
ele.appendChild(comment);
return;
}
// Promise
if (children instanceof Promise) {
// 注释元素
const comment = document.createComment('');
// 插入注释元素
ele.appendChild(comment);
// 异步替换元素
children.then((childEle) => {
if (childEle) {
const { beforeMount, onMounted } = childEle;
if (beforeMount || onMounted) {
subscribe && subscribe(childEle);
}
comment.replaceWith(childEle.ele);
}
});
return;
}
// Array
if (Array.isArray(children)) {
// 处理过后
const resChildren: BaseEleChild[] = [];
for (const i in children) {
const child = children[i];
// Ref
if (isRef(child)) {
// 注释
const comment = document.createComment('');
// 监听影响
watch(child, async (newEle, oldEle) => {
// 新元素为空
if (!newEle && oldEle) {
// Promise
if (oldEle instanceof Promise) {
const oldEleRes = await oldEle;
if (oldEleRes) {
handleChangeElement(
newEle,
oldEleRes,
comment,
subscribe,
unsubscribe
);
}
return;
}
handleChangeElement(
newEle,
oldEle,
comment,
subscribe,
unsubscribe
);
return;
}
// 旧元素为空
if (newEle && !oldEle) {
// Promise
if (newEle instanceof Promise) {
const newEleRes = await newEle;
if (newEleRes) {
handleChangeElement(
newEleRes,
oldEle,
comment,
subscribe,
unsubscribe
);
}
return;
}
handleChangeElement(
newEle,
oldEle,
comment,
subscribe,
unsubscribe
);
return;
}
// 存在
if (newEle && oldEle) {
// Promise
if (newEle instanceof Promise && oldEle instanceof Promise) {
const newEleRes = await newEle;
const oldEleRes = await oldEle;
// 处理元素变化
handleChangeElement(
newEleRes,
oldEleRes,
comment,
subscribe,
unsubscribe
);
return;
}
// Promise
if (newEle instanceof Promise && !(oldEle instanceof Promise)) {
const newEleRes = await newEle;
// 处理元素变化
handleChangeElement(
newEleRes,
oldEle,
comment,
subscribe,
unsubscribe
);
return;
}
// Promise
if (!(newEle instanceof Promise) && oldEle instanceof Promise) {
const oldEleRes = await oldEle;
// 处理元素变化
handleChangeElement(
newEle,
oldEleRes,
comment,
subscribe,
unsubscribe
);
return;
}
// 非 Promise
if (!(oldEle instanceof Promise) && !(newEle instanceof Promise)) {
// 处理元素变化
handleChangeElement(
newEle,
oldEle,
comment,
subscribe,
unsubscribe
);
return;
}
}
});
// Promise
if (child.value instanceof Promise) {
// 注释
resChildren[i] = { ele: comment };
// 异步替换
child.value.then((childEle) => {
if (childEle) {
const { beforeMount, onMounted } = childEle;
if (beforeMount || onMounted) {
subscribe && subscribe(childEle);
}
comment.replaceWith(childEle.ele);
}
});
continue;
}
// unPromise
if (child.value) {
const { beforeMount, onMounted, ele } = child.value;
resChildren[i] = { ele, beforeMount, onMounted };
continue;
}
resChildren[i] = { ele: comment };
continue;
}
// Promise
if (child instanceof Promise) {
// 注释
const comment = document.createComment('');
resChildren[i] = { ele: comment };
// 异步替换元素
child.then((childEle) => {
if (childEle) {
const { beforeMount, onMounted } = childEle;
if (beforeMount || onMounted) {
subscribe && subscribe(childEle);
}
comment.replaceWith(childEle.ele);
}
});
continue;
}
// 普通元素
if (child) {
const { beforeMount, onMounted, ele } = child;
resChildren[i] = { ele, beforeMount, onMounted };
}
}
const eles = resChildren.map((v) => {
if (v.beforeMount || v.onMounted) {
subscribe && subscribe(v);
}
return v.ele;
});
// 插入元素
ele.appendChild(createElementBlock(eles));
return;
}
// 普通元素
if (children) {
const { beforeMount, onMounted } = children;
if (beforeMount || onMounted) {
subscribe && subscribe(children);
}
// 插入元素
ele.appendChild(children.ele);
return;
}
return;
}
/**
* @description 元素变化
* @param newEle
* @param oldEle
* @param comment
*/
function handleChangeElement(
newEle: BaseEleChild | undefined,
oldEle: BaseEleChild | undefined,
comment: Comment,
subscribe?: (e: Ele<HTMLElement | SVGElement | Text | Comment>) => void,
unsubscribe?: (e: Ele<HTMLElement | SVGElement | Text | Comment>) => void
) {
if (newEle && oldEle) {
const { beforeMount, onMounted } = newEle;
if (beforeMount || onMounted) {
subscribe && subscribe(newEle);
}
oldEle.beforeDestroy && oldEle.beforeDestroy();
oldEle.ele.replaceWith(newEle.ele);
oldEle.onDestroyed && oldEle.onDestroyed();
return;
}
if (newEle && !oldEle) {
const { beforeMount, onMounted } = newEle;
if (beforeMount || onMounted) {
subscribe && subscribe(newEle);
}
comment.replaceWith(newEle.ele);
return;
}
if (!newEle && oldEle) {
unsubscribe && unsubscribe(oldEle);
oldEle.beforeDestroy && oldEle.beforeDestroy();
oldEle.ele.replaceWith(comment);
oldEle.onDestroyed && oldEle.onDestroyed();
return;
}
}
/**
* @description 创建文字节点
* @param text
* @returns
*/
function createTextNode(text: any, options?: EleEventOptions): Ele<Text> {
const {
onCreated,
beforeCreat,
onMounted,
beforeMount,
onDestroyed,
beforeDestroy,
} = options || {};
// 创建元素前
beforeCreat && beforeCreat();
// Ref
if (isRef(text)) {
// ref
const refVal = <Ref>text;
// 元素
const ele = document.createTextNode('');
// 订阅变化
watchEffect(() => {
ele.data = refVal.value;
});
// 创建元素后
onCreated && onCreated();
return { ele, beforeMount, onMounted, onDestroyed, beforeDestroy };
}
// 创建元素后
onCreated && onCreated();
return {
ele: document.createTextNode(String(text)),
beforeMount,
onMounted,
beforeDestroy,
onDestroyed,
};
}
/**
* @description 挂载元素
* @param eleOptions
* @param parent
*/
async function mountElement<
T extends HTMLElement | SVGElement | Text | Comment
>(
eleOptions: Ele<T> | Promise<Ele<T>>,
parent: Element | null = document.body
) {
// promise
if (eleOptions instanceof Promise) {
const { ele, beforeMount, onMounted } = await eleOptions;
if (ele && parent) {
// 触发挂载前事件
beforeMount && beforeMount();
parent.appendChild(ele);
// 挂在后
onMounted && onMounted();
}
return;
}
const { ele, beforeMount, onMounted } = eleOptions;
if (ele && parent) {
// 触发挂载前事件
beforeMount && beforeMount();
parent.appendChild(ele);
// 挂在后
onMounted && onMounted();
}
}
/**
* @description 选择器
* @param selector
* @returns
*/
function $$<T extends Element = HTMLElement>(
selector: string,
parent: Document | Element = document
) {
return Array.from(parent.querySelectorAll<T>(selector));
}
/**
* @description 异步选择器
* @param selector
* @returns
*/
function $_<T extends Element = HTMLElement>(
selector: string,
parent: Document | Element = document,
timeout?: number
) {