|
1 | 1 | import Controller from '@ember/controller';
|
| 2 | +import sortBy from 'lodash/sortBy'; |
2 | 3 |
|
3 | 4 | export default class TargetProfileDetailsController extends Controller {
|
4 | 5 | get areas() {
|
5 |
| - return this.model.areas.sortBy('frameworkId', 'code').map((area) => this.buildAreaViewModel(area)); |
| 6 | + return sortBy([...this.model.areas], ['frameworkId', 'code']).map((area) => this.buildAreaViewModel(area)); |
6 | 7 | }
|
7 | 8 |
|
8 | 9 | buildAreaViewModel(area) {
|
| 10 | + const competences = sortBy([...area.hasMany('competences').value()], 'index'); |
| 11 | + |
9 | 12 | return {
|
10 | 13 | title: `${area.code} · ${area.title}`,
|
11 | 14 | color: area.color,
|
12 |
| - competences: area |
13 |
| - .hasMany('competences') |
14 |
| - .value() |
15 |
| - .sortBy('index') |
16 |
| - .map((competence) => this.buildCompetenceViewModel(competence)), |
| 15 | + competences: competences.map((competence) => this.buildCompetenceViewModel(competence)), |
17 | 16 | };
|
18 | 17 | }
|
19 | 18 |
|
20 | 19 | buildCompetenceViewModel(competence) {
|
| 20 | + const thematics = sortBy([...competence.hasMany('thematics').value()], 'index'); |
| 21 | + |
21 | 22 | return {
|
22 | 23 | id: competence.id,
|
23 | 24 | title: `${competence.index} ${competence.name}`,
|
24 |
| - thematics: competence |
25 |
| - .hasMany('thematics') |
26 |
| - .value() |
27 |
| - .sortBy('index') |
28 |
| - .map((thematic) => this.buildThematicViewModel(thematic)), |
| 25 | + thematics: thematics.map((thematic) => this.buildThematicViewModel(thematic)), |
29 | 26 | };
|
30 | 27 | }
|
31 | 28 |
|
32 | 29 | buildThematicViewModel(thematic) {
|
| 30 | + const tubes = sortBy([...thematic.hasMany('tubes').value()], 'practicalTitle'); |
| 31 | + |
33 | 32 | return {
|
34 | 33 | name: thematic.name,
|
35 | 34 | nbTubes: thematic.hasMany('tubes').value().length,
|
36 |
| - tubes: thematic |
37 |
| - .hasMany('tubes') |
38 |
| - .value() |
39 |
| - .sortBy('practicalTitle') |
40 |
| - .map((tube) => this.buildTubeViewModel(tube)), |
| 35 | + tubes: tubes.map((tube) => this.buildTubeViewModel(tube)), |
41 | 36 | };
|
42 | 37 | }
|
43 | 38 |
|
44 | 39 | buildTubeViewModel(tube) {
|
| 40 | + const skills = sortBy([...tube.hasMany('skills').value()], 'difficulty'); |
| 41 | + |
45 | 42 | return {
|
46 | 43 | id: tube.id,
|
47 | 44 | title: `${tube.name} : ${tube.practicalTitle}`,
|
48 | 45 | level: tube.level,
|
49 | 46 | mobile: tube.mobile,
|
50 | 47 | tablet: tube.tablet,
|
51 |
| - skills: tube |
52 |
| - .hasMany('skills') |
53 |
| - .value() |
54 |
| - .sortBy('difficulty') |
55 |
| - .map((skill) => this.buildSkillViewModel(skill)), |
| 48 | + skills: skills.map((skill) => this.buildSkillViewModel(skill)), |
56 | 49 | };
|
57 | 50 | }
|
58 | 51 |
|
|
0 commit comments