Skip to content

Commit 064a411

Browse files
authoredJun 5, 2024··
fix(applet): update component render-code when toggle tree-node (#423)
1 parent 01d70b9 commit 064a411

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
 

‎packages/applet/src/modules/components/components/RenderCode.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function close() {
1313
</script>
1414

1515
<template>
16-
<div class="absolute left-0 top-0 h-full w-full flex flex-col bg-white p2 dark:bg-[#121212]">
16+
<div class="absolute left-0 top-0 h-full w-full flex flex-col rounded-br-2.5 rounded-tr-2.5 bg-white p2 dark:bg-[#121212]">
1717
<div class="h-12 w-full flex items-center justify-between py-2">
1818
<span class="font-500">Render Code</span>
1919
<i class="i-carbon-close cursor-pointer hover:op80" @click="close" />

‎packages/applet/src/modules/components/index.vue

+12-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const [filtered, toggleFiltered] = useToggle(true)
3737
const componentTreeLoaded = ref(false)
3838
const inspectComponentTipVisible = ref(false)
3939
const componentRenderCode = ref('')
40+
const componentRenderCodeVisible = ref(false)
4041
4142
// tree
4243
function dfs(node: { id: string, children?: { id: string }[] }, path: string[] = [], linkedList: string[][] = []) {
@@ -147,6 +148,9 @@ function getComponentState(id: string) {
147148
148149
watch(activeComponentId, (id) => {
149150
getComponentState(id)
151+
if (componentRenderCodeVisible.value) {
152+
getComponentRenderCode()
153+
}
150154
})
151155
152156
onInspectorStateUpdated((data) => {
@@ -206,6 +210,7 @@ function scrollToComponent() {
206210
function getComponentRenderCode() {
207211
getComponentRenderCodeAction(activeComponentId.value).then((data) => {
208212
componentRenderCode.value = data!
213+
componentRenderCodeVisible.value = true
209214
})
210215
}
211216
@@ -220,12 +225,17 @@ function scrollToActiveTreeNode() {
220225
selected?.scrollIntoView({ behavior: 'smooth', block: 'center' })
221226
}, 300)
222227
}
228+
229+
function closeComponentRenderCode() {
230+
componentRenderCode.value = ''
231+
componentRenderCodeVisible.value = false
232+
}
223233
</script>
224234

225235
<template>
226236
<div class="h-full w-full">
227237
<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>
229239
<div v-if="componentTreeLoaded" class="h-full flex flex-col p2">
230240
<div class="flex py2">
231241
<VueInput v-model="filterComponentName" :loading-debounce-time="250" :loading="!filtered" placeholder="Find components..." flex-1 />
@@ -265,7 +275,7 @@ function scrollToActiveTreeNode() {
265275
</div>
266276
<RootStateViewer class="no-scrollbar flex-1 select-none overflow-scroll" :data="filteredState" :node-id="activeComponentId" :inspector-id="inspectorId" expanded-state-id="component-state" />
267277
</div>
268-
<ComponentRenderCode v-if="componentRenderCode" :code="componentRenderCode" @close="componentRenderCode = ''" />
278+
<ComponentRenderCode v-if="componentRenderCodeVisible && componentRenderCode" :code="componentRenderCode" @close="closeComponentRenderCode" />
269279
</Pane>
270280
</Splitpanes>
271281

0 commit comments

Comments
 (0)
Please sign in to comment.