Skip to content

Commit 25ef3b5

Browse files
committedJun 6, 2024
feat(client): unhighlight component when unmounted for custom inspector
1 parent 2a772a8 commit 25ef3b5

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed
 

‎packages/applet/src/modules/custom-inspector/index.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { computed, ref, watch } from 'vue'
2+
import { computed, onUnmounted, ref, watch } from 'vue'
33
import { onRpcConnected, rpc } from '@vue/devtools-core'
44
55
import Home from './components/Home.vue'
@@ -69,6 +69,10 @@ watch(() => props.id, () => {
6969
}, {
7070
immediate: true,
7171
})
72+
73+
onUnmounted(() => {
74+
rpc.value.unhighlight()
75+
})
7276
</script>
7377

7478
<template>

‎packages/core/src/rpc/global.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DevToolsMessagingHookKeys, devtools, devtoolsRouter, devtoolsRouterInfo, getActiveInspectors, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getRpcClient, getRpcServer, stringify, toggleClientConnected } from '@vue/devtools-kit'
1+
import { DevToolsContextHookKeys, DevToolsMessagingHookKeys, devtools, devtoolsRouter, devtoolsRouterInfo, getActiveInspectors, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getRpcClient, getRpcServer, stringify, toggleClientConnected } from '@vue/devtools-kit'
22
import { createHooks } from 'hookable'
33
import type { DevToolsV6PluginAPIHookKeys, DevToolsV6PluginAPIHookPayloads, OpenInEditorOptions } from '@vue/devtools-kit'
44

@@ -142,6 +142,9 @@ export const functions = {
142142
getInspectorInfo(id: string) {
143143
return getInspectorInfo(id)
144144
},
145+
unhighlight() {
146+
devtools.ctx.hooks.callHook(DevToolsContextHookKeys.COMPONENT_UNHIGHLIGHT)
147+
},
145148
// listen to devtools server events
146149
initDevToolsServerListener() {
147150
const rpcServer = getRpcServer<RPCFunctions>()

0 commit comments

Comments
 (0)
Please sign in to comment.