@@ -37,6 +37,7 @@ const [filtered, toggleFiltered] = useToggle(true)
37
37
const componentTreeLoaded = ref (false )
38
38
const inspectComponentTipVisible = ref (false )
39
39
const componentRenderCode = ref (' ' )
40
+ const componentRenderCodeVisible = ref (false )
40
41
41
42
// tree
42
43
function dfs(node : { id: string , children? : { id: string }[] }, path : string [] = [], linkedList : string [][] = []) {
@@ -147,6 +148,9 @@ function getComponentState(id: string) {
147
148
148
149
watch (activeComponentId , (id ) => {
149
150
getComponentState (id )
151
+ if (componentRenderCodeVisible .value ) {
152
+ getComponentRenderCode ()
153
+ }
150
154
})
151
155
152
156
onInspectorStateUpdated ((data ) => {
@@ -206,6 +210,7 @@ function scrollToComponent() {
206
210
function getComponentRenderCode() {
207
211
getComponentRenderCodeAction (activeComponentId .value ).then ((data ) => {
208
212
componentRenderCode .value = data !
213
+ componentRenderCodeVisible .value = true
209
214
})
210
215
}
211
216
@@ -220,12 +225,17 @@ function scrollToActiveTreeNode() {
220
225
selected ?.scrollIntoView ({ behavior: ' smooth' , block: ' center' })
221
226
}, 300 )
222
227
}
228
+
229
+ function closeComponentRenderCode() {
230
+ componentRenderCode .value = ' '
231
+ componentRenderCodeVisible .value = false
232
+ }
223
233
</script >
224
234
225
235
<template >
226
236
<div class =" h-full w-full" >
227
237
<Splitpanes ref =" splitpanesRef" class =" flex-1 overflow-auto" :horizontal =" horizontal" @ready =" splitpanesReady = true" >
228
- <Pane border =" r base" h-full >
238
+ <Pane border =" base" h-full >
229
239
<div v-if =" componentTreeLoaded" class =" h-full flex flex-col p2" >
230
240
<div class =" flex py2" >
231
241
<VueInput v-model =" filterComponentName" :loading-debounce-time =" 250" :loading =" !filtered" placeholder =" Find components..." flex-1 />
@@ -265,7 +275,7 @@ function scrollToActiveTreeNode() {
265
275
</div >
266
276
<RootStateViewer class =" no-scrollbar flex-1 select-none overflow-scroll" :data =" filteredState" :node-id =" activeComponentId" :inspector-id =" inspectorId" expanded-state-id =" component-state" />
267
277
</div >
268
- <ComponentRenderCode v-if =" componentRenderCode" :code =" componentRenderCode" @close =" componentRenderCode = '' " />
278
+ <ComponentRenderCode v-if =" componentRenderCodeVisible && componentRenderCode" :code =" componentRenderCode" @close =" closeComponentRenderCode " />
269
279
</Pane >
270
280
</Splitpanes >
271
281
0 commit comments