42 lines
1004 B
TypeScript
42 lines
1004 B
TypeScript
|
import { ComponentInternalInstance, formatComponentName } from './component'
|
||
|
|
||
|
let supported: boolean
|
||
|
let perf: any
|
||
|
|
||
|
export function startMeasure(
|
||
|
instance: ComponentInternalInstance,
|
||
|
type: string
|
||
|
) {
|
||
|
if (instance.appContext.config.performance && isSupported()) {
|
||
|
perf.mark(`vue-${type}-${instance.uid}`)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function endMeasure(instance: ComponentInternalInstance, type: string) {
|
||
|
if (instance.appContext.config.performance && isSupported()) {
|
||
|
const startTag = `vue-${type}-${instance.uid}`
|
||
|
const endTag = startTag + `:end`
|
||
|
perf.mark(endTag)
|
||
|
perf.measure(
|
||
|
`<${formatComponentName(instance.type)}> ${type}`,
|
||
|
startTag,
|
||
|
endTag
|
||
|
)
|
||
|
perf.clearMarks(startTag)
|
||
|
perf.clearMarks(endTag)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function isSupported() {
|
||
|
if (supported !== undefined) {
|
||
|
return supported
|
||
|
}
|
||
|
if (typeof window !== 'undefined' && window.performance) {
|
||
|
supported = true
|
||
|
perf = window.performance
|
||
|
} else {
|
||
|
supported = false
|
||
|
}
|
||
|
return supported
|
||
|
}
|