-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
fix(devtools): Moved DevTool Instance specific settings to a context to have proper isolation #10006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gk9848970
wants to merge
11
commits into
TanStack:main
Choose a base branch
from
gk9848970:fix_isolation_of_devtools
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+166
−47
Open
fix(devtools): Moved DevTool Instance specific settings to a context to have proper isolation #10006
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9a023cf
Moved DevTool Instance specific settings to a context
gaurav-dt 520c0be
Added change log
gaurav-dt d9fe74f
Unused var
gaurav-dt a0b397c
Fixed lint
gaurav-dt 79a01d5
Fixed changeset description
gaurav-dt b2c6fbc
Size limit test
gaurav-dt 95271d3
ci: apply automated fixes
autofix-ci[bot] e8910d4
Merge branch 'main' into fix_isolation_of_devtools
gk9848970 3ac1682
Fixed
gaurav-dt c885998
Fixed
gaurav-dt 47aa1fb
Removed temp things
gaurav-dt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@tanstack/query-devtools': patch | ||
| --- | ||
|
|
||
| Multiple Devtool instances sharing same state causing isolation issues |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
packages/query-devtools/src/contexts/DevtoolsStateContext.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import { createContext, useContext } from 'solid-js' | ||
| import type { Accessor, Setter } from 'solid-js' | ||
| import type { | ||
| MutationCache, | ||
| QueryCache, | ||
| QueryCacheNotifyEvent, | ||
| } from '@tanstack/query-core' | ||
|
|
||
| type QueryCacheMapValue = { | ||
| setter: Setter<any> | ||
| shouldUpdate: (event: QueryCacheNotifyEvent) => boolean | ||
| } | ||
|
|
||
| type MutationCacheMapValue = { | ||
| setter: Setter<any> | ||
| } | ||
|
|
||
| export type QueryCacheMap = Map< | ||
| (q: Accessor<QueryCache>) => any, | ||
| QueryCacheMapValue | ||
| > | ||
|
|
||
| export type MutationCacheMap = Map< | ||
| (q: Accessor<MutationCache>) => any, | ||
| MutationCacheMapValue | ||
| > | ||
|
|
||
| interface DevtoolsState { | ||
| selectedQueryHash: Accessor<string | null> | ||
| setSelectedQueryHash: Setter<string | null> | ||
| selectedMutationId: Accessor<number | null> | ||
| setSelectedMutationId: Setter<number | null> | ||
| panelWidth: Accessor<number> | ||
| setPanelWidth: Setter<number> | ||
| offline: Accessor<boolean> | ||
| setOffline: Setter<boolean> | ||
| queryCacheMap: QueryCacheMap | ||
| mutationCacheMap: MutationCacheMap | ||
| } | ||
|
|
||
| export const DevtoolsStateContext = createContext<DevtoolsState>() | ||
|
|
||
| export function useDevtoolsState() { | ||
| return useContext(DevtoolsStateContext)! | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| export * from './PiPContext' | ||
| export * from './QueryDevtoolsContext' | ||
| export * from './ThemeContext' | ||
| export * from './DevtoolsStateContext' |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add runtime guard for missing context provider.
The non-null assertion (
!) assumes the context is always provided, but calling this hook outside aDevtoolsStateContext.Providerwill cause a runtime error when the undefined value is accessed.🔎 Proposed fix with runtime guard
export function useDevtoolsState() { - return useContext(DevtoolsStateContext)! + const context = useContext(DevtoolsStateContext) + if (!context) { + throw new Error('useDevtoolsState must be used within a DevtoolsStateContext.Provider') + } + return context }This provides a clear error message during development rather than cryptic undefined access errors at runtime.
📝 Committable suggestion
🤖 Prompt for AI Agents