状態を使用してアプリを構築する場合、コンポーネントの状態を初期化するためのエントリ ポイントが鍵となりますが、場合によっては、ユーザーがブックマークできるように URL 内にアプリケーションの状態を保存する必要がある場合があります。または、ユーザー エクスペリエンスを向上させ、ナビゲーションを容易にすることを目的として、特定のアプリケーションの状態を共有します。
ほとんどの場合、コンポーネント内で Angular Router と ActivatedRoute を組み合わせてこれらのケースを解決し、この責任をコンポーネントに委任するか、他のケースではコンポーネントとエフェクトを組み合わせて解決を試みます。
私はメノルカ島で休暇を続けているので、今朝は Angular Router で状態を処理する方法と、ngrx ルーターがコードの改善とコンポーネントの責任の軽減にどのように役立つかを学び、練習しました。
ユーザーが選択した場所の詳細を変更し、URL を共有し、後で同じ状態に戻ることができる編集ページを作成したいと考えています。たとえば、http://localhost/places/2 の場合、2 は編集中の場所の ID です。ユーザーは、アクションを実行した後にホームページに戻ることもできる必要があります。
?この記事は、NgRx の学習に関する私のシリーズの一部です。フォローしたい方はぜひチェックしてみてください。
https://www.danywalls.com/ Understanding-when-and-why-to-implement-ngrx-in-angular
https://www.danywalls.com/how-to-debug-ngrx-using-redux-devtools
https://www.danywalls.com/how-to-implement-actioncreationgroup-in-ngrx
https://www.danywalls.com/how-to-use-ngrx-selectors-in-angular
https://danywalls.com/when-to-use-concatmap-mergemap-switchmap-and-exhaustmap-operators-in-building-a-crud-with-ngrx
リポジトリ start-with-ngrx のクローンを作成します。このプロジェクトには ngrx とアプリケーションが準備されており、ブランチ crud-ngrx に切り替えます
https://github.com/danywalls/start-with-ngrx.git git checkout crud-ngrx
コーディングの時間です!
まずターミナルを開き、Angular CLI を使用して新しいコンポーネントを生成します。
ng g c pages/place-edit
次に、app.routes.ts を開き、パラメーター /places/:id: を使用して PlaceEditComponent を登録します。
{ path: 'places/:id', component: PlaceEditComponent, },
私の最初の解決策は、サービス、エフェクト、ルーター、アクティブ化されたルートの組み合わせです。いくつかの場所に make add ロジックが必要になります。
places サービスにメソッドを追加します。
リッスンアクション
成功を設定して、選択した場所の状態を更新します。
edit-place.component 内の選択した場所を読み取ります。
まず、places.service.ts に getById メソッドを追加します。ID を使用して場所を取得します。
getById(id: string): Observable<Place> { return this.http.get<Place>(`${environment.menorcaPlacesAPI}/${id}`); }
次に、getById を処理する新しいアクションを追加し、places.actions.ts を開いて、編集するアクション、成功と失敗を追加します。
// PlacePageActions 'Edit Place': props<{ id: string }>(), // PlacesApiActions 'Get Place Success': props<{ place: Place }>(), 'Get Place Failure': props<{ message: string }>(),
これらのアクションを処理するためにリデューサーを更新します:
on(PlacesApiActions.getPlaceSuccess, (state, { place }) => ({ ...state, loading: false, placeSelected: place, })), on(PlacesApiActions.getPlaceFailure, (state, { message }) => ({ ...state, loading: false, message, })),
place.Effects.ts を開き、editPlace アクションをリッスンする新しいエフェクトを追加し、placeService.getById を呼び出して、getPlaceSuccess アクションをディスパッチするための応答を取得します。
export const getPlaceEffect$ = createEffect( (actions$ = inject(Actions), placesService = inject(PlacesService)) => { return actions$.pipe( ofType(PlacesPageActions.editPlace), mergeMap(({ id }) => placesService.getById(id).pipe( map((apiPlace) => PlacesApiActions.getPlaceSuccess({ place: apiPlace }) ), catchError((error) => of(PlacesApiActions.getPlaceFailure({ message: error })) ) ) ) ); }, { functional: true } );
この解決策は有望に思えます。 /places:id ルートに移動するには、editPlace アクションをディスパッチし、place-card.component.ts にルーターを挿入する必要があります。
goEditPlace(id: string) { this.store.dispatch(PlacesPageActions.editPlace({ id: this.place().id })); this.router.navigate(['/places', id]); }
効果あります!しかし、いくつかの副作用もあります。別の場所を選択してページに戻ると、選択内容が更新されず、前の選択内容が読み込まれる可能性があります。また、接続が遅い場合は、読み込み中のため「見つからない」エラーが発生する可能性があります。
?Jörgen de Groot のおかげで、解決策の 1 つは、ルーターをエフェクトに移動することです。 places.effect.ts ファイルを開き、サービスとルーターを挿入します。 editPlace アクションをリッスンしてデータを取得し、アクションをナビゲートしてディスパッチします。
最終的なコードは次のようになります:
export const getPlaceEffect$ = createEffect( ( actions$ = inject(Actions), placesService = inject(PlacesService), router = inject(Router) ) => { return actions$.pipe( ofType(PlacesPageActions.editPlace), mergeMap(({ id }) => placesService.getById(id).pipe( tap(() => console.log('get by id')), map((apiPlace) => { router.navigate(['/places', apiPlace.id]); return PlacesApiActions.getPlaceSuccess({ place: apiPlace }); }), catchError((error) => of(PlacesApiActions.getPlaceFailure({ message: error })) ) ) ) ); }, { functional: true } );
ユーザーが場所のリストをクリックしたときのみナビゲートするが、ページをリロードすると機能しないという問題を修正しました。これは、新しいルートでの状態の準備ができていないためですが、エフェクトを使用するオプションがあります。ライフサイクルフック。
エフェクトのライフサイクル フックを使用すると、エフェクトが登録されたときにアクションをトリガーできるため、loadPlaces アクションをトリガーして状態を準備します。
export const initPlacesState$ = createEffect( (actions$ = inject(Actions)) => { return actions$.pipe( ofType(ROOT_EFFECTS_INIT), map((action) => PlacesPageActions.loadPlaces()) ); }, { functional: true } );
エフェクトのライフサイクルと ROOT_EFFECTS_INIT について詳しく読む
はい、状態の準備はできましたが、URL 状態から ID を取得するときにまだ問題が発生しています。
簡単な解決策は、ngOnInit で activeRoute を読み取ることです。 ID が存在する場合は、アクション editPlace をディスパッチします。これにより、selectedPlace 状態がリダイレクトされて設定されます。
そこで、PlaceEditComponent に再度 activateRoute を挿入し、ngOnInit にロジックを実装します。
コードは次のようになります:
export class PlaceEditComponent implements OnInit { store = inject(Store); place$ = this.store.select(PlacesSelectors.selectPlaceSelected); activatedRoute = inject(ActivatedRoute); ngOnInit(): void { const id = this.activatedRoute.snapshot.params['id']; if (id) { this.store.dispatch(PlacesPageActions.editPlace({ id })); } } }
It works! Finally, we add a cancel button to redirect to the places route and bind the click event to call a new method, cancel.
<button (click)="cancel()" class="button is-light" type="reset">Cancel</button>
Remember to inject the router to call the navigate method to the places URL. The final code looks like this:
export class PlaceEditComponent implements OnInit { store = inject(Store); place$ = this.store.select(PlacesSelectors.selectPlaceSelected); activatedRoute = inject(ActivatedRoute); router = inject(Router); ngOnInit(): void { const id = this.activatedRoute.snapshot.params['id']; if (id) { this.store.dispatch(PlacesPageActions.editPlace({ id })); } } cancel() { router.navigate(['/places']); } }
Okay, it works with all features, but our component is handling many tasks, like dispatching actions and redirecting navigation. What will happen when we need more features? We can simplify everything by using NgRx Router, which will reduce the amount of code and responsibility in our components.
The NgRx Router Store makes it easy to connect our state with router events and read data from the router using build'in selectors. Listening to router actions simplifies interaction with the data and effects, keeping our components free from extra dependencies like the router or activated route.
NgRx Router provide five router actions, these actions are trigger in order
ROUTER_REQUEST: when start a navigation.
ROUTER_NAVIGATION: before guards and revolver , it works during navigation.
ROUTER?NAVIGATED: When completed navigation.
ROUTER_CANCEL: when navigation is cancelled.
ROUTER_ERROR: when there is an error.
Read more about ROUTER_ACTIONS
It helps read information from the router, such as query params, data, title, and more, using a list of built-in selectors provided by the function getRouterSelectors.
export const { selectQueryParam, selectRouteParam} = getRouterSelectors()
Read more about Router Selectors
Because, we have an overview of NgRx Router, so let's start implementing it in the project.
First, we need to install NgRx Router. It provides selectors to read from the router and combine with other selectors to reduce boilerplate in our components.
In the terminal, install ngrx/router-store using the schematics:
ng add @ngrx/router-store
Next, open app.config and register routerReducer and provideRouterStore.
providers: [ ..., provideStore({ router: routerReducer, home: homeReducer, places: placesReducer, }), ... provideRouterStore(), ],
We have the NgRx Router in our project, so now it's time to work with it!
Read more about install NgRx Router
Instead of making an HTTP request, I will use my state because the ngrx init effect always updates my state when the effect is registered. This means I have the latest data. I can combine the selectPlaces selector with selectRouterParams to get the selectPlaceById.
Open the places.selector.ts file, create and export a new selector by combining selectPlaces and selectRouteParams.
The final code looks like this:
export const { selectRouteParams } = getRouterSelectors(); export const selectPlaceById = createSelector( selectPlaces, selectRouteParams, (places, { id }) => places.find((place) => place.id === id), ); export default { placesSelector: selectPlaces, selectPlaceSelected: selectPlaceSelected, loadingSelector: selectLoading, errorSelector: selectError, selectPlaceById, };
Perfect, now it's time to update and reduce all dependencies in the PlaceEditComponent, and use the new selector PlacesSelectors.selectPlaceById. The final code looks like this:
export class PlaceEditComponent { store = inject(Store); place$ = this.store.select(PlacesSelectors.selectPlaceById); }
Okay, but what about the cancel action and redirect? We can dispatch a new action, cancel, to handle this in the effect.
First, open places.action.ts and add the action 'Cancel Place': emptyProps(). the final code looks like this:
export const PlacesPageActions = createActionGroup({ source: 'Places', events: { 'Load Places': emptyProps(), 'Add Place': props<{ place: Place }>(), 'Update Place': props<{ place: Place }>(), 'Delete Place': props<{ id: string }>(), 'Cancel Place': emptyProps(), 'Select Place': props<{ place: Place }>(), 'UnSelect Place': emptyProps(), }, });
Update the cancel method in the PlacesComponent and dispatch the cancelPlace action.
cancel() { this.#store.dispatch(PlacesPageActions.cancelPlace()); }
The final step is to open place.effect.ts, add the returnHomeEffects effect, inject the router, and listen for the cancelPlace action. Use router.navigate to redirect when the action is dispatched.
export const returnHomeEffect$ = createEffect( (actions$ = inject(Actions), router = inject(Router)) => { return actions$.pipe( ofType(PlacesPageActions.cancelPlace), tap(() => router.navigate(['/places'])), ); }, { dispatch: false, functional: true, }, );
Finally, the last step is to update the place-card to dispatch the selectPlace action and use a routerLink.
<a (click)="goEditPlace()" [routerLink]="['/places', place().id]" class="button is-info">Edit</a>
Done! We did it! We removed the router and activated route dependencies, kept the URL parameter in sync, and combined it with router selectors.
I learned how to manage state using URL parameters with NgRx Router Store in Angular. I also integrated NgRx with Angular Router to handle state and navigation, keeping our components clean. This approach helps manage state better and combines with Router Selectors to easily read router data.
Source Code: https://github.com/danywalls/start-with-ngrx/tree/router-store
Resources: https://ngrx.io/guide/router-store
以上がNgRx ルーター ストアを使用した Angular ルーター URL パラメーターの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。