Skip to content

Commit 4343720

Browse files
feat(devtools): rename patchState to updateState
The name `patchState` is already used by the SignalStore. For better differentiation, a renaming was necessary. `patchState` from this library is still available but marked as deprecated.
1 parent 6ec17e7 commit 4343720

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

apps/demo/src/app/flight-search/flight-store.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
payload,
55
withDevtools,
66
withRedux,
7-
patchState,
7+
updateState,
88
} from 'ngrx-toolkit';
99
import { inject } from '@angular/core';
1010
import { HttpClient, HttpParams } from '@angular/common/http';
@@ -28,7 +28,7 @@ export const FlightStore = signalStore(
2828

2929
reducer: (actions, on) => {
3030
on(actions.flightsLoaded, (state, { flights }) => {
31-
patchState(state, 'flights loaded', { flights });
31+
updateState(state, 'flights loaded', { flights });
3232
});
3333
},
3434

apps/demo/src/app/todo-store.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
updateEntity,
66
withEntities,
77
} from '@ngrx/signals/entities';
8-
import { patchState, withDevtools } from 'ngrx-toolkit';
8+
import { updateState, withDevtools } from 'ngrx-toolkit';
99

1010
export interface Todo {
1111
id: number;
@@ -25,16 +25,16 @@ export const TodoStore = signalStore(
2525
let currentId = 0;
2626
return {
2727
add(todo: AddTodo) {
28-
patchState(store, 'add todo', setEntity({ id: ++currentId, ...todo }));
28+
updateState(store, 'add todo', setEntity({ id: ++currentId, ...todo }));
2929
},
3030

3131
remove(id: number) {
32-
patchState(store, 'remove todo', removeEntity(id));
32+
updateState(store, 'remove todo', removeEntity(id));
3333
},
3434

3535
toggleFinished(id: number): void {
3636
const todo = store.entityMap()[id];
37-
patchState(
37+
updateState(
3838
store,
3939
'toggle todo',
4040
updateEntity({ id, changes: { finished: !todo.finished } })

libs/ngrx-toolkit/src/index.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
export { withDevtools, patchState, Action } from './lib/with-devtools';
1+
export {
2+
withDevtools,
3+
patchState,
4+
updateState,
5+
Action,
6+
} from './lib/with-devtools';
27
export * from './lib/with-redux';
38

49
export * from './lib/with-call-state';
510
export * from './lib/with-undo-redo';
6-
export * from './lib/with-data-service'
11+
export * from './lib/with-data-service';
712
export { withStorageSync, SyncConfig } from './lib/with-storage-sync';
813
export * from './lib/redux-connector';
9-
export * from './lib/redux-connector/rxjs-interop';
14+
export * from './lib/redux-connector/rxjs-interop';

libs/ngrx-toolkit/src/lib/with-devtools.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,21 @@ type PatchFn = typeof originalPatchState extends (
122122
? (state: First, action: string, ...rest: Rest) => Returner
123123
: never;
124124

125+
/**
126+
* @deprecated Has been renamed to `updateState`
127+
*/
125128
export const patchState: PatchFn = (state, action, ...rest) => {
129+
updateState(state, action, ...rest);
130+
};
131+
132+
/**
133+
* Wrapper of `patchState` for DevTools integration. Next to updating the state,
134+
* it also sends the action to the DevTools.
135+
* @param state state of Signal Store
136+
* @param action name of action how it will show in DevTools
137+
* @param updaters updater functions or objects
138+
*/
139+
export const updateState: PatchFn = (state, action, ...updaters) => {
126140
currentActionNames.add(action);
127-
return originalPatchState(state, ...rest);
141+
return originalPatchState(state, ...updaters);
128142
};

0 commit comments

Comments
 (0)