-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathdevtools.tsx
More file actions
165 lines (158 loc) · 4.49 KB
/
devtools.tsx
File metadata and controls
165 lines (158 loc) · 4.49 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
import React, { useEffect, useRef, useState } from 'react'
import {
PLUGIN_CONTAINER_ID,
PLUGIN_TITLE_CONTAINER_ID,
TanStackDevtoolsCore,
} from '@tanstack/devtools'
import { createPortal } from 'react-dom'
import type { JSX, ReactElement } from 'react'
import type {
ClientEventBusConfig,
TanStackDevtoolsConfig,
TanStackDevtoolsPlugin,
} from '@tanstack/devtools'
type PluginRender = JSX.Element | (() => JSX.Element)
export type TanStackDevtoolsReactPlugin = Omit<
TanStackDevtoolsPlugin,
'render' | 'name'
> & {
/**
* The render function can be a React element or a function that returns a React element.
* If it's a function, it will be called to render the plugin, otherwise it will be rendered directly.
*
* Example:
* ```jsx
* {
* render: () => <CustomPluginComponent />,
* }
* ```
* or
* ```jsx
* {
* render: <CustomPluginComponent />,
* }
* ```
*/
render: PluginRender
/**
* 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:
* ```jsx
* {
* name: "Your Plugin",
* render: () => <CustomPluginComponent />,
* }
* ```
* or
* ```jsx
* {
* name: <h1>Your Plugin title</h1>,
* render: () => <CustomPluginComponent />,
* }
* ```
*/
name: string | PluginRender
}
export interface TanStackDevtoolsReactInit {
/**
* 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<TanStackDevtoolsReactPlugin>
/**
* 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
}
const convertRender = (
Component: PluginRender,
setComponent: React.Dispatch<React.SetStateAction<JSX.Element | null>>,
) => {
setComponent(typeof Component === 'function' ? Component() : Component)
}
export const TanStackDevtools = ({
plugins,
config,
eventBusConfig,
}: TanStackDevtoolsReactInit): ReactElement | null => {
const devToolRef = useRef<HTMLDivElement>(null)
const [pluginContainer, setPluginContainer] = useState<HTMLElement | null>(
null,
)
const [titleContainer, setTitleContainer] = useState<HTMLElement | null>(null)
const [PluginComponent, setPluginComponent] = useState<JSX.Element | null>(
null,
)
const [TitleComponent, setTitleComponent] = useState<JSX.Element | null>(null)
const [devtools] = useState(
() =>
new TanStackDevtoolsCore({
config,
eventBusConfig,
plugins: plugins?.map((plugin) => {
return {
...plugin,
name:
typeof plugin.name === 'string'
? plugin.name
: // The check above confirms that `plugin.name` is of Render type
() => {
setTitleContainer(
document.getElementById(PLUGIN_TITLE_CONTAINER_ID) ||
null,
)
convertRender(
plugin.name as PluginRender,
setTitleComponent,
)
},
render: () => {
setPluginContainer(
document.getElementById(PLUGIN_CONTAINER_ID) || null,
)
convertRender(plugin.render, setPluginComponent)
},
}
}),
}),
)
useEffect(() => {
if (devToolRef.current) {
devtools.mount(devToolRef.current)
}
return () => devtools.unmount()
}, [devtools])
return (
<>
<div style={{ position: 'absolute' }} ref={devToolRef} />
{pluginContainer && PluginComponent
? createPortal(<>{PluginComponent}</>, pluginContainer)
: null}
{titleContainer && TitleComponent
? createPortal(<>{TitleComponent}</>, titleContainer)
: null}
</>
)
}