Skip to content

Commit f6c9be5

Browse files
committedAug 25, 2024·
feat: add multiple-app toggle feature in components panel
1 parent 3bd0031 commit f6c9be5

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed
 

‎packages/applet/src/components/basic/SelectiveList.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ import NodeTag from '~/components/basic/NodeTag.vue'
55
66
defineProps<{ data: CustomInspectorNode[] }>()
77
8+
const emit = defineEmits(['select'])
89
const selected = defineModel()
9-
1010
function select(id: string) {
1111
selected.value = id
12+
emit('select', id)
1213
}
1314
</script>
1415

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

+34-1
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<script setup lang="ts">
2-
import { computed, onUnmounted, ref, watch } from 'vue'
2+
import { computed, onUnmounted, ref, watch, watchEffect } from 'vue'
33
import { Pane, Splitpanes } from 'splitpanes'
44
import type { CustomInspectorNode, CustomInspectorState } from '@vue/devtools-kit'
55
import { isInChromePanel, isInSeparateWindow, sortByKey } from '@vue/devtools-shared'
66
import {
77
DevToolsMessagingEvents,
88
rpc,
9+
useDevToolsState,
910
} from '@vue/devtools-core'
1011
import { parse } from '@vue/devtools-kit'
1112
import { useElementSize, useToggle, watchDebounced } from '@vueuse/core'
1213
import { VueButton, VueDialog, VueInput, vTooltip } from '@vue/devtools-ui'
1314
import { flatten, groupBy } from 'lodash-es'
1415
import ComponentRenderCode from './components/RenderCode.vue'
1516
import ComponentTree from '~/components/tree/TreeViewer.vue'
17+
import SelectiveList from '~/components/basic/SelectiveList.vue'
1618
import { createExpandedContext } from '~/composables/toggle-expanded'
1719
import { createSelectedContext } from '~/composables/select'
1820
import RootStateViewer from '~/components/state/RootStateViewer.vue'
@@ -280,11 +282,42 @@ function closeComponentRenderCode() {
280282
componentRenderCode.value = ''
281283
componentRenderCodeVisible.value = false
282284
}
285+
286+
// #region toggle app
287+
const devtoolsState = useDevToolsState()
288+
const appRecords = computed(() => devtoolsState.appRecords.value.map(app => ({
289+
label: app.name + (app.version ? ` (${app.version})` : ''),
290+
value: app.id,
291+
})))
292+
293+
const normalizedAppRecords = computed(() => appRecords.value.map(app => ({
294+
label: app.label,
295+
id: app.value,
296+
})))
297+
298+
const activeAppRecordId = ref(devtoolsState.activeAppRecordId.value)
299+
watchEffect(() => {
300+
activeAppRecordId.value = devtoolsState.activeAppRecordId.value
301+
})
302+
303+
function toggleApp(id: string) {
304+
rpc.value.toggleApp(id).then(() => {
305+
activeComponentId.value = ''
306+
getComponentsInspectorTree()
307+
})
308+
}
309+
310+
// #endregion
283311
</script>
284312

285313
<template>
286314
<div class="h-full w-full">
287315
<Splitpanes ref="splitpanesRef" class="flex-1 overflow-auto" :horizontal="horizontal" @ready="splitpanesReady = true">
316+
<Pane v-if="appRecords.length > 1" border="base h-full" size="20">
317+
<div class="no-scrollbar h-full flex select-none gap-2 overflow-scroll">
318+
<SelectiveList v-model="activeAppRecordId" :data="normalizedAppRecords" class="w-full" @select="toggleApp" />
319+
</div>
320+
</Pane>
288321
<Pane border="base" h-full>
289322
<div v-if="componentTreeLoaded" class="h-full flex flex-col p2">
290323
<div class="flex py2">

0 commit comments

Comments
 (0)
Please sign in to comment.