@coorpacademy/player-web 4.2.11 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/map-state-to-props/test/answer.js +390 -0
- package/es/map-state-to-props/test/answer.js.map +1 -0
- package/es/map-state-to-props/test/fixtures/player/clue.json +131 -0
- package/es/map-state-to-props/test/fixtures/player/loading-clue.json +131 -0
- package/es/map-state-to-props/test/fixtures/player/no-clue.json +118 -0
- package/es/map-state-to-props/test/fixtures/player/slide-no-lessons.json +115 -0
- package/es/map-state-to-props/test/fixtures/player/slide.json +127 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-extra-life.json +139 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-failure.json +145 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-next-level.json +282 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-revival.json +140 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-success-node.json +154 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/popin-success.json +268 -0
- package/es/map-state-to-props/test/fixtures/popin-correction/state-fail-multiple-answers.json +473 -0
- package/es/map-state-to-props/test/fixtures/popin-end/fail.json +205 -0
- package/es/map-state-to-props/test/fixtures/popin-end/learner-adaptive-failure.json +209 -0
- package/es/map-state-to-props/test/fixtures/popin-end/learner-failure-with-redirection.json +211 -0
- package/es/map-state-to-props/test/fixtures/popin-end/learner-failure.json +211 -0
- package/es/map-state-to-props/test/fixtures/popin-end/learner-success-with-redirection.json +278 -0
- package/es/map-state-to-props/test/fixtures/popin-end/learner-success.json +275 -0
- package/es/map-state-to-props/test/fixtures/popin-end/success.json +223 -0
- package/es/map-state-to-props/test/fixtures/progression-learner.json +102 -0
- package/es/map-state-to-props/test/fixtures/progression-state.json +45 -0
- package/es/map-state-to-props/test/fixtures/slides/basic.json +60 -0
- package/es/map-state-to-props/test/fixtures/slides/plop.json +56 -0
- package/es/map-state-to-props/test/fixtures/slides/qcm-drag.json +56 -0
- package/es/map-state-to-props/test/fixtures/slides/qcm-graphic.json +49 -0
- package/es/map-state-to-props/test/fixtures/slides/qcm.json +43 -0
- package/es/map-state-to-props/test/fixtures/slides/slider.json +57 -0
- package/es/map-state-to-props/test/fixtures/slides/template.json +49 -0
- package/es/map-state-to-props/test/fixtures/slides/videos.json +163 -0
- package/es/map-state-to-props/test/fixtures/slides/with-context.json +69 -0
- package/es/map-state-to-props/test/header.js +131 -0
- package/es/map-state-to-props/test/header.js.map +1 -0
- package/es/map-state-to-props/test/index.js +107 -0
- package/es/map-state-to-props/test/index.js.map +1 -0
- package/es/map-state-to-props/test/player.js +680 -0
- package/es/map-state-to-props/test/player.js.map +1 -0
- package/es/map-state-to-props/test/popin-correction.create-header-cta.js +301 -0
- package/es/map-state-to-props/test/popin-correction.create-header-cta.js.map +1 -0
- package/es/map-state-to-props/test/popin-correction.js +80 -0
- package/es/map-state-to-props/test/popin-correction.js.map +1 -0
- package/es/map-state-to-props/test/popin-end.js +313 -0
- package/es/map-state-to-props/test/popin-end.js.map +1 -0
- package/es/map-state-to-props/test/popin-error.js +77 -0
- package/es/map-state-to-props/test/popin-error.js.map +1 -0
- package/es/map-state-to-props/test/resources.js +31 -0
- package/es/map-state-to-props/test/resources.js.map +1 -0
- package/es/test/add-timeout.js +8 -0
- package/es/test/add-timeout.js.map +1 -0
- package/es/test/helpers/css-register.js +3 -0
- package/es/test/helpers/css-register.js.map +1 -0
- package/es/test/helpers/macro.js +6 -0
- package/es/test/helpers/macro.js.map +1 -0
- package/es/test/index.js +39 -0
- package/es/test/index.js.map +1 -0
- package/es/test/init-reducers.js +50 -0
- package/es/test/init-reducers.js.map +1 -0
- package/es/test/locales.js +8 -0
- package/es/test/locales.js.map +1 -0
- package/es/test/run-app.js +20 -0
- package/es/test/run-app.js.map +1 -0
- package/es/test/store.js +38 -0
- package/es/test/store.js.map +1 -0
- package/es/views/test/helpers/render.js +13 -0
- package/es/views/test/helpers/render.js.map +1 -0
- package/es/views/test/helpers/state-to-vnode.js +7 -0
- package/es/views/test/helpers/state-to-vnode.js.map +1 -0
- package/es/views/test/loading.js +15 -0
- package/es/views/test/loading.js.map +1 -0
- package/es/views/test/popin-correction.js +223 -0
- package/es/views/test/popin-correction.js.map +1 -0
- package/es/views/test/popin-end.js +93 -0
- package/es/views/test/popin-end.js.map +1 -0
- package/es/views/test/router.js +22 -0
- package/es/views/test/router.js.map +1 -0
- package/es/views/test/slide.js +335 -0
- package/es/views/test/slide.js.map +1 -0
- package/lib/map-state-to-props/test/answer.js +408 -0
- package/lib/map-state-to-props/test/answer.js.map +1 -0
- package/lib/map-state-to-props/test/fixtures/player/clue.json +131 -0
- package/lib/map-state-to-props/test/fixtures/player/loading-clue.json +131 -0
- package/lib/map-state-to-props/test/fixtures/player/no-clue.json +118 -0
- package/lib/map-state-to-props/test/fixtures/player/slide-no-lessons.json +115 -0
- package/lib/map-state-to-props/test/fixtures/player/slide.json +127 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-extra-life.json +139 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-failure.json +145 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-next-level.json +282 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-revival.json +140 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-success-node.json +154 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/popin-success.json +268 -0
- package/lib/map-state-to-props/test/fixtures/popin-correction/state-fail-multiple-answers.json +473 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/fail.json +205 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/learner-adaptive-failure.json +209 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/learner-failure-with-redirection.json +211 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/learner-failure.json +211 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/learner-success-with-redirection.json +278 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/learner-success.json +275 -0
- package/lib/map-state-to-props/test/fixtures/popin-end/success.json +223 -0
- package/lib/map-state-to-props/test/fixtures/progression-learner.json +102 -0
- package/lib/map-state-to-props/test/fixtures/progression-state.json +45 -0
- package/lib/map-state-to-props/test/fixtures/slides/basic.json +60 -0
- package/lib/map-state-to-props/test/fixtures/slides/plop.json +56 -0
- package/lib/map-state-to-props/test/fixtures/slides/qcm-drag.json +56 -0
- package/lib/map-state-to-props/test/fixtures/slides/qcm-graphic.json +49 -0
- package/lib/map-state-to-props/test/fixtures/slides/qcm.json +43 -0
- package/lib/map-state-to-props/test/fixtures/slides/slider.json +57 -0
- package/lib/map-state-to-props/test/fixtures/slides/template.json +49 -0
- package/lib/map-state-to-props/test/fixtures/slides/videos.json +163 -0
- package/lib/map-state-to-props/test/fixtures/slides/with-context.json +69 -0
- package/lib/map-state-to-props/test/header.js +143 -0
- package/lib/map-state-to-props/test/header.js.map +1 -0
- package/lib/map-state-to-props/test/index.js +100 -0
- package/lib/map-state-to-props/test/index.js.map +1 -0
- package/lib/map-state-to-props/test/player.js +714 -0
- package/lib/map-state-to-props/test/player.js.map +1 -0
- package/lib/map-state-to-props/test/popin-correction.create-header-cta.js +315 -0
- package/lib/map-state-to-props/test/popin-correction.create-header-cta.js.map +1 -0
- package/lib/map-state-to-props/test/popin-correction.js +85 -0
- package/lib/map-state-to-props/test/popin-correction.js.map +1 -0
- package/lib/map-state-to-props/test/popin-end.js +328 -0
- package/lib/map-state-to-props/test/popin-end.js.map +1 -0
- package/lib/map-state-to-props/test/popin-error.js +85 -0
- package/lib/map-state-to-props/test/popin-error.js.map +1 -0
- package/lib/map-state-to-props/test/resources.js +42 -0
- package/lib/map-state-to-props/test/resources.js.map +1 -0
- package/lib/test/add-timeout.js +14 -0
- package/lib/test/add-timeout.js.map +1 -0
- package/lib/test/helpers/css-register.js +8 -0
- package/lib/test/helpers/css-register.js.map +1 -0
- package/lib/test/helpers/macro.js +12 -0
- package/lib/test/helpers/macro.js.map +1 -0
- package/lib/test/index.js +53 -0
- package/lib/test/index.js.map +1 -0
- package/lib/test/init-reducers.js +57 -0
- package/lib/test/init-reducers.js.map +1 -0
- package/lib/test/locales.js +18 -0
- package/lib/test/locales.js.map +1 -0
- package/lib/test/run-app.js +27 -0
- package/lib/test/run-app.js.map +1 -0
- package/lib/test/store.js +45 -0
- package/lib/test/store.js.map +1 -0
- package/lib/views/test/helpers/render.js +24 -0
- package/lib/views/test/helpers/render.js.map +1 -0
- package/lib/views/test/helpers/state-to-vnode.js +14 -0
- package/lib/views/test/helpers/state-to-vnode.js.map +1 -0
- package/lib/views/test/loading.js +22 -0
- package/lib/views/test/loading.js.map +1 -0
- package/lib/views/test/popin-correction.js +237 -0
- package/lib/views/test/popin-correction.js.map +1 -0
- package/lib/views/test/popin-end.js +105 -0
- package/lib/views/test/popin-end.js.map +1 -0
- package/lib/views/test/router.js +32 -0
- package/lib/views/test/router.js.map +1 -0
- package/lib/views/test/slide.js +359 -0
- package/lib/views/test/slide.js.map +1 -0
- package/package.json +4 -3
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": {
|
|
3
|
+
"configs": {
|
|
4
|
+
"entities": {
|
|
5
|
+
"microlearning@1": {
|
|
6
|
+
"version": 1
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"answers": {
|
|
11
|
+
"entities": {
|
|
12
|
+
"0": {
|
|
13
|
+
"1.B2.4": ["Text"]
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"clues": {
|
|
18
|
+
"entities": {}
|
|
19
|
+
},
|
|
20
|
+
"exitNodes": {
|
|
21
|
+
"entities": {
|
|
22
|
+
"successExitNode": {
|
|
23
|
+
"_id": "5809d933c762494a60eb589f",
|
|
24
|
+
"ref": "successExitNode",
|
|
25
|
+
"type": "success",
|
|
26
|
+
"meta": {
|
|
27
|
+
"updatedAt": "2017-06-05T08:36:49.954Z",
|
|
28
|
+
"createdAt": "2017-06-05T08:36:49.954Z"
|
|
29
|
+
},
|
|
30
|
+
"media": {
|
|
31
|
+
"ref": "5930752aa2b39d0024eebffb",
|
|
32
|
+
"_id": "5930752aa2b39d0024eebffb",
|
|
33
|
+
"description": "Hierarchie",
|
|
34
|
+
"mediaUrl": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/raw/hierachie-contenu-1496311207505.pdf",
|
|
35
|
+
"mimeType": "application/pdf",
|
|
36
|
+
"type": "pdf",
|
|
37
|
+
"subtitles": [],
|
|
38
|
+
"posters": [],
|
|
39
|
+
"src": []
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"progressions": {
|
|
45
|
+
"entities": {
|
|
46
|
+
"0": {
|
|
47
|
+
"_id": "0",
|
|
48
|
+
"engine": {
|
|
49
|
+
"ref": "microlearning",
|
|
50
|
+
"version": "1"
|
|
51
|
+
},
|
|
52
|
+
"content": {
|
|
53
|
+
"ref": "1.B2",
|
|
54
|
+
"type": "chapter"
|
|
55
|
+
},
|
|
56
|
+
"state": {
|
|
57
|
+
"slides": ["1.B2.4"],
|
|
58
|
+
"nextContent": {
|
|
59
|
+
"ref": "successExitNode",
|
|
60
|
+
"type": "success"
|
|
61
|
+
},
|
|
62
|
+
"lives": 0,
|
|
63
|
+
"step": {
|
|
64
|
+
"current": 2
|
|
65
|
+
},
|
|
66
|
+
"isCorrect": true,
|
|
67
|
+
"stars": 10,
|
|
68
|
+
"requestedClues": [],
|
|
69
|
+
"viewedResources": [],
|
|
70
|
+
"content": {
|
|
71
|
+
"ref": "1.B2.4",
|
|
72
|
+
"type": "slide"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"rank": {
|
|
79
|
+
"start": 100,
|
|
80
|
+
"end": 90
|
|
81
|
+
},
|
|
82
|
+
"recommendations": {
|
|
83
|
+
"entities": {
|
|
84
|
+
"0": [
|
|
85
|
+
{
|
|
86
|
+
"view": "grid",
|
|
87
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
88
|
+
"time": "8m",
|
|
89
|
+
"adaptiv": false,
|
|
90
|
+
"certification": false,
|
|
91
|
+
"type": "chapitre",
|
|
92
|
+
"title": "chapter 1",
|
|
93
|
+
"author": "Superman",
|
|
94
|
+
"progress": 0,
|
|
95
|
+
"key": "cha_Ny1BTxRp~",
|
|
96
|
+
"disabled": false
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"view": "grid",
|
|
100
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
101
|
+
"time": "8m",
|
|
102
|
+
"adaptiv": false,
|
|
103
|
+
"certification": false,
|
|
104
|
+
"type": "chapitre",
|
|
105
|
+
"title": "chapter 1",
|
|
106
|
+
"author": "Superman",
|
|
107
|
+
"progress": 0,
|
|
108
|
+
"key": "cha_Ny1BTxRp~",
|
|
109
|
+
"disabled": false
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"view": "grid",
|
|
113
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
114
|
+
"time": "8m",
|
|
115
|
+
"adaptiv": false,
|
|
116
|
+
"certification": false,
|
|
117
|
+
"type": "chapitre",
|
|
118
|
+
"title": "chapter 1",
|
|
119
|
+
"author": "Superman",
|
|
120
|
+
"progress": 0,
|
|
121
|
+
"key": "cha_Ny1BTxRp~",
|
|
122
|
+
"disabled": false
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"nextContent": {
|
|
128
|
+
"entities": {
|
|
129
|
+
"0": {
|
|
130
|
+
"card": {
|
|
131
|
+
"view": "grid",
|
|
132
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
133
|
+
"time": "8m",
|
|
134
|
+
"adaptiv": false,
|
|
135
|
+
"certification": false,
|
|
136
|
+
"type": "chapitre",
|
|
137
|
+
"title": "Chapter 2",
|
|
138
|
+
"author": "Superman",
|
|
139
|
+
"progress": 0,
|
|
140
|
+
"key": "cha_NyZ4M0YQ7",
|
|
141
|
+
"disabled": false
|
|
142
|
+
},
|
|
143
|
+
"nextContentType": "chapter",
|
|
144
|
+
"title": "Chapter 2"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"contents": {
|
|
149
|
+
"chapter": {
|
|
150
|
+
"entities": {
|
|
151
|
+
"1.B2": {
|
|
152
|
+
"bestScore": 0,
|
|
153
|
+
"info": {
|
|
154
|
+
"nbSlides": 4
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"slide": {
|
|
160
|
+
"entities": {
|
|
161
|
+
"1.B2.4": {
|
|
162
|
+
"_id": "1.B2.4",
|
|
163
|
+
"klf": "Some KLF",
|
|
164
|
+
"tips": "XXX",
|
|
165
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
166
|
+
"authors": [],
|
|
167
|
+
"context": {
|
|
168
|
+
"media": {
|
|
169
|
+
"subtitles": [],
|
|
170
|
+
"posters": [],
|
|
171
|
+
"src": []
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"meta": {
|
|
175
|
+
"updatedAt": "2017-06-13T12:15:40.321Z",
|
|
176
|
+
"createdAt": "2017-06-13T12:15:40.321Z"
|
|
177
|
+
},
|
|
178
|
+
"lessons": [
|
|
179
|
+
{
|
|
180
|
+
"type": "video",
|
|
181
|
+
"poster": "//static.coorpacademy.com/content/digital/miniatures_cours/base/1B2.png",
|
|
182
|
+
"description": "Anatomie d'une page de résultats",
|
|
183
|
+
"mimeType": "application/vimeo",
|
|
184
|
+
"videoId": "88393119\n",
|
|
185
|
+
"_id": "590b862e2e967f64333ad456",
|
|
186
|
+
"subtitles": [],
|
|
187
|
+
"posters": [],
|
|
188
|
+
"src": []
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"question": {
|
|
192
|
+
"type": "basic",
|
|
193
|
+
"header": "Écrivez le mot Text dans l'input.\n",
|
|
194
|
+
"explanation": "Saisissez votre réponse.",
|
|
195
|
+
"content": {
|
|
196
|
+
"label": "Saisissez votre réponse.",
|
|
197
|
+
"placeholder": " ",
|
|
198
|
+
"maxTypos": null,
|
|
199
|
+
"choices": [],
|
|
200
|
+
"media": {
|
|
201
|
+
"subtitles": [],
|
|
202
|
+
"posters": [],
|
|
203
|
+
"src": []
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"medias": []
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"ui": {
|
|
214
|
+
"answers": {},
|
|
215
|
+
"corrections": {
|
|
216
|
+
"accordion": [false, false, false]
|
|
217
|
+
},
|
|
218
|
+
"current": {
|
|
219
|
+
"progressionId": "0"
|
|
220
|
+
},
|
|
221
|
+
"route": {}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": {
|
|
3
|
+
"contents": {
|
|
4
|
+
"slide": {
|
|
5
|
+
"entities": {
|
|
6
|
+
"0": {
|
|
7
|
+
"chapter_id": "chapter2",
|
|
8
|
+
"lessons": [
|
|
9
|
+
{
|
|
10
|
+
"_id": "5a21127459e9b1002853be55",
|
|
11
|
+
"poster": "https://api-staging.coorpacademy.com/api-service/medias?url=https://static.coorpacademy.com/content/CoorpAcademy/content-bfm/cockpit-bfm/default/lafranceatout-1507106331318.jpg&h=250&w=250&q=90",
|
|
12
|
+
"description": "La France a tout pour réussir - oct. 1/4",
|
|
13
|
+
"videoId": "236612175",
|
|
14
|
+
"mimeType": "application/vimeo",
|
|
15
|
+
"ref": "les_EJDG6tpo7",
|
|
16
|
+
"type": "video",
|
|
17
|
+
"subtitles": [],
|
|
18
|
+
"posters": [],
|
|
19
|
+
"src": [],
|
|
20
|
+
"id": "5a21127459e9b1002853be55"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"question": {
|
|
24
|
+
"type": "qcm",
|
|
25
|
+
"header": "Which is the best language to use to construct a powerful speech?",
|
|
26
|
+
"explanation": "Select the right answer.",
|
|
27
|
+
"content": {
|
|
28
|
+
"choices": [
|
|
29
|
+
{
|
|
30
|
+
"id": "sli_41z20kbsM.id",
|
|
31
|
+
"label": "Spanish",
|
|
32
|
+
"value": "sli_41z20kbsM.choice_4knC0kbsz"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "sli_41z20kbsM.id",
|
|
36
|
+
"label": "English",
|
|
37
|
+
"value": "sli_41z20kbsM.choice_Nk6RAJ~of"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "sli_41z20kbsM.id",
|
|
41
|
+
"label": "French",
|
|
42
|
+
"value": "sli_41z20kbsM.choice_4yC0CyZsz"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"answers": [["English"]]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"chapter": {
|
|
52
|
+
"entities": {
|
|
53
|
+
"chapter2": {
|
|
54
|
+
"_id": "chapter2",
|
|
55
|
+
"name": "chapter2!"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"level": {
|
|
60
|
+
"entities": {
|
|
61
|
+
"1": {
|
|
62
|
+
"name": "level1",
|
|
63
|
+
"level": "base",
|
|
64
|
+
"levelTranslation": "base-translation",
|
|
65
|
+
"chapterIds": ["chapter1", "chapter2"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"progressions": {
|
|
71
|
+
"entities": {
|
|
72
|
+
"0": {
|
|
73
|
+
"engine": {
|
|
74
|
+
"ref": "learner",
|
|
75
|
+
"version": "1"
|
|
76
|
+
},
|
|
77
|
+
"state": {
|
|
78
|
+
"nextContent": {
|
|
79
|
+
"ref": "0",
|
|
80
|
+
"type": "slide"
|
|
81
|
+
},
|
|
82
|
+
"lives": 3,
|
|
83
|
+
"step": {
|
|
84
|
+
"current": 0,
|
|
85
|
+
"total": 4
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"content": {
|
|
89
|
+
"ref": "1",
|
|
90
|
+
"type": "level"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"ui": {
|
|
97
|
+
"route": { "0": "answer" },
|
|
98
|
+
"current": {
|
|
99
|
+
"progressionId": "0"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": {
|
|
3
|
+
"contents": {
|
|
4
|
+
"slide": {"entities": {}},
|
|
5
|
+
"chapter": {
|
|
6
|
+
"entities": {
|
|
7
|
+
"5.C7": {
|
|
8
|
+
"name": "Les réseaux sociaux au service du crowdfunding"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"progressions": {
|
|
14
|
+
"entities": {
|
|
15
|
+
"0": {
|
|
16
|
+
"engine": {
|
|
17
|
+
"ref": "microlearning",
|
|
18
|
+
"version": "1"
|
|
19
|
+
},
|
|
20
|
+
"state": {
|
|
21
|
+
"nextContent": {
|
|
22
|
+
"ref": "0",
|
|
23
|
+
"type": "slide"
|
|
24
|
+
},
|
|
25
|
+
"lives": 3,
|
|
26
|
+
"step": {
|
|
27
|
+
"current": 0,
|
|
28
|
+
"total": 4
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"content": {
|
|
32
|
+
"ref": "5.C7",
|
|
33
|
+
"type": "chapter"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"ui": {
|
|
40
|
+
"route": {"0": "answer"},
|
|
41
|
+
"current": {
|
|
42
|
+
"progressionId": "0"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_id":"1.B2.4",
|
|
3
|
+
"klf":"Some KLF",
|
|
4
|
+
"tips":"XXX",
|
|
5
|
+
"chapter_id":"cha_Ny1BTxRp~",
|
|
6
|
+
"authors":[],
|
|
7
|
+
"meta":{
|
|
8
|
+
"updatedAt":"2017-06-13T12:15:40.321Z",
|
|
9
|
+
"createdAt":"2017-06-13T12:15:40.321Z"
|
|
10
|
+
},
|
|
11
|
+
"lessons":[
|
|
12
|
+
{
|
|
13
|
+
"type":"video",
|
|
14
|
+
"poster":"//static.coorpacademy.com/content/digital/miniatures_cours/base/1B2.png",
|
|
15
|
+
"description":"Anatomie d'une page de résultats",
|
|
16
|
+
"mimeType":"application/vimeo",
|
|
17
|
+
"videoId":"88393119\n",
|
|
18
|
+
"_id":"590b862e2e967f64333ad456",
|
|
19
|
+
"subtitles":[],
|
|
20
|
+
"posters":[],
|
|
21
|
+
"src":[]
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"question":{
|
|
25
|
+
"type":"basic",
|
|
26
|
+
"header":"Écrivez le mot Text dans l'input.\n",
|
|
27
|
+
"explanation":"Saisissez votre réponse.",
|
|
28
|
+
"content":{
|
|
29
|
+
"label":"Saisissez votre réponse.",
|
|
30
|
+
"placeholder":" ",
|
|
31
|
+
"maxTypos":null,
|
|
32
|
+
"choices":[],
|
|
33
|
+
"answers": [
|
|
34
|
+
[
|
|
35
|
+
"Text"
|
|
36
|
+
]
|
|
37
|
+
],
|
|
38
|
+
"media":{
|
|
39
|
+
"subtitles":[],
|
|
40
|
+
"posters":[],
|
|
41
|
+
"src":[]
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"medias": [
|
|
45
|
+
{
|
|
46
|
+
"type": "img",
|
|
47
|
+
"_id": "593eb72a187bd18c01283591",
|
|
48
|
+
"subtitles": [],
|
|
49
|
+
"posters": [],
|
|
50
|
+
"src": [
|
|
51
|
+
{
|
|
52
|
+
"mimeType": "image/jpeg",
|
|
53
|
+
"url": "//static.coorpacademy.com/content/ijoinchanel/en/slides/1B2_Q6/1B2-Q6-canap-v1.jpg",
|
|
54
|
+
"_id": "593eb72a187bd18c01283592"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_id": "1.B2.4.bis",
|
|
3
|
+
"klf": "Some KLF",
|
|
4
|
+
"tips": "XXX",
|
|
5
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
6
|
+
"authors": [],
|
|
7
|
+
"meta": {
|
|
8
|
+
"updatedAt": "2017-06-13T12:15:40.321Z",
|
|
9
|
+
"createdAt": "2017-06-13T12:15:40.321Z"
|
|
10
|
+
},
|
|
11
|
+
"lessons": [
|
|
12
|
+
{
|
|
13
|
+
"type": "video",
|
|
14
|
+
"poster": "//static.coorpacademy.com/content/digital/miniatures_cours/base/1B2.png",
|
|
15
|
+
"description": "Anatomie d'une page de résultats",
|
|
16
|
+
"mimeType": "application/vimeo",
|
|
17
|
+
"videoId": "88393119\n",
|
|
18
|
+
"_id": "590b862e2e967f64333ad456",
|
|
19
|
+
"subtitles": [],
|
|
20
|
+
"posters": [],
|
|
21
|
+
"src": []
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"question": {
|
|
25
|
+
"type": "plop",
|
|
26
|
+
"header": "Écrivez le mot Text dans l'input.\n",
|
|
27
|
+
"explanation": "Saisissez votre réponse.",
|
|
28
|
+
"content": {
|
|
29
|
+
"label": "Saisissez votre réponse.",
|
|
30
|
+
"placeholder": " ",
|
|
31
|
+
"maxTypos": null,
|
|
32
|
+
"choices": [],
|
|
33
|
+
"answers": [["Text"]],
|
|
34
|
+
"media": {
|
|
35
|
+
"subtitles": [],
|
|
36
|
+
"posters": [],
|
|
37
|
+
"src": []
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"medias": [
|
|
41
|
+
{
|
|
42
|
+
"type": "img",
|
|
43
|
+
"_id": "593eb72a187bd18c01283591",
|
|
44
|
+
"subtitles": [],
|
|
45
|
+
"posters": [],
|
|
46
|
+
"src": [
|
|
47
|
+
{
|
|
48
|
+
"mimeType": "image/jpeg",
|
|
49
|
+
"url": "//static.coorpacademy.com/content/ijoinchanel/en/slides/1B2_Q6/1B2-Q6-canap-v1.jpg",
|
|
50
|
+
"_id": "593eb72a187bd18c01283592"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_id": "8.B2.2",
|
|
3
|
+
"klf": "Le smartphone est l'appareil le plus utilisé devant l'écran de télévision. Viennent ensuite l'ordinateur et la tablette.",
|
|
4
|
+
"tips": "En moyenne, les utilisateurs de smartphones passent 147 minutes chaque jour sur leur appareil.",
|
|
5
|
+
"chapter_id": "8.B2",
|
|
6
|
+
"chapter_ref": "8.B2",
|
|
7
|
+
"authors": [],
|
|
8
|
+
"lessons": [
|
|
9
|
+
{
|
|
10
|
+
"type": "video",
|
|
11
|
+
"mimeType": "application/vimeo",
|
|
12
|
+
"videoId": "127718777",
|
|
13
|
+
"description": "Chiffres-clés du multi-écran",
|
|
14
|
+
"poster": "//static.coorpacademy.com/content/digital/fr/miniatures/video_miniature.jpg",
|
|
15
|
+
"_id": "5978690b48a0ff240092f4a3",
|
|
16
|
+
"subtitles": [],
|
|
17
|
+
"posters": [],
|
|
18
|
+
"views": {
|
|
19
|
+
"fromList": 63,
|
|
20
|
+
"fromLesson": 20
|
|
21
|
+
},
|
|
22
|
+
"src": []
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"question": {
|
|
26
|
+
"type": "qcmDrag",
|
|
27
|
+
"header": "Classez ces appareils connectés du plus au moins utilisé devant la télévision.",
|
|
28
|
+
"explanation": "Cliquez sur les réponses dans le bon ordre.",
|
|
29
|
+
"clue": "clue",
|
|
30
|
+
"content": {
|
|
31
|
+
"matchOrder": true,
|
|
32
|
+
"maxTypos": null,
|
|
33
|
+
"choices": [
|
|
34
|
+
{
|
|
35
|
+
"label": "L'ordinateur",
|
|
36
|
+
"value": "sli_VyZmMYQCFWj.choice_01"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"label": "La tablette",
|
|
40
|
+
"value": "sli_VyZmMYQCFWj.choice_02"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"label": "Le smartphone",
|
|
44
|
+
"value": "sli_VyZmMYQCFWj.choice_03"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"answers": [
|
|
49
|
+
[
|
|
50
|
+
"Le smartphone",
|
|
51
|
+
"L'ordinateur",
|
|
52
|
+
"La tablette"
|
|
53
|
+
]
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_id": "sli_V1zinOWt~",
|
|
3
|
+
"klf": "La révolution numérique a vu naître une nouvelle génération appelée génération Y. Les individus de cette génération ont vu Internet se démocratiser. Ils sont passionés par les outils numériques et avides d'information.",
|
|
4
|
+
"tips": "Certains affirment que la génération Y est appelée ainsi en référence à la forme des écouteurs portés par les jeunes Y.",
|
|
5
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
6
|
+
"question": {
|
|
7
|
+
"type": "qcmGraphic",
|
|
8
|
+
"header": "La révolution numérique a permis l'émergence d'une nouvelle génération appelée génération Z. Vrai ou faux ?",
|
|
9
|
+
"explanation": "Sélectionnez la bonne réponse.",
|
|
10
|
+
"content": {
|
|
11
|
+
"choices": [
|
|
12
|
+
{
|
|
13
|
+
"value": "sli_V1zinOWt~.choice_41gQ8a-~K~",
|
|
14
|
+
"label": "Vrai",
|
|
15
|
+
"media": {
|
|
16
|
+
"type": "img",
|
|
17
|
+
"subtitles": [],
|
|
18
|
+
"posters": [],
|
|
19
|
+
"src": [
|
|
20
|
+
{
|
|
21
|
+
"_id": "59311efb7b2f920056a8ed63",
|
|
22
|
+
"url": "//static.coorpacademy.com/content/partner-women-up/fr/medias/img/choice/vrai_tick-1470664348611.png",
|
|
23
|
+
"mimeType": "image/png"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"value": "sli_V1zinOWt~.choice_4keY8T-~YZ",
|
|
30
|
+
"label": "Faux",
|
|
31
|
+
"items": [],
|
|
32
|
+
"media": {
|
|
33
|
+
"type": "img",
|
|
34
|
+
"subtitles": [],
|
|
35
|
+
"posters": [],
|
|
36
|
+
"src": [
|
|
37
|
+
{
|
|
38
|
+
"_id": "59311efb7b2f920056a8ed61",
|
|
39
|
+
"url": "//static.coorpacademy.com/content/partner-women-up/fr/medias/img/choice/faux_cross-1470664357972.png",
|
|
40
|
+
"mimeType": "image/png"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"medias": []
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_id": "qcmSlide-1",
|
|
3
|
+
"question": {
|
|
4
|
+
"type": "qcm",
|
|
5
|
+
"header": "Quelles cases de QCM ne sont pas adjacentes ?",
|
|
6
|
+
"content": {
|
|
7
|
+
"choices": [
|
|
8
|
+
{
|
|
9
|
+
"label": "Case 1",
|
|
10
|
+
"id": "answer1",
|
|
11
|
+
"value": "answer 1"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"label": "Case 2",
|
|
15
|
+
"id": "answer2",
|
|
16
|
+
"value": "answer 2"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"label": "Case 3",
|
|
20
|
+
"id": "answer3",
|
|
21
|
+
"value": "answer 3"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"label": "Case 4",
|
|
25
|
+
"id": "answer4",
|
|
26
|
+
"value": "answer 4"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"lessons": [
|
|
32
|
+
{
|
|
33
|
+
"description": "La recherche en ligne A",
|
|
34
|
+
"mimeType": "application/vimeo",
|
|
35
|
+
"videoId": 33678526,
|
|
36
|
+
"width": 611,
|
|
37
|
+
"height": 280
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"clue": "imperdiet nunc in, pellentesque tortor !!!",
|
|
41
|
+
"klf": "Phasellus imperdiet neque a ipsum venenatis, vel ultrices orci tincidunt. Praesent venenatis diam turpis, rutrum convallis quam varius vitae. In hac habitasse platea dictumst. In hendrerit lorem sagittis, hendrerit orci id, varius velit. Maecenas lobortis malesuada urna, eget placerat ligula adipiscing at.",
|
|
42
|
+
"tips": "Suspendisse augue dui, volutpat a turpis non, scelerisque vulputate tortor. Aliquam non ipsum eu ligula pellentesque elementum."
|
|
43
|
+
}
|