|
| 1 | + |
| 2 | +The Redux Connector it is not an extension but turns any `signalStore()` into a Global State Management Slice following the Redux pattern. |
| 3 | + |
| 4 | +It is available as secondary entry point, i.e. `import { createReduxState } from '@angular-architects/ngrx-toolkit/redux-connector'` and has a dependency to `@ngrx/store`. |
| 5 | + |
| 6 | +An extension without dependency to `@ngrx/store` is available with [`withRedux()`](./with-redux). |
| 7 | + |
| 8 | +It supports: |
| 9 | + |
| 10 | +✅ Well-known NgRx Store Actions |
| 11 | +✅ Global Action `dispatch()` |
| 12 | +✅ Angular Lazy Loading |
| 13 | +✅ Auto-generated `provideNamedStore()` & `injectNamedStore()` Functions |
| 14 | +✅ Global Action to Store Method Mappers |
| 15 | + |
| 16 | +### Use a present Signal Store |
| 17 | + |
| 18 | +```typescript |
| 19 | +export const FlightStore = signalStore( |
| 20 | + // State |
| 21 | + withEntities({ entity: type<Flight>(), collection: 'flight' }), |
| 22 | + withEntities({ entity: type<number>(), collection: 'hide' }), |
| 23 | + // Selectors |
| 24 | + withComputed(({ flightEntities, hideEntities }) => ({ |
| 25 | + filteredFlights: computed(() => flightEntities() |
| 26 | + .filter(flight => !hideEntities().includes(flight.id))), |
| 27 | + flightCount: computed(() => flightEntities().length), |
| 28 | + })), |
| 29 | + // Updater |
| 30 | + withMethods(store => ({ |
| 31 | + setFlights: (state: { flights: Flight[] }) => patchState(store, |
| 32 | + setAllEntities(state.flights, { collection: 'flight' })), |
| 33 | + updateFlight: (state: { flight: Flight }) => patchState(store, |
| 34 | + updateEntity({ id: state.flight.id, changes: state.flight }, { collection: 'flight' })), |
| 35 | + clearFlights: () => patchState(store, |
| 36 | + removeAllEntities({ collection: 'flight' })), |
| 37 | + })), |
| 38 | + // Effects |
| 39 | + withMethods((store, flightService = inject(FlightService)) => ({ |
| 40 | + loadFlights: reduxMethod<FlightFilter, { flights: Flight[] }>(pipe( |
| 41 | + switchMap(filter => from( |
| 42 | + flightService.load({ from: filter.from, to: filter.to }) |
| 43 | + )), |
| 44 | + map(flights => ({ flights })), |
| 45 | + ), store.setFlights), |
| 46 | + })), |
| 47 | +); |
| 48 | +``` |
| 49 | + |
| 50 | +### Use well-known NgRx Store Actions |
| 51 | + |
| 52 | +```typescript |
| 53 | +export const ticketActions = createActionGroup({ |
| 54 | + source: 'tickets', |
| 55 | + events: { |
| 56 | + 'flights load': props<FlightFilter>(), |
| 57 | + 'flights loaded': props<{ flights: Flight[] }>(), |
| 58 | + 'flights loaded by passenger': props<{ flights: Flight[] }>(), |
| 59 | + 'flight update': props<{ flight: Flight }>(), |
| 60 | + 'flights clear': emptyProps() |
| 61 | + } |
| 62 | +}); |
| 63 | +``` |
| 64 | + |
| 65 | +### Map Actions to Methods |
| 66 | + |
| 67 | +```typescript |
| 68 | +export const { provideFlightStore, injectFlightStore } = |
| 69 | + createReduxState('flight', FlightStore, store => withActionMappers( |
| 70 | + mapAction( |
| 71 | + // Filtered Action |
| 72 | + ticketActions.flightsLoad, |
| 73 | + // Side-Effect |
| 74 | + store.loadFlights, |
| 75 | + // Result Action |
| 76 | + ticketActions.flightsLoaded), |
| 77 | + mapAction( |
| 78 | + // Filtered Actions |
| 79 | + ticketActions.flightsLoaded, ticketActions.flightsLoadedByPassenger, |
| 80 | + // State Updater Method (like Reducers) |
| 81 | + store.setFlights |
| 82 | + ), |
| 83 | + mapAction(ticketActions.flightUpdate, store.updateFlight), |
| 84 | + mapAction(ticketActions.flightsClear, store.clearFlights), |
| 85 | + ) |
| 86 | + ); |
| 87 | +``` |
| 88 | + |
| 89 | +### Register an Angular Dependency Injection Provider |
| 90 | + |
| 91 | +```typescript |
| 92 | +export const appRoutes: Route[] = [ |
| 93 | + { |
| 94 | + path: 'flight-search-redux-connector', |
| 95 | + providers: [provideFlightStore()], |
| 96 | + component: FlightSearchReducConnectorComponent |
| 97 | + }, |
| 98 | +]; |
| 99 | +``` |
| 100 | + |
| 101 | +### Use the Store in your Component |
| 102 | + |
| 103 | +```typescript |
| 104 | +@Component({ |
| 105 | + standalone: true, |
| 106 | + imports: [ |
| 107 | + JsonPipe, |
| 108 | + RouterLink, |
| 109 | + FormsModule, |
| 110 | + FlightCardComponent |
| 111 | + ], |
| 112 | + selector: 'demo-flight-search-redux-connector', |
| 113 | + templateUrl: './flight-search.component.html', |
| 114 | +}) |
| 115 | +export class FlightSearchReducConnectorComponent { |
| 116 | + private store = injectFlightStore(); |
| 117 | + |
| 118 | + protected flights = this.store.flightEntities; |
| 119 | + |
| 120 | + protected search() { |
| 121 | + this.store.dispatch( |
| 122 | + ticketActions.flightsLoad({ |
| 123 | + from: this.localState.filter.from(), |
| 124 | + to: this.localState.filter.to() |
| 125 | + }) |
| 126 | + ); |
| 127 | + } |
| 128 | + |
| 129 | + protected reset(): void { |
| 130 | + this.store.dispatch(ticketActions.flightsClear()); |
| 131 | + } |
| 132 | +} |
| 133 | +``` |
0 commit comments