Skip to content

Commit 15db547

Browse files
michael-smallMichael
andauthored
docs: document mutations API (#228)
--------- Co-authored-by: Michael <small203@morris.umn.edu>
1 parent 8a9d13a commit 15db547

4 files changed

Lines changed: 482 additions & 0 deletions

File tree

apps/demo/src/app/counter-rx-mutation/counter-rx-mutation.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ export type CounterResponse = {
1616
json: { counter: number };
1717
};
1818

19+
// TODO - rename this file to just be `mutations-functions-standalone` + class/selector etc??
20+
// And then the other folder to "store"
21+
// Or maybe put these all in one folder too while we are at it?
1922
@Component({
2023
selector: 'demo-counter-rx-mutation',
2124
imports: [CommonModule],

docs/docs/extensions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ It offers extensions like:
1212
- [Immutable State Protection](./with-immutable-state): Protects the state from being mutated outside or inside the Store.
1313
- [~Redux~](./with-redux): Possibility to use the Redux Pattern. Deprecated in favor of NgRx's `@ngrx/signals/events` starting in 19.2
1414
- [Resource](./with-resource): Integrates Angular's Resource into SignalStore for async data operations
15+
- [Mutations](./mutations): Seek to offer an appropriate equivalent to signal resources for sending data back to the backend
1516
- [Reset](./with-reset): Adds a `resetState` method to your store
1617
- [Call State](./with-call-state): Add call state management to your signal stores
1718
- [Storage Sync](./with-storage-sync): Synchronizes the Store with Web Storage

0 commit comments

Comments
 (0)