File tree 2 files changed +30
-6
lines changed
libs/ngrx-toolkit/src/lib
2 files changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import {
12
12
HttpTestingController ,
13
13
provideHttpClientTesting ,
14
14
} from '@angular/common/http/testing' ;
15
- import { Action } from 'ngrx-toolkit' ;
16
15
17
16
interface Flight {
18
17
id : number ;
@@ -99,6 +98,27 @@ describe('with redux', () => {
99
98
} ) ;
100
99
} ) ;
101
100
101
+ it ( 'should allow a noPayload action to call without parameters' , ( ) => {
102
+ const FlightsStore = signalStore (
103
+ withState ( { flights : [ ] as Flight [ ] } ) ,
104
+ withRedux ( {
105
+ actions : {
106
+ init : noPayload ,
107
+ } ,
108
+ reducer ( ) { } ,
109
+ effects ( ) {
110
+ return { } ;
111
+ } ,
112
+ } ) ,
113
+ ) ;
114
+
115
+ const flightStore = TestBed . configureTestingModule ( {
116
+ providers : [ FlightsStore ] ,
117
+ } ) . inject ( FlightsStore ) ;
118
+
119
+ flightStore . init ( ) ;
120
+ } ) ;
121
+
102
122
it ( 'should allow multiple effects listening to the same action' , ( ) => {
103
123
const FlightsStore = signalStore (
104
124
withState ( { flights : [ ] as Flight [ ] , effect1 : false , effect2 : false } ) ,
@@ -134,7 +154,7 @@ describe('with redux', () => {
134
154
providers : [ FlightsStore ] ,
135
155
} ) . inject ( FlightsStore ) ;
136
156
137
- flightStore . init ( { } ) ;
157
+ flightStore . init ( ) ;
138
158
139
159
expect ( flightStore . effect1 ( ) ) . toBe ( true ) ;
140
160
expect ( flightStore . effect2 ( ) ) . toBe ( true ) ;
Original file line number Diff line number Diff line change @@ -23,9 +23,13 @@ type ActionFns = Record<string, ActionFn>;
23
23
export type ActionsFnSpecs = Record < string , Payload > ;
24
24
25
25
type ActionFnCreator < Spec extends ActionsFnSpecs > = {
26
- [ ActionName in keyof Spec ] : ( (
27
- payload : Spec [ ActionName ] ,
28
- ) => Spec [ ActionName ] & { type : ActionName } ) & { type : ActionName & string } ;
26
+ [ ActionName in keyof Spec ] : ( Record < never , never > extends Spec [ ActionName ]
27
+ ? ( ) => Spec [ ActionName ] & { type : ActionName }
28
+ : (
29
+ payload : Spec [ ActionName ] ,
30
+ ) => Spec [ ActionName ] & { type : ActionName } ) & {
31
+ type : ActionName & string ;
32
+ } ;
29
33
} ;
30
34
31
35
type ActionFnPayload < Action > = Action extends ( payload : infer Payload ) => void
@@ -262,7 +266,7 @@ export function withRedux<
262
266
EmptyFeatureResult & { methods : PublicStoreActionFns }
263
267
> {
264
268
return ( store ) => {
265
- const { methods, subscriptions } = processRedux < Spec , PublicStoreActionFns > (
269
+ const { methods } = processRedux < Spec , PublicStoreActionFns > (
266
270
redux . actions ,
267
271
redux . reducer as ReducerFactory < ActionFns , unknown > ,
268
272
redux . effects as EffectsFactory < ActionFns > ,
You can’t perform that action at this time.
0 commit comments