@coorpacademy/player-web 4.2.11 → 4.2.12
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,473 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": {
|
|
3
|
+
"configs": {
|
|
4
|
+
"entities": {
|
|
5
|
+
"microlearning@1": {
|
|
6
|
+
"version": 1
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"answers": {
|
|
11
|
+
"entities": {
|
|
12
|
+
"59634ace3f6143001c46bae5": {
|
|
13
|
+
"sli_4ymMuMFb8": {
|
|
14
|
+
"correctAnswer": ["Twitter"],
|
|
15
|
+
"corrections": [
|
|
16
|
+
{
|
|
17
|
+
"answer": "Twitter",
|
|
18
|
+
"isCorrect": true
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"sli_EyinLfF~X": {
|
|
23
|
+
"correctAnswer": ["4"],
|
|
24
|
+
"corrections": [
|
|
25
|
+
{
|
|
26
|
+
"answer": "4",
|
|
27
|
+
"isCorrect": true
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"sli_4ymMuMFbB": {
|
|
32
|
+
"correctAnswer": ["Blanc"],
|
|
33
|
+
"corrections": [
|
|
34
|
+
{
|
|
35
|
+
"answer": "blanc",
|
|
36
|
+
"isCorrect": true
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"sli_NJ862PX7Q": {
|
|
41
|
+
"correctAnswer": ["France", "Suisse"],
|
|
42
|
+
"corrections": [
|
|
43
|
+
{
|
|
44
|
+
"answer": "Suisse",
|
|
45
|
+
"isCorrect": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"answer": "Fiji",
|
|
49
|
+
"isCorrect": false
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"contents": {
|
|
57
|
+
"chapter": {
|
|
58
|
+
"entities": {
|
|
59
|
+
"cha_Ny1BTxRp~": {
|
|
60
|
+
"_id": "cha_Ny1BTxRp~",
|
|
61
|
+
"name": "chapter 1",
|
|
62
|
+
"stars": 20,
|
|
63
|
+
"freeRun": true,
|
|
64
|
+
"info": {
|
|
65
|
+
"nbSlides": 4
|
|
66
|
+
},
|
|
67
|
+
"meta": {
|
|
68
|
+
"updatedAt": "2017-06-29T14:39:19.495Z",
|
|
69
|
+
"createdAt": "2017-06-01T10:13:25.708Z"
|
|
70
|
+
},
|
|
71
|
+
"poster": {
|
|
72
|
+
"subtitles": [],
|
|
73
|
+
"posters": [],
|
|
74
|
+
"src": []
|
|
75
|
+
},
|
|
76
|
+
"isConditional": false,
|
|
77
|
+
"time": 8
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"slide": {
|
|
82
|
+
"entities": {
|
|
83
|
+
"sli_4ymMuMFb8": {
|
|
84
|
+
"_id": "sli_4ymMuMFb8",
|
|
85
|
+
"klf": "Sur Twitter, l’outil de référence du microblogging, les messages sont limités à 140 signes.",
|
|
86
|
+
"tips": "Twitter compterait plus de 20 millions de faux comptes.",
|
|
87
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
88
|
+
"authors": [],
|
|
89
|
+
"context": {
|
|
90
|
+
"media": {
|
|
91
|
+
"subtitles": [],
|
|
92
|
+
"posters": [],
|
|
93
|
+
"src": []
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"meta": {
|
|
97
|
+
"updatedAt": "2017-07-10T09:37:18.273Z",
|
|
98
|
+
"createdAt": "2017-07-10T09:37:18.273Z"
|
|
99
|
+
},
|
|
100
|
+
"lessons": [
|
|
101
|
+
{
|
|
102
|
+
"type": "video",
|
|
103
|
+
"mimeType": "application/vimeo",
|
|
104
|
+
"videoId": "191200830",
|
|
105
|
+
"description": "Universal Searches",
|
|
106
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
107
|
+
"_id": "5955111adfdc3224006ec08b",
|
|
108
|
+
"subtitles": [],
|
|
109
|
+
"posters": [],
|
|
110
|
+
"src": []
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "video",
|
|
114
|
+
"mimeType": "application/vimeo",
|
|
115
|
+
"videoId": "191168702",
|
|
116
|
+
"description": "A Short History of Search Engines",
|
|
117
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
118
|
+
"_id": "5955111adfdc3224006ec08a",
|
|
119
|
+
"subtitles": [],
|
|
120
|
+
"posters": [],
|
|
121
|
+
"src": []
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"question": {
|
|
125
|
+
"type": "basic",
|
|
126
|
+
"header": "Quel réseau social se distingue par ses messages instantanés limités à 140 signes ?",
|
|
127
|
+
"explanation": "Saisissez votre réponse.",
|
|
128
|
+
"content": {
|
|
129
|
+
"label": " ",
|
|
130
|
+
"placeholder": " ",
|
|
131
|
+
"id": "sli_4ymMuMFb8.choice_1",
|
|
132
|
+
"maxTypos": null,
|
|
133
|
+
"choices": [],
|
|
134
|
+
"media": {
|
|
135
|
+
"subtitles": [],
|
|
136
|
+
"posters": [],
|
|
137
|
+
"src": []
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"medias": []
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"sli_EyinLfF~X": {
|
|
144
|
+
"_id": "sli_EyinLfF~X",
|
|
145
|
+
"klf": "2 x 2 est égal à additionner 2 fois le chiffre 2 à zéro. C est-à-dire 0 + 2 = 2 (une première fois), plus 2 (ce qu on a cumulé) + 2 = 4.",
|
|
146
|
+
"tips": "4 s'écrit 11 en base 3",
|
|
147
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
148
|
+
"__v": 0,
|
|
149
|
+
"authors": [],
|
|
150
|
+
"context": {
|
|
151
|
+
"media": {
|
|
152
|
+
"subtitles": [],
|
|
153
|
+
"posters": [],
|
|
154
|
+
"src": []
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"meta": {
|
|
158
|
+
"updatedAt": "2017-07-10T09:37:24.078Z",
|
|
159
|
+
"createdAt": "2017-07-10T09:37:24.078Z"
|
|
160
|
+
},
|
|
161
|
+
"lessons": [
|
|
162
|
+
{
|
|
163
|
+
"type": "video",
|
|
164
|
+
"mimeType": "application/vimeo",
|
|
165
|
+
"videoId": "191200830",
|
|
166
|
+
"description": "Universal Searches",
|
|
167
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
168
|
+
"_id": "5955111bdfdc3224006ec098",
|
|
169
|
+
"subtitles": [],
|
|
170
|
+
"posters": [],
|
|
171
|
+
"src": []
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"type": "video",
|
|
175
|
+
"mimeType": "application/vimeo",
|
|
176
|
+
"videoId": "191168702",
|
|
177
|
+
"description": "A Short History of Search Engines",
|
|
178
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
179
|
+
"_id": "5955111bdfdc3224006ec097",
|
|
180
|
+
"subtitles": [],
|
|
181
|
+
"posters": [],
|
|
182
|
+
"src": []
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"question": {
|
|
186
|
+
"type": "qcm",
|
|
187
|
+
"header": "Répondez à cette question si difficile... 2 x 2 ?",
|
|
188
|
+
"explanation": "Sélectionnez la (les) bonne(s) réponse(s).",
|
|
189
|
+
"content": {
|
|
190
|
+
"maxTypos": null,
|
|
191
|
+
"choices": [
|
|
192
|
+
{
|
|
193
|
+
"label": "Je ne sais pas",
|
|
194
|
+
"value": "sli_EyinLfF~X.choice_EyYRLMYWQ",
|
|
195
|
+
"_id": "5955111bdfdc3224006ec09b",
|
|
196
|
+
"items": [],
|
|
197
|
+
"media": {
|
|
198
|
+
"subtitles": [],
|
|
199
|
+
"posters": [],
|
|
200
|
+
"src": []
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"label": "4",
|
|
205
|
+
"value": "sli_EyinLfF~X.choice_V1M1wGFWm",
|
|
206
|
+
"_id": "5955111bdfdc3224006ec09a",
|
|
207
|
+
"items": [],
|
|
208
|
+
"media": {
|
|
209
|
+
"subtitles": [],
|
|
210
|
+
"posters": [],
|
|
211
|
+
"src": []
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"label": "Demandez à Lucas !",
|
|
216
|
+
"value": "sli_EyinLfF~X.choice_NJdkDfF~Q",
|
|
217
|
+
"_id": "5955111bdfdc3224006ec099",
|
|
218
|
+
"items": [],
|
|
219
|
+
"media": {
|
|
220
|
+
"subtitles": [],
|
|
221
|
+
"posters": [],
|
|
222
|
+
"src": []
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"media": {
|
|
227
|
+
"subtitles": [],
|
|
228
|
+
"posters": [],
|
|
229
|
+
"src": []
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"medias": []
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"sli_4ymMuMFbB": {
|
|
236
|
+
"_id": "sli_4ymMuMFbB",
|
|
237
|
+
"klf": "Pas problème si t'es daltonien.",
|
|
238
|
+
"tips": "On fait la même blague en Amérique du Sud, avec le cheval blanc de Simon Bolivar.",
|
|
239
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
240
|
+
"authors": [],
|
|
241
|
+
"context": {
|
|
242
|
+
"media": {
|
|
243
|
+
"subtitles": [],
|
|
244
|
+
"posters": [],
|
|
245
|
+
"src": []
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"meta": {
|
|
249
|
+
"updatedAt": "2017-07-10T09:37:29.070Z",
|
|
250
|
+
"createdAt": "2017-07-10T09:37:29.070Z"
|
|
251
|
+
},
|
|
252
|
+
"lessons": [
|
|
253
|
+
{
|
|
254
|
+
"type": "video",
|
|
255
|
+
"mimeType": "application/vimeo",
|
|
256
|
+
"videoId": "191200830",
|
|
257
|
+
"description": "Universal Searches",
|
|
258
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
259
|
+
"_id": "5955111adfdc3224006ec091",
|
|
260
|
+
"subtitles": [],
|
|
261
|
+
"posters": [],
|
|
262
|
+
"src": []
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"type": "video",
|
|
266
|
+
"mimeType": "application/vimeo",
|
|
267
|
+
"videoId": "191168702",
|
|
268
|
+
"description": "A Short History of Search Engines",
|
|
269
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
270
|
+
"_id": "5955111adfdc3224006ec090",
|
|
271
|
+
"subtitles": [],
|
|
272
|
+
"posters": [],
|
|
273
|
+
"src": []
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"question": {
|
|
277
|
+
"type": "basic",
|
|
278
|
+
"header": "De quelle couleur est le cheval blanc de Henri IV ?",
|
|
279
|
+
"explanation": "Saisissez votre réponse.",
|
|
280
|
+
"content": {
|
|
281
|
+
"label": " ",
|
|
282
|
+
"placeholder": " ",
|
|
283
|
+
"id": "sli_4ymMuMFbB.choice_1",
|
|
284
|
+
"maxTypos": null,
|
|
285
|
+
"choices": [],
|
|
286
|
+
"media": {
|
|
287
|
+
"subtitles": [],
|
|
288
|
+
"posters": [],
|
|
289
|
+
"src": []
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"medias": []
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"sli_NJ862PX7Q": {
|
|
296
|
+
"_id": "sli_NJ862PX7Q",
|
|
297
|
+
"klf": "Coorpacademy compte deux sièges principaux, un à Paris, l'autre à Lausanne.",
|
|
298
|
+
"tips": "Nos vidéo conf se font toujours avec les équipes des deux pays.",
|
|
299
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
300
|
+
"authors": [],
|
|
301
|
+
"context": {
|
|
302
|
+
"media": {
|
|
303
|
+
"subtitles": [],
|
|
304
|
+
"posters": [],
|
|
305
|
+
"src": []
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"meta": {
|
|
309
|
+
"updatedAt": "2017-07-10T09:37:36.773Z",
|
|
310
|
+
"createdAt": "2017-07-10T09:37:36.773Z"
|
|
311
|
+
},
|
|
312
|
+
"lessons": [
|
|
313
|
+
{
|
|
314
|
+
"type": "video",
|
|
315
|
+
"mimeType": "application/vimeo",
|
|
316
|
+
"videoId": "191200830",
|
|
317
|
+
"description": "Universal Searches",
|
|
318
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
319
|
+
"_id": "59551123dfdc3224006ec0a0",
|
|
320
|
+
"subtitles": [],
|
|
321
|
+
"posters": [],
|
|
322
|
+
"src": []
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"type": "video",
|
|
326
|
+
"mimeType": "application/vimeo",
|
|
327
|
+
"videoId": "191168702",
|
|
328
|
+
"description": "A Short History of Search Engines",
|
|
329
|
+
"poster": "//static.coorpacademy.com/content/up/fr/medias/img/poster/miniature_bleue_up.jpg",
|
|
330
|
+
"_id": "59551123dfdc3224006ec09f",
|
|
331
|
+
"subtitles": [],
|
|
332
|
+
"posters": [],
|
|
333
|
+
"src": []
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"question": {
|
|
337
|
+
"type": "qcm",
|
|
338
|
+
"header": "Dans quels pays est présent Coorpacademy ?",
|
|
339
|
+
"explanation": "Sélectionnez la (les) bonne(s) réponse(s).",
|
|
340
|
+
"content": {
|
|
341
|
+
"maxTypos": null,
|
|
342
|
+
"choices": [
|
|
343
|
+
{
|
|
344
|
+
"label": "France",
|
|
345
|
+
"value": "sli_NJ862PX7Q.choice_EyuRnDmQ7",
|
|
346
|
+
"_id": "59551123dfdc3224006ec0a4",
|
|
347
|
+
"items": [],
|
|
348
|
+
"media": {
|
|
349
|
+
"subtitles": [],
|
|
350
|
+
"posters": [],
|
|
351
|
+
"src": []
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"label": "Suisse",
|
|
356
|
+
"value": "sli_NJ862PX7Q.choice_V1Y0hwX77",
|
|
357
|
+
"_id": "59551123dfdc3224006ec0a3",
|
|
358
|
+
"items": [],
|
|
359
|
+
"media": {
|
|
360
|
+
"subtitles": [],
|
|
361
|
+
"posters": [],
|
|
362
|
+
"src": []
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"label": "Fiji",
|
|
367
|
+
"value": "sli_NJ862PX7Q.choice_NJ5A2w7QX",
|
|
368
|
+
"_id": "59551123dfdc3224006ec0a2",
|
|
369
|
+
"items": [],
|
|
370
|
+
"media": {
|
|
371
|
+
"subtitles": [],
|
|
372
|
+
"posters": [],
|
|
373
|
+
"src": []
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"label": "Tonga",
|
|
378
|
+
"value": "sli_NJ862PX7Q.choice_NkoC2Dm7Q",
|
|
379
|
+
"_id": "59551123dfdc3224006ec0a1",
|
|
380
|
+
"items": [],
|
|
381
|
+
"media": {
|
|
382
|
+
"subtitles": [],
|
|
383
|
+
"posters": [],
|
|
384
|
+
"src": []
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"media": {
|
|
389
|
+
"subtitles": [],
|
|
390
|
+
"posters": [],
|
|
391
|
+
"src": []
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"medias": []
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"clues": {
|
|
401
|
+
"entities": {}
|
|
402
|
+
},
|
|
403
|
+
"exitNodes": {
|
|
404
|
+
"entities": {}
|
|
405
|
+
},
|
|
406
|
+
"progressions": {
|
|
407
|
+
"entities": {
|
|
408
|
+
"59634ace3f6143001c46bae5": {
|
|
409
|
+
"_id": "59634ace3f6143001c46bae5",
|
|
410
|
+
"userId": "5852b139a0c3291200f000cd",
|
|
411
|
+
"content": {
|
|
412
|
+
"ref": "cha_Ny1BTxRp~",
|
|
413
|
+
"type": "chapter"
|
|
414
|
+
},
|
|
415
|
+
"meta": {
|
|
416
|
+
"updatedAt": "2017-07-10T09:37:18.075Z",
|
|
417
|
+
"createdAt": "2017-07-10T09:37:18.075Z"
|
|
418
|
+
},
|
|
419
|
+
"engine": {
|
|
420
|
+
"ref": "microlearning",
|
|
421
|
+
"version": "1"
|
|
422
|
+
},
|
|
423
|
+
"state": {
|
|
424
|
+
"nextContent": {
|
|
425
|
+
"ref": "failExitNode",
|
|
426
|
+
"type": "failure"
|
|
427
|
+
},
|
|
428
|
+
"isCorrect": false,
|
|
429
|
+
"slides": [
|
|
430
|
+
"sli_4ymMuMFb8",
|
|
431
|
+
"sli_EyinLfF~X",
|
|
432
|
+
"sli_4ymMuMFbB",
|
|
433
|
+
"sli_NJ862PX7Q"
|
|
434
|
+
],
|
|
435
|
+
"lives": 0,
|
|
436
|
+
"step": {
|
|
437
|
+
"current": 5
|
|
438
|
+
},
|
|
439
|
+
"stars": 12,
|
|
440
|
+
"requestedClues": [],
|
|
441
|
+
"viewedResources": [],
|
|
442
|
+
"content": {
|
|
443
|
+
"ref": "sli_NJ862PX7Q",
|
|
444
|
+
"type": "slide"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"correctAnswer": ["France", "Suisse"]
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"rank": {},
|
|
452
|
+
"recommendations": {
|
|
453
|
+
"entities": {}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"ui": {
|
|
457
|
+
"answers": {
|
|
458
|
+
"59634ace3f6143001c46bae5": {
|
|
459
|
+
"value": ["Suisse", "Fiji"]
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"corrections": {
|
|
463
|
+
"accordion": [true, false, false],
|
|
464
|
+
"playResource": ""
|
|
465
|
+
},
|
|
466
|
+
"current": {
|
|
467
|
+
"progressionId": "59634ace3f6143001c46bae5"
|
|
468
|
+
},
|
|
469
|
+
"route": {
|
|
470
|
+
"59634ace3f6143001c46bae5": "correction"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
@@ -0,0 +1,205 @@
|
|
|
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
|
+
"failExitNode": {
|
|
23
|
+
"_id": "5809d933c762494a60eb58a0",
|
|
24
|
+
"ref": "failExitNode",
|
|
25
|
+
"type": "failure",
|
|
26
|
+
"meta": {
|
|
27
|
+
"updatedAt": "2017-06-05T08:36:49.956Z",
|
|
28
|
+
"createdAt": "2017-06-05T08:36:49.956Z"
|
|
29
|
+
},
|
|
30
|
+
"media": {
|
|
31
|
+
"subtitles": [],
|
|
32
|
+
"posters": [],
|
|
33
|
+
"src": []
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"progressions": {
|
|
39
|
+
"entities": {
|
|
40
|
+
"0": {
|
|
41
|
+
"_id": "0",
|
|
42
|
+
"content": {
|
|
43
|
+
"ref": "1.B2",
|
|
44
|
+
"type": "chapter"
|
|
45
|
+
},
|
|
46
|
+
"engine": {
|
|
47
|
+
"ref": "microlearning",
|
|
48
|
+
"version": "1"
|
|
49
|
+
},
|
|
50
|
+
"state": {
|
|
51
|
+
"slides": ["1.B2.4"],
|
|
52
|
+
"nextContent": {
|
|
53
|
+
"ref": "failExitNode",
|
|
54
|
+
"type": "failure"
|
|
55
|
+
},
|
|
56
|
+
"lives": 0,
|
|
57
|
+
"step": {
|
|
58
|
+
"current": 2
|
|
59
|
+
},
|
|
60
|
+
"isCorrect": false,
|
|
61
|
+
"stars": 0,
|
|
62
|
+
"requestedClues": [],
|
|
63
|
+
"viewedResources": [],
|
|
64
|
+
"content": {
|
|
65
|
+
"ref": "1.B2.4",
|
|
66
|
+
"type": "slide"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"rank": {
|
|
73
|
+
"start": 100,
|
|
74
|
+
"end": 100
|
|
75
|
+
},
|
|
76
|
+
"recommendations": {
|
|
77
|
+
"entities": {
|
|
78
|
+
"0": [
|
|
79
|
+
{
|
|
80
|
+
"view": "grid",
|
|
81
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
82
|
+
"time": "8m",
|
|
83
|
+
"adaptiv": false,
|
|
84
|
+
"certification": false,
|
|
85
|
+
"type": "chapitre",
|
|
86
|
+
"title": "chapter 1",
|
|
87
|
+
"author": "Superman",
|
|
88
|
+
"progress": 0,
|
|
89
|
+
"key": "cha_Ny1BTxRp~",
|
|
90
|
+
"disabled": false
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"view": "grid",
|
|
94
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
95
|
+
"time": "8m",
|
|
96
|
+
"adaptiv": false,
|
|
97
|
+
"certification": false,
|
|
98
|
+
"type": "chapitre",
|
|
99
|
+
"title": "chapter 1",
|
|
100
|
+
"author": "Superman",
|
|
101
|
+
"progress": 0,
|
|
102
|
+
"key": "cha_Ny1BTxRp~",
|
|
103
|
+
"disabled": false
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"view": "grid",
|
|
107
|
+
"image": "//static.coorpacademy.com/content/CoorpAcademy/content/cockpitRecette-joan/poster/1931716-40629814-640-360-1496310886550.jpg",
|
|
108
|
+
"time": "8m",
|
|
109
|
+
"adaptiv": false,
|
|
110
|
+
"certification": false,
|
|
111
|
+
"type": "chapitre",
|
|
112
|
+
"title": "chapter 1",
|
|
113
|
+
"author": "Superman",
|
|
114
|
+
"progress": 0,
|
|
115
|
+
"key": "cha_Ny1BTxRp~",
|
|
116
|
+
"disabled": false
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"contents": {
|
|
122
|
+
"slide": {
|
|
123
|
+
"entities": {
|
|
124
|
+
"1.B2.4": {
|
|
125
|
+
"_id": "1.B2.4",
|
|
126
|
+
"klf": "Some KLF",
|
|
127
|
+
"tips": "XXX",
|
|
128
|
+
"chapter_id": "cha_Ny1BTxRp~",
|
|
129
|
+
"authors": [],
|
|
130
|
+
"context": {
|
|
131
|
+
"media": {
|
|
132
|
+
"subtitles": [],
|
|
133
|
+
"posters": [],
|
|
134
|
+
"src": []
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"meta": {
|
|
138
|
+
"updatedAt": "2017-06-13T12:15:40.321Z",
|
|
139
|
+
"createdAt": "2017-06-13T12:15:40.321Z"
|
|
140
|
+
},
|
|
141
|
+
"lessons": [
|
|
142
|
+
{
|
|
143
|
+
"type": "video",
|
|
144
|
+
"poster": "//static.coorpacademy.com/content/digital/miniatures_cours/base/1B2.png",
|
|
145
|
+
"description": "Anatomie d'une page de résultats",
|
|
146
|
+
"mimeType": "application/vimeo",
|
|
147
|
+
"videoId": "88393119\n",
|
|
148
|
+
"_id": "590b862e2e967f64333ad456",
|
|
149
|
+
"subtitles": [],
|
|
150
|
+
"posters": [],
|
|
151
|
+
"src": []
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"question": {
|
|
155
|
+
"type": "basic",
|
|
156
|
+
"header": "Écrivez le mot Text dans l'input.\n",
|
|
157
|
+
"explanation": "Saisissez votre réponse.",
|
|
158
|
+
"content": {
|
|
159
|
+
"label": "Saisissez votre réponse.",
|
|
160
|
+
"placeholder": " ",
|
|
161
|
+
"maxTypos": null,
|
|
162
|
+
"choices": [],
|
|
163
|
+
"media": {
|
|
164
|
+
"subtitles": [],
|
|
165
|
+
"posters": [],
|
|
166
|
+
"src": []
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"medias": []
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"chapter": {
|
|
175
|
+
"entities": {
|
|
176
|
+
"1.B2": {
|
|
177
|
+
"_id": "1.B2",
|
|
178
|
+
"stars": 20,
|
|
179
|
+
"info": {
|
|
180
|
+
"nbSlides": 4
|
|
181
|
+
},
|
|
182
|
+
"name": "Les réseaux sociaux au service du crowdfunding",
|
|
183
|
+
"poster": {
|
|
184
|
+
"subtitles": [],
|
|
185
|
+
"posters": [],
|
|
186
|
+
"src": []
|
|
187
|
+
},
|
|
188
|
+
"isConditional": false,
|
|
189
|
+
"time": 8
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"ui": {
|
|
196
|
+
"answers": {},
|
|
197
|
+
"corrections": {
|
|
198
|
+
"accordion": [false, false, false]
|
|
199
|
+
},
|
|
200
|
+
"current": {
|
|
201
|
+
"progressionId": "0"
|
|
202
|
+
},
|
|
203
|
+
"route": {}
|
|
204
|
+
}
|
|
205
|
+
}
|