File tree 7 files changed +28
-4
lines changed
7 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ export default class AppNavigation extends Component {
26
26
return this .currentUser .user .hasRecommendedTrainings ;
27
27
}
28
28
29
+ get showAttestationNavItem () {
30
+ return this .currentUser .hasAttestationsDetails ;
31
+ }
32
+
29
33
<template >
30
34
<PixNavigation class =" app-navigation" @ navigationAriaLabel =" navigation principale" >
31
35
<: brand >
@@ -54,6 +58,11 @@ export default class AppNavigation extends Component {
54
58
<PixNavigationButton @ route =" authenticated.certifications" @ icon =" newRealease" >
55
59
{{t " navigation.main.start-certification" }}
56
60
</PixNavigationButton >
61
+ {{#if this . showAttestationNavItem }}
62
+ <PixNavigationButton @ route =" authenticated.attestations" @ icon =" awards" >
63
+ {{t " navigation.main.attestations" }}
64
+ </PixNavigationButton >
65
+ {{/if }}
57
66
{{#if this . showTrainingsNavItem }}
58
67
<PixNavigationButton @ route =" authenticated.user-trainings" @ icon =" book" >
59
68
{{t " navigation.main.trainings" }}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { service } from '@ember/service';
3
3
4
4
export default class AuthenticatedRoute extends Route {
5
5
@service session ;
6
+ @service store ;
6
7
7
8
beforeModel ( transition ) {
8
9
this . session . requireAuthenticationAndApprovedTermsOfService ( transition ) ;
Original file line number Diff line number Diff line change @@ -4,18 +4,28 @@ export default class CurrentUserService extends Service {
4
4
@service session ;
5
5
@service store ;
6
6
7
- _user = undefined ;
7
+ #user;
8
+ #attestationsDetails;
8
9
9
10
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 ;
11
20
}
12
21
13
22
async load ( ) {
14
23
if ( this . session . isAuthenticated ) {
15
24
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' ) ;
17
27
} catch {
18
- this . _user = null ;
28
+ this . #user = null ;
19
29
return this . session . invalidate ( ) ;
20
30
}
21
31
}
Original file line number Diff line number Diff line change 324
324
},
325
325
"homepage" : " Pix's Homepage" ,
326
326
"main" : {
327
+ "attestations" : " My certifications" ,
327
328
"code" : " I have a code" ,
328
329
"dashboard" : " Home" ,
329
330
"help" : " Help" ,
Original file line number Diff line number Diff line change 324
324
},
325
325
"homepage" : " Página de inicio de Pix" ,
326
326
"main" : {
327
+ "attestations" : " Mis títulos" ,
327
328
"code" : " Tengo un código" ,
328
329
"dashboard" : " Inicio" ,
329
330
"help" : " Ayuda" ,
Original file line number Diff line number Diff line change 324
324
},
325
325
"homepage" : " Page d'accueil de Pix" ,
326
326
"main" : {
327
+ "attestations" : " Mes attestations" ,
327
328
"code" : " J'ai un code" ,
328
329
"dashboard" : " Accueil" ,
329
330
"help" : " Aide" ,
Original file line number Diff line number Diff line change 324
324
},
325
325
"homepage" : " Startpagina Pix" ,
326
326
"main" : {
327
+ "attestations" : " Mijn getuigschriften" ,
327
328
"code" : " Ik heb een code" ,
328
329
"dashboard" : " Home" ,
329
330
"help" : " Help" ,
You can’t perform that action at this time.
0 commit comments