@@ -35,10 +35,17 @@ export const VaporTeleportImpl = {
35
35
rawPropsProxyHandlers ,
36
36
) as any as TeleportProps
37
37
38
+ let children : Block
39
+
40
+ renderEffect ( ( ) => {
41
+ frag . updateChildren (
42
+ ( children = slots . default && ( slots . default as BlockFn ) ( ) ) ,
43
+ )
44
+ } )
45
+
38
46
renderEffect ( ( ) => {
39
- const children = slots . default && ( slots . default as BlockFn ) ( )
40
47
// access the props to trigger tracking
41
- frag . update ( extend ( { } , resolvedProps ) , children )
48
+ frag . update ( extend ( { } , resolvedProps ) , children ! )
42
49
} )
43
50
44
51
return frag
@@ -50,26 +57,42 @@ export class TeleportFragment extends VaporFragment {
50
57
targetStart ?: Node | null
51
58
mainAnchor ?: Node
52
59
placeholder ?: Node
53
- currentParent ?: ParentNode | null
60
+ container ?: ParentNode | null
61
+ currentAnchor ?: Node | null
54
62
55
63
constructor ( anchorLabel ?: string ) {
56
64
super ( [ ] )
57
65
this . anchor =
58
66
__DEV__ && anchorLabel ? createComment ( anchorLabel ) : createTextNode ( )
59
67
}
60
68
61
- update ( props : TeleportProps , children : Block ) : void {
69
+ updateChildren ( children : Block ) : void {
62
70
const parent = this . anchor . parentNode
71
+ if ( ! parent ) return
72
+
73
+ const container = this . container || parent
74
+
63
75
// teardown previous
64
- if ( this . nodes && ( this . currentParent || parent ) ) {
65
- remove ( this . nodes , ( this . currentParent || parent ) ! )
66
- }
76
+ remove ( this . nodes , container )
77
+
78
+ insert (
79
+ ( this . nodes = children ) ,
80
+ container ,
81
+ this . currentAnchor || this . anchor ,
82
+ )
83
+ }
67
84
85
+ update ( props : TeleportProps , children : Block ) : void {
86
+ const parent = this . anchor . parentNode
68
87
this . nodes = children
69
88
const disabled = isTeleportDisabled ( props )
70
89
71
90
const mount = ( parent : ParentNode , anchor : Node | null ) => {
72
- insert ( this . nodes , ( this . currentParent = parent ) , anchor )
91
+ insert (
92
+ this . nodes ,
93
+ ( this . container = parent ) ,
94
+ ( this . currentAnchor = anchor ) ,
95
+ )
73
96
}
74
97
75
98
const mountToTarget = ( ) => {
@@ -124,7 +147,7 @@ export class TeleportFragment extends VaporFragment {
124
147
125
148
remove = ( parent : ParentNode | undefined ) : void => {
126
149
// remove nodes
127
- remove ( this . nodes , this . currentParent || parent )
150
+ remove ( this . nodes , this . container || parent )
128
151
129
152
// remove anchors
130
153
if ( this . targetStart ) {
0 commit comments