forked from vuejs/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.ts
More file actions
249 lines (227 loc) · 6.47 KB
/
custom.ts
File metadata and controls
249 lines (227 loc) · 6.47 KB
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
import type { customTypeEnums, InspectorState } from '../types'
import { ensurePropertyExists, getComponentName, getInstanceName } from '../utils'
import { processInstanceState } from './process'
import { escape, getSetupStateType, toRaw } from './util'
export function getFunctionDetails(func: Function) {
let string = ''
let matches: RegExpMatchArray | null = null
try {
string = Function.prototype.toString.call(func)
matches = String.prototype.match.call(string, /\([\s\S]*?\)/)
}
catch (e) {
// Func is probably a Proxy, which can break Function.prototype.toString()
}
// Trim any excess whitespace from the argument string
const match = matches && matches[0]
const args = typeof match === 'string'
? match
: '(?)'
const name = typeof func.name === 'string' ? func.name : ''
return {
_custom: {
type: 'function' satisfies customTypeEnums,
displayText: `<span style="opacity:.8;margin-right:5px;">function</span> <span style="white-space:nowrap;">${escape(name)}${args}</span>`,
tooltipText: string.trim() ? `<pre>${escape(string)}</pre>` : null,
},
}
}
export function getBigIntDetails(val: bigint | bigint) {
const stringifiedBigInt = BigInt.prototype.toString.call(val)
return {
_custom: {
type: 'bigint',
displayText: `BigInt(${stringifiedBigInt})`,
value: stringifiedBigInt,
},
}
}
export function getDateDetails(val: Date) {
const date = new Date(val.getTime())
date.setMinutes(date.getMinutes() - date.getTimezoneOffset())
return {
_custom: {
type: 'date',
displayText: Date.prototype.toString.call(val),
value: date.toISOString().slice(0, -1),
},
}
}
export function getMapDetails(val: Map<string, unknown>) {
const list: Record<string, unknown> = Object.fromEntries(val)
return {
_custom: {
type: 'map',
displayText: 'Map',
value: list,
readOnly: true,
fields: {
abstract: true,
},
},
}
}
export function getSetDetails(val: Set<unknown>) {
const list = Array.from(val)
return {
_custom: {
type: 'set' satisfies customTypeEnums,
displayText: `Set[${list.length}]`,
value: list,
readOnly: true,
},
}
}
function getCaughtGetters(store) {
const getters = {}
const origGetters = store.getters || {}
const keys = Object.keys(origGetters)
for (let i = 0; i < keys.length; i++) {
const key = keys[i]
Object.defineProperty(getters, key, {
enumerable: true,
get: () => {
try {
return origGetters[key]
}
catch (e) {
return e
}
},
})
}
return getters
}
function reduceStateList(list: InspectorState[]) {
if (!list.length)
return undefined
return list.reduce((map, item) => {
const key = (item.type || 'data') as string
const obj = map[key] = map[key] || {}
obj[item.key as string] = item.value
return map
}, {})
}
function namedNodeMapToObject(map: NamedNodeMap) {
const result: Record<string, unknown> = {}
const l = map.length
for (let i = 0; i < l; i++) {
const node = map.item(i)
result[node!.name] = node!.value
}
return result
}
export function getStoreDetails(store) {
return {
_custom: {
type: 'store' satisfies customTypeEnums,
displayText: 'Store',
value: {
state: store.state,
getters: getCaughtGetters(store),
},
fields: {
abstract: true,
},
},
}
}
// @TODO: fix circular dependency
export function getInstanceDetails(instance) {
if (instance._)
instance = instance._
const state = processInstanceState(instance)
return {
_custom: {
type: 'component',
id: instance.__VUE_DEVTOOLS_NEXT_UID__,
displayText: getInstanceName(instance),
tooltipText: 'Component instance',
value: reduceStateList(state),
fields: {
abstract: true,
},
},
}
}
export function getComponentDefinitionDetails(definition) {
let display = getComponentName(definition)
if (display) {
if (definition.name && definition.__file)
display += ` <span>(${definition.__file})</span>`
}
else {
display = '<i>Unknown Component</i>'
}
return {
_custom: {
type: 'component-definition' satisfies customTypeEnums,
displayText: display,
tooltipText: 'Component definition',
...definition.__file
? {
file: definition.__file,
}
: {},
},
}
}
export function getHTMLElementDetails(value: HTMLElement) {
try {
return {
_custom: {
type: 'HTMLElement' satisfies customTypeEnums,
displayText: `<span class="opacity-30"><</span><span class="text-blue-500">${value.tagName.toLowerCase()}</span><span class="opacity-30">></span>`,
value: namedNodeMapToObject(value.attributes),
},
}
}
catch (e) {
return {
_custom: {
type: 'HTMLElement' satisfies customTypeEnums,
displayText: `<span class="text-blue-500">${String(value)}</span>`,
},
}
}
}
/**
* - ObjectRefImpl, toRef({ foo: 'foo' }, 'foo'), `_value` is the actual value, (since 3.5.0)
* - GetterRefImpl, toRef(() => state.foo), `_value` is the actual value, (since 3.5.0)
* - RefImpl, ref('foo') / computed(() => 'foo'), `_value` is the actual value
*/
function tryGetRefValue(ref: { _value?: unknown } | { value?: unknown }) {
if (ensurePropertyExists<{ _value?: unknown }>(ref, '_value', true)) {
return ref._value
}
if (ensurePropertyExists(ref, 'value', true)) {
return ref.value
}
}
export function getObjectDetails(object: Record<string, any>) {
const info = getSetupStateType(object)
const isState = info.ref || info.computed || info.reactive
if (isState) {
const stateTypeName = info.computed ? 'Computed' : info.ref ? 'Ref' : info.reactive ? 'Reactive' : null
const value = toRaw(info.reactive ? object : tryGetRefValue(object))
const raw = ensurePropertyExists(object, 'effect')
? (object.effect as any)?.raw?.toString() || (object.effect as any)?.fn?.toString()
: null
return {
_custom: {
type: stateTypeName?.toLowerCase(),
stateTypeName,
value,
...raw ? { tooltipText: `<pre>${escape(raw)}</pre>` } : {},
},
}
}
if (ensurePropertyExists(object, '__asyncLoader') && typeof object.__asyncLoader === 'function') {
return {
_custom: {
type: 'component-definition' satisfies customTypeEnums,
display: 'Async component definition',
},
}
}
}