@almadar/std 6.5.2 → 7.2.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/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-stem-lab",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-stem-lab as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ExperimentOrbital",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
{
|
|
27
27
|
"name": "score",
|
|
28
28
|
"type": "number",
|
|
29
|
-
"default": 0
|
|
29
|
+
"default": 0.0
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"name": "completed",
|
|
@@ -36,25 +36,61 @@
|
|
|
36
36
|
{
|
|
37
37
|
"name": "level",
|
|
38
38
|
"type": "number",
|
|
39
|
-
"default": 1
|
|
40
|
-
}
|
|
41
|
-
],
|
|
42
|
-
"instances": [
|
|
43
|
-
{
|
|
44
|
-
"id": "game-1",
|
|
45
|
-
"name": "Simulator Session",
|
|
46
|
-
"description": "Active game session",
|
|
47
|
-
"status": "active",
|
|
48
|
-
"score": 0,
|
|
49
|
-
"level": 1
|
|
39
|
+
"default": 1.0
|
|
50
40
|
}
|
|
51
41
|
]
|
|
52
42
|
},
|
|
53
43
|
"traits": [
|
|
54
44
|
{
|
|
55
45
|
"name": "ExperimentSimulatorGame",
|
|
56
|
-
"linkedEntity": "Experiment",
|
|
57
46
|
"category": "interaction",
|
|
47
|
+
"linkedEntity": "Experiment",
|
|
48
|
+
"emits": [
|
|
49
|
+
{
|
|
50
|
+
"event": "ExperimentLoaded",
|
|
51
|
+
"description": "Fired when Experiment finishes loading",
|
|
52
|
+
"scope": "internal",
|
|
53
|
+
"payload": [
|
|
54
|
+
{
|
|
55
|
+
"name": "id",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"required": true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "title",
|
|
61
|
+
"type": "string",
|
|
62
|
+
"required": true
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "hypothesis",
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "score",
|
|
70
|
+
"type": "number"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "completed",
|
|
74
|
+
"type": "boolean"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "level",
|
|
78
|
+
"type": "number"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"event": "ExperimentLoadFailed",
|
|
84
|
+
"description": "Fired when Experiment fails to load",
|
|
85
|
+
"scope": "internal",
|
|
86
|
+
"payload": [
|
|
87
|
+
{
|
|
88
|
+
"name": "message",
|
|
89
|
+
"type": "string"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
],
|
|
58
94
|
"stateMachine": {
|
|
59
95
|
"states": [
|
|
60
96
|
{
|
|
@@ -77,6 +113,10 @@
|
|
|
77
113
|
"key": "START",
|
|
78
114
|
"name": "Start"
|
|
79
115
|
},
|
|
116
|
+
{
|
|
117
|
+
"key": "NAVIGATE",
|
|
118
|
+
"name": "Navigate"
|
|
119
|
+
},
|
|
80
120
|
{
|
|
81
121
|
"key": "COMPLETE",
|
|
82
122
|
"name": "Complete"
|
|
@@ -86,8 +126,18 @@
|
|
|
86
126
|
"name": "Restart"
|
|
87
127
|
},
|
|
88
128
|
{
|
|
89
|
-
"key": "
|
|
90
|
-
"name": "
|
|
129
|
+
"key": "ExperimentLoaded",
|
|
130
|
+
"name": "Experiment loaded"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"key": "ExperimentLoadFailed",
|
|
134
|
+
"name": "Experiment load failed",
|
|
135
|
+
"payload": [
|
|
136
|
+
{
|
|
137
|
+
"name": "message",
|
|
138
|
+
"type": "string"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
91
141
|
}
|
|
92
142
|
],
|
|
93
143
|
"transitions": [
|
|
@@ -98,28 +148,34 @@
|
|
|
98
148
|
"effects": [
|
|
99
149
|
[
|
|
100
150
|
"fetch",
|
|
101
|
-
"Experiment"
|
|
151
|
+
"Experiment",
|
|
152
|
+
{
|
|
153
|
+
"emit": {
|
|
154
|
+
"success": "ExperimentLoaded",
|
|
155
|
+
"failure": "ExperimentLoadFailed"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
102
158
|
],
|
|
103
159
|
[
|
|
104
160
|
"render-ui",
|
|
105
161
|
"main",
|
|
106
162
|
{
|
|
107
|
-
"type": "game-shell",
|
|
108
|
-
"appName": "STEM Lab",
|
|
109
163
|
"showTopBar": true,
|
|
110
164
|
"children": [
|
|
111
165
|
{
|
|
112
|
-
"type": "game-menu",
|
|
113
|
-
"title": "Experiment Simulator",
|
|
114
166
|
"menuItems": [
|
|
115
167
|
{
|
|
116
|
-
"label": "Start",
|
|
117
168
|
"event": "START",
|
|
118
|
-
"variant": "primary"
|
|
169
|
+
"variant": "primary",
|
|
170
|
+
"label": "Start"
|
|
119
171
|
}
|
|
120
|
-
]
|
|
172
|
+
],
|
|
173
|
+
"title": "Experiment Simulator",
|
|
174
|
+
"type": "game-menu"
|
|
121
175
|
}
|
|
122
|
-
]
|
|
176
|
+
],
|
|
177
|
+
"appName": "STEM Lab",
|
|
178
|
+
"type": "game-shell"
|
|
123
179
|
}
|
|
124
180
|
]
|
|
125
181
|
]
|
|
@@ -140,27 +196,27 @@
|
|
|
140
196
|
{
|
|
141
197
|
"type": "stack",
|
|
142
198
|
"direction": "vertical",
|
|
143
|
-
"gap": "md",
|
|
144
199
|
"children": [
|
|
145
200
|
{
|
|
146
|
-
"type": "game-hud",
|
|
147
201
|
"stats": [
|
|
148
202
|
{
|
|
149
|
-
"
|
|
150
|
-
"
|
|
203
|
+
"value": "@entity.score",
|
|
204
|
+
"label": "Score"
|
|
151
205
|
},
|
|
152
206
|
{
|
|
153
|
-
"
|
|
154
|
-
"
|
|
207
|
+
"value": "@entity.level",
|
|
208
|
+
"label": "Level"
|
|
155
209
|
}
|
|
156
|
-
]
|
|
210
|
+
],
|
|
211
|
+
"type": "game-hud"
|
|
157
212
|
},
|
|
158
213
|
{
|
|
159
|
-
"type": "simulator-board",
|
|
160
214
|
"entity": "Experiment",
|
|
161
|
-
"completeEvent": "COMPLETE"
|
|
215
|
+
"completeEvent": "COMPLETE",
|
|
216
|
+
"type": "simulator-board"
|
|
162
217
|
}
|
|
163
|
-
]
|
|
218
|
+
],
|
|
219
|
+
"gap": "md"
|
|
164
220
|
}
|
|
165
221
|
]
|
|
166
222
|
}
|
|
@@ -170,8 +226,7 @@
|
|
|
170
226
|
{
|
|
171
227
|
"from": "menu",
|
|
172
228
|
"to": "menu",
|
|
173
|
-
"event": "NAVIGATE"
|
|
174
|
-
"effects": []
|
|
229
|
+
"event": "NAVIGATE"
|
|
175
230
|
},
|
|
176
231
|
{
|
|
177
232
|
"from": "playing",
|
|
@@ -184,20 +239,20 @@
|
|
|
184
239
|
{
|
|
185
240
|
"type": "game-shell",
|
|
186
241
|
"appName": "STEM Lab",
|
|
187
|
-
"showTopBar": true,
|
|
188
242
|
"children": [
|
|
189
243
|
{
|
|
190
|
-
"type": "game-over-screen",
|
|
191
244
|
"title": "Well Done!",
|
|
245
|
+
"type": "game-over-screen",
|
|
192
246
|
"menuItems": [
|
|
193
247
|
{
|
|
248
|
+
"variant": "primary",
|
|
194
249
|
"label": "Play Again",
|
|
195
|
-
"event": "RESTART"
|
|
196
|
-
"variant": "primary"
|
|
250
|
+
"event": "RESTART"
|
|
197
251
|
}
|
|
198
252
|
]
|
|
199
253
|
}
|
|
200
|
-
]
|
|
254
|
+
],
|
|
255
|
+
"showTopBar": true
|
|
201
256
|
}
|
|
202
257
|
]
|
|
203
258
|
]
|
|
@@ -212,34 +267,34 @@
|
|
|
212
267
|
"main",
|
|
213
268
|
{
|
|
214
269
|
"type": "game-shell",
|
|
215
|
-
"appName": "STEM Lab",
|
|
216
|
-
"showTopBar": true,
|
|
217
270
|
"children": [
|
|
218
271
|
{
|
|
219
|
-
"type": "game-menu",
|
|
220
|
-
"title": "Experiment Simulator",
|
|
221
272
|
"menuItems": [
|
|
222
273
|
{
|
|
223
274
|
"label": "Start",
|
|
224
275
|
"event": "START",
|
|
225
276
|
"variant": "primary"
|
|
226
277
|
}
|
|
227
|
-
]
|
|
278
|
+
],
|
|
279
|
+
"type": "game-menu",
|
|
280
|
+
"title": "Experiment Simulator"
|
|
228
281
|
}
|
|
229
|
-
]
|
|
282
|
+
],
|
|
283
|
+
"showTopBar": true,
|
|
284
|
+
"appName": "STEM Lab"
|
|
230
285
|
}
|
|
231
286
|
]
|
|
232
287
|
]
|
|
233
288
|
}
|
|
234
289
|
]
|
|
235
|
-
}
|
|
290
|
+
},
|
|
291
|
+
"scope": "collection"
|
|
236
292
|
}
|
|
237
293
|
],
|
|
238
294
|
"pages": [
|
|
239
295
|
{
|
|
240
296
|
"name": "SimulatorPage",
|
|
241
297
|
"path": "/simulator",
|
|
242
|
-
"isInitial": true,
|
|
243
298
|
"traits": [
|
|
244
299
|
{
|
|
245
300
|
"ref": "ExperimentSimulatorGame"
|
|
@@ -271,35 +326,70 @@
|
|
|
271
326
|
{
|
|
272
327
|
"name": "score",
|
|
273
328
|
"type": "number",
|
|
274
|
-
"default": 0
|
|
329
|
+
"default": 0.0
|
|
275
330
|
},
|
|
276
331
|
{
|
|
277
332
|
"name": "accuracy",
|
|
278
|
-
"type": "number"
|
|
279
|
-
"default": 0
|
|
333
|
+
"type": "number"
|
|
280
334
|
},
|
|
281
335
|
{
|
|
282
336
|
"name": "level",
|
|
283
337
|
"type": "number",
|
|
284
|
-
"default": 1
|
|
285
|
-
}
|
|
286
|
-
],
|
|
287
|
-
"instances": [
|
|
288
|
-
{
|
|
289
|
-
"id": "game-1",
|
|
290
|
-
"name": "Classifier Session",
|
|
291
|
-
"description": "Active game session",
|
|
292
|
-
"status": "active",
|
|
293
|
-
"score": 0,
|
|
294
|
-
"level": 1
|
|
338
|
+
"default": 1.0
|
|
295
339
|
}
|
|
296
340
|
]
|
|
297
341
|
},
|
|
298
342
|
"traits": [
|
|
299
343
|
{
|
|
300
344
|
"name": "ClassificationClassifierGame",
|
|
301
|
-
"linkedEntity": "Classification",
|
|
302
345
|
"category": "interaction",
|
|
346
|
+
"linkedEntity": "Classification",
|
|
347
|
+
"emits": [
|
|
348
|
+
{
|
|
349
|
+
"event": "ClassificationLoaded",
|
|
350
|
+
"description": "Fired when Classification finishes loading",
|
|
351
|
+
"scope": "internal",
|
|
352
|
+
"payload": [
|
|
353
|
+
{
|
|
354
|
+
"name": "id",
|
|
355
|
+
"type": "string",
|
|
356
|
+
"required": true
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "title",
|
|
360
|
+
"type": "string",
|
|
361
|
+
"required": true
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "category",
|
|
365
|
+
"type": "string"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "score",
|
|
369
|
+
"type": "number"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "accuracy",
|
|
373
|
+
"type": "number"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "level",
|
|
377
|
+
"type": "number"
|
|
378
|
+
}
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"event": "ClassificationLoadFailed",
|
|
383
|
+
"description": "Fired when Classification fails to load",
|
|
384
|
+
"scope": "internal",
|
|
385
|
+
"payload": [
|
|
386
|
+
{
|
|
387
|
+
"name": "message",
|
|
388
|
+
"type": "string"
|
|
389
|
+
}
|
|
390
|
+
]
|
|
391
|
+
}
|
|
392
|
+
],
|
|
303
393
|
"stateMachine": {
|
|
304
394
|
"states": [
|
|
305
395
|
{
|
|
@@ -322,6 +412,10 @@
|
|
|
322
412
|
"key": "START",
|
|
323
413
|
"name": "Start"
|
|
324
414
|
},
|
|
415
|
+
{
|
|
416
|
+
"key": "NAVIGATE",
|
|
417
|
+
"name": "Navigate"
|
|
418
|
+
},
|
|
325
419
|
{
|
|
326
420
|
"key": "COMPLETE",
|
|
327
421
|
"name": "Complete"
|
|
@@ -331,8 +425,18 @@
|
|
|
331
425
|
"name": "Restart"
|
|
332
426
|
},
|
|
333
427
|
{
|
|
334
|
-
"key": "
|
|
335
|
-
"name": "
|
|
428
|
+
"key": "ClassificationLoaded",
|
|
429
|
+
"name": "Classification loaded"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"key": "ClassificationLoadFailed",
|
|
433
|
+
"name": "Classification load failed",
|
|
434
|
+
"payload": [
|
|
435
|
+
{
|
|
436
|
+
"name": "message",
|
|
437
|
+
"type": "string"
|
|
438
|
+
}
|
|
439
|
+
]
|
|
336
440
|
}
|
|
337
441
|
],
|
|
338
442
|
"transitions": [
|
|
@@ -343,18 +447,20 @@
|
|
|
343
447
|
"effects": [
|
|
344
448
|
[
|
|
345
449
|
"fetch",
|
|
346
|
-
"Classification"
|
|
450
|
+
"Classification",
|
|
451
|
+
{
|
|
452
|
+
"emit": {
|
|
453
|
+
"success": "ClassificationLoaded",
|
|
454
|
+
"failure": "ClassificationLoadFailed"
|
|
455
|
+
}
|
|
456
|
+
}
|
|
347
457
|
],
|
|
348
458
|
[
|
|
349
459
|
"render-ui",
|
|
350
460
|
"main",
|
|
351
461
|
{
|
|
352
|
-
"type": "game-shell",
|
|
353
|
-
"appName": "STEM Lab",
|
|
354
|
-
"showTopBar": true,
|
|
355
462
|
"children": [
|
|
356
463
|
{
|
|
357
|
-
"type": "game-menu",
|
|
358
464
|
"title": "Classification Lab",
|
|
359
465
|
"menuItems": [
|
|
360
466
|
{
|
|
@@ -362,9 +468,13 @@
|
|
|
362
468
|
"event": "START",
|
|
363
469
|
"variant": "primary"
|
|
364
470
|
}
|
|
365
|
-
]
|
|
471
|
+
],
|
|
472
|
+
"type": "game-menu"
|
|
366
473
|
}
|
|
367
|
-
]
|
|
474
|
+
],
|
|
475
|
+
"appName": "STEM Lab",
|
|
476
|
+
"showTopBar": true,
|
|
477
|
+
"type": "game-shell"
|
|
368
478
|
}
|
|
369
479
|
]
|
|
370
480
|
]
|
|
@@ -378,14 +488,10 @@
|
|
|
378
488
|
"render-ui",
|
|
379
489
|
"main",
|
|
380
490
|
{
|
|
381
|
-
"type": "game-shell",
|
|
382
|
-
"appName": "STEM Lab",
|
|
383
|
-
"showTopBar": true,
|
|
384
491
|
"children": [
|
|
385
492
|
{
|
|
386
493
|
"type": "stack",
|
|
387
494
|
"direction": "vertical",
|
|
388
|
-
"gap": "md",
|
|
389
495
|
"children": [
|
|
390
496
|
{
|
|
391
497
|
"type": "game-hud",
|
|
@@ -401,13 +507,17 @@
|
|
|
401
507
|
]
|
|
402
508
|
},
|
|
403
509
|
{
|
|
404
|
-
"type": "classifier-board",
|
|
405
510
|
"entity": "Classification",
|
|
511
|
+
"type": "classifier-board",
|
|
406
512
|
"completeEvent": "COMPLETE"
|
|
407
513
|
}
|
|
408
|
-
]
|
|
514
|
+
],
|
|
515
|
+
"gap": "md"
|
|
409
516
|
}
|
|
410
|
-
]
|
|
517
|
+
],
|
|
518
|
+
"appName": "STEM Lab",
|
|
519
|
+
"type": "game-shell",
|
|
520
|
+
"showTopBar": true
|
|
411
521
|
}
|
|
412
522
|
]
|
|
413
523
|
]
|
|
@@ -415,8 +525,7 @@
|
|
|
415
525
|
{
|
|
416
526
|
"from": "menu",
|
|
417
527
|
"to": "menu",
|
|
418
|
-
"event": "NAVIGATE"
|
|
419
|
-
"effects": []
|
|
528
|
+
"event": "NAVIGATE"
|
|
420
529
|
},
|
|
421
530
|
{
|
|
422
531
|
"from": "playing",
|
|
@@ -427,20 +536,20 @@
|
|
|
427
536
|
"render-ui",
|
|
428
537
|
"main",
|
|
429
538
|
{
|
|
539
|
+
"showTopBar": true,
|
|
430
540
|
"type": "game-shell",
|
|
431
541
|
"appName": "STEM Lab",
|
|
432
|
-
"showTopBar": true,
|
|
433
542
|
"children": [
|
|
434
543
|
{
|
|
435
|
-
"type": "game-over-screen",
|
|
436
|
-
"title": "Well Done!",
|
|
437
544
|
"menuItems": [
|
|
438
545
|
{
|
|
439
|
-
"label": "Play Again",
|
|
440
546
|
"event": "RESTART",
|
|
441
|
-
"variant": "primary"
|
|
547
|
+
"variant": "primary",
|
|
548
|
+
"label": "Play Again"
|
|
442
549
|
}
|
|
443
|
-
]
|
|
550
|
+
],
|
|
551
|
+
"type": "game-over-screen",
|
|
552
|
+
"title": "Well Done!"
|
|
444
553
|
}
|
|
445
554
|
]
|
|
446
555
|
}
|
|
@@ -457,32 +566,33 @@
|
|
|
457
566
|
"main",
|
|
458
567
|
{
|
|
459
568
|
"type": "game-shell",
|
|
460
|
-
"appName": "STEM Lab",
|
|
461
|
-
"showTopBar": true,
|
|
462
569
|
"children": [
|
|
463
570
|
{
|
|
464
|
-
"type": "game-menu",
|
|
465
571
|
"title": "Classification Lab",
|
|
466
572
|
"menuItems": [
|
|
467
573
|
{
|
|
468
|
-
"label": "Start",
|
|
469
574
|
"event": "START",
|
|
575
|
+
"label": "Start",
|
|
470
576
|
"variant": "primary"
|
|
471
577
|
}
|
|
472
|
-
]
|
|
578
|
+
],
|
|
579
|
+
"type": "game-menu"
|
|
473
580
|
}
|
|
474
|
-
]
|
|
581
|
+
],
|
|
582
|
+
"showTopBar": true,
|
|
583
|
+
"appName": "STEM Lab"
|
|
475
584
|
}
|
|
476
585
|
]
|
|
477
586
|
]
|
|
478
587
|
}
|
|
479
588
|
]
|
|
480
|
-
}
|
|
589
|
+
},
|
|
590
|
+
"scope": "collection"
|
|
481
591
|
}
|
|
482
592
|
],
|
|
483
593
|
"pages": [
|
|
484
594
|
{
|
|
485
|
-
"name": "
|
|
595
|
+
"name": "Classifier",
|
|
486
596
|
"path": "/classifier",
|
|
487
597
|
"traits": [
|
|
488
598
|
{
|
|
@@ -505,31 +615,68 @@
|
|
|
505
615
|
},
|
|
506
616
|
{
|
|
507
617
|
"name": "experimentCount",
|
|
508
|
-
"type": "number"
|
|
509
|
-
"default": 0
|
|
618
|
+
"type": "number"
|
|
510
619
|
},
|
|
511
620
|
{
|
|
512
621
|
"name": "avgAccuracy",
|
|
513
|
-
"type": "number"
|
|
514
|
-
"default": 0
|
|
622
|
+
"type": "number"
|
|
515
623
|
},
|
|
516
624
|
{
|
|
517
625
|
"name": "totalScore",
|
|
518
|
-
"type": "number"
|
|
519
|
-
"default": 0
|
|
626
|
+
"type": "number"
|
|
520
627
|
},
|
|
521
628
|
{
|
|
522
629
|
"name": "grade",
|
|
523
|
-
"type": "string"
|
|
524
|
-
"default": "N/A"
|
|
630
|
+
"type": "string"
|
|
525
631
|
}
|
|
526
632
|
]
|
|
527
633
|
},
|
|
528
634
|
"traits": [
|
|
529
635
|
{
|
|
530
636
|
"name": "LabResultDisplay",
|
|
531
|
-
"linkedEntity": "LabResult",
|
|
532
637
|
"category": "interaction",
|
|
638
|
+
"linkedEntity": "LabResult",
|
|
639
|
+
"emits": [
|
|
640
|
+
{
|
|
641
|
+
"event": "LabResultLoaded",
|
|
642
|
+
"description": "Fired when LabResult finishes loading",
|
|
643
|
+
"scope": "internal",
|
|
644
|
+
"payload": [
|
|
645
|
+
{
|
|
646
|
+
"name": "id",
|
|
647
|
+
"type": "string",
|
|
648
|
+
"required": true
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "experimentCount",
|
|
652
|
+
"type": "number"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "avgAccuracy",
|
|
656
|
+
"type": "number"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "totalScore",
|
|
660
|
+
"type": "number"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "grade",
|
|
664
|
+
"type": "string"
|
|
665
|
+
}
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"event": "LabResultLoadFailed",
|
|
670
|
+
"description": "Fired when LabResult fails to load",
|
|
671
|
+
"scope": "internal",
|
|
672
|
+
"payload": [
|
|
673
|
+
{
|
|
674
|
+
"name": "message",
|
|
675
|
+
"type": "string"
|
|
676
|
+
}
|
|
677
|
+
]
|
|
678
|
+
}
|
|
679
|
+
],
|
|
533
680
|
"stateMachine": {
|
|
534
681
|
"states": [
|
|
535
682
|
{
|
|
@@ -559,6 +706,20 @@
|
|
|
559
706
|
{
|
|
560
707
|
"key": "REFRESHED",
|
|
561
708
|
"name": "Refreshed"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"key": "LabResultLoaded",
|
|
712
|
+
"name": "LabResult loaded"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"key": "LabResultLoadFailed",
|
|
716
|
+
"name": "LabResult load failed",
|
|
717
|
+
"payload": [
|
|
718
|
+
{
|
|
719
|
+
"name": "message",
|
|
720
|
+
"type": "string"
|
|
721
|
+
}
|
|
722
|
+
]
|
|
562
723
|
}
|
|
563
724
|
],
|
|
564
725
|
"transitions": [
|
|
@@ -569,23 +730,27 @@
|
|
|
569
730
|
"effects": [
|
|
570
731
|
[
|
|
571
732
|
"fetch",
|
|
572
|
-
"LabResult"
|
|
733
|
+
"LabResult",
|
|
734
|
+
{
|
|
735
|
+
"emit": {
|
|
736
|
+
"success": "LabResultLoaded",
|
|
737
|
+
"failure": "LabResultLoadFailed"
|
|
738
|
+
}
|
|
739
|
+
}
|
|
573
740
|
],
|
|
574
741
|
[
|
|
575
742
|
"render-ui",
|
|
576
743
|
"main",
|
|
577
744
|
{
|
|
578
|
-
"type": "game-shell",
|
|
579
745
|
"appName": "STEM Lab",
|
|
580
|
-
"showTopBar": true,
|
|
581
746
|
"children": [
|
|
582
747
|
{
|
|
583
748
|
"type": "scaled-diagram",
|
|
584
749
|
"children": [
|
|
585
750
|
{
|
|
751
|
+
"gap": "lg",
|
|
586
752
|
"type": "stack",
|
|
587
753
|
"direction": "vertical",
|
|
588
|
-
"gap": "lg",
|
|
589
754
|
"children": [
|
|
590
755
|
{
|
|
591
756
|
"type": "breadcrumb",
|
|
@@ -600,15 +765,12 @@
|
|
|
600
765
|
]
|
|
601
766
|
},
|
|
602
767
|
{
|
|
603
|
-
"type": "stack",
|
|
604
768
|
"direction": "horizontal",
|
|
605
769
|
"gap": "md",
|
|
606
770
|
"justify": "space-between",
|
|
771
|
+
"type": "stack",
|
|
607
772
|
"children": [
|
|
608
773
|
{
|
|
609
|
-
"type": "stack",
|
|
610
|
-
"direction": "horizontal",
|
|
611
|
-
"gap": "md",
|
|
612
774
|
"children": [
|
|
613
775
|
{
|
|
614
776
|
"type": "icon",
|
|
@@ -616,18 +778,21 @@
|
|
|
616
778
|
"size": "lg"
|
|
617
779
|
},
|
|
618
780
|
{
|
|
781
|
+
"variant": "h2",
|
|
619
782
|
"type": "typography",
|
|
620
|
-
"content": "Lab Results"
|
|
621
|
-
"variant": "h2"
|
|
783
|
+
"content": "Lab Results"
|
|
622
784
|
}
|
|
623
|
-
]
|
|
785
|
+
],
|
|
786
|
+
"gap": "md",
|
|
787
|
+
"type": "stack",
|
|
788
|
+
"direction": "horizontal"
|
|
624
789
|
},
|
|
625
790
|
{
|
|
626
791
|
"type": "button",
|
|
627
792
|
"label": "Refresh",
|
|
793
|
+
"icon": "refresh-cw",
|
|
628
794
|
"event": "REFRESH",
|
|
629
|
-
"variant": "secondary"
|
|
630
|
-
"icon": "refresh-cw"
|
|
795
|
+
"variant": "secondary"
|
|
631
796
|
}
|
|
632
797
|
]
|
|
633
798
|
},
|
|
@@ -635,16 +800,13 @@
|
|
|
635
800
|
"type": "divider"
|
|
636
801
|
},
|
|
637
802
|
{
|
|
638
|
-
"type": "box",
|
|
639
803
|
"padding": "md",
|
|
640
804
|
"children": [
|
|
641
805
|
{
|
|
806
|
+
"columns": 3.0,
|
|
642
807
|
"type": "simple-grid",
|
|
643
|
-
"columns": 3,
|
|
644
808
|
"children": [
|
|
645
809
|
{
|
|
646
|
-
"type": "stat-display",
|
|
647
|
-
"label": "ExperimentCount",
|
|
648
810
|
"value": [
|
|
649
811
|
"object/get",
|
|
650
812
|
[
|
|
@@ -652,11 +814,12 @@
|
|
|
652
814
|
"@entity"
|
|
653
815
|
],
|
|
654
816
|
"experimentCount"
|
|
655
|
-
]
|
|
817
|
+
],
|
|
818
|
+
"label": "ExperimentCount",
|
|
819
|
+
"type": "stat-display"
|
|
656
820
|
},
|
|
657
821
|
{
|
|
658
822
|
"type": "stat-display",
|
|
659
|
-
"label": "AvgAccuracy",
|
|
660
823
|
"value": [
|
|
661
824
|
"object/get",
|
|
662
825
|
[
|
|
@@ -664,11 +827,12 @@
|
|
|
664
827
|
"@entity"
|
|
665
828
|
],
|
|
666
829
|
"avgAccuracy"
|
|
667
|
-
]
|
|
830
|
+
],
|
|
831
|
+
"label": "AvgAccuracy"
|
|
668
832
|
},
|
|
669
833
|
{
|
|
670
|
-
"type": "stat-display",
|
|
671
834
|
"label": "TotalScore",
|
|
835
|
+
"type": "stat-display",
|
|
672
836
|
"value": [
|
|
673
837
|
"object/get",
|
|
674
838
|
[
|
|
@@ -682,18 +846,17 @@
|
|
|
682
846
|
"type": "card",
|
|
683
847
|
"children": [
|
|
684
848
|
{
|
|
685
|
-
"type": "stack",
|
|
686
|
-
"direction": "vertical",
|
|
687
849
|
"gap": "sm",
|
|
850
|
+
"direction": "vertical",
|
|
688
851
|
"children": [
|
|
689
852
|
{
|
|
690
|
-
"type": "typography",
|
|
691
853
|
"variant": "caption",
|
|
692
|
-
"content": "Grade"
|
|
854
|
+
"content": "Grade",
|
|
855
|
+
"type": "typography"
|
|
693
856
|
},
|
|
694
857
|
{
|
|
695
|
-
"type": "typography",
|
|
696
858
|
"variant": "h3",
|
|
859
|
+
"type": "typography",
|
|
697
860
|
"content": [
|
|
698
861
|
"object/get",
|
|
699
862
|
[
|
|
@@ -703,29 +866,30 @@
|
|
|
703
866
|
"grade"
|
|
704
867
|
]
|
|
705
868
|
}
|
|
706
|
-
]
|
|
869
|
+
],
|
|
870
|
+
"type": "stack"
|
|
707
871
|
}
|
|
708
872
|
]
|
|
709
873
|
}
|
|
710
874
|
]
|
|
711
875
|
}
|
|
712
|
-
]
|
|
876
|
+
],
|
|
877
|
+
"type": "box"
|
|
713
878
|
},
|
|
714
879
|
{
|
|
715
880
|
"type": "divider"
|
|
716
881
|
},
|
|
717
882
|
{
|
|
718
883
|
"type": "grid",
|
|
719
|
-
"columns": 2,
|
|
720
884
|
"gap": "md",
|
|
721
885
|
"children": [
|
|
722
886
|
{
|
|
723
887
|
"type": "card",
|
|
724
888
|
"children": [
|
|
725
889
|
{
|
|
726
|
-
"type": "typography",
|
|
727
890
|
"variant": "caption",
|
|
728
|
-
"content": "Chart View"
|
|
891
|
+
"content": "Chart View",
|
|
892
|
+
"type": "typography"
|
|
729
893
|
}
|
|
730
894
|
]
|
|
731
895
|
},
|
|
@@ -739,75 +903,78 @@
|
|
|
739
903
|
}
|
|
740
904
|
]
|
|
741
905
|
}
|
|
742
|
-
]
|
|
906
|
+
],
|
|
907
|
+
"columns": 2.0
|
|
743
908
|
},
|
|
744
909
|
{
|
|
745
|
-
"
|
|
910
|
+
"title": "Trend",
|
|
911
|
+
"xKey": "date",
|
|
746
912
|
"data": [
|
|
747
913
|
{
|
|
748
|
-
"
|
|
749
|
-
"
|
|
914
|
+
"value": 12.0,
|
|
915
|
+
"date": "Jan"
|
|
750
916
|
},
|
|
751
917
|
{
|
|
752
918
|
"date": "Feb",
|
|
753
|
-
"value": 19
|
|
919
|
+
"value": 19.0
|
|
754
920
|
},
|
|
755
921
|
{
|
|
756
922
|
"date": "Mar",
|
|
757
|
-
"value": 15
|
|
923
|
+
"value": 15.0
|
|
758
924
|
},
|
|
759
925
|
{
|
|
760
926
|
"date": "Apr",
|
|
761
|
-
"value": 25
|
|
927
|
+
"value": 25.0
|
|
762
928
|
},
|
|
763
929
|
{
|
|
764
930
|
"date": "May",
|
|
765
|
-
"value": 22
|
|
931
|
+
"value": 22.0
|
|
766
932
|
},
|
|
767
933
|
{
|
|
768
|
-
"
|
|
769
|
-
"
|
|
934
|
+
"value": 30.0,
|
|
935
|
+
"date": "Jun"
|
|
770
936
|
}
|
|
771
937
|
],
|
|
772
|
-
"
|
|
773
|
-
"yKey": "value"
|
|
774
|
-
"title": "Trend"
|
|
938
|
+
"type": "line-chart",
|
|
939
|
+
"yKey": "value"
|
|
775
940
|
},
|
|
776
941
|
{
|
|
777
|
-
"type": "chart-legend",
|
|
778
942
|
"items": [
|
|
779
943
|
{
|
|
780
944
|
"label": "Current",
|
|
781
945
|
"color": "primary"
|
|
782
946
|
},
|
|
783
947
|
{
|
|
784
|
-
"
|
|
785
|
-
"
|
|
948
|
+
"color": "muted",
|
|
949
|
+
"label": "Previous"
|
|
786
950
|
}
|
|
787
|
-
]
|
|
951
|
+
],
|
|
952
|
+
"type": "chart-legend"
|
|
788
953
|
},
|
|
789
954
|
{
|
|
790
955
|
"type": "graph-view",
|
|
956
|
+
"height": 200.0,
|
|
791
957
|
"nodes": [
|
|
792
958
|
{
|
|
793
959
|
"id": "a",
|
|
794
|
-
"
|
|
795
|
-
"
|
|
796
|
-
"
|
|
960
|
+
"x": 50.0,
|
|
961
|
+
"y": 100.0,
|
|
962
|
+
"label": "Start"
|
|
797
963
|
},
|
|
798
964
|
{
|
|
965
|
+
"x": 200.0,
|
|
966
|
+
"y": 50.0,
|
|
799
967
|
"id": "b",
|
|
800
|
-
"label": "Process"
|
|
801
|
-
"x": 200,
|
|
802
|
-
"y": 50
|
|
968
|
+
"label": "Process"
|
|
803
969
|
},
|
|
804
970
|
{
|
|
805
|
-
"
|
|
971
|
+
"x": 350.0,
|
|
806
972
|
"label": "End",
|
|
807
|
-
"
|
|
808
|
-
"y": 100
|
|
973
|
+
"id": "c",
|
|
974
|
+
"y": 100.0
|
|
809
975
|
}
|
|
810
976
|
],
|
|
977
|
+
"width": 400.0,
|
|
811
978
|
"edges": [
|
|
812
979
|
{
|
|
813
980
|
"from": "a",
|
|
@@ -817,15 +984,15 @@
|
|
|
817
984
|
"from": "b",
|
|
818
985
|
"to": "c"
|
|
819
986
|
}
|
|
820
|
-
]
|
|
821
|
-
"width": 400,
|
|
822
|
-
"height": 200
|
|
987
|
+
]
|
|
823
988
|
}
|
|
824
989
|
]
|
|
825
990
|
}
|
|
826
991
|
]
|
|
827
992
|
}
|
|
828
|
-
]
|
|
993
|
+
],
|
|
994
|
+
"type": "game-shell",
|
|
995
|
+
"showTopBar": true
|
|
829
996
|
}
|
|
830
997
|
]
|
|
831
998
|
]
|
|
@@ -837,7 +1004,13 @@
|
|
|
837
1004
|
"effects": [
|
|
838
1005
|
[
|
|
839
1006
|
"fetch",
|
|
840
|
-
"LabResult"
|
|
1007
|
+
"LabResult",
|
|
1008
|
+
{
|
|
1009
|
+
"emit": {
|
|
1010
|
+
"failure": "LabResultLoadFailed",
|
|
1011
|
+
"success": "LabResultLoaded"
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
841
1014
|
],
|
|
842
1015
|
[
|
|
843
1016
|
"render-ui",
|
|
@@ -851,16 +1024,15 @@
|
|
|
851
1024
|
"type": "scaled-diagram",
|
|
852
1025
|
"children": [
|
|
853
1026
|
{
|
|
854
|
-
"type": "stack",
|
|
855
|
-
"direction": "vertical",
|
|
856
1027
|
"gap": "lg",
|
|
1028
|
+
"type": "stack",
|
|
857
1029
|
"children": [
|
|
858
1030
|
{
|
|
859
1031
|
"type": "breadcrumb",
|
|
860
1032
|
"items": [
|
|
861
1033
|
{
|
|
862
|
-
"
|
|
863
|
-
"
|
|
1034
|
+
"href": "/",
|
|
1035
|
+
"label": "Home"
|
|
864
1036
|
},
|
|
865
1037
|
{
|
|
866
1038
|
"label": "Lab Results"
|
|
@@ -868,47 +1040,43 @@
|
|
|
868
1040
|
]
|
|
869
1041
|
},
|
|
870
1042
|
{
|
|
871
|
-
"type": "stack",
|
|
872
|
-
"direction": "horizontal",
|
|
873
|
-
"gap": "md",
|
|
874
|
-
"justify": "space-between",
|
|
875
1043
|
"children": [
|
|
876
1044
|
{
|
|
877
1045
|
"type": "stack",
|
|
878
1046
|
"direction": "horizontal",
|
|
879
|
-
"gap": "md",
|
|
880
1047
|
"children": [
|
|
881
1048
|
{
|
|
882
|
-
"type": "icon",
|
|
883
1049
|
"name": "clipboard",
|
|
884
|
-
"size": "lg"
|
|
1050
|
+
"size": "lg",
|
|
1051
|
+
"type": "icon"
|
|
885
1052
|
},
|
|
886
1053
|
{
|
|
887
1054
|
"type": "typography",
|
|
888
1055
|
"content": "Lab Results",
|
|
889
1056
|
"variant": "h2"
|
|
890
1057
|
}
|
|
891
|
-
]
|
|
1058
|
+
],
|
|
1059
|
+
"gap": "md"
|
|
892
1060
|
},
|
|
893
1061
|
{
|
|
894
1062
|
"type": "button",
|
|
895
|
-
"
|
|
1063
|
+
"icon": "refresh-cw",
|
|
896
1064
|
"event": "REFRESH",
|
|
897
1065
|
"variant": "secondary",
|
|
898
|
-
"
|
|
1066
|
+
"label": "Refresh"
|
|
899
1067
|
}
|
|
900
|
-
]
|
|
1068
|
+
],
|
|
1069
|
+
"direction": "horizontal",
|
|
1070
|
+
"gap": "md",
|
|
1071
|
+
"justify": "space-between",
|
|
1072
|
+
"type": "stack"
|
|
901
1073
|
},
|
|
902
1074
|
{
|
|
903
1075
|
"type": "divider"
|
|
904
1076
|
},
|
|
905
1077
|
{
|
|
906
|
-
"type": "box",
|
|
907
|
-
"padding": "md",
|
|
908
1078
|
"children": [
|
|
909
1079
|
{
|
|
910
|
-
"type": "simple-grid",
|
|
911
|
-
"columns": 3,
|
|
912
1080
|
"children": [
|
|
913
1081
|
{
|
|
914
1082
|
"type": "stat-display",
|
|
@@ -923,8 +1091,6 @@
|
|
|
923
1091
|
]
|
|
924
1092
|
},
|
|
925
1093
|
{
|
|
926
|
-
"type": "stat-display",
|
|
927
|
-
"label": "AvgAccuracy",
|
|
928
1094
|
"value": [
|
|
929
1095
|
"object/get",
|
|
930
1096
|
[
|
|
@@ -932,11 +1098,13 @@
|
|
|
932
1098
|
"@entity"
|
|
933
1099
|
],
|
|
934
1100
|
"avgAccuracy"
|
|
935
|
-
]
|
|
1101
|
+
],
|
|
1102
|
+
"type": "stat-display",
|
|
1103
|
+
"label": "AvgAccuracy"
|
|
936
1104
|
},
|
|
937
1105
|
{
|
|
938
|
-
"type": "stat-display",
|
|
939
1106
|
"label": "TotalScore",
|
|
1107
|
+
"type": "stat-display",
|
|
940
1108
|
"value": [
|
|
941
1109
|
"object/get",
|
|
942
1110
|
[
|
|
@@ -947,21 +1115,16 @@
|
|
|
947
1115
|
]
|
|
948
1116
|
},
|
|
949
1117
|
{
|
|
950
|
-
"type": "card",
|
|
951
1118
|
"children": [
|
|
952
1119
|
{
|
|
953
|
-
"type": "stack",
|
|
954
|
-
"direction": "vertical",
|
|
955
|
-
"gap": "sm",
|
|
956
1120
|
"children": [
|
|
957
1121
|
{
|
|
958
|
-
"
|
|
1122
|
+
"content": "Grade",
|
|
959
1123
|
"variant": "caption",
|
|
960
|
-
"
|
|
1124
|
+
"type": "typography"
|
|
961
1125
|
},
|
|
962
1126
|
{
|
|
963
1127
|
"type": "typography",
|
|
964
|
-
"variant": "h3",
|
|
965
1128
|
"content": [
|
|
966
1129
|
"object/get",
|
|
967
1130
|
[
|
|
@@ -969,23 +1132,29 @@
|
|
|
969
1132
|
"@entity"
|
|
970
1133
|
],
|
|
971
1134
|
"grade"
|
|
972
|
-
]
|
|
1135
|
+
],
|
|
1136
|
+
"variant": "h3"
|
|
973
1137
|
}
|
|
974
|
-
]
|
|
1138
|
+
],
|
|
1139
|
+
"gap": "sm",
|
|
1140
|
+
"type": "stack",
|
|
1141
|
+
"direction": "vertical"
|
|
975
1142
|
}
|
|
976
|
-
]
|
|
1143
|
+
],
|
|
1144
|
+
"type": "card"
|
|
977
1145
|
}
|
|
978
|
-
]
|
|
1146
|
+
],
|
|
1147
|
+
"type": "simple-grid",
|
|
1148
|
+
"columns": 3.0
|
|
979
1149
|
}
|
|
980
|
-
]
|
|
1150
|
+
],
|
|
1151
|
+
"padding": "md",
|
|
1152
|
+
"type": "box"
|
|
981
1153
|
},
|
|
982
1154
|
{
|
|
983
1155
|
"type": "divider"
|
|
984
1156
|
},
|
|
985
1157
|
{
|
|
986
|
-
"type": "grid",
|
|
987
|
-
"columns": 2,
|
|
988
|
-
"gap": "md",
|
|
989
1158
|
"children": [
|
|
990
1159
|
{
|
|
991
1160
|
"type": "card",
|
|
@@ -1001,52 +1170,55 @@
|
|
|
1001
1170
|
"type": "card",
|
|
1002
1171
|
"children": [
|
|
1003
1172
|
{
|
|
1004
|
-
"
|
|
1173
|
+
"content": "Graph View",
|
|
1005
1174
|
"variant": "caption",
|
|
1006
|
-
"
|
|
1175
|
+
"type": "typography"
|
|
1007
1176
|
}
|
|
1008
1177
|
]
|
|
1009
1178
|
}
|
|
1010
|
-
]
|
|
1179
|
+
],
|
|
1180
|
+
"type": "grid",
|
|
1181
|
+
"columns": 2.0,
|
|
1182
|
+
"gap": "md"
|
|
1011
1183
|
},
|
|
1012
1184
|
{
|
|
1185
|
+
"yKey": "value",
|
|
1186
|
+
"title": "Trend",
|
|
1013
1187
|
"type": "line-chart",
|
|
1014
1188
|
"data": [
|
|
1015
1189
|
{
|
|
1016
1190
|
"date": "Jan",
|
|
1017
|
-
"value": 12
|
|
1191
|
+
"value": 12.0
|
|
1018
1192
|
},
|
|
1019
1193
|
{
|
|
1020
1194
|
"date": "Feb",
|
|
1021
|
-
"value": 19
|
|
1195
|
+
"value": 19.0
|
|
1022
1196
|
},
|
|
1023
1197
|
{
|
|
1024
1198
|
"date": "Mar",
|
|
1025
|
-
"value": 15
|
|
1199
|
+
"value": 15.0
|
|
1026
1200
|
},
|
|
1027
1201
|
{
|
|
1028
|
-
"
|
|
1029
|
-
"
|
|
1202
|
+
"value": 25.0,
|
|
1203
|
+
"date": "Apr"
|
|
1030
1204
|
},
|
|
1031
1205
|
{
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1206
|
+
"value": 22.0,
|
|
1207
|
+
"date": "May"
|
|
1034
1208
|
},
|
|
1035
1209
|
{
|
|
1036
|
-
"
|
|
1037
|
-
"
|
|
1210
|
+
"value": 30.0,
|
|
1211
|
+
"date": "Jun"
|
|
1038
1212
|
}
|
|
1039
1213
|
],
|
|
1040
|
-
"xKey": "date"
|
|
1041
|
-
"yKey": "value",
|
|
1042
|
-
"title": "Trend"
|
|
1214
|
+
"xKey": "date"
|
|
1043
1215
|
},
|
|
1044
1216
|
{
|
|
1045
1217
|
"type": "chart-legend",
|
|
1046
1218
|
"items": [
|
|
1047
1219
|
{
|
|
1048
|
-
"
|
|
1049
|
-
"
|
|
1220
|
+
"color": "primary",
|
|
1221
|
+
"label": "Current"
|
|
1050
1222
|
},
|
|
1051
1223
|
{
|
|
1052
1224
|
"label": "Previous",
|
|
@@ -1055,41 +1227,42 @@
|
|
|
1055
1227
|
]
|
|
1056
1228
|
},
|
|
1057
1229
|
{
|
|
1230
|
+
"width": 400.0,
|
|
1231
|
+
"height": 200.0,
|
|
1058
1232
|
"type": "graph-view",
|
|
1233
|
+
"edges": [
|
|
1234
|
+
{
|
|
1235
|
+
"from": "a",
|
|
1236
|
+
"to": "b"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"to": "c",
|
|
1240
|
+
"from": "b"
|
|
1241
|
+
}
|
|
1242
|
+
],
|
|
1059
1243
|
"nodes": [
|
|
1060
1244
|
{
|
|
1061
1245
|
"id": "a",
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1246
|
+
"x": 50.0,
|
|
1247
|
+
"y": 100.0,
|
|
1248
|
+
"label": "Start"
|
|
1065
1249
|
},
|
|
1066
1250
|
{
|
|
1067
|
-
"
|
|
1251
|
+
"y": 50.0,
|
|
1252
|
+
"x": 200.0,
|
|
1068
1253
|
"label": "Process",
|
|
1069
|
-
"
|
|
1070
|
-
"y": 50
|
|
1254
|
+
"id": "b"
|
|
1071
1255
|
},
|
|
1072
1256
|
{
|
|
1257
|
+
"y": 100.0,
|
|
1073
1258
|
"id": "c",
|
|
1074
1259
|
"label": "End",
|
|
1075
|
-
"x": 350
|
|
1076
|
-
"y": 100
|
|
1260
|
+
"x": 350.0
|
|
1077
1261
|
}
|
|
1078
|
-
]
|
|
1079
|
-
"edges": [
|
|
1080
|
-
{
|
|
1081
|
-
"from": "a",
|
|
1082
|
-
"to": "b"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
"from": "b",
|
|
1086
|
-
"to": "c"
|
|
1087
|
-
}
|
|
1088
|
-
],
|
|
1089
|
-
"width": 400,
|
|
1090
|
-
"height": 200
|
|
1262
|
+
]
|
|
1091
1263
|
}
|
|
1092
|
-
]
|
|
1264
|
+
],
|
|
1265
|
+
"direction": "vertical"
|
|
1093
1266
|
}
|
|
1094
1267
|
]
|
|
1095
1268
|
}
|
|
@@ -1105,26 +1278,28 @@
|
|
|
1105
1278
|
"effects": [
|
|
1106
1279
|
[
|
|
1107
1280
|
"fetch",
|
|
1108
|
-
"LabResult"
|
|
1281
|
+
"LabResult",
|
|
1282
|
+
{
|
|
1283
|
+
"emit": {
|
|
1284
|
+
"success": "LabResultLoaded",
|
|
1285
|
+
"failure": "LabResultLoadFailed"
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1109
1288
|
],
|
|
1110
1289
|
[
|
|
1111
1290
|
"render-ui",
|
|
1112
1291
|
"main",
|
|
1113
1292
|
{
|
|
1114
|
-
"type": "game-shell",
|
|
1115
|
-
"appName": "STEM Lab",
|
|
1116
|
-
"showTopBar": true,
|
|
1117
1293
|
"children": [
|
|
1118
1294
|
{
|
|
1119
1295
|
"type": "scaled-diagram",
|
|
1120
1296
|
"children": [
|
|
1121
1297
|
{
|
|
1122
|
-
"type": "stack",
|
|
1123
1298
|
"direction": "vertical",
|
|
1299
|
+
"type": "stack",
|
|
1124
1300
|
"gap": "lg",
|
|
1125
1301
|
"children": [
|
|
1126
1302
|
{
|
|
1127
|
-
"type": "breadcrumb",
|
|
1128
1303
|
"items": [
|
|
1129
1304
|
{
|
|
1130
1305
|
"label": "Home",
|
|
@@ -1133,18 +1308,15 @@
|
|
|
1133
1308
|
{
|
|
1134
1309
|
"label": "Lab Results"
|
|
1135
1310
|
}
|
|
1136
|
-
]
|
|
1311
|
+
],
|
|
1312
|
+
"type": "breadcrumb"
|
|
1137
1313
|
},
|
|
1138
1314
|
{
|
|
1139
|
-
"type": "stack",
|
|
1140
|
-
"direction": "horizontal",
|
|
1141
|
-
"gap": "md",
|
|
1142
1315
|
"justify": "space-between",
|
|
1143
1316
|
"children": [
|
|
1144
1317
|
{
|
|
1145
|
-
"type": "stack",
|
|
1146
|
-
"direction": "horizontal",
|
|
1147
1318
|
"gap": "md",
|
|
1319
|
+
"direction": "horizontal",
|
|
1148
1320
|
"children": [
|
|
1149
1321
|
{
|
|
1150
1322
|
"type": "icon",
|
|
@@ -1156,27 +1328,30 @@
|
|
|
1156
1328
|
"content": "Lab Results",
|
|
1157
1329
|
"variant": "h2"
|
|
1158
1330
|
}
|
|
1159
|
-
]
|
|
1331
|
+
],
|
|
1332
|
+
"type": "stack"
|
|
1160
1333
|
},
|
|
1161
1334
|
{
|
|
1335
|
+
"event": "REFRESH",
|
|
1162
1336
|
"type": "button",
|
|
1337
|
+
"icon": "refresh-cw",
|
|
1163
1338
|
"label": "Refresh",
|
|
1164
|
-
"
|
|
1165
|
-
"variant": "secondary",
|
|
1166
|
-
"icon": "refresh-cw"
|
|
1339
|
+
"variant": "secondary"
|
|
1167
1340
|
}
|
|
1168
|
-
]
|
|
1341
|
+
],
|
|
1342
|
+
"gap": "md",
|
|
1343
|
+
"type": "stack",
|
|
1344
|
+
"direction": "horizontal"
|
|
1169
1345
|
},
|
|
1170
1346
|
{
|
|
1171
1347
|
"type": "divider"
|
|
1172
1348
|
},
|
|
1173
1349
|
{
|
|
1174
1350
|
"type": "box",
|
|
1175
|
-
"padding": "md",
|
|
1176
1351
|
"children": [
|
|
1177
1352
|
{
|
|
1178
1353
|
"type": "simple-grid",
|
|
1179
|
-
"columns": 3,
|
|
1354
|
+
"columns": 3.0,
|
|
1180
1355
|
"children": [
|
|
1181
1356
|
{
|
|
1182
1357
|
"type": "stat-display",
|
|
@@ -1203,8 +1378,6 @@
|
|
|
1203
1378
|
]
|
|
1204
1379
|
},
|
|
1205
1380
|
{
|
|
1206
|
-
"type": "stat-display",
|
|
1207
|
-
"label": "TotalScore",
|
|
1208
1381
|
"value": [
|
|
1209
1382
|
"object/get",
|
|
1210
1383
|
[
|
|
@@ -1212,15 +1385,16 @@
|
|
|
1212
1385
|
"@entity"
|
|
1213
1386
|
],
|
|
1214
1387
|
"totalScore"
|
|
1215
|
-
]
|
|
1388
|
+
],
|
|
1389
|
+
"type": "stat-display",
|
|
1390
|
+
"label": "TotalScore"
|
|
1216
1391
|
},
|
|
1217
1392
|
{
|
|
1218
|
-
"type": "card",
|
|
1219
1393
|
"children": [
|
|
1220
1394
|
{
|
|
1221
|
-
"type": "stack",
|
|
1222
|
-
"direction": "vertical",
|
|
1223
1395
|
"gap": "sm",
|
|
1396
|
+
"direction": "vertical",
|
|
1397
|
+
"type": "stack",
|
|
1224
1398
|
"children": [
|
|
1225
1399
|
{
|
|
1226
1400
|
"type": "typography",
|
|
@@ -1228,7 +1402,6 @@
|
|
|
1228
1402
|
"content": "Grade"
|
|
1229
1403
|
},
|
|
1230
1404
|
{
|
|
1231
|
-
"type": "typography",
|
|
1232
1405
|
"variant": "h3",
|
|
1233
1406
|
"content": [
|
|
1234
1407
|
"object/get",
|
|
@@ -1237,131 +1410,137 @@
|
|
|
1237
1410
|
"@entity"
|
|
1238
1411
|
],
|
|
1239
1412
|
"grade"
|
|
1240
|
-
]
|
|
1413
|
+
],
|
|
1414
|
+
"type": "typography"
|
|
1241
1415
|
}
|
|
1242
1416
|
]
|
|
1243
1417
|
}
|
|
1244
|
-
]
|
|
1418
|
+
],
|
|
1419
|
+
"type": "card"
|
|
1245
1420
|
}
|
|
1246
1421
|
]
|
|
1247
1422
|
}
|
|
1248
|
-
]
|
|
1423
|
+
],
|
|
1424
|
+
"padding": "md"
|
|
1249
1425
|
},
|
|
1250
1426
|
{
|
|
1251
1427
|
"type": "divider"
|
|
1252
1428
|
},
|
|
1253
1429
|
{
|
|
1254
|
-
"type": "grid",
|
|
1255
|
-
"columns": 2,
|
|
1256
1430
|
"gap": "md",
|
|
1257
1431
|
"children": [
|
|
1258
1432
|
{
|
|
1259
|
-
"type": "card",
|
|
1260
1433
|
"children": [
|
|
1261
1434
|
{
|
|
1262
1435
|
"type": "typography",
|
|
1263
1436
|
"variant": "caption",
|
|
1264
1437
|
"content": "Chart View"
|
|
1265
1438
|
}
|
|
1266
|
-
]
|
|
1439
|
+
],
|
|
1440
|
+
"type": "card"
|
|
1267
1441
|
},
|
|
1268
1442
|
{
|
|
1269
|
-
"type": "card",
|
|
1270
1443
|
"children": [
|
|
1271
1444
|
{
|
|
1272
1445
|
"type": "typography",
|
|
1273
1446
|
"variant": "caption",
|
|
1274
1447
|
"content": "Graph View"
|
|
1275
1448
|
}
|
|
1276
|
-
]
|
|
1449
|
+
],
|
|
1450
|
+
"type": "card"
|
|
1277
1451
|
}
|
|
1278
|
-
]
|
|
1452
|
+
],
|
|
1453
|
+
"columns": 2.0,
|
|
1454
|
+
"type": "grid"
|
|
1279
1455
|
},
|
|
1280
1456
|
{
|
|
1457
|
+
"title": "Trend",
|
|
1281
1458
|
"type": "line-chart",
|
|
1459
|
+
"xKey": "date",
|
|
1282
1460
|
"data": [
|
|
1283
1461
|
{
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1462
|
+
"value": 12.0,
|
|
1463
|
+
"date": "Jan"
|
|
1286
1464
|
},
|
|
1287
1465
|
{
|
|
1288
1466
|
"date": "Feb",
|
|
1289
|
-
"value": 19
|
|
1467
|
+
"value": 19.0
|
|
1290
1468
|
},
|
|
1291
1469
|
{
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1470
|
+
"value": 15.0,
|
|
1471
|
+
"date": "Mar"
|
|
1294
1472
|
},
|
|
1295
1473
|
{
|
|
1296
1474
|
"date": "Apr",
|
|
1297
|
-
"value": 25
|
|
1475
|
+
"value": 25.0
|
|
1298
1476
|
},
|
|
1299
1477
|
{
|
|
1300
1478
|
"date": "May",
|
|
1301
|
-
"value": 22
|
|
1479
|
+
"value": 22.0
|
|
1302
1480
|
},
|
|
1303
1481
|
{
|
|
1304
1482
|
"date": "Jun",
|
|
1305
|
-
"value": 30
|
|
1483
|
+
"value": 30.0
|
|
1306
1484
|
}
|
|
1307
1485
|
],
|
|
1308
|
-
"
|
|
1309
|
-
"yKey": "value",
|
|
1310
|
-
"title": "Trend"
|
|
1486
|
+
"yKey": "value"
|
|
1311
1487
|
},
|
|
1312
1488
|
{
|
|
1313
|
-
"type": "chart-legend",
|
|
1314
1489
|
"items": [
|
|
1315
1490
|
{
|
|
1316
|
-
"
|
|
1317
|
-
"
|
|
1491
|
+
"color": "primary",
|
|
1492
|
+
"label": "Current"
|
|
1318
1493
|
},
|
|
1319
1494
|
{
|
|
1320
1495
|
"label": "Previous",
|
|
1321
1496
|
"color": "muted"
|
|
1322
1497
|
}
|
|
1323
|
-
]
|
|
1498
|
+
],
|
|
1499
|
+
"type": "chart-legend"
|
|
1324
1500
|
},
|
|
1325
1501
|
{
|
|
1326
1502
|
"type": "graph-view",
|
|
1503
|
+
"height": 200.0,
|
|
1327
1504
|
"nodes": [
|
|
1328
1505
|
{
|
|
1329
1506
|
"id": "a",
|
|
1330
1507
|
"label": "Start",
|
|
1331
|
-
"x": 50,
|
|
1332
|
-
"y": 100
|
|
1508
|
+
"x": 50.0,
|
|
1509
|
+
"y": 100.0
|
|
1333
1510
|
},
|
|
1334
1511
|
{
|
|
1335
|
-
"
|
|
1512
|
+
"x": 200.0,
|
|
1336
1513
|
"label": "Process",
|
|
1337
|
-
"
|
|
1338
|
-
"
|
|
1514
|
+
"y": 50.0,
|
|
1515
|
+
"id": "b"
|
|
1339
1516
|
},
|
|
1340
1517
|
{
|
|
1341
1518
|
"id": "c",
|
|
1342
1519
|
"label": "End",
|
|
1343
|
-
"x": 350,
|
|
1344
|
-
"y": 100
|
|
1520
|
+
"x": 350.0,
|
|
1521
|
+
"y": 100.0
|
|
1345
1522
|
}
|
|
1346
1523
|
],
|
|
1347
1524
|
"edges": [
|
|
1348
1525
|
{
|
|
1349
|
-
"
|
|
1350
|
-
"
|
|
1526
|
+
"to": "b",
|
|
1527
|
+
"from": "a"
|
|
1351
1528
|
},
|
|
1352
1529
|
{
|
|
1353
1530
|
"from": "b",
|
|
1354
1531
|
"to": "c"
|
|
1355
1532
|
}
|
|
1356
1533
|
],
|
|
1357
|
-
"width": 400
|
|
1358
|
-
"height": 200
|
|
1534
|
+
"width": 400.0
|
|
1359
1535
|
}
|
|
1360
1536
|
]
|
|
1361
1537
|
}
|
|
1362
1538
|
]
|
|
1363
1539
|
}
|
|
1364
|
-
]
|
|
1540
|
+
],
|
|
1541
|
+
"appName": "STEM Lab",
|
|
1542
|
+
"showTopBar": true,
|
|
1543
|
+
"type": "game-shell"
|
|
1365
1544
|
}
|
|
1366
1545
|
]
|
|
1367
1546
|
]
|
|
@@ -1373,23 +1552,26 @@
|
|
|
1373
1552
|
"effects": [
|
|
1374
1553
|
[
|
|
1375
1554
|
"fetch",
|
|
1376
|
-
"LabResult"
|
|
1555
|
+
"LabResult",
|
|
1556
|
+
{
|
|
1557
|
+
"emit": {
|
|
1558
|
+
"success": "LabResultLoaded",
|
|
1559
|
+
"failure": "LabResultLoadFailed"
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1377
1562
|
],
|
|
1378
1563
|
[
|
|
1379
1564
|
"render-ui",
|
|
1380
1565
|
"main",
|
|
1381
1566
|
{
|
|
1567
|
+
"showTopBar": true,
|
|
1382
1568
|
"type": "game-shell",
|
|
1383
1569
|
"appName": "STEM Lab",
|
|
1384
|
-
"showTopBar": true,
|
|
1385
1570
|
"children": [
|
|
1386
1571
|
{
|
|
1387
|
-
"type": "scaled-diagram",
|
|
1388
1572
|
"children": [
|
|
1389
1573
|
{
|
|
1390
1574
|
"type": "stack",
|
|
1391
|
-
"direction": "vertical",
|
|
1392
|
-
"gap": "lg",
|
|
1393
1575
|
"children": [
|
|
1394
1576
|
{
|
|
1395
1577
|
"type": "breadcrumb",
|
|
@@ -1404,7 +1586,6 @@
|
|
|
1404
1586
|
]
|
|
1405
1587
|
},
|
|
1406
1588
|
{
|
|
1407
|
-
"type": "stack",
|
|
1408
1589
|
"direction": "horizontal",
|
|
1409
1590
|
"gap": "md",
|
|
1410
1591
|
"justify": "space-between",
|
|
@@ -1412,43 +1593,42 @@
|
|
|
1412
1593
|
{
|
|
1413
1594
|
"type": "stack",
|
|
1414
1595
|
"direction": "horizontal",
|
|
1415
|
-
"gap": "md",
|
|
1416
1596
|
"children": [
|
|
1417
1597
|
{
|
|
1598
|
+
"size": "lg",
|
|
1418
1599
|
"type": "icon",
|
|
1419
|
-
"name": "clipboard"
|
|
1420
|
-
"size": "lg"
|
|
1600
|
+
"name": "clipboard"
|
|
1421
1601
|
},
|
|
1422
1602
|
{
|
|
1423
1603
|
"type": "typography",
|
|
1424
1604
|
"content": "Lab Results",
|
|
1425
1605
|
"variant": "h2"
|
|
1426
1606
|
}
|
|
1427
|
-
]
|
|
1607
|
+
],
|
|
1608
|
+
"gap": "md"
|
|
1428
1609
|
},
|
|
1429
1610
|
{
|
|
1611
|
+
"icon": "refresh-cw",
|
|
1430
1612
|
"type": "button",
|
|
1431
|
-
"label": "Refresh",
|
|
1432
|
-
"event": "REFRESH",
|
|
1433
1613
|
"variant": "secondary",
|
|
1434
|
-
"
|
|
1614
|
+
"event": "REFRESH",
|
|
1615
|
+
"label": "Refresh"
|
|
1435
1616
|
}
|
|
1436
|
-
]
|
|
1617
|
+
],
|
|
1618
|
+
"type": "stack"
|
|
1437
1619
|
},
|
|
1438
1620
|
{
|
|
1439
1621
|
"type": "divider"
|
|
1440
1622
|
},
|
|
1441
1623
|
{
|
|
1442
|
-
"type": "box",
|
|
1443
1624
|
"padding": "md",
|
|
1444
1625
|
"children": [
|
|
1445
1626
|
{
|
|
1446
1627
|
"type": "simple-grid",
|
|
1447
|
-
"columns": 3,
|
|
1448
1628
|
"children": [
|
|
1449
1629
|
{
|
|
1450
|
-
"type": "stat-display",
|
|
1451
1630
|
"label": "ExperimentCount",
|
|
1631
|
+
"type": "stat-display",
|
|
1452
1632
|
"value": [
|
|
1453
1633
|
"object/get",
|
|
1454
1634
|
[
|
|
@@ -1459,7 +1639,6 @@
|
|
|
1459
1639
|
]
|
|
1460
1640
|
},
|
|
1461
1641
|
{
|
|
1462
|
-
"type": "stat-display",
|
|
1463
1642
|
"label": "AvgAccuracy",
|
|
1464
1643
|
"value": [
|
|
1465
1644
|
"object/get",
|
|
@@ -1468,11 +1647,10 @@
|
|
|
1468
1647
|
"@entity"
|
|
1469
1648
|
],
|
|
1470
1649
|
"avgAccuracy"
|
|
1471
|
-
]
|
|
1650
|
+
],
|
|
1651
|
+
"type": "stat-display"
|
|
1472
1652
|
},
|
|
1473
1653
|
{
|
|
1474
|
-
"type": "stat-display",
|
|
1475
|
-
"label": "TotalScore",
|
|
1476
1654
|
"value": [
|
|
1477
1655
|
"object/get",
|
|
1478
1656
|
[
|
|
@@ -1480,15 +1658,14 @@
|
|
|
1480
1658
|
"@entity"
|
|
1481
1659
|
],
|
|
1482
1660
|
"totalScore"
|
|
1483
|
-
]
|
|
1661
|
+
],
|
|
1662
|
+
"type": "stat-display",
|
|
1663
|
+
"label": "TotalScore"
|
|
1484
1664
|
},
|
|
1485
1665
|
{
|
|
1486
1666
|
"type": "card",
|
|
1487
1667
|
"children": [
|
|
1488
1668
|
{
|
|
1489
|
-
"type": "stack",
|
|
1490
|
-
"direction": "vertical",
|
|
1491
|
-
"gap": "sm",
|
|
1492
1669
|
"children": [
|
|
1493
1670
|
{
|
|
1494
1671
|
"type": "typography",
|
|
@@ -1496,8 +1673,6 @@
|
|
|
1496
1673
|
"content": "Grade"
|
|
1497
1674
|
},
|
|
1498
1675
|
{
|
|
1499
|
-
"type": "typography",
|
|
1500
|
-
"variant": "h3",
|
|
1501
1676
|
"content": [
|
|
1502
1677
|
"object/get",
|
|
1503
1678
|
[
|
|
@@ -1505,111 +1680,118 @@
|
|
|
1505
1680
|
"@entity"
|
|
1506
1681
|
],
|
|
1507
1682
|
"grade"
|
|
1508
|
-
]
|
|
1683
|
+
],
|
|
1684
|
+
"type": "typography",
|
|
1685
|
+
"variant": "h3"
|
|
1509
1686
|
}
|
|
1510
|
-
]
|
|
1687
|
+
],
|
|
1688
|
+
"direction": "vertical",
|
|
1689
|
+
"type": "stack",
|
|
1690
|
+
"gap": "sm"
|
|
1511
1691
|
}
|
|
1512
1692
|
]
|
|
1513
1693
|
}
|
|
1514
|
-
]
|
|
1694
|
+
],
|
|
1695
|
+
"columns": 3.0
|
|
1515
1696
|
}
|
|
1516
|
-
]
|
|
1697
|
+
],
|
|
1698
|
+
"type": "box"
|
|
1517
1699
|
},
|
|
1518
1700
|
{
|
|
1519
1701
|
"type": "divider"
|
|
1520
1702
|
},
|
|
1521
1703
|
{
|
|
1522
|
-
"type": "grid",
|
|
1523
|
-
"columns": 2,
|
|
1524
1704
|
"gap": "md",
|
|
1525
1705
|
"children": [
|
|
1526
1706
|
{
|
|
1527
1707
|
"type": "card",
|
|
1528
1708
|
"children": [
|
|
1529
1709
|
{
|
|
1530
|
-
"type": "typography",
|
|
1531
1710
|
"variant": "caption",
|
|
1711
|
+
"type": "typography",
|
|
1532
1712
|
"content": "Chart View"
|
|
1533
1713
|
}
|
|
1534
1714
|
]
|
|
1535
1715
|
},
|
|
1536
1716
|
{
|
|
1537
|
-
"type": "card",
|
|
1538
1717
|
"children": [
|
|
1539
1718
|
{
|
|
1540
|
-
"type": "typography",
|
|
1541
1719
|
"variant": "caption",
|
|
1542
|
-
"content": "Graph View"
|
|
1720
|
+
"content": "Graph View",
|
|
1721
|
+
"type": "typography"
|
|
1543
1722
|
}
|
|
1544
|
-
]
|
|
1723
|
+
],
|
|
1724
|
+
"type": "card"
|
|
1545
1725
|
}
|
|
1546
|
-
]
|
|
1726
|
+
],
|
|
1727
|
+
"columns": 2.0,
|
|
1728
|
+
"type": "grid"
|
|
1547
1729
|
},
|
|
1548
1730
|
{
|
|
1549
|
-
"
|
|
1731
|
+
"yKey": "value",
|
|
1732
|
+
"xKey": "date",
|
|
1550
1733
|
"data": [
|
|
1551
1734
|
{
|
|
1552
1735
|
"date": "Jan",
|
|
1553
|
-
"value": 12
|
|
1736
|
+
"value": 12.0
|
|
1554
1737
|
},
|
|
1555
1738
|
{
|
|
1556
1739
|
"date": "Feb",
|
|
1557
|
-
"value": 19
|
|
1740
|
+
"value": 19.0
|
|
1558
1741
|
},
|
|
1559
1742
|
{
|
|
1560
1743
|
"date": "Mar",
|
|
1561
|
-
"value": 15
|
|
1744
|
+
"value": 15.0
|
|
1562
1745
|
},
|
|
1563
1746
|
{
|
|
1564
1747
|
"date": "Apr",
|
|
1565
|
-
"value": 25
|
|
1748
|
+
"value": 25.0
|
|
1566
1749
|
},
|
|
1567
1750
|
{
|
|
1568
|
-
"
|
|
1569
|
-
"
|
|
1751
|
+
"value": 22.0,
|
|
1752
|
+
"date": "May"
|
|
1570
1753
|
},
|
|
1571
1754
|
{
|
|
1572
|
-
"
|
|
1573
|
-
"
|
|
1755
|
+
"value": 30.0,
|
|
1756
|
+
"date": "Jun"
|
|
1574
1757
|
}
|
|
1575
1758
|
],
|
|
1576
|
-
"
|
|
1577
|
-
"
|
|
1578
|
-
"title": "Trend"
|
|
1759
|
+
"title": "Trend",
|
|
1760
|
+
"type": "line-chart"
|
|
1579
1761
|
},
|
|
1580
1762
|
{
|
|
1581
|
-
"type": "chart-legend",
|
|
1582
1763
|
"items": [
|
|
1583
1764
|
{
|
|
1584
1765
|
"label": "Current",
|
|
1585
1766
|
"color": "primary"
|
|
1586
1767
|
},
|
|
1587
1768
|
{
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1769
|
+
"color": "muted",
|
|
1770
|
+
"label": "Previous"
|
|
1590
1771
|
}
|
|
1591
|
-
]
|
|
1772
|
+
],
|
|
1773
|
+
"type": "chart-legend"
|
|
1592
1774
|
},
|
|
1593
1775
|
{
|
|
1594
|
-
"
|
|
1776
|
+
"width": 400.0,
|
|
1595
1777
|
"nodes": [
|
|
1596
1778
|
{
|
|
1597
1779
|
"id": "a",
|
|
1598
|
-
"
|
|
1599
|
-
"x": 50,
|
|
1600
|
-
"
|
|
1780
|
+
"y": 100.0,
|
|
1781
|
+
"x": 50.0,
|
|
1782
|
+
"label": "Start"
|
|
1601
1783
|
},
|
|
1602
1784
|
{
|
|
1603
|
-
"
|
|
1785
|
+
"y": 50.0,
|
|
1604
1786
|
"label": "Process",
|
|
1605
|
-
"x": 200,
|
|
1606
|
-
"
|
|
1787
|
+
"x": 200.0,
|
|
1788
|
+
"id": "b"
|
|
1607
1789
|
},
|
|
1608
1790
|
{
|
|
1609
|
-
"id": "c",
|
|
1610
1791
|
"label": "End",
|
|
1611
|
-
"x": 350,
|
|
1612
|
-
"y": 100
|
|
1792
|
+
"x": 350.0,
|
|
1793
|
+
"y": 100.0,
|
|
1794
|
+
"id": "c"
|
|
1613
1795
|
}
|
|
1614
1796
|
],
|
|
1615
1797
|
"edges": [
|
|
@@ -1618,16 +1800,19 @@
|
|
|
1618
1800
|
"to": "b"
|
|
1619
1801
|
},
|
|
1620
1802
|
{
|
|
1621
|
-
"
|
|
1622
|
-
"
|
|
1803
|
+
"to": "c",
|
|
1804
|
+
"from": "b"
|
|
1623
1805
|
}
|
|
1624
1806
|
],
|
|
1625
|
-
"
|
|
1626
|
-
"
|
|
1807
|
+
"height": 200.0,
|
|
1808
|
+
"type": "graph-view"
|
|
1627
1809
|
}
|
|
1628
|
-
]
|
|
1810
|
+
],
|
|
1811
|
+
"gap": "lg",
|
|
1812
|
+
"direction": "vertical"
|
|
1629
1813
|
}
|
|
1630
|
-
]
|
|
1814
|
+
],
|
|
1815
|
+
"type": "scaled-diagram"
|
|
1631
1816
|
}
|
|
1632
1817
|
]
|
|
1633
1818
|
}
|
|
@@ -1641,67 +1826,66 @@
|
|
|
1641
1826
|
"effects": [
|
|
1642
1827
|
[
|
|
1643
1828
|
"fetch",
|
|
1644
|
-
"LabResult"
|
|
1829
|
+
"LabResult",
|
|
1830
|
+
{
|
|
1831
|
+
"emit": {
|
|
1832
|
+
"success": "LabResultLoaded",
|
|
1833
|
+
"failure": "LabResultLoadFailed"
|
|
1834
|
+
}
|
|
1835
|
+
}
|
|
1645
1836
|
],
|
|
1646
1837
|
[
|
|
1647
1838
|
"render-ui",
|
|
1648
1839
|
"main",
|
|
1649
1840
|
{
|
|
1650
|
-
"type": "game-shell",
|
|
1651
|
-
"appName": "STEM Lab",
|
|
1652
|
-
"showTopBar": true,
|
|
1653
1841
|
"children": [
|
|
1654
1842
|
{
|
|
1655
|
-
"type": "scaled-diagram",
|
|
1656
1843
|
"children": [
|
|
1657
1844
|
{
|
|
1658
|
-
"type": "stack",
|
|
1659
|
-
"direction": "vertical",
|
|
1660
|
-
"gap": "lg",
|
|
1661
1845
|
"children": [
|
|
1662
1846
|
{
|
|
1663
|
-
"type": "breadcrumb",
|
|
1664
1847
|
"items": [
|
|
1665
1848
|
{
|
|
1666
|
-
"
|
|
1667
|
-
"
|
|
1849
|
+
"href": "/",
|
|
1850
|
+
"label": "Home"
|
|
1668
1851
|
},
|
|
1669
1852
|
{
|
|
1670
1853
|
"label": "Lab Results"
|
|
1671
1854
|
}
|
|
1672
|
-
]
|
|
1855
|
+
],
|
|
1856
|
+
"type": "breadcrumb"
|
|
1673
1857
|
},
|
|
1674
1858
|
{
|
|
1675
|
-
"type": "stack",
|
|
1676
1859
|
"direction": "horizontal",
|
|
1677
1860
|
"gap": "md",
|
|
1678
|
-
"
|
|
1861
|
+
"type": "stack",
|
|
1679
1862
|
"children": [
|
|
1680
1863
|
{
|
|
1681
|
-
"type": "stack",
|
|
1682
|
-
"direction": "horizontal",
|
|
1683
1864
|
"gap": "md",
|
|
1684
1865
|
"children": [
|
|
1685
1866
|
{
|
|
1686
|
-
"
|
|
1867
|
+
"size": "lg",
|
|
1687
1868
|
"name": "clipboard",
|
|
1688
|
-
"
|
|
1869
|
+
"type": "icon"
|
|
1689
1870
|
},
|
|
1690
1871
|
{
|
|
1691
|
-
"type": "typography",
|
|
1692
1872
|
"content": "Lab Results",
|
|
1693
|
-
"variant": "h2"
|
|
1873
|
+
"variant": "h2",
|
|
1874
|
+
"type": "typography"
|
|
1694
1875
|
}
|
|
1695
|
-
]
|
|
1876
|
+
],
|
|
1877
|
+
"type": "stack",
|
|
1878
|
+
"direction": "horizontal"
|
|
1696
1879
|
},
|
|
1697
1880
|
{
|
|
1698
|
-
"type": "button",
|
|
1699
1881
|
"label": "Refresh",
|
|
1700
|
-
"event": "REFRESH",
|
|
1701
1882
|
"variant": "secondary",
|
|
1702
|
-
"icon": "refresh-cw"
|
|
1883
|
+
"icon": "refresh-cw",
|
|
1884
|
+
"type": "button",
|
|
1885
|
+
"event": "REFRESH"
|
|
1703
1886
|
}
|
|
1704
|
-
]
|
|
1887
|
+
],
|
|
1888
|
+
"justify": "space-between"
|
|
1705
1889
|
},
|
|
1706
1890
|
{
|
|
1707
1891
|
"type": "divider"
|
|
@@ -1711,12 +1895,10 @@
|
|
|
1711
1895
|
"padding": "md",
|
|
1712
1896
|
"children": [
|
|
1713
1897
|
{
|
|
1714
|
-
"type": "simple-grid",
|
|
1715
|
-
"columns": 3,
|
|
1716
1898
|
"children": [
|
|
1717
1899
|
{
|
|
1718
|
-
"type": "stat-display",
|
|
1719
1900
|
"label": "ExperimentCount",
|
|
1901
|
+
"type": "stat-display",
|
|
1720
1902
|
"value": [
|
|
1721
1903
|
"object/get",
|
|
1722
1904
|
[
|
|
@@ -1727,8 +1909,8 @@
|
|
|
1727
1909
|
]
|
|
1728
1910
|
},
|
|
1729
1911
|
{
|
|
1730
|
-
"type": "stat-display",
|
|
1731
1912
|
"label": "AvgAccuracy",
|
|
1913
|
+
"type": "stat-display",
|
|
1732
1914
|
"value": [
|
|
1733
1915
|
"object/get",
|
|
1734
1916
|
[
|
|
@@ -1739,8 +1921,8 @@
|
|
|
1739
1921
|
]
|
|
1740
1922
|
},
|
|
1741
1923
|
{
|
|
1742
|
-
"type": "stat-display",
|
|
1743
1924
|
"label": "TotalScore",
|
|
1925
|
+
"type": "stat-display",
|
|
1744
1926
|
"value": [
|
|
1745
1927
|
"object/get",
|
|
1746
1928
|
[
|
|
@@ -1754,7 +1936,6 @@
|
|
|
1754
1936
|
"type": "card",
|
|
1755
1937
|
"children": [
|
|
1756
1938
|
{
|
|
1757
|
-
"type": "stack",
|
|
1758
1939
|
"direction": "vertical",
|
|
1759
1940
|
"gap": "sm",
|
|
1760
1941
|
"children": [
|
|
@@ -1764,8 +1945,8 @@
|
|
|
1764
1945
|
"content": "Grade"
|
|
1765
1946
|
},
|
|
1766
1947
|
{
|
|
1767
|
-
"type": "typography",
|
|
1768
1948
|
"variant": "h3",
|
|
1949
|
+
"type": "typography",
|
|
1769
1950
|
"content": [
|
|
1770
1951
|
"object/get",
|
|
1771
1952
|
[
|
|
@@ -1775,11 +1956,14 @@
|
|
|
1775
1956
|
"grade"
|
|
1776
1957
|
]
|
|
1777
1958
|
}
|
|
1778
|
-
]
|
|
1959
|
+
],
|
|
1960
|
+
"type": "stack"
|
|
1779
1961
|
}
|
|
1780
1962
|
]
|
|
1781
1963
|
}
|
|
1782
|
-
]
|
|
1964
|
+
],
|
|
1965
|
+
"type": "simple-grid",
|
|
1966
|
+
"columns": 3.0
|
|
1783
1967
|
}
|
|
1784
1968
|
]
|
|
1785
1969
|
},
|
|
@@ -1787,9 +1971,6 @@
|
|
|
1787
1971
|
"type": "divider"
|
|
1788
1972
|
},
|
|
1789
1973
|
{
|
|
1790
|
-
"type": "grid",
|
|
1791
|
-
"columns": 2,
|
|
1792
|
-
"gap": "md",
|
|
1793
1974
|
"children": [
|
|
1794
1975
|
{
|
|
1795
1976
|
"type": "card",
|
|
@@ -1811,46 +1992,49 @@
|
|
|
1811
1992
|
}
|
|
1812
1993
|
]
|
|
1813
1994
|
}
|
|
1814
|
-
]
|
|
1995
|
+
],
|
|
1996
|
+
"gap": "md",
|
|
1997
|
+
"columns": 2.0,
|
|
1998
|
+
"type": "grid"
|
|
1815
1999
|
},
|
|
1816
2000
|
{
|
|
1817
|
-
"
|
|
2001
|
+
"xKey": "date",
|
|
1818
2002
|
"data": [
|
|
1819
2003
|
{
|
|
1820
2004
|
"date": "Jan",
|
|
1821
|
-
"value": 12
|
|
2005
|
+
"value": 12.0
|
|
1822
2006
|
},
|
|
1823
2007
|
{
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
2008
|
+
"value": 19.0,
|
|
2009
|
+
"date": "Feb"
|
|
1826
2010
|
},
|
|
1827
2011
|
{
|
|
1828
|
-
"
|
|
1829
|
-
"
|
|
2012
|
+
"value": 15.0,
|
|
2013
|
+
"date": "Mar"
|
|
1830
2014
|
},
|
|
1831
2015
|
{
|
|
1832
|
-
"
|
|
1833
|
-
"
|
|
2016
|
+
"value": 25.0,
|
|
2017
|
+
"date": "Apr"
|
|
1834
2018
|
},
|
|
1835
2019
|
{
|
|
1836
|
-
"
|
|
1837
|
-
"
|
|
2020
|
+
"value": 22.0,
|
|
2021
|
+
"date": "May"
|
|
1838
2022
|
},
|
|
1839
2023
|
{
|
|
1840
|
-
"
|
|
1841
|
-
"
|
|
2024
|
+
"value": 30.0,
|
|
2025
|
+
"date": "Jun"
|
|
1842
2026
|
}
|
|
1843
2027
|
],
|
|
1844
|
-
"xKey": "date",
|
|
1845
2028
|
"yKey": "value",
|
|
1846
|
-
"title": "Trend"
|
|
2029
|
+
"title": "Trend",
|
|
2030
|
+
"type": "line-chart"
|
|
1847
2031
|
},
|
|
1848
2032
|
{
|
|
1849
2033
|
"type": "chart-legend",
|
|
1850
2034
|
"items": [
|
|
1851
2035
|
{
|
|
1852
|
-
"
|
|
1853
|
-
"
|
|
2036
|
+
"color": "primary",
|
|
2037
|
+
"label": "Current"
|
|
1854
2038
|
},
|
|
1855
2039
|
{
|
|
1856
2040
|
"label": "Previous",
|
|
@@ -1859,27 +2043,29 @@
|
|
|
1859
2043
|
]
|
|
1860
2044
|
},
|
|
1861
2045
|
{
|
|
1862
|
-
"type": "graph-view",
|
|
1863
2046
|
"nodes": [
|
|
1864
2047
|
{
|
|
2048
|
+
"x": 50.0,
|
|
1865
2049
|
"id": "a",
|
|
1866
2050
|
"label": "Start",
|
|
1867
|
-
"
|
|
1868
|
-
"y": 100
|
|
2051
|
+
"y": 100.0
|
|
1869
2052
|
},
|
|
1870
2053
|
{
|
|
2054
|
+
"y": 50.0,
|
|
1871
2055
|
"id": "b",
|
|
1872
2056
|
"label": "Process",
|
|
1873
|
-
"x": 200
|
|
1874
|
-
"y": 50
|
|
2057
|
+
"x": 200.0
|
|
1875
2058
|
},
|
|
1876
2059
|
{
|
|
1877
|
-
"id": "c",
|
|
1878
2060
|
"label": "End",
|
|
1879
|
-
"
|
|
1880
|
-
"
|
|
2061
|
+
"id": "c",
|
|
2062
|
+
"x": 350.0,
|
|
2063
|
+
"y": 100.0
|
|
1881
2064
|
}
|
|
1882
2065
|
],
|
|
2066
|
+
"width": 400.0,
|
|
2067
|
+
"height": 200.0,
|
|
2068
|
+
"type": "graph-view",
|
|
1883
2069
|
"edges": [
|
|
1884
2070
|
{
|
|
1885
2071
|
"from": "a",
|
|
@@ -1889,26 +2075,32 @@
|
|
|
1889
2075
|
"from": "b",
|
|
1890
2076
|
"to": "c"
|
|
1891
2077
|
}
|
|
1892
|
-
]
|
|
1893
|
-
"width": 400,
|
|
1894
|
-
"height": 200
|
|
2078
|
+
]
|
|
1895
2079
|
}
|
|
1896
|
-
]
|
|
2080
|
+
],
|
|
2081
|
+
"gap": "lg",
|
|
2082
|
+
"direction": "vertical",
|
|
2083
|
+
"type": "stack"
|
|
1897
2084
|
}
|
|
1898
|
-
]
|
|
2085
|
+
],
|
|
2086
|
+
"type": "scaled-diagram"
|
|
1899
2087
|
}
|
|
1900
|
-
]
|
|
2088
|
+
],
|
|
2089
|
+
"type": "game-shell",
|
|
2090
|
+
"showTopBar": true,
|
|
2091
|
+
"appName": "STEM Lab"
|
|
1901
2092
|
}
|
|
1902
2093
|
]
|
|
1903
2094
|
]
|
|
1904
2095
|
}
|
|
1905
2096
|
]
|
|
1906
|
-
}
|
|
2097
|
+
},
|
|
2098
|
+
"scope": "collection"
|
|
1907
2099
|
}
|
|
1908
2100
|
],
|
|
1909
2101
|
"pages": [
|
|
1910
2102
|
{
|
|
1911
|
-
"name": "
|
|
2103
|
+
"name": "Results",
|
|
1912
2104
|
"path": "/results",
|
|
1913
2105
|
"traits": [
|
|
1914
2106
|
{
|
|
@@ -1919,4 +2111,4 @@
|
|
|
1919
2111
|
]
|
|
1920
2112
|
}
|
|
1921
2113
|
]
|
|
1922
|
-
}
|
|
2114
|
+
}
|