-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.ts
More file actions
59 lines (54 loc) · 1.2 KB
/
Copy pathdebug.ts
File metadata and controls
59 lines (54 loc) · 1.2 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
import {
effectScope,
getCurrentInstance,
getCurrentScope,
onScopeDispose,
watch,
} from 'vue'
import { remove, upsert } from './registry'
import type { VuebuggerEntry } from './types'
let getUid = () => Math.random().toString(36).slice(2, 9)
export const setUidGenerator = (fn: () => string) => {
getUid = fn
}
export const debug = <T extends Record<string, any>>(
groupId: VuebuggerEntry['groupId'],
state: T,
): T => {
if (!import.meta.env?.DEV) return state
const instance = getCurrentInstance()
const componentName =
instance?.type.name ||
instance?.type.__name ||
'No component'
const uid = `${componentName}/${groupId}-${getUid()}`
const scope = getCurrentScope() ?? effectScope()
scope.run(() => {
onScopeDispose(() =>
remove({
groupId,
uid,
componentName,
componentInstance: instance,
debugState: state,
}),
)
watch(
() => state,
(value, _) => {
upsert({
groupId,
uid,
componentName,
componentInstance: instance,
debugState: value,
})
},
{
immediate: true,
deep: true,
},
)
})
return state
}