We can think of Angular Components like LEGO pieces. We create a component once but can use them multiple times in different parts of our website. Writing reusable code pieces? Sounds fun :)
An Angular app is a tree structure consisting of all those components that we create, like how we make a Lego Structure from little Lego pieces.
Components are the most basic UI building block of an Angular app. An Angular app contains a tree of Angular components.— Angular official docs
So this is basically what an Angular Component is, but that’s not all. In this article, you will find answers to the following questions:
The main tasks of a component are:
As developers, we should pay attention to assign only the tasks I mentioned above to a component, in terms of the separation of concerns rule and also for a cleaner code.
A component contains (mostly) 3 parts:
The Folder (app) is our Component Folder, which contains HTML, CSS and TS files. Spec.ts is for testing, and you can ignore module.ts for now.
So each component has its own HTML structure, style (CSS) and functionality (TS). But how does a component work actually?
We should carefully name our Folders when creating an Angular App, otherwise, we get lost inside a bigger project.
Well, the answer lies on inside the app.component.ts:
We have here an ordinary TypeScript class. But in order to use it as a component:
<app-root> </app-root>
After creating the component, we must save it inside the App Module, under declarations:
Finally, we can call the component with its selector name, and then we should be able to see it on the webpage:
Since Angular is a modular Framework, every component, service and other Angular features must be saved inside the App Module (or a custom module), so we can use them anywhere in the project.
OK, now you learned how to create a component. When you create a new component, you will realize that a method named ngOnInit ( ) appears below the constructor:
Every component has a lifecycle. The ngOnInit()
method is called immediately after Angular finishes setting up the component. In other words, Angular is telling us that “Component is ready”.
What we can do inside the ngOnInit()
method is that some operations like fetching data, or something we want to see immediately on page load. It is not recommended to do these kinds of operations inside the constructor, so we have ngOnInit instead.
In Angular, the constructor should only be responsible for dependency injection.
According to Angular official documents, we need ngOnInit()
method for:
An ngOnInit()
is a good place for a component to fetch its initial data. — Angular official docs
One of the big steps of learning Angular is to know how to create components and use them efficiently. If you have any questions, don’t hesitate to ask me just send an email to designmycodes@gmail.com