Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

241
Vistas
How to get a font awesome icon name when using click event on it?

So, if I do this in my HTML component:

<fa-icon [icon]="faSort" (click)="sort($event)"></fa-icon>

How will I get it's name in my ts component?

sort(event: Event) {???}

I tried doing it like this:

sort(event: Event) {

console.log(event['target']['ownerSVGElement']['classList'][1])

}

But the method above is very inconsistent. Is there a better way of doing this?

Font Awesome Package Link: https://www.npmjs.com/package/@fortawesome/angular-fontawesome

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Assuming you don't really care about anything else that the event value may contain within it.

sort(event : any) {
   console.log("Icon Name: ", event.iconName);
}

<fa-icon [icon]="faSort" (click)="sort({ iconName: 'faSort'})"></fa-icon>

Assuming you still want to capture the actual event itself:

<fa-icon [icon]="faSort" (click)="sort({event: $event, iconName: 'faIcon'})"></fa-icon>

The reason this works is that we allow our sort to accept a type of any, and we are creating a brand new object using the curly braces.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda