1
1
<script setup lang="ts">
2
2
import { VueButton , VueCard , VueDropdown , vTooltip } from ' @vue/devtools-ui'
3
3
import { CustomTab } from ' @vue/devtools-kit'
4
+ import { CustomInspector as CustomInspectorComponent } from ' @vue/devtools-applet'
4
5
import { ModuleBuiltinTab } from ' ~/types'
5
6
6
7
function close() {
@@ -13,6 +14,7 @@ const router = useRouter()
13
14
const route = useRoute ()
14
15
const PageComponent = shallowRef ()
15
16
const customTabName = ref <string | null >(null )
17
+ const customTabType = ref <' custom-tab' | ' custom-inspector' | null >(null )
16
18
17
19
function isMatchedWithRoute(tab ? : typeof flattenedTabs [' value' ][number ]) {
18
20
const routeTabName = getRouteTabName ()
@@ -31,11 +33,16 @@ const mainViewName = computed(() =>
31
33
)
32
34
33
35
function getRouteTabName() {
34
- return route .path .startsWith (` /${CUSTOM_TAB_VIEW }/ ` )
35
- ? route .path .slice (CUSTOM_TAB_VIEW .length + 2 )
36
- : route .path .startsWith (' /' )
37
- ? route .path .slice (1 )
38
- : route .path
36
+ if (route .path .startsWith (` /${CUSTOM_TAB_VIEW }/ ` )) {
37
+ return route .path .slice (CUSTOM_TAB_VIEW .length + 2 )
38
+ }
39
+ if (route .path .startsWith (` /${CUSTOM_INSPECTOR_TAB_VIEW }/ ` )) {
40
+ return route .path .slice (CUSTOM_INSPECTOR_TAB_VIEW .length + 2 )
41
+ }
42
+ if (route .path .startsWith (' /' )) {
43
+ return route .path .slice (1 )
44
+ }
45
+ return route .path
39
46
}
40
47
41
48
watch (
@@ -46,6 +53,12 @@ watch(
46
53
// check if is a custom tab
47
54
if ((tab as CustomTab ).view ) {
48
55
customTabName .value = tab .name
56
+ customTabType .value = ' custom-tab'
57
+ return
58
+ }
59
+ if ((tab as ModuleBuiltinTab ).path .startsWith (CUSTOM_INSPECTOR_TAB_VIEW )) {
60
+ customTabName .value = tab .name
61
+ customTabType .value = ' custom-inspector'
49
62
return
50
63
}
51
64
customTabName .value = null
@@ -93,7 +106,10 @@ const showGridPanel = ref(false)
93
106
<div i-carbon:side-panel-open />
94
107
</button >
95
108
</div >
96
- <CustomTabComponent v-if =" customTabName && currentTab" :tab =" currentTab as CustomTab" class =" h-[calc(100%-50px)]" iframe-inline of-auto />
109
+ <template v-if =" customTabName && currentTab " >
110
+ <CustomTabComponent v-if =" customTabType === 'custom-tab'" :tab =" currentTab as CustomTab" class =" h-[calc(100%-50px)]" iframe-inline of-auto />
111
+ <CustomInspectorComponent v-else :id =" customTabName" />
112
+ </template >
97
113
<div v-else-if =" PageComponent && currentTab" of-auto class =" h-[calc(100%-50px)]" >
98
114
<component :is =" PageComponent" :key =" `tab-${currentTab.name}`" />
99
115
</div >
0 commit comments