From 28006bf330060a2d5a075a41c691dc7f3a99e147 Mon Sep 17 00:00:00 2001 From: FazCodeFR <30906528+FazCodeFR@users.noreply.github.com> Date: Wed, 13 Dec 2023 15:35:42 +0100 Subject: [PATCH] Update detail chat --- .../animaux-details.component.html | 47 +++++++++++++++++-- .../animaux-details.component.ts | 3 ++ 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/src/app/components/animaux/animaux-details/animaux-details.component.html b/src/app/components/animaux/animaux-details/animaux-details.component.html index 153db45..192ce4d 100644 --- a/src/app/components/animaux/animaux-details/animaux-details.component.html +++ b/src/app/components/animaux/animaux-details/animaux-details.component.html @@ -6,15 +6,27 @@ Catégorie : Chat

+ +

{{ chat.nom }} + +

+ + + + +
Sexe :

- {{ chat.sexe ==='MALE' ? 'Je suis un Mâle' : 'Je suis une femelle' }} + {{ chat.sexe ==='MALE' ? 'Je suis un mâle' : 'Je suis une femelle' }} + +

@@ -42,7 +58,7 @@

-
+
Race :
@@ -51,12 +67,29 @@

+
+
+ Ententes : +
+

+ {{chat.ententeChat ? 'Avec les autres chats' : 'Pas avec les autres chats ❌'}} +

+

+ {{chat.ententeChien ? 'Avec les chiens' : 'Pas avec les chiens ❌'}} +

+

+ {{chat.ententeEnfant ? 'Avec les enfants' : 'Pas avec les enfants ❌'}} +

+
+ +
Association :

- Je suis pour le moment gardé par l'association {{ chat.association.nom }} + Je suis pour le moment gardé par l'association + {{ chat.association.nom }}

@@ -70,10 +103,16 @@

Description :

-
+

Santé :

{{ chat.vaccinations }}

+ + +
\ No newline at end of file diff --git a/src/app/components/animaux/animaux-details/animaux-details.component.ts b/src/app/components/animaux/animaux-details/animaux-details.component.ts index 3c3958d..b26c6af 100644 --- a/src/app/components/animaux/animaux-details/animaux-details.component.ts +++ b/src/app/components/animaux/animaux-details/animaux-details.component.ts @@ -3,6 +3,7 @@ import { Component } from '@angular/core'; import { Chat } from '../../../interfaces/interfaces'; import { AppService } from 'src/app/services/app.service'; import { ActivatedRoute } from '@angular/router'; +import { faMars, faVenus } from '@fortawesome/free-solid-svg-icons'; @Component({ selector: 'app-animaux-details', @@ -11,6 +12,8 @@ import { ActivatedRoute } from '@angular/router'; }) export class AnimauxDetailsComponent { chat: Chat | undefined; + faMars = faMars; + faVenus = faVenus; constructor(private route: ActivatedRoute, private appService: AppService) {}