@@ -2,6 +2,7 @@ import type { DevtoolsContext } from '../../ctx'
2
2
import type { App , ComponentBounds , ComponentInstance , CustomInspectorOptions , DevToolsPlugin , TimelineEventOptions , TimelineLayerOptions } from '../../types'
3
3
import { getPluginSettings , initPluginSettings } from '../../core/plugin/plugin-settings'
4
4
5
+ import { devtoolsState } from '../../ctx'
5
6
import { DevToolsContextHookKeys , DevToolsV6PluginAPIHookKeys , DevToolsV6PluginAPIHookPayloads , DevToolsV6PluginAPIHooks } from '../../ctx/hook'
6
7
import { getActiveInspectors } from '../../ctx/inspector'
7
8
import { devtoolsHooks } from '../../hook'
@@ -56,6 +57,9 @@ export class DevToolsV6PluginAPI {
56
57
57
58
// component inspector
58
59
notifyComponentUpdate ( instance ?: ComponentInstance ) {
60
+ if ( devtoolsState . highPerfModeEnabled ) {
61
+ return
62
+ }
59
63
const inspector = getActiveInspectors ( ) . find ( i => i . packageName === this . plugin . descriptor . packageName )
60
64
if ( inspector ?. id ) {
61
65
// @TODO : handler
@@ -85,10 +89,16 @@ export class DevToolsV6PluginAPI {
85
89
}
86
90
87
91
sendInspectorTree ( inspectorId : string ) {
92
+ if ( devtoolsState . highPerfModeEnabled ) {
93
+ return
94
+ }
88
95
this . hooks . callHook ( DevToolsContextHookKeys . SEND_INSPECTOR_TREE , { inspectorId, plugin : this . plugin } )
89
96
}
90
97
91
98
sendInspectorState ( inspectorId : string ) {
99
+ if ( devtoolsState . highPerfModeEnabled ) {
100
+ return
101
+ }
92
102
this . hooks . callHook ( DevToolsContextHookKeys . SEND_INSPECTOR_STATE , { inspectorId, plugin : this . plugin } )
93
103
}
94
104
@@ -102,6 +112,9 @@ export class DevToolsV6PluginAPI {
102
112
103
113
// timeline
104
114
now ( ) : number {
115
+ if ( devtoolsState . highPerfModeEnabled ) {
116
+ return 0
117
+ }
105
118
return Date . now ( )
106
119
}
107
120
@@ -110,6 +123,9 @@ export class DevToolsV6PluginAPI {
110
123
}
111
124
112
125
addTimelineEvent ( options : TimelineEventOptions ) {
126
+ if ( devtoolsState . highPerfModeEnabled ) {
127
+ return
128
+ }
113
129
this . hooks . callHook ( DevToolsContextHookKeys . TIMELINE_EVENT_ADDED , { options, plugin : this . plugin } )
114
130
}
115
131
0 commit comments