Different examples which show simplified how parent and child components may communicate with eachother. This repo has been created for educational purposes/my personal learning path. This examples even contain tests for testing the component communication Guide page from Angular from where examples where taken
- hero.ts
- hero-parent.component.ts
- hero-child.component.ts
- name-parent.component.ts
- name-child.component.ts
- version-parent.component.ts
- version-child.component.ts
- votetaker.component.ts
- voter.component.ts
- countdown-parent.component.ts
- countdown-timer.component.ts Consider when using @ViewChild() / ngAfterViewInit() the waiting of one tick/cyle to avoid unidirectional-data-flow-violation error !
- mission.service.ts
- missioncontrol.component.ts
- astronaut.component.ts Each Component subscibes to an observable and emits data to to another observable, this happens basically vice versa so that the compnents can communicate with eachother.
This project was generated with Angular CLI version 16.0.4.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The application will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.