-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathtarget-profile-for-admin-serializer.js
110 lines (106 loc) · 2.83 KB
/
target-profile-for-admin-serializer.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import jsonapiSerializer from 'jsonapi-serializer';
const { Serializer } = jsonapiSerializer;
const serialize = function ({ targetProfile, filter }) {
if (filter?.badges === 'certifiable') {
return new Serializer('target-profile', {
transform(record) {
record.badges = record.badges.filter((badge) => badge.isCertifiable);
return record;
},
attributes: ['name', 'badges'],
badges: {
ref: 'id',
included: true,
attributes: ['title', 'isCertifiable'],
},
}).serialize(targetProfile);
}
return new Serializer('target-profile', {
transform(record) {
record.stageCollection = record.stageCollection.toDTO();
record.badges = record.badges.map((badge) => {
badge.criteria = badge.criteria.map((criteria) => criteria.toDTO());
return badge;
});
return record;
},
attributes: [
'name',
'outdated',
'createdAt',
'ownerOrganizationId',
'description',
'comment',
'imageUrl',
'category',
'isSimplifiedAccess',
'areKnowledgeElementsResettable',
'hasLinkedCampaign',
'hasLinkedAutonomousCourse',
'badges',
'stageCollection',
'areas',
'maxLevel',
'tubesCount',
'cappedTubes',
],
badges: {
ref: 'id',
included: true,
attributes: ['altMessage', 'imageUrl', 'message', 'title', 'key', 'isCertifiable', 'isAlwaysVisible', 'criteria'],
criteria: {
ref: 'id',
included: true,
attributes: ['threshold', 'scope', 'cappedTubes', 'name'],
},
},
stageCollection: {
ref: 'id',
included: true,
attributes: ['targetProfileId', 'stages'],
stages: {
ref: 'id',
included: true,
attributes: [
'threshold',
'level',
'isFirstSkill',
'title',
'message',
'prescriberTitle',
'prescriberDescription',
],
},
},
areas: {
ref: 'id',
included: true,
attributes: ['title', 'code', 'color', 'frameworkId', 'competences'],
competences: {
ref: 'id',
included: true,
attributes: ['name', 'index', 'thematics'],
thematics: {
ref: 'id',
included: true,
attributes: ['name', 'index', 'tubes'],
tubes: {
ref: 'id',
included: true,
attributes: ['name', 'practicalTitle', 'level', 'mobile', 'tablet', 'skills'],
skills: {
ref: 'id',
included: true,
attributes: ['difficulty'],
},
},
},
},
},
typeForAttribute(attribute) {
if (attribute === 'criteria') return 'badge-criteria';
return undefined;
},
}).serialize(targetProfile);
};
export { serialize };