File size: 5,014 Bytes
4d70170 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
import type { BackendContext, DevtoolsBackend } from '@vue-devtools/app-backend-api'
import type { App, ComponentInstance } from '@vue/devtools-api'
import { BridgeSubscriptions, SharedData, raf } from '@vue-devtools/shared-utils'
import { addTimelineEvent } from './timeline'
import { getAppRecord } from './app'
import { getComponentId, sendComponentTreeData } from './component'
import { isSubscribed } from './util/subscriptions'
const markEndQueue = new Map<string, {
app: App
uid: number
instance: ComponentInstance
type: string
time: number
}>()
export async function performanceMarkStart(
app: App,
uid: number,
instance: ComponentInstance,
type: string,
time: number,
ctx: BackendContext,
) {
try {
if (!SharedData.performanceMonitoringEnabled) {
return
}
const appRecord = await getAppRecord(app, ctx)
if (!appRecord) {
return
}
const componentName = await appRecord.backend.api.getComponentName(instance)
const groupId = ctx.perfUniqueGroupId++
const groupKey = `${uid}-${type}`
appRecord.perfGroupIds.set(groupKey, { groupId, time })
await addTimelineEvent({
layerId: 'performance',
event: {
time,
data: {
component: componentName,
type,
measure: 'start',
},
title: componentName,
subtitle: type,
groupId,
},
}, app, ctx)
if (markEndQueue.has(groupKey)) {
const {
app,
uid,
instance,
type,
time,
} = markEndQueue.get(groupKey)
markEndQueue.delete(groupKey)
await performanceMarkEnd(
app,
uid,
instance,
type,
time,
ctx,
)
}
}
catch (e) {
if (SharedData.debugInfo) {
console.error(e)
}
}
}
export async function performanceMarkEnd(
app: App,
uid: number,
instance: ComponentInstance,
type: string,
time: number,
ctx: BackendContext,
) {
try {
if (!SharedData.performanceMonitoringEnabled) {
return
}
const appRecord = await getAppRecord(app, ctx)
if (!appRecord) {
return
}
const componentName = await appRecord.backend.api.getComponentName(instance)
const groupKey = `${uid}-${type}`
const groupInfo = appRecord.perfGroupIds.get(groupKey)
if (!groupInfo) {
markEndQueue.set(groupKey, {
app,
uid,
instance,
type,
time,
})
return
}
const { groupId, time: startTime } = groupInfo
const duration = time - startTime
await addTimelineEvent({
layerId: 'performance',
event: {
time,
data: {
component: componentName,
type,
measure: 'end',
duration: {
_custom: {
type: 'Duration',
value: duration,
display: `${duration} ms`,
},
},
},
title: componentName,
subtitle: type,
groupId,
},
}, app, ctx)
// Mark on component
const tooSlow = duration > 10
if (tooSlow || instance.__VUE_DEVTOOLS_SLOW__) {
let change = false
if (tooSlow && !instance.__VUE_DEVTOOLS_SLOW__) {
instance.__VUE_DEVTOOLS_SLOW__ = {
duration: null,
measures: {},
}
}
const data = instance.__VUE_DEVTOOLS_SLOW__
if (tooSlow && (data.duration == null || data.duration < duration)) {
data.duration = duration
change = true
}
if (data.measures[type] == null || data.measures[type] < duration) {
data.measures[type] = duration
change = true
}
if (change) {
// Update component tree
const id = await getComponentId(app, uid, instance, ctx)
if (isSubscribed(BridgeSubscriptions.COMPONENT_TREE, id)) {
raf(() => {
sendComponentTreeData(appRecord, id, ctx.currentAppRecord.componentFilter, null, false, ctx)
})
}
}
}
}
catch (e) {
if (SharedData.debugInfo) {
console.error(e)
}
}
}
export function handleAddPerformanceTag(backend: DevtoolsBackend, _ctx: BackendContext) {
backend.api.on.visitComponentTree((payload) => {
if (payload.componentInstance.__VUE_DEVTOOLS_SLOW__) {
const { duration, measures } = payload.componentInstance.__VUE_DEVTOOLS_SLOW__
let tooltip = '<div class="grid grid-cols-2 gap-2 font-mono text-xs">'
for (const type in measures) {
const d = measures[type]
tooltip += `<div>${type}</div><div class="text-right text-black rounded px-1 ${d > 30 ? 'bg-red-400' : d > 10 ? 'bg-yellow-400' : 'bg-green-400'}">${Math.round(d * 1000) / 1000} ms</div>`
}
tooltip += '</div>'
payload.treeNode.tags.push({
backgroundColor: duration > 30 ? 0xF87171 : 0xFBBF24,
textColor: 0x000000,
label: `${Math.round(duration * 1000) / 1000} ms`,
tooltip,
})
}
})
}
|