import { createEffect, createMemo, onCleanup, onMount } from 'solid-js' import { onlineManager, useQueryClient } from '@tanstack/solid-query' import { TanstackQueryDevtools } from '@tanstack/query-devtools' import type { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition, } from '@tanstack/query-devtools' import type { QueryClient } from '@tanstack/solid-query' interface DevtoolsOptions { /** * Set this true if you want the dev tools to default to being open */ initialIsOpen?: boolean /** * The position of the React Query logo to open and close the devtools panel. * 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' * Defaults to 'bottom-right'. */ buttonPosition?: DevtoolsButtonPosition /** * The position of the React Query devtools panel. * 'top' | 'bottom' | 'left' | 'right' * Defaults to 'bottom'. */ position?: DevtoolsPosition /** * Custom instance of QueryClient */ client?: QueryClient /** * Use this so you can define custom errors that can be shown in the devtools. */ errorTypes?: Array /** * Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles. */ styleNonce?: string /** * Use this so you can attach the devtool's styles to specific element in the DOM. */ shadowDOMTarget?: ShadowRoot } export default function SolidQueryDevtools(props: DevtoolsOptions) { const queryClient = useQueryClient() const client = createMemo(() => props.client || queryClient) let ref!: HTMLDivElement const devtools = new TanstackQueryDevtools({ client: client(), queryFlavor: 'Solid Query', version: '5', onlineManager, buttonPosition: props.buttonPosition, position: props.position, initialIsOpen: props.initialIsOpen, errorTypes: props.errorTypes, styleNonce: props.styleNonce, shadowDOMTarget: props.shadowDOMTarget, }) createEffect(() => { devtools.setClient(client()) }) createEffect(() => { const buttonPos = props.buttonPosition if (buttonPos) { devtools.setButtonPosition(buttonPos) } }) createEffect(() => { const pos = props.position if (pos) { devtools.setPosition(pos) } }) createEffect(() => { devtools.setInitialIsOpen(props.initialIsOpen || false) }) createEffect(() => { devtools.setErrorTypes(props.errorTypes || []) }) onMount(() => { devtools.mount(ref) onCleanup(() => devtools.unmount()) }) return
}