This tutorial lesson demonstrates how to create a new component for your Angular app.
What you'll learn
Your app has a new component: HomeComponent
.
Conceptual preview of Angular components
Angular apps are built around components, which are Angular's building blocks. Components contain the code, HTML layout, and CSS style information that provide the function and appearance of an element in the app. In Angular, components can contain other components. An app's functions and appearance can be divided and partitioned into components.
In Angular, components have metadata that define its properties.
When you create your HomeComponent
, you use these properties:
selector
: to describe how Angular refers to the component in templates.standalone
: to describe whether the component requires aNgModule
.imports
: to describe the component's dependencies.template
: to describe the component's HTML markup and layout.styleUrls
: to list the URLs of the CSS files that the component uses in an array.
-
Create the
HomeComponent
In this step, you create a new component for your app.
In the Terminal pane of your IDE:
In your project directory, navigate to the
first-app
directory.Run this command to create a new
HomeComponent
ng generate component home
Run this command to build and serve your app.
Note: This step is only for your local environment!
ng serve
Open a browser and navigate to
http://localhost:4200
to find the application.Confirm that the app builds without error.
HELPFUL: It should render the same as it did in the previous lesson because even though you added a new component, you haven't included it in any of the app's templates, yet.
Leave
ng serve
running as you complete the next steps.
-
Add the new component to your app's layout
In this step, you add the new component,
HomeComponent
to your app's root component,AppComponent
, so that it displays in your app's layout.In the Edit pane of your IDE:
Open
app.component.ts
in the editor.In
app.component.ts
, importHomeComponent
by adding this line to the file level imports.Import HomeComponent in src/app/app.component.ts
import {Component} from '@angular/core';import {HomeComponent} from './home/home.component';@Component({ selector: 'app-root', standalone: true, imports: [HomeComponent], template: ` <main> <header class="brand-name"> <img class="brand-logo" src="/assets/logo.svg" alt="logo" aria-hidden="true" /> </header> <section class="content"> <app-home></app-home> </section> </main> `, styleUrls: ['./app.component.css'],})export class AppComponent { title = 'homes';}
In
app.component.ts
, in@Component
, update theimports
array property and addHomeComponent
.Replace in src/app/app.component.ts
import {Component} from '@angular/core';import {HomeComponent} from './home/home.component';@Component({ selector: 'app-root', standalone: true, imports: [HomeComponent], template: ` <main> <header class="brand-name"> <img class="brand-logo" src="/assets/logo.svg" alt="logo" aria-hidden="true" /> </header> <section class="content"> <app-home></app-home> </section> </main> `, styleUrls: ['./app.component.css'],})export class AppComponent { title = 'homes';}
In
app.component.ts
, in@Component
, update thetemplate
property to include the following HTML code.Replace in src/app/app.component.ts
import {Component} from '@angular/core';import {HomeComponent} from './home/home.component';@Component({ selector: 'app-root', standalone: true, imports: [HomeComponent], template: ` <main> <header class="brand-name"> <img class="brand-logo" src="/assets/logo.svg" alt="logo" aria-hidden="true" /> </header> <section class="content"> <app-home></app-home> </section> </main> `, styleUrls: ['./app.component.css'],})export class AppComponent { title = 'homes';}
Save your changes to
app.component.ts
.If
ng serve
is running, the app should update. Ifng serve
is not running, start it again. Hello world in your app should change to home works! from theHomeComponent
.Check the running app in the browser and confirm that the app has been updated.
-
Add features to
HomeComponent
In this step you add features to
HomeComponent
.In the previous step, you added the default
HomeComponent
to your app's template so its default HTML appeared in the app. In this step, you add a search filter and button that is used in a later lesson. For now, that's all thatHomeComponent
has. Note that, this step just adds the search elements to the layout without any functionality, yet.In the Edit pane of your IDE:
In the
first-app
directory, openhome.component.ts
in the editor.In
home.component.ts
, in@Component
, update thetemplate
property with this code.Replace in src/app/home/home.component.ts
import {Component} from '@angular/core';import {CommonModule} from '@angular/common';@Component({ selector: 'app-home', standalone: true, imports: [CommonModule], template: ` <section> <form> <input type="text" placeholder="Filter by city" /> <button class="primary" type="button">Search</button> </form> </section> `, styleUrls: ['./home.component.css'],})export class HomeComponent {}
Next, open
home.component.css
in the editor and update the content with these styles.Note: In the browser, these can go in
src/app/home/home.component.ts
in thestyles
array.Replace in src/app/home/home.component.css
.results { display: grid; column-gap: 14px; row-gap: 14px; grid-template-columns: repeat(auto-fill, minmax(400px, 400px)); margin-top: 50px; justify-content: space-around;}input[type="text"] { border: solid 1px var(--primary-color); padding: 10px; border-radius: 8px; margin-right: 4px; display: inline-block; width: 30%;}button { padding: 10px; border: solid 1px var(--primary-color); background: var(--primary-color); color: white; border-radius: 8px;}@media (min-width: 500px) and (max-width: 768px) { .results { grid-template-columns: repeat(2, 1fr); } input[type="text"] { width: 70%; } }@media (max-width: 499px) { .results { grid-template-columns: 1fr; } }
Confirm that the app builds without error. You should find the filter query box and button in your app and they should be styled. Correct any errors before you continue to the next step.
Summary: In this lesson, you created a new component for your app and gave it a filter edit control and button.
For more information about the topics covered in this lesson, visit: