Skip to content

Commit 9ba0b75

Browse files
authoredJun 28, 2024··
fix(client): customInspectorView on splitScreen (#490)
1 parent 7583bea commit 9ba0b75

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed
 

‎packages/client/src/components/common/SplitScreen.vue

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang="ts">
22
import { VueButton, VueCard, VueDropdown, vTooltip } from '@vue/devtools-ui'
33
import { CustomTab } from '@vue/devtools-kit'
4+
import { CustomInspector as CustomInspectorComponent } from '@vue/devtools-applet'
45
import { ModuleBuiltinTab } from '~/types'
56
67
function close() {
@@ -13,6 +14,7 @@ const router = useRouter()
1314
const route = useRoute()
1415
const PageComponent = shallowRef()
1516
const customTabName = ref<string | null>(null)
17+
const customTabType = ref<'custom-tab' | 'custom-inspector' | null>(null)
1618
1719
function isMatchedWithRoute(tab?: typeof flattenedTabs['value'][number]) {
1820
const routeTabName = getRouteTabName()
@@ -31,11 +33,16 @@ const mainViewName = computed(() =>
3133
)
3234
3335
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
3946
}
4047
4148
watch(
@@ -46,6 +53,12 @@ watch(
4653
// check if is a custom tab
4754
if ((tab as CustomTab).view) {
4855
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'
4962
return
5063
}
5164
customTabName.value = null
@@ -93,7 +106,10 @@ const showGridPanel = ref(false)
93106
<div i-carbon:side-panel-open />
94107
</button>
95108
</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>
97113
<div v-else-if="PageComponent && currentTab" of-auto class="h-[calc(100%-50px)]">
98114
<component :is="PageComponent" :key="`tab-${currentTab.name}`" />
99115
</div>

‎packages/client/src/components/common/TabIcon.vue

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ const props = withDefaults(defineProps<{
1313
1414
const _icon = ref<string | undefined>(props.icon)
1515
16+
watch(() => props.icon, (icon) => {
17+
_icon.value = icon
18+
})
19+
1620
function onLoadError() {
1721
_icon.value = props.fallback
1822
}

0 commit comments

Comments
 (0)
Please sign in to comment.