Skip to content

Commit 0e83882

Browse files
committedApr 19, 2024·
fix(redux): remove parameter from noPayload action functions
1 parent 12d0077 commit 0e83882

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed
 

‎libs/ngrx-toolkit/src/lib/with-redux.spec.ts

+22-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
HttpTestingController,
1313
provideHttpClientTesting,
1414
} from '@angular/common/http/testing';
15-
import { Action } from 'ngrx-toolkit';
1615

1716
interface Flight {
1817
id: number;
@@ -99,6 +98,27 @@ describe('with redux', () => {
9998
});
10099
});
101100

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+
102122
it('should allow multiple effects listening to the same action', () => {
103123
const FlightsStore = signalStore(
104124
withState({ flights: [] as Flight[], effect1: false, effect2: false }),
@@ -134,7 +154,7 @@ describe('with redux', () => {
134154
providers: [FlightsStore],
135155
}).inject(FlightsStore);
136156

137-
flightStore.init({});
157+
flightStore.init();
138158

139159
expect(flightStore.effect1()).toBe(true);
140160
expect(flightStore.effect2()).toBe(true);

‎libs/ngrx-toolkit/src/lib/with-redux.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ type ActionFns = Record<string, ActionFn>;
2323
export type ActionsFnSpecs = Record<string, Payload>;
2424

2525
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+
};
2933
};
3034

3135
type ActionFnPayload<Action> = Action extends (payload: infer Payload) => void
@@ -262,7 +266,7 @@ export function withRedux<
262266
EmptyFeatureResult & { methods: PublicStoreActionFns }
263267
> {
264268
return (store) => {
265-
const { methods, subscriptions } = processRedux<Spec, PublicStoreActionFns>(
269+
const { methods } = processRedux<Spec, PublicStoreActionFns>(
266270
redux.actions,
267271
redux.reducer as ReducerFactory<ActionFns, unknown>,
268272
redux.effects as EffectsFactory<ActionFns>,

0 commit comments

Comments
 (0)
Please sign in to comment.