-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathcore.tsx
More file actions
192 lines (183 loc) · 4.84 KB
/
core.tsx
File metadata and controls
192 lines (183 loc) · 4.84 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
import { TanStackDevtoolsCore } from '@tanstack/devtools'
import {
createEffect,
createMemo,
createSignal,
onCleanup,
onMount,
} from 'solid-js'
import { Portal } from 'solid-js/web'
import type { JSX } from 'solid-js'
import type {
ClientEventBusConfig,
TanStackDevtoolsConfig,
TanStackDevtoolsPlugin,
TanStackDevtoolsPluginProps,
TanStackDevtoolsTheme,
} from '@tanstack/devtools'
type SolidPluginRender =
| JSX.Element
| ((
el: HTMLDivElement | HTMLHeadingElement,
props: TanStackDevtoolsPluginProps,
) => JSX.Element)
const convertRender = (
el: HTMLDivElement | HTMLHeadingElement,
Component: SolidPluginRender,
props: TanStackDevtoolsPluginProps,
) => (
<Portal mount={el}>
{typeof Component === 'function' ? Component(el, props) : 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 TriggerProps {
theme: TanStackDevtoolsTheme
}
export 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?: Omit<Partial<TanStackDevtoolsConfig>, 'customTrigger'> & {
/**
* An optional custom function to render the dev tools trigger component.
*/
customTrigger?:
| ((el: HTMLElement, props: TriggerProps) => JSX.Element)
| JSX.Element
}
/**
* Configuration for the TanStack Devtools client event bus.
*/
eventBusConfig?: ClientEventBusConfig
}
export default function SolidDevtoolsCore({
config,
plugins,
eventBusConfig,
}: TanStackDevtoolsInit) {
// Convert plugins to the format expected by the core
const pluginsMap = createMemo<Array<TanStackDevtoolsPlugin> | undefined>(() =>
plugins?.map((plugin) => ({
...plugin,
name:
typeof plugin.name === 'string'
? plugin.name
: // The check above confirms that `plugin.name` is of Render type
(el, props) =>
convertRender(el, plugin.name as SolidPluginRender, props),
render: (el: HTMLDivElement, props: TanStackDevtoolsPluginProps) =>
convertRender(el, plugin.render, props),
})),
)
const convertTrigger = (el: HTMLElement, props: TriggerProps) => {
const Trigger = config?.customTrigger
return (
<Portal mount={el}>
{typeof Trigger === 'function' ? Trigger(el, props) : Trigger}
</Portal>
)
}
const [devtools] = createSignal(
new TanStackDevtoolsCore({
config: {
...config,
customTrigger: config?.customTrigger
? (el, props) => convertTrigger(el, props)
: undefined,
},
eventBusConfig,
plugins: pluginsMap(),
}),
)
let devToolRef: HTMLDivElement | undefined
createEffect(() => {
devtools().setConfig({
config: {
...config,
customTrigger: config?.customTrigger
? (el, props) => convertTrigger(el, props)
: undefined,
},
})
})
// Update plugins when they change
createEffect(() => {
const currentPlugins = pluginsMap()
if (currentPlugins) {
devtools().setConfig({ plugins: currentPlugins })
}
})
onMount(() => {
if (devToolRef) {
devtools().mount(devToolRef)
onCleanup(() => {
devtools().unmount()
})
}
})
return <div style={{ position: 'absolute' }} ref={devToolRef} />
}