0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Angular コンポーネントの親子関係

Last updated at Posted at 2025-04-01

コンポーネントとは

コンポーネントとは、ビュー(View)を定義し、制御するものである。

図.png

上図のようにコンポーネントはビューの定義から制御まで、一貫してビューを管理する。

以下のようにコンポーネント間で親子関係を構築できる。

図.png

親コンポーネントが子コンポーネントを含み、データの受け渡しやイベントのやり取りを行う。

親子関係をもつ目的

コンポーネントの親子関係を持つことで、以下のような利点がある。

  • コードの再利用性向上: 共通のUIパーツをコンポーネント化することで、複数の場所で再利用できる

  • 役割の分離: それぞれのコンポーネントが独自の役割を持つため、保守性が向上する

  • データの適切な管理: 親から子へのデータ受け渡し(Input)、子から親へのイベント通知(Output)を活用することで、データの流れを制御しやすくなる

ルーターを使った親子関係

Angularのルーターを使用すると、URLパスに応じて異なるコンポーネントを表示できる。loadChildren を使うことで、モジュール単位でルーティングを管理し、親子関係を構築できる。

親ルート(app.routes.ts)

app.routes.ts
const routes: Routes = [
  { path: '', component: HomeComponent },
  {
    path: 'dashboard',
    loadChildren: () => import('./dashboard/dashboard.module').then(m => m.DashboardModule)
  },
  { path: '**', component: NotFoundComponent }
];

子ルート(dashboard.module.ts)

dashboard.module.ts
const routes: Routes = [
  { path: '', component: DashboardHomeComponent },
  { path: 'details', component: DashboardDetailsComponent }
];

このようにapp.routes.tsdashboardパスにアクセスすると、dashboard.module.ts内のルーティングが適用され、親子関係が成立する。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?