-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.gjs
90 lines (78 loc) · 2.33 KB
/
index.gjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import { action } from '@ember/object';
import { service } from '@ember/service';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import LoaderGrey from '../../../common/loader-grey';
import List from './list';
export default class Badges extends Component {
@tracked isLoading;
@tracked badges;
@service store;
constructor() {
super(...arguments);
this.#initBadges(this.args.targetProfile);
}
get getTargetProfileBadgesErrorMessage() {
if (this.isLoading || this.badges?.length > 0) {
return undefined;
}
return 'Seul un profil cible comportant au moins un badge certifiant peut être rattaché à une certification complémentaire. Le profil cible que vous avez sélectionné ne comporte pas de badge certifiant. Veuillez le modifier puis rafraîchir cette page ou bien sélectionner un autre profil cible.';
}
@action
onBadgeUpdated({ badgeId, fieldName, fieldValue }) {
if (!badgeId) {
return;
}
this.args.onBadgeUpdated({ update: { badgeId, fieldName, fieldValue } });
}
async #initBadges({ id } = {}) {
this.isLoading = true;
if (!id) {
this.#onfetchBadgesError(new ReferenceError('No target profile provided'));
this.isLoading = false;
return;
}
try {
const targetProfile = await this.store.queryRecord('target-profile', {
targetProfileId: id,
filter: {
badges: 'certifiable',
},
});
if (this.isDestroyed) {
return;
}
this.badges = targetProfile
.hasMany('badges')
.value()
?.map((badge) => ({
id: badge.id,
label: badge.title,
isCertifiable: badge.isCertifiable,
}));
} catch {
this.#onfetchBadgesError();
} finally {
this.isLoading = false;
}
}
#onfetchBadgesError() {
this.args.onError('Une erreur est survenue lors de la recherche de badges.');
}
willDestroy() {
super.willDestroy(...arguments);
this.isLoading = undefined;
this.badges = undefined;
}
<template>
{{#if this.isLoading}}
<LoaderGrey />
{{/if}}
<List
@options={{this.badges}}
@onBadgeUpdated={{this.onBadgeUpdated}}
@error={{this.getTargetProfileBadgesErrorMessage}}
@hasExternalJury={{@hasExternalJury}}
/>
</template>
}