Skip to content

Commit

Permalink
fix(taxon-sheet): now display message when no profiles computed + mov…
Browse files Browse the repository at this point in the history
…e profile disclaimer on top (#3337)

* fix: replace toaster with simple message
* feat: move disclaimer at the top
  • Loading branch information
edelclaux authored Jan 20, 2025
1 parent 37748d0 commit 1f3427a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<div class="Profile">
<div
class="Profile"
*ngIf="profile; else noProfile"
>
<small class="Profile__disclaimer text-muted">
{{ 'FicheTaxon.MessageProfil' | translate }}
</small>
<div class="Profile__indicators">
<indicator
*ngFor="let indicator of indicators"
Expand All @@ -12,7 +18,7 @@
[zoomOnFirstTime]="true"
></pnx-geojson>
</pnx-map>
<small class="Profile__disclaimer text-muted">
{{ 'FicheTaxon.MessageProfil' | translate }}
</small>
</div>
<ng-template #noProfile>
<div class="text-muted text-center">{{ 'FicheTaxon.MessageNoProfil' | translate }}</div>
</ng-template>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.Profile {
display: flex;
flex-flow: column;
gap: 1rem;
&__disclaimer {
margin-top: -0.5rem;
font-style: italic;
}
&__indicators {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ export class TabProfileComponent implements OnInit {
},
(errors) => {
this.profile = null;
if (errors.status == 404) {
this._commonService.regularToaster('warning', 'Aucune donnée pour ce taxon');
}
}
);
});
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@
"previous": "Voir le média précédent"
},
"FicheTaxon": {
"MessageProfil": "* Ce profil est calculé sur les observations considérées valides présentes dans la Synthèse. Il permet de faciliter la validation de nouvelles observations en les comparant à la répartition spatiale, altitudinale et phénologique des observations valides."
"MessageProfil": "* Ce profil est calculé sur les observations considérées valides présentes dans la Synthèse. Il permet de faciliter la validation de nouvelles observations en les comparant à la répartition spatiale, altitudinale et phénologique des observations valides.",
"MessageNoProfil": "Aucune donnée de profil pour ce taxon"
},
"Import": {
"DestinationLabel": "Destination",
Expand Down

0 comments on commit 1f3427a

Please sign in to comment.