|
1 | 1 | <script setup lang="ts">
|
2 |
| -import { computed, onUnmounted, ref, watch } from 'vue' |
| 2 | +import { computed, onUnmounted, ref, watch, watchEffect } from 'vue' |
3 | 3 | import { Pane, Splitpanes } from 'splitpanes'
|
4 | 4 | import type { CustomInspectorNode, CustomInspectorState } from '@vue/devtools-kit'
|
5 | 5 | import { isInChromePanel, isInSeparateWindow, sortByKey } from '@vue/devtools-shared'
|
6 | 6 | import {
|
7 | 7 | DevToolsMessagingEvents,
|
8 | 8 | rpc,
|
| 9 | + useDevToolsState, |
9 | 10 | } from '@vue/devtools-core'
|
10 | 11 | import { parse } from '@vue/devtools-kit'
|
11 | 12 | import { useElementSize, useToggle, watchDebounced } from '@vueuse/core'
|
12 | 13 | import { VueButton, VueDialog, VueInput, vTooltip } from '@vue/devtools-ui'
|
13 | 14 | import { flatten, groupBy } from 'lodash-es'
|
14 | 15 | import ComponentRenderCode from './components/RenderCode.vue'
|
15 | 16 | import ComponentTree from '~/components/tree/TreeViewer.vue'
|
| 17 | +import SelectiveList from '~/components/basic/SelectiveList.vue' |
16 | 18 | import { createExpandedContext } from '~/composables/toggle-expanded'
|
17 | 19 | import { createSelectedContext } from '~/composables/select'
|
18 | 20 | import RootStateViewer from '~/components/state/RootStateViewer.vue'
|
@@ -280,11 +282,42 @@ function closeComponentRenderCode() {
|
280 | 282 | componentRenderCode.value = ''
|
281 | 283 | componentRenderCodeVisible.value = false
|
282 | 284 | }
|
| 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 |
283 | 311 | </script>
|
284 | 312 |
|
285 | 313 | <template>
|
286 | 314 | <div class="h-full w-full">
|
287 | 315 | <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> |
288 | 321 | <Pane border="base" h-full>
|
289 | 322 | <div v-if="componentTreeLoaded" class="h-full flex flex-col p2">
|
290 | 323 | <div class="flex py2">
|
|
0 commit comments