File size: 12,142 Bytes
1e92f2d |
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 |
import {
DestroyRef,
ENVIRONMENT_INITIALIZER,
InjectionToken,
PLATFORM_ID,
computed,
effect,
inject,
} from '@angular/core'
import { QueryClient, noop, onlineManager } from '@tanstack/query-core'
import { isPlatformBrowser } from '@angular/common'
import { isDevMode } from './util/is-dev-mode/is-dev-mode'
import type { Provider } from '@angular/core'
import type {
DevtoolsButtonPosition,
DevtoolsErrorType,
DevtoolsPosition,
TanstackQueryDevtools,
} from '@tanstack/query-devtools'
/**
* Usually {@link provideTanStackQuery} is used once to set up TanStack Query and the
* {@link https://tanstack.com/query/latest/docs/reference/QueryClient|QueryClient}
* for the entire application. Internally it calls `provideQueryClient`.
* You can use `provideQueryClient` to provide a different `QueryClient` instance for a part
* of the application or for unit testing purposes.
* @param queryClient - A `QueryClient` instance, or an `InjectionToken` which provides a `QueryClient`.
* @returns a provider object that can be used to provide the `QueryClient` instance.
*/
export function provideQueryClient(
queryClient: QueryClient | InjectionToken<QueryClient>,
): Provider {
return {
provide: QueryClient,
useFactory: () => {
const client =
queryClient instanceof InjectionToken
? inject(queryClient)
: queryClient
// Unmount the query client on injector destroy
inject(DestroyRef).onDestroy(() => client.unmount())
client.mount()
return client
},
}
}
/**
* Sets up providers necessary to enable TanStack Query functionality for Angular applications.
*
* Allows to configure a `QueryClient` and optional features such as developer tools.
*
* **Example - standalone**
*
* ```ts
* import {
* provideTanStackQuery,
* QueryClient,
* } from '@tanstack/angular-query-experimental'
*
* bootstrapApplication(AppComponent, {
* providers: [provideTanStackQuery(new QueryClient())],
* })
* ```
*
* **Example - NgModule-based**
*
* ```ts
* import {
* provideTanStackQuery,
* QueryClient,
* } from '@tanstack/angular-query-experimental'
*
* @NgModule({
* declarations: [AppComponent],
* imports: [BrowserModule],
* providers: [provideTanStackQuery(new QueryClient())],
* bootstrap: [AppComponent],
* })
* export class AppModule {}
* ```
*
* You can also enable optional developer tools by adding `withDevtools`. By
* default the tools will then be loaded when your app is in development mode.
* ```ts
* import {
* provideTanStackQuery,
* withDevtools
* QueryClient,
* } from '@tanstack/angular-query-experimental'
*
* bootstrapApplication(AppComponent,
* {
* providers: [
* provideTanStackQuery(new QueryClient(), withDevtools())
* ]
* }
* )
* ```
*
* **Example: using an InjectionToken**
*
* ```ts
* export const MY_QUERY_CLIENT = new InjectionToken('', {
* factory: () => new QueryClient(),
* })
*
* // In a lazy loaded route or lazy loaded component's providers array:
* providers: [provideTanStackQuery(MY_QUERY_CLIENT)]
* ```
* @param queryClient - A `QueryClient` instance, or an `InjectionToken` which provides a `QueryClient`.
* @param features - Optional features to configure additional Query functionality.
* @returns A set of providers to set up TanStack Query.
* @see https://tanstack.com/query/v5/docs/framework/angular/quick-start
* @see withDevtools
*/
export function provideTanStackQuery(
queryClient: QueryClient | InjectionToken<QueryClient>,
...features: Array<QueryFeatures>
): Array<Provider> {
return [
provideQueryClient(queryClient),
features.map((feature) => feature.ɵproviders),
]
}
/**
* Sets up providers necessary to enable TanStack Query functionality for Angular applications.
*
* Allows to configure a `QueryClient`.
* @param queryClient - A `QueryClient` instance.
* @returns A set of providers to set up TanStack Query.
* @public
* @see https://tanstack.com/query/v5/docs/framework/angular/quick-start
* @deprecated Use `provideTanStackQuery` instead.
*/
export function provideAngularQuery(queryClient: QueryClient): Array<Provider> {
return provideTanStackQuery(queryClient)
}
/**
* Helper type to represent a Query feature.
*/
export interface QueryFeature<TFeatureKind extends QueryFeatureKind> {
ɵkind: TFeatureKind
ɵproviders: Array<Provider>
}
/**
* Helper function to create an object that represents a Query feature.
* @param kind -
* @param providers -
* @returns A Query feature.
*/
export function queryFeature<TFeatureKind extends QueryFeatureKind>(
kind: TFeatureKind,
providers: Array<Provider>,
): QueryFeature<TFeatureKind> {
return { ɵkind: kind, ɵproviders: providers }
}
/**
* A type alias that represents a feature which enables developer tools.
* The type is used to describe the return value of the `withDevtools` function.
* @public
* @see {@link withDevtools}
*/
export type DeveloperToolsFeature = QueryFeature<'DeveloperTools'>
/**
* A type alias that represents a feature which enables persistence.
* The type is used to describe the return value of the `withPersistQueryClient` function.
* @public
*/
export type PersistQueryClientFeature = QueryFeature<'PersistQueryClient'>
/**
* Options for configuring the TanStack Query devtools.
* @public
*/
export interface DevtoolsOptions {
/**
* Set this true if you want the devtools to default to being open
*/
initialIsOpen?: boolean
/**
* The position of the TanStack logo to open and close the devtools panel.
* `top-left` | `top-right` | `bottom-left` | `bottom-right` | `relative`
* Defaults to `bottom-right`.
*/
buttonPosition?: DevtoolsButtonPosition
/**
* The position of the TanStack 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<DevtoolsErrorType>
/**
* 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 a specific element in the DOM.
*/
shadowDOMTarget?: ShadowRoot
/**
* Whether the developer tools should load.
* - `auto`- (Default) Lazily loads devtools when in development mode. Skips loading in production mode.
* - `true`- Always load the devtools, regardless of the environment.
* - `false`- Never load the devtools, regardless of the environment.
*
* You can use `true` and `false` to override loading developer tools from an environment file.
* For example, a test environment might run in production mode but you may want to load developer tools.
*
* Additionally, you can use a signal in the callback to dynamically load the devtools based on a condition. For example,
* a signal created from a RxJS observable that listens for a keyboard shortcut.
*
* **Example**
* ```ts
* withDevtools(() => ({
* initialIsOpen: true,
* loadDevtools: inject(ExampleService).loadDevtools()
* }))
* ```
*/
loadDevtools?: 'auto' | boolean
}
/**
* Enables developer tools.
*
* **Example**
*
* ```ts
* export const appConfig: ApplicationConfig = {
* providers: [
* provideTanStackQuery(new QueryClient(), withDevtools())
* ]
* }
* ```
* By default the devtools will be loaded when Angular runs in development mode and rendered in `<body>`.
*
* If you need more control over when devtools are loaded, you can use the `loadDevtools` option. This is particularly useful if you want to load devtools based on environment configurations. For instance, you might have a test environment running in production mode but still require devtools to be available.
*
* If you need more control over where devtools are rendered, consider `injectDevtoolsPanel`. This allows rendering devtools inside your own devtools for example.
* @param withDevtoolsFn - A function that returns `DevtoolsOptions`.
* @returns A set of providers for use with `provideTanStackQuery`.
* @public
* @see {@link provideTanStackQuery}
* @see {@link DevtoolsOptions}
*/
export function withDevtools(
withDevtoolsFn?: () => DevtoolsOptions,
): DeveloperToolsFeature {
let providers: Array<Provider> = []
if (!isDevMode() && !withDevtoolsFn) {
providers = []
} else {
providers = [
{
// Do not use provideEnvironmentInitializer while Angular < v19 is supported
provide: ENVIRONMENT_INITIALIZER,
multi: true,
useFactory: () => {
if (!isPlatformBrowser(inject(PLATFORM_ID))) return noop
const injectedClient = inject(QueryClient, {
optional: true,
})
const destroyRef = inject(DestroyRef)
const options = computed(() => withDevtoolsFn?.() ?? {})
let devtools: TanstackQueryDevtools | null = null
let el: HTMLElement | null = null
const shouldLoadToolsSignal = computed(() => {
const { loadDevtools } = options()
return typeof loadDevtools === 'boolean'
? loadDevtools
: isDevMode()
})
const getResolvedQueryClient = () => {
const client = options().client ?? injectedClient
if (!client) {
throw new Error('No QueryClient found')
}
return client
}
const destroyDevtools = () => {
devtools?.unmount()
el?.remove()
devtools = null
}
return () =>
effect(() => {
const shouldLoadTools = shouldLoadToolsSignal()
const {
client,
position,
errorTypes,
buttonPosition,
initialIsOpen,
} = options()
if (devtools && !shouldLoadTools) {
destroyDevtools()
return
} else if (devtools && shouldLoadTools) {
client && devtools.setClient(client)
position && devtools.setPosition(position)
errorTypes && devtools.setErrorTypes(errorTypes)
buttonPosition && devtools.setButtonPosition(buttonPosition)
initialIsOpen && devtools.setInitialIsOpen(initialIsOpen)
return
} else if (!shouldLoadTools) {
return
}
el = document.body.appendChild(document.createElement('div'))
el.classList.add('tsqd-parent-container')
import('@tanstack/query-devtools').then((queryDevtools) => {
devtools = new queryDevtools.TanstackQueryDevtools({
...options(),
client: getResolvedQueryClient(),
queryFlavor: 'Angular Query',
version: '5',
onlineManager,
})
el && devtools.mount(el)
// Unmount the devtools on application destroy
destroyRef.onDestroy(destroyDevtools)
})
})
},
},
]
}
return queryFeature('DeveloperTools', providers)
}
/**
* A type alias that represents all Query features available for use with `provideTanStackQuery`.
* Features can be enabled by adding special functions to the `provideTanStackQuery` call.
* See documentation for each symbol to find corresponding function name. See also `provideTanStackQuery`
* documentation on how to use those functions.
* @public
* @see {@link provideTanStackQuery}
*/
export type QueryFeatures = DeveloperToolsFeature | PersistQueryClientFeature
export const queryFeatures = ['DeveloperTools', 'PersistQueryClient'] as const
export type QueryFeatureKind = (typeof queryFeatures)[number]
|