-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathdevtools.tsx
More file actions
130 lines (126 loc) · 3.37 KB
/
devtools.tsx
File metadata and controls
130 lines (126 loc) · 3.37 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
import { TanStackDevtoolsCore } from '@tanstack/devtools'
import { createEffect, createSignal, onCleanup, onMount } from 'solid-js'
import { Portal } from 'solid-js/web'
import type { JSX } from 'solid-js'
import type {
ClientEventBusConfig,
TanStackDevtoolsConfig,
TanStackDevtoolsPlugin,
} from '@tanstack/devtools'
type SolidPluginRender = JSX.Element | (() => JSX.Element)
const convertRender = (
el: HTMLDivElement | HTMLHeadingElement,
Component: SolidPluginRender,
) => (
<Portal mount={el}>
{typeof Component === 'function' ? <Component /> : Component}
</Portal>
)
export type TanStackDevtoolsSolidPlugin = Omit<
TanStackDevtoolsPlugin,
'render' | 'name'
> & {
/**
* The render function can be a SolidJS element or a function that returns a SolidJS element.
* If it's a function, it will be called to render the plugin, otherwise it will be rendered directly.
*
* Example:
* ```ts
* {
* render: () => <CustomPluginComponent />,
* }
* ```
* or
* ```ts
* {
* render: <CustomPluginComponent />,
* }
* ```
*/
render: SolidPluginRender
/**
* Name to be displayed in the devtools UI.
* If a string, it will be used as the plugin name.
* If a function, it will be called with the mount element.
*
* Example:
* ```ts
* {
* name: "Your Plugin",
* render: () => <CustomPluginComponent />,
* }
* ```
* or
* ```ts
* {
* name: <h1>Your Plugin title</h1>,
* render: () => <CustomPluginComponent />,
* }
* ```
*/
name: string | SolidPluginRender
}
interface TanstackDevtoolsInit {
/**
* Array of plugins to be used in the devtools.
* Each plugin should have a `render` function that returns a React element or a function
*
* Example:
* ```jsx
* <TanstackDevtools
* plugins={[
* {
* id: "your-plugin-id",
* name: "Your Plugin",
* render: <CustomPluginComponent />,
* }
* ]}
* />
* ```
*/
plugins?: Array<TanStackDevtoolsSolidPlugin>
/**
* Configuration for the devtools shell. These configuration options are used to set the
* initial state of the devtools when it is started for the first time. Afterwards,
* the settings are persisted in local storage and changed through the settings panel.
*/
config?: Partial<TanStackDevtoolsConfig>
/**
* Configuration for the TanStack Devtools client event bus.
*/
eventBusConfig?: ClientEventBusConfig
}
export const TanstackDevtools = ({
config,
plugins,
eventBusConfig,
}: TanstackDevtoolsInit) => {
const [devtools] = createSignal(
new TanStackDevtoolsCore({
config,
eventBusConfig,
plugins: plugins?.map((plugin) => ({
...plugin,
name:
typeof plugin.name === 'string'
? plugin.name
: // The check above confirms that `plugin.name` is of Render type
(el) => convertRender(el, plugin.name as SolidPluginRender),
render: (el: HTMLDivElement) => convertRender(el, plugin.render),
})),
}),
)
let devToolRef: HTMLDivElement | undefined
createEffect(() => {
devtools().setConfig({ config })
})
onMount(() => {
if (devToolRef) {
devtools().mount(devToolRef)
onCleanup(() => {
devtools().unmount()
})
}
})
return <div style={{ height: '100%' }} ref={devToolRef} />
}