Skip to content

Commit ed0f732

Browse files
committed
feat(mon-pix): display attestations details
1 parent f28bc24 commit ed0f732

File tree

7 files changed

+28
-4
lines changed

7 files changed

+28
-4
lines changed

mon-pix/app/components/global/app-navigation.gjs

+9
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ export default class AppNavigation extends Component {
2626
return this.currentUser.user.hasRecommendedTrainings;
2727
}
2828

29+
get showAttestationNavItem() {
30+
return this.currentUser.hasAttestationsDetails;
31+
}
32+
2933
<template>
3034
<PixNavigation class="app-navigation" @navigationAriaLabel="navigation principale">
3135
<:brand>
@@ -54,6 +58,11 @@ export default class AppNavigation extends Component {
5458
<PixNavigationButton @route="authenticated.certifications" @icon="newRealease">
5559
{{t "navigation.main.start-certification"}}
5660
</PixNavigationButton>
61+
{{#if this.showAttestationNavItem}}
62+
<PixNavigationButton @route="authenticated.attestations" @icon="awards">
63+
{{t "navigation.main.attestations"}}
64+
</PixNavigationButton>
65+
{{/if}}
5766
{{#if this.showTrainingsNavItem}}
5867
<PixNavigationButton @route="authenticated.user-trainings" @icon="book">
5968
{{t "navigation.main.trainings"}}

mon-pix/app/routes/authenticated.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { service } from '@ember/service';
33

44
export default class AuthenticatedRoute extends Route {
55
@service session;
6+
@service store;
67

78
beforeModel(transition) {
89
this.session.requireAuthenticationAndApprovedTermsOfService(transition);

mon-pix/app/services/current-user.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,28 @@ export default class CurrentUserService extends Service {
44
@service session;
55
@service store;
66

7-
_user = undefined;
7+
#user;
8+
#attestationsDetails;
89

910
get user() {
10-
return this._user;
11+
return this.#user;
12+
}
13+
14+
get attestationsDetails() {
15+
return this.#attestationsDetails;
16+
}
17+
18+
get hasAttestationsDetails() {
19+
return this.#attestationsDetails.length > 0;
1120
}
1221

1322
async load() {
1423
if (this.session.isAuthenticated) {
1524
try {
16-
this._user = await this.store.queryRecord('user', { me: true });
25+
this.#user = await this.store.queryRecord('user', { me: true });
26+
this.#attestationsDetails = await this.store.findAll('attestation-detail');
1727
} catch {
18-
this._user = null;
28+
this.#user = null;
1929
return this.session.invalidate();
2030
}
2131
}

mon-pix/translations/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
},
325325
"homepage": "Pix's Homepage",
326326
"main": {
327+
"attestations": "My certifications",
327328
"code": "I have a code",
328329
"dashboard": "Home",
329330
"help": "Help",

mon-pix/translations/es.json

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
},
325325
"homepage": "Página de inicio de Pix",
326326
"main": {
327+
"attestations": "Mis títulos",
327328
"code": "Tengo un código",
328329
"dashboard": "Inicio",
329330
"help": "Ayuda",

mon-pix/translations/fr.json

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
},
325325
"homepage": "Page d'accueil de Pix",
326326
"main": {
327+
"attestations": "Mes attestations",
327328
"code": "J'ai un code",
328329
"dashboard": "Accueil",
329330
"help": "Aide",

mon-pix/translations/nl.json

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
},
325325
"homepage": "Startpagina Pix",
326326
"main": {
327+
"attestations": "Mijn getuigschriften",
327328
"code": "Ik heb een code",
328329
"dashboard": "Home",
329330
"help": "Help",

0 commit comments

Comments
 (0)