-
Notifications
You must be signed in to change notification settings - Fork 34
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
feat(ngrx-toolkit): Creates provideDevtoolsConfig #151
Merged
rainerhahnekamp
merged 3 commits into
angular-architects:main
from
mikerentmeister:provide-devtools-config
Mar 5, 2025
+102
−4
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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 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 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 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
32 changes: 32 additions & 0 deletions
32
libs/ngrx-toolkit/src/lib/devtools/provide-devtools-config.ts
This file contains 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,32 @@ | ||
import { InjectionToken, ValueProvider } from '@angular/core'; | ||
|
||
/** | ||
* Provides the configuration options for connecting to the Redux DevTools Extension. | ||
*/ | ||
export function provideDevtoolsConfig( | ||
config: ReduxDevtoolsConfig | ||
): ValueProvider { | ||
return { | ||
provide: REDUX_DEVTOOLS_CONFIG, | ||
useValue: config, | ||
}; | ||
} | ||
|
||
/** | ||
* Injection token for the configuration options for connecting to the Redux DevTools Extension. | ||
*/ | ||
export const REDUX_DEVTOOLS_CONFIG = new InjectionToken<ReduxDevtoolsConfig>( | ||
'ReduxDevtoolsConfig' | ||
); | ||
|
||
/** | ||
* Options for connecting to the Redux DevTools Extension. | ||
* @example | ||
* const devToolsOptions: ReduxDevtoolsConfig = { | ||
* name: 'My App', | ||
* }; | ||
*/ | ||
export type ReduxDevtoolsConfig = { | ||
/** Optional name for the devtools instance. If empty, "NgRx SignalStore" will be used. */ | ||
name?: string; | ||
}; |
25 changes: 25 additions & 0 deletions
25
libs/ngrx-toolkit/src/lib/devtools/tests/provide-devtools-config.spec.ts
This file contains 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,25 @@ | ||
import { TestBed } from '@angular/core/testing'; | ||
import { provideDevtoolsConfig } from '../provide-devtools-config'; | ||
import { DevtoolsSyncer } from '../internal/devtools-syncer.service'; | ||
import { setupExtensions } from './helpers.spec'; | ||
|
||
describe('provideDevtoolsConfig', () => { | ||
rainerhahnekamp marked this conversation as resolved.
Show resolved
Hide resolved
|
||
it('DevtoolsSyncer should use the default configuration if none is provided', () => { | ||
const { connectSpy } = setupExtensions(); | ||
TestBed.inject(DevtoolsSyncer); | ||
expect(connectSpy).toHaveBeenCalledWith({ | ||
name: 'NgRx SignalStore', | ||
}); | ||
}); | ||
|
||
it('DevtoolsSyncer should use the configuration provided', () => { | ||
const { connectSpy } = setupExtensions(); | ||
TestBed.configureTestingModule({ | ||
providers: [provideDevtoolsConfig({ name: 'test' })], | ||
}); | ||
TestBed.inject(DevtoolsSyncer); | ||
expect(connectSpy).toHaveBeenCalledWith({ | ||
name: 'test', | ||
}); | ||
}); | ||
}); |
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.
I think we should only provide those options which we are really supporting. So at the moment that would only be the name.
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.
Do we have to manually handle maxAge? I could see that as a useful one as well.
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.
At the moment, we can't really support anything of the options of the original. It would be great if we get them, but not in this PR.