-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpanel.ts
More file actions
70 lines (61 loc) · 1.73 KB
/
panel.ts
File metadata and controls
70 lines (61 loc) · 1.73 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
import { defineComponent, h, onMounted, onUnmounted, ref } from 'vue'
import type { TanStackDevtoolsPluginProps } from '@tanstack/devtools'
import type { DefineComponent } from 'vue'
export interface DevtoolsPanelProps extends TanStackDevtoolsPluginProps {}
export function createVuePanel<
TComponentProps extends DevtoolsPanelProps,
TCoreDevtoolsClass extends {
mount: (el: HTMLElement, props?: TanStackDevtoolsPluginProps) => void
unmount: () => void
},
>(CoreClass: new (props: TComponentProps) => TCoreDevtoolsClass) {
const props = {
props: {
type: Object as () => DevtoolsPanelProps,
},
devtoolsProps: {
type: Object as () => TComponentProps,
},
}
const Panel = defineComponent({
props,
setup(config) {
const devToolRef = ref<HTMLElement | null>(null)
const devtools = ref<TCoreDevtoolsClass | null>(null)
onMounted(() => {
const instance = new CoreClass(config.devtoolsProps as TComponentProps)
devtools.value = instance
if (devToolRef.value) {
instance.mount(devToolRef.value, config.props)
}
})
onUnmounted(() => {
if (devToolRef.value && devtools.value) {
devtools.value.unmount()
}
})
return () => {
return h('div', {
style: { height: '100%' },
ref: devToolRef,
})
}
},
})
const NoOpPanel = defineComponent({
props,
setup() {
return () => null
},
})
return [Panel, NoOpPanel] as unknown as [
DefineComponent<{
theme?: DevtoolsPanelProps['theme']
devtoolsProps: TComponentProps
}>,
DefineComponent<{
theme?: DevtoolsPanelProps['theme']
devtoolsProps: TComponentProps
}>,
]
}