File size: 11,173 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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
import type { AppRecord, BackendContext, DevtoolsApi } from '@vue-devtools/app-backend-api'
import { classify, kebabize } from '@vue-devtools/shared-utils'
import type { ComponentInstance, ComponentTreeNode } from '@vue/devtools-api'
import { getRootElementsFromComponentInstance } from './el'
import { applyPerfHooks } from './perf.js'
import { applyTrackingUpdateHook } from './update-tracking.js'
import { getInstanceName, getRenderKey, getUniqueId, isBeingDestroyed } from './util'
let instanceMap: Map<any, any> = new Map()
let functionalVnodeMap: Map<any, any> = new Map()
export function getInstanceMap() {
return instanceMap
}
export function getFunctionalVnodeMap() {
return functionalVnodeMap
}
let appRecord: AppRecord
let api: DevtoolsApi
const consoleBoundInstances = Array(5)
let filter = ''
let recursively = false
const functionalIds = new Map()
// Dedupe instances
// Some instances may be both on a component and on a child abstract/functional component
const captureIds = new Map()
export async function walkTree(instance, pFilter: string, pRecursively: boolean, api: DevtoolsApi, ctx: BackendContext): Promise<ComponentTreeNode[]> {
initCtx(api, ctx)
filter = pFilter
recursively = pRecursively
functionalIds.clear()
captureIds.clear()
const result: ComponentTreeNode[] = flatten(await findQualifiedChildren(instance))
return result
}
export function getComponentParents(instance, api: DevtoolsApi, ctx: BackendContext) {
initCtx(api, ctx)
const captureIds = new Map()
const captureId = (vm) => {
const id = vm.__VUE_DEVTOOLS_UID__ = getUniqueId(vm)
if (captureIds.has(id)) {
return
}
captureIds.set(id, undefined)
if (vm.__VUE_DEVTOOLS_FUNCTIONAL_LEGACY__) {
markFunctional(id, vm.vnode)
}
else {
mark(vm)
}
}
const parents = []
captureId(instance)
let parent = instance
// eslint-disable-next-line no-cond-assign
while ((parent = parent.$parent)) {
captureId(parent)
parents.push(parent)
}
return parents
}
function initCtx(_api: DevtoolsApi, ctx: BackendContext) {
appRecord = ctx.currentAppRecord
api = _api
if (!appRecord.meta) {
appRecord.meta = {}
}
if (!appRecord.meta.instanceMap) {
appRecord.meta.instanceMap = new Map()
}
instanceMap = appRecord.meta.instanceMap
if (!appRecord.meta.functionalVnodeMap) {
appRecord.meta.functionalVnodeMap = new Map()
}
functionalVnodeMap = appRecord.meta.functionalVnodeMap
}
/**
* Iterate through an array of instances and flatten it into
* an array of qualified instances. This is a depth-first
* traversal - e.g. if an instance is not matched, we will
* recursively go deeper until a qualified child is found.
*/
function findQualifiedChildrenFromList(instances: any[]): Promise<ComponentTreeNode[]> {
instances = instances
.filter(child => !isBeingDestroyed(child))
return Promise.all(!filter
? instances.map(capture)
: Array.prototype.concat.apply([], instances.map(findQualifiedChildren)))
}
/**
* Find qualified children from a single instance.
* If the instance itself is qualified, just return itself.
* This is ok because [].concat works in both cases.
*/
async function findQualifiedChildren(instance): Promise<ComponentTreeNode[]> {
if (isQualified(instance)) {
return [await capture(instance)]
}
else {
let children = await findQualifiedChildrenFromList(instance.$children)
// Find functional components in recursively in non-functional vnodes.
if (instance._vnode && instance._vnode.children) {
const list = await Promise.all(flatten<Promise<ComponentTreeNode>>((instance._vnode.children as any[]).filter(child => !child.componentInstance).map(captureChild)))
// Filter qualified children.
const additionalChildren = list.filter(instance => isQualified(instance))
children = children.concat(additionalChildren)
}
return children
}
}
/**
* Get children from a component instance.
*/
function getInternalInstanceChildren(instance): any[] {
if (instance.$children) {
return instance.$children
}
return []
}
/**
* Check if an instance is qualified.
*/
function isQualified(instance): boolean {
const name = getInstanceName(instance)
return classify(name).toLowerCase().includes(filter)
|| kebabize(name).toLowerCase().includes(filter)
}
function flatten<T>(items: any[]): T[] {
const r = items.reduce((acc, item) => {
if (Array.isArray(item)) {
let children = []
for (const i of item) {
if (Array.isArray(i)) {
children = children.concat(flatten(i))
}
else {
children.push(i)
}
}
acc.push(...children)
}
else if (item) {
acc.push(item)
}
return acc
}, [] as T[])
return r
}
function captureChild(child): Promise<ComponentTreeNode[] | ComponentTreeNode> {
if (child.fnContext && !child.componentInstance) {
return capture(child)
}
else if (child.componentInstance) {
if (!isBeingDestroyed(child.componentInstance)) {
return capture(child.componentInstance)
}
}
else if (child.children) {
return Promise.all(flatten<Promise<ComponentTreeNode>>(child.children.map(captureChild)))
}
}
/**
* Capture the meta information of an instance. (recursive)
*/
async function capture(instance, _index?: number, _list?: any[]): Promise<ComponentTreeNode> {
if (instance.__VUE_DEVTOOLS_FUNCTIONAL_LEGACY__) {
instance = instance.vnode
}
if (instance.$options && instance.$options.abstract && instance._vnode && instance._vnode.componentInstance) {
instance = instance._vnode.componentInstance
}
if (instance.$options?.devtools?.hide) {
return
}
// Functional component.
if (instance.fnContext && !instance.componentInstance) {
const contextUid = instance.fnContext.__VUE_DEVTOOLS_UID__
let id = functionalIds.get(contextUid)
if (id == null) {
id = 0
}
else {
id++
}
functionalIds.set(contextUid, id)
const functionalId = `${contextUid}:functional:${id}`
markFunctional(functionalId, instance)
const childrenPromise = (instance.children
? instance.children.map(
child => child.fnContext
? captureChild(child)
: child.componentInstance
? capture(child.componentInstance)
: undefined,
)
// router-view has both fnContext and componentInstance on vnode.
: instance.componentInstance ? [capture(instance.componentInstance)] : [])
// await all childrenCapture to-be resolved
const children = (await Promise.all(childrenPromise)).filter(Boolean) as ComponentTreeNode[]
const treeNode = {
uid: functionalId,
id: functionalId,
tags: [
{
label: 'functional',
textColor: 0x555555,
backgroundColor: 0xEEEEEE,
},
],
name: getInstanceName(instance),
renderKey: getRenderKey(instance.key),
children,
hasChildren: !!children.length,
inactive: false,
isFragment: false, // TODO: Check what is it for.
autoOpen: recursively,
}
return api.visitComponentTree(
instance,
treeNode,
filter,
appRecord?.options?.app,
)
}
// instance._uid is not reliable in devtools as there
// may be 2 roots with same _uid which causes unexpected
// behaviour
instance.__VUE_DEVTOOLS_UID__ = getUniqueId(instance, appRecord)
// Dedupe
if (captureIds.has(instance.__VUE_DEVTOOLS_UID__)) {
return
}
else {
captureIds.set(instance.__VUE_DEVTOOLS_UID__, undefined)
}
mark(instance)
const name = getInstanceName(instance)
const children = (await Promise.all((await getInternalInstanceChildren(instance))
.filter(child => !isBeingDestroyed(child))
.map(capture))).filter(Boolean)
const ret: ComponentTreeNode = {
uid: instance._uid,
id: instance.__VUE_DEVTOOLS_UID__,
name,
renderKey: getRenderKey(instance.$vnode ? instance.$vnode.key : null),
inactive: !!instance._inactive,
isFragment: !!instance._isFragment,
children,
hasChildren: !!children.length,
autoOpen: recursively,
tags: [],
meta: {},
}
if (instance._vnode && instance._vnode.children) {
const vnodeChildren = await Promise.all(flatten(instance._vnode.children.map(captureChild)))
ret.children = ret.children.concat(
flatten<any>(vnodeChildren).filter(Boolean),
)
ret.hasChildren = !!ret.children.length
}
// ensure correct ordering
const rootElements = getRootElementsFromComponentInstance(instance)
const firstElement = rootElements[0]
if (firstElement?.parentElement) {
const parentInstance = instance.$parent
const parentRootElements = parentInstance ? getRootElementsFromComponentInstance(parentInstance) : []
let el = firstElement
const indexList = []
do {
indexList.push(Array.from(el.parentElement.childNodes).indexOf(el))
el = el.parentElement
} while (el.parentElement && parentRootElements.length && !parentRootElements.includes(el))
ret.domOrder = indexList.reverse()
}
else {
ret.domOrder = [-1]
}
// check if instance is available in console
const consoleId = consoleBoundInstances.indexOf(instance.__VUE_DEVTOOLS_UID__)
ret.consoleId = consoleId > -1 ? `$vm${consoleId}` : null
// check router view
const isRouterView2 = instance.$vnode?.data?.routerView
if (instance._routerView || isRouterView2) {
ret.isRouterView = true
if (!instance._inactive && instance.$route) {
const matched = instance.$route.matched
const depth = isRouterView2
? instance.$vnode.data.routerViewDepth
: instance._routerView.depth
ret.meta.matchedRouteSegment
= matched
&& matched[depth]
&& (isRouterView2 ? matched[depth].path : matched[depth].handler.path)
}
ret.tags.push({
label: `router-view${ret.meta.matchedRouteSegment ? `: ${ret.meta.matchedRouteSegment}` : ''}`,
textColor: 0x000000,
backgroundColor: 0xFF8344,
})
}
return api.visitComponentTree(
instance,
ret,
filter,
appRecord?.options?.app,
)
}
/**
* Mark an instance as captured and store it in the instance map.
*
* @param {Vue} instance
*/
function mark(instance) {
const refId = instance.__VUE_DEVTOOLS_UID__
if (!instanceMap.has(refId)) {
instanceMap.set(refId, instance)
appRecord.instanceMap.set(refId, instance)
instance.$on('hook:beforeDestroy', () => {
instanceMap.delete(refId)
})
applyPerfHooks(api, instance, appRecord.options.app)
applyTrackingUpdateHook(api, instance)
}
}
function markFunctional(id, vnode) {
const refId = vnode.fnContext.__VUE_DEVTOOLS_UID__
if (!functionalVnodeMap.has(refId)) {
functionalVnodeMap.set(refId, {})
vnode.fnContext.$on('hook:beforeDestroy', () => {
functionalVnodeMap.delete(refId)
})
}
functionalVnodeMap.get(refId)[id] = vnode
appRecord.instanceMap.set(id, {
__VUE_DEVTOOLS_UID__: id,
__VUE_DEVTOOLS_FUNCTIONAL_LEGACY__: true,
vnode,
} as unknown as ComponentInstance)
}
|