Defined in: packages/query-core/src/focusManager.ts:14
The FocusManager manages the focus state within TanStack Query.
It can be used to change the default event listeners or to manually change the focus state.
Subscribable<Listener>
protected listeners: Set<Listener>;Defined in: packages/query-core/src/subscribable.ts:2
Subscribable.listenershasListeners(): boolean;Defined in: packages/query-core/src/subscribable.ts:19
boolean
Subscribable.hasListenersisFocused(): boolean;Defined in: packages/query-core/src/focusManager.ts:128
isFocused can be used to get the current focus state.
boolean
onFocus(): void;Defined in: packages/query-core/src/focusManager.ts:118
onFocus notifies all subscribed listeners with the current focus state.
void
protected onSubscribe(): void;Defined in: packages/query-core/src/focusManager.ts:39
void
Subscribable.onSubscribeprotected onUnsubscribe(): void;Defined in: packages/query-core/src/focusManager.ts:45
void
Subscribable.onUnsubscribesetEventListener(setup): void;Defined in: packages/query-core/src/focusManager.ts:77
setEventListener can be used to set a custom event listener that will be used to determine the focus state. The provided setup function receives a setFocused callback: call it with a boolean to manually set the focus state, or with no arguments to re-evaluate the current focus state and notify subscribers.
SetupFn
void
import { focusManager } from '@tanstack/query-core'
focusManager.setEventListener((handleFocus) => {
const listener = () => handleFocus()
// Listen to visibilitychange
if (typeof window !== 'undefined' && window.addEventListener) {
window.addEventListener('visibilitychange', listener, false)
}
return () => {
// Be sure to unsubscribe if a new handler is set
window.removeEventListener('visibilitychange', listener)
}
})setFocused(focused?): void;Defined in: packages/query-core/src/focusManager.ts:107
setFocused can be used to manually set the focus state. Set undefined to fall back to the default focus check.
boolean
void
import { focusManager } from '@tanstack/query-core'
// Set focused
focusManager.setFocused(true)
// Set unfocused
focusManager.setFocused(false)
// Fallback to the default focus check
focusManager.setFocused(undefined)subscribe(listener): () => void;Defined in: packages/query-core/src/subscribable.ts:8
Listener
(): void;void
Subscribable.subscribe