Fernando Ghinzelli

Angular CLI

Common commands

# CLI installation
npm install -g @angular/cli@<version>

# New Angular project
ng new <new-project>

# New component
ng g c <name>

Components

Sintaxe básica de módulo

import { NgModule } from '@angular/core';
import { PessoaComponent } from './pessoa.component.ts';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from "@angular/forms";

@NgModule({
  declarations: [PessoaComponent] // Componentes do módulo
  imports: [BrowserModule, FormsModule] // Copmonentes externos
  providers: [], // Serviços que estarão no escobo global do módulo
  bootstrap: ['PessoaComponent'] // Componente de inicialização
})
export class AppModule {}

Sintaxe básica de componente

import { Component } from '@angular/core';
@Component({
  selector: 'pessoa-pessoa',
  templateUrl: './pessoa.component.ts',
  styleUrls: ['./pessoa.component.css'],
  standalone: false // Versão > angular 14
})
export class PessoaComponent {}

/* Inclusão do seletor no arquivo .hmtl do componente pai */
<app-pessoa></app-pessoa>

Passagem de parâmetros do Componente Pai para o filho

import { Input } from '@angular/core';
{...}
export class PessoaComponent {
  @Input() nomePessoa: string = '';
}
/* Utilização do componente */
<app-pessoa [nomePessoa]="variavelNoComponentePai" />

// Para definir o parâmetro como obrigatório
@Input({required: true}) name!: string;

Chamada de um método do componente pai no componente filho

/* Componente filho */
import { Output, EventEmitter } from '@angular/core';
{...}
export class PessoaComponent {
  @Output() atualizarNome = new EventEmitter<string>;

  onUpdateName() {
    this.atualizarNome.emmit('Marcelo')
  }
}

/* Componente pai */
{...}
export class AppComponent {
  novoNome = '';
  onAtualizarNome(nome: string) {
    novoNome = nome;
  }
}

/* Utilização do componente no pai*/
<app-pessoa (atualizarNome)="onAtualizarNome($event)" />

Databinding

Todas as variáveis existentes na classe do Componente (arquivo .ts) automaticamente estarão disponíveis no arquivo .html

/* String interpolation */
<p></p>

/* Property binding */
<img [src]="'assets/images/' + person.avatar" [alt]="person.name" />

/* One way databinding */
<app-pessoa [value]="variavelComValor" (click)="umaFuncao" />
/* Two way data binding
<app-pessoa [(ngModel)]="personName"

Routing

/* Adicionar o arquivo app-routing.module.ts */
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { ListaComponent } from './lista.component.ts';
import { FormComponent } from './form.component.ts';

const routes: Routes = [
  {path: '', component: ListaComponent },
  {path: 'form', component: FormComponent },

]
@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule {}

/* Este módulo deve ser importado no Modulo principal da aplicação */
    {...}
    imports: [BrowserModule, FormsModule, AppRoutingModule],
    providers:[],
    bootstrap: [AppComponent]
})
export class AppModule {}

Services and subscriptions

import { Injectable } from "@angular/core";
import { Subject } from "rxjs";

@Injectable({
    providedIn: 'root'
})
export class PersonsService {
    personsChanged = new Subject<string[]>();
    persons: string[] = ['Antônio', 'Maria', 'João'];

    addPerson(name: string) {
        this.persons.push(name);
        this.personsChanged.next(this.persons)
    }

    removePerson(name: string) {
        this.persons = this.persons.filter(person => person !== name)
        this.personsChanged.next(this.persons)
    }
}

/* Para utilizar o service, no componente de destino, deve-se utilizar a injeção de dependências 
   A class Subscription é utilizada para que as alterações tenham reflexo na listagem
*/
export class PersonsComponent implements OnInit, OnDestroy {
    
    personList: string[] = [];
    private personsListSubs: Subscription | undefined;

    constructor(private prsService: PersonsService) {}
    ngOnInit(): void {
        this.personList = this.prsService.persons
        this.personsListSubs = this.prsService.personsChanged.subscribe(persons => {
            this.personList = persons
        })
    }
    ngOnDestroy(): void {
        if (this.personsListSubs) {
            this.personsListSubs.unsubscribe()
        }
    }
    onRemovePerson(person: string) {
        this.prsService.removePerson(person)
    }
 }
   

Signals

import { Component, signal, computed } from "@angular/core";
import { Subject } from "rxjs";

const DUMMY_USERS = [
  {
    id: 'u1',
    name: 'Jasmine Washington',
    avatar: 'user-1.jpg',
  },
  {
    id: 'u2',
    name: 'Emily Thompson',
    avatar: 'user-2.jpg',
  },
];

const randomIndex = Math.floor(Math.random() * DUMMY_USERS.length);

@Component({
  selector: 'app-user',
  standalone: true,
  imports: [],
  templateUrl: './user.component.html',
  styleUrl: './user.component.css'
})
export class UserComponent {
  // signal
  selectedUser = signal(DUMMY_USERS[randomIndex]);
  // computed
  imagePath = computed(() =>'assets/users/' + this.selectedUser().avatar);

  onSelectUser() {
    const randomIndex = Math.floor(Math.random() * DUMMY_USERS.length);
    this.selectedUser.set(DUMMY_USERS[randomIndex]);
  }
}
<div>
  <button (click)="onSelectUser()">
    <img [src]="imagePath()" [alt]="selectedUser().name" />
    <span></span>
  </button>
</div>

Diretivas

<li *ngFor=”let user of users”></li>

```