Skip to content

Commit ffa9367

Browse files
authoredNov 11, 2024··
perf: lazy register devtools plugins and reduce unnecessary hook calls (#693)
1 parent 9e8ae0e commit ffa9367

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed
 

‎packages/devtools-kit/src/api/v6/index.ts

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { DevtoolsContext } from '../../ctx'
22
import type { App, ComponentBounds, ComponentInstance, CustomInspectorOptions, DevToolsPlugin, TimelineEventOptions, TimelineLayerOptions } from '../../types'
33
import { getPluginSettings, initPluginSettings } from '../../core/plugin/plugin-settings'
44

5+
import { devtoolsState } from '../../ctx'
56
import { DevToolsContextHookKeys, DevToolsV6PluginAPIHookKeys, DevToolsV6PluginAPIHookPayloads, DevToolsV6PluginAPIHooks } from '../../ctx/hook'
67
import { getActiveInspectors } from '../../ctx/inspector'
78
import { devtoolsHooks } from '../../hook'
@@ -56,6 +57,9 @@ export class DevToolsV6PluginAPI {
5657

5758
// component inspector
5859
notifyComponentUpdate(instance?: ComponentInstance) {
60+
if (devtoolsState.highPerfModeEnabled) {
61+
return
62+
}
5963
const inspector = getActiveInspectors().find(i => i.packageName === this.plugin.descriptor.packageName)
6064
if (inspector?.id) {
6165
// @TODO: handler
@@ -85,10 +89,16 @@ export class DevToolsV6PluginAPI {
8589
}
8690

8791
sendInspectorTree(inspectorId: string) {
92+
if (devtoolsState.highPerfModeEnabled) {
93+
return
94+
}
8895
this.hooks.callHook(DevToolsContextHookKeys.SEND_INSPECTOR_TREE, { inspectorId, plugin: this.plugin })
8996
}
9097

9198
sendInspectorState(inspectorId: string) {
99+
if (devtoolsState.highPerfModeEnabled) {
100+
return
101+
}
92102
this.hooks.callHook(DevToolsContextHookKeys.SEND_INSPECTOR_STATE, { inspectorId, plugin: this.plugin })
93103
}
94104

@@ -102,6 +112,9 @@ export class DevToolsV6PluginAPI {
102112

103113
// timeline
104114
now(): number {
115+
if (devtoolsState.highPerfModeEnabled) {
116+
return 0
117+
}
105118
return Date.now()
106119
}
107120

@@ -110,6 +123,9 @@ export class DevToolsV6PluginAPI {
110123
}
111124

112125
addTimelineEvent(options: TimelineEventOptions) {
126+
if (devtoolsState.highPerfModeEnabled) {
127+
return
128+
}
113129
this.hooks.callHook(DevToolsContextHookKeys.TIMELINE_EVENT_ADDED, { options, plugin: this.plugin })
114130
}
115131

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
import { devtoolsState } from '../../ctx/state'
1+
import { activeAppRecord, devtoolsState } from '../../ctx/state'
2+
import { registerDevToolsPlugin } from '../plugin'
23

34
export function toggleHighPerfMode(state?: boolean) {
45
devtoolsState.highPerfModeEnabled = state ?? !devtoolsState.highPerfModeEnabled
6+
if (!state && activeAppRecord.value) {
7+
registerDevToolsPlugin(activeAppRecord.value.app)
8+
}
59
}

‎packages/devtools-kit/src/core/plugin/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { target } from '@vue/devtools-shared'
22
import { DevToolsPluginAPI } from '../../api'
33
import { devtoolsContext, devtoolsPluginBuffer } from '../../ctx'
4+
import { devtoolsState } from '../../ctx/state'
45
import { hook } from '../../hook'
56
import { App, PluginDescriptor, PluginSetupFunction } from '../../types'
67

@@ -40,7 +41,7 @@ export function removeRegisteredPluginApp(app: App) {
4041
}
4142

4243
export function registerDevToolsPlugin(app: App) {
43-
if (target.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.has(app))
44+
if (target.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.has(app) || devtoolsState.highPerfModeEnabled)
4445
return
4546

4647
target.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.add(app)

0 commit comments

Comments
 (0)
Please sign in to comment.