coursecode 0.1.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/LICENSE +21 -0
- package/README.md +322 -0
- package/THIRD_PARTY_NOTICES.md +22 -0
- package/bin/cli.js +331 -0
- package/framework/assets/logo-coursecode-black.svg +14 -0
- package/framework/assets/logo-coursecode-white.svg +14 -0
- package/framework/assets/logo-coursecode.svg +14 -0
- package/framework/css/01-base.css +160 -0
- package/framework/css/02-layout.css +499 -0
- package/framework/css/accessibility.css +834 -0
- package/framework/css/components/accordions.css +710 -0
- package/framework/css/components/assessments.css +520 -0
- package/framework/css/components/audio-player.css +570 -0
- package/framework/css/components/badges.css +80 -0
- package/framework/css/components/breadcrumbs.css +87 -0
- package/framework/css/components/buttons.css +707 -0
- package/framework/css/components/callouts.css +1280 -0
- package/framework/css/components/cards.css +475 -0
- package/framework/css/components/carousel.css +193 -0
- package/framework/css/components/checkbox-group.css +123 -0
- package/framework/css/components/checklist.css +203 -0
- package/framework/css/components/collapse.css +96 -0
- package/framework/css/components/comparison.css +33 -0
- package/framework/css/components/content-image.css +36 -0
- package/framework/css/components/document-gallery.css +425 -0
- package/framework/css/components/dropdown.css +115 -0
- package/framework/css/components/embed-frame.css +142 -0
- package/framework/css/components/engagement.css +412 -0
- package/framework/css/components/features.css +35 -0
- package/framework/css/components/flip-cards.css +253 -0
- package/framework/css/components/footer.css +353 -0
- package/framework/css/components/forms.css +294 -0
- package/framework/css/components/hero.css +216 -0
- package/framework/css/components/images.css +528 -0
- package/framework/css/components/interactive-timeline.css +274 -0
- package/framework/css/components/intro-cards.css +30 -0
- package/framework/css/components/lightbox.css +666 -0
- package/framework/css/components/loading.css +65 -0
- package/framework/css/components/modals.css +235 -0
- package/framework/css/components/notifications.css +107 -0
- package/framework/css/components/quote.css +150 -0
- package/framework/css/components/sidebar.css +684 -0
- package/framework/css/components/slide-header.css +52 -0
- package/framework/css/components/spinner.css +62 -0
- package/framework/css/components/stats.css +44 -0
- package/framework/css/components/steps.css +232 -0
- package/framework/css/components/tables.css +90 -0
- package/framework/css/components/tabs.css +347 -0
- package/framework/css/components/timeline.css +154 -0
- package/framework/css/components/toggle.css +95 -0
- package/framework/css/components/tooltip.css +226 -0
- package/framework/css/components/video-player.css +438 -0
- package/framework/css/design-tokens.css +707 -0
- package/framework/css/framework.css +86 -0
- package/framework/css/interactions/accessibility.css +75 -0
- package/framework/css/interactions/base.css +92 -0
- package/framework/css/interactions/drag-drop.css +295 -0
- package/framework/css/interactions/fill-in-the-blank.css +236 -0
- package/framework/css/interactions/hotspots.css +69 -0
- package/framework/css/interactions/index.css +45 -0
- package/framework/css/interactions/interactive-image.css +359 -0
- package/framework/css/interactions/likert.css +126 -0
- package/framework/css/interactions/matching.css +354 -0
- package/framework/css/interactions/numeric-input.css +78 -0
- package/framework/css/interactions/sequencing.css +378 -0
- package/framework/css/interactions/true-false.css +177 -0
- package/framework/css/layouts/article.css +258 -0
- package/framework/css/layouts/base.css +30 -0
- package/framework/css/layouts/canvas.css +38 -0
- package/framework/css/layouts/focused.css +236 -0
- package/framework/css/layouts/index.css +29 -0
- package/framework/css/layouts/presentation.css +191 -0
- package/framework/css/layouts/traditional.css +52 -0
- package/framework/css/responsive.css +439 -0
- package/framework/css/utilities/accessibility-utils.css +59 -0
- package/framework/css/utilities/animations.css +419 -0
- package/framework/css/utilities/borders.css +72 -0
- package/framework/css/utilities/colors.css +76 -0
- package/framework/css/utilities/container.css +46 -0
- package/framework/css/utilities/decorative.css +442 -0
- package/framework/css/utilities/display.css +257 -0
- package/framework/css/utilities/flexbox.css +80 -0
- package/framework/css/utilities/grid.css +69 -0
- package/framework/css/utilities/icons.css +534 -0
- package/framework/css/utilities/lists.css +190 -0
- package/framework/css/utilities/spacing.css +167 -0
- package/framework/css/utilities/tables.css +81 -0
- package/framework/css/utilities/typography.css +159 -0
- package/framework/css/utilities/visibility.css +117 -0
- package/framework/docs/COURSE_AUTHORING_GUIDE.md +1773 -0
- package/framework/docs/COURSE_OUTLINE_GUIDE.md +725 -0
- package/framework/docs/COURSE_OUTLINE_TEMPLATE.md +161 -0
- package/framework/docs/DATA_MODEL.md +409 -0
- package/framework/docs/FRAMEWORK_GUIDE.md +1088 -0
- package/framework/docs/USER_GUIDE.md +583 -0
- package/framework/docs/examples/cloudflare-channel-relay.js +169 -0
- package/framework/docs/examples/cloudflare-data-worker.js +102 -0
- package/framework/docs/examples/cloudflare-error-worker.js +228 -0
- package/framework/index.html +175 -0
- package/framework/js/app/AppActions.js +410 -0
- package/framework/js/app/AppState.js +225 -0
- package/framework/js/app/AppUI.js +616 -0
- package/framework/js/assessment/AssessmentActions.js +615 -0
- package/framework/js/assessment/AssessmentFactory.js +471 -0
- package/framework/js/assessment/AssessmentState.js +322 -0
- package/framework/js/assessment/AssessmentUI.js +451 -0
- package/framework/js/automation/api-engagement.js +196 -0
- package/framework/js/automation/api-interactions.js +167 -0
- package/framework/js/automation/api.js +242 -0
- package/framework/js/automation/index.js +41 -0
- package/framework/js/components/interactions/drag-drop.js +884 -0
- package/framework/js/components/interactions/fill-in.js +535 -0
- package/framework/js/components/interactions/hotspot.js +702 -0
- package/framework/js/components/interactions/interaction-base.js +511 -0
- package/framework/js/components/interactions/likert.js +301 -0
- package/framework/js/components/interactions/matching.js +699 -0
- package/framework/js/components/interactions/multiple-choice.js +377 -0
- package/framework/js/components/interactions/numeric.js +271 -0
- package/framework/js/components/interactions/sequencing.js +423 -0
- package/framework/js/components/interactions/true-false.js +241 -0
- package/framework/js/components/ui-components/accordion.js +442 -0
- package/framework/js/components/ui-components/alert.js +88 -0
- package/framework/js/components/ui-components/audio-player.js +1193 -0
- package/framework/js/components/ui-components/callout.js +121 -0
- package/framework/js/components/ui-components/carousel.js +145 -0
- package/framework/js/components/ui-components/checkbox-group.js +87 -0
- package/framework/js/components/ui-components/checklist.js +40 -0
- package/framework/js/components/ui-components/collapse.js +114 -0
- package/framework/js/components/ui-components/comparison.js +30 -0
- package/framework/js/components/ui-components/conditional-display.js +150 -0
- package/framework/js/components/ui-components/content-image.js +41 -0
- package/framework/js/components/ui-components/dropdown.js +262 -0
- package/framework/js/components/ui-components/embed-frame.js +274 -0
- package/framework/js/components/ui-components/features.js +33 -0
- package/framework/js/components/ui-components/flip-card.js +230 -0
- package/framework/js/components/ui-components/form-validator.js +76 -0
- package/framework/js/components/ui-components/hero.js +49 -0
- package/framework/js/components/ui-components/index.js +12 -0
- package/framework/js/components/ui-components/interactive-image.js +235 -0
- package/framework/js/components/ui-components/interactive-timeline.js +285 -0
- package/framework/js/components/ui-components/intro-cards.js +35 -0
- package/framework/js/components/ui-components/lightbox.js +652 -0
- package/framework/js/components/ui-components/modal.js +386 -0
- package/framework/js/components/ui-components/notifications.js +145 -0
- package/framework/js/components/ui-components/progress.js +88 -0
- package/framework/js/components/ui-components/quote.js +41 -0
- package/framework/js/components/ui-components/stats.js +33 -0
- package/framework/js/components/ui-components/steps.js +41 -0
- package/framework/js/components/ui-components/tabs.js +255 -0
- package/framework/js/components/ui-components/timeline.js +42 -0
- package/framework/js/components/ui-components/toggle-group.js +73 -0
- package/framework/js/components/ui-components/tooltip.js +458 -0
- package/framework/js/components/ui-components/value-display.js +133 -0
- package/framework/js/components/ui-components/video-player.js +686 -0
- package/framework/js/core/component-catalog.js +121 -0
- package/framework/js/core/event-bus.js +178 -0
- package/framework/js/core/interaction-catalog.js +149 -0
- package/framework/js/dev/runtime-linter.js +1725 -0
- package/framework/js/drivers/cmi5-driver.js +768 -0
- package/framework/js/drivers/driver-factory.js +77 -0
- package/framework/js/drivers/driver-interface.js +110 -0
- package/framework/js/drivers/http-driver-base.js +241 -0
- package/framework/js/drivers/lti-driver.js +508 -0
- package/framework/js/drivers/proxy-driver.js +444 -0
- package/framework/js/drivers/scorm-12-driver.js +560 -0
- package/framework/js/drivers/scorm-2004-driver.js +775 -0
- package/framework/js/drivers/scorm-driver-base.js +112 -0
- package/framework/js/engagement/engagement-manager.js +404 -0
- package/framework/js/engagement/engagement-progress.js +191 -0
- package/framework/js/engagement/engagement-trackers.js +215 -0
- package/framework/js/engagement/requirement-strategies.js +268 -0
- package/framework/js/main.js +727 -0
- package/framework/js/managers/accessibility-manager.js +499 -0
- package/framework/js/managers/assessment-manager.js +230 -0
- package/framework/js/managers/audio-manager.js +944 -0
- package/framework/js/managers/comment-manager.js +88 -0
- package/framework/js/managers/flag-manager.js +86 -0
- package/framework/js/managers/interaction-manager.js +254 -0
- package/framework/js/managers/interaction-registry.js +96 -0
- package/framework/js/managers/objective-manager.js +423 -0
- package/framework/js/managers/score-manager.js +441 -0
- package/framework/js/managers/video-manager.js +536 -0
- package/framework/js/navigation/Breadcrumbs.js +234 -0
- package/framework/js/navigation/NavigationActions.js +1132 -0
- package/framework/js/navigation/NavigationState.js +276 -0
- package/framework/js/navigation/NavigationUI.js +574 -0
- package/framework/js/navigation/document-gallery.js +357 -0
- package/framework/js/navigation/navigation-helpers.js +175 -0
- package/framework/js/navigation/navigation-validators.js +174 -0
- package/framework/js/state/index.js +8 -0
- package/framework/js/state/lms-connection.js +482 -0
- package/framework/js/state/lms-error-utils.js +58 -0
- package/framework/js/state/state-commits.js +200 -0
- package/framework/js/state/state-domains.js +86 -0
- package/framework/js/state/state-manager.js +502 -0
- package/framework/js/state/state-validation.js +311 -0
- package/framework/js/state/transaction-log.js +41 -0
- package/framework/js/state/xapi-statement-service.js +325 -0
- package/framework/js/utilities/access-control.js +99 -0
- package/framework/js/utilities/breakpoint-manager.js +315 -0
- package/framework/js/utilities/canvas-slide.js +35 -0
- package/framework/js/utilities/conditional-display.js +388 -0
- package/framework/js/utilities/course-channel.js +214 -0
- package/framework/js/utilities/course-helpers.js +420 -0
- package/framework/js/utilities/data-reporter.js +273 -0
- package/framework/js/utilities/error-reporter.js +313 -0
- package/framework/js/utilities/hotspot-helper.js +341 -0
- package/framework/js/utilities/icons.js +348 -0
- package/framework/js/utilities/logger.js +92 -0
- package/framework/js/utilities/markdown-renderer.js +45 -0
- package/framework/js/utilities/scroll-tracker.js +68 -0
- package/framework/js/utilities/ui-initializer.js +146 -0
- package/framework/js/utilities/utilities.js +293 -0
- package/framework/js/utilities/view-manager.js +227 -0
- package/framework/js/validation/html-validators.js +422 -0
- package/framework/js/validation/scorm-validators.js +438 -0
- package/framework/js/vendor/pipwerks.js +931 -0
- package/framework/scripts/generate-narration.js +629 -0
- package/framework/scripts/tts-providers/azure-provider.js +178 -0
- package/framework/scripts/tts-providers/base-provider.js +81 -0
- package/framework/scripts/tts-providers/deepgram-provider.js +135 -0
- package/framework/scripts/tts-providers/elevenlabs-provider.js +148 -0
- package/framework/scripts/tts-providers/google-provider.js +272 -0
- package/framework/scripts/tts-providers/index.js +158 -0
- package/framework/scripts/tts-providers/openai-provider.js +143 -0
- package/framework/version.json +63 -0
- package/lib/authoring-api.js +919 -0
- package/lib/build-linter.js +450 -0
- package/lib/build-packaging.js +186 -0
- package/lib/build.js +88 -0
- package/lib/cloud.js +691 -0
- package/lib/convert.js +341 -0
- package/lib/course-parser.js +936 -0
- package/lib/course-writer.js +258 -0
- package/lib/create.js +248 -0
- package/lib/css-index.js +237 -0
- package/lib/dev.js +51 -0
- package/lib/export-content.js +1246 -0
- package/lib/headless-browser.js +413 -0
- package/lib/import.js +377 -0
- package/lib/index.js +80 -0
- package/lib/info.js +79 -0
- package/lib/interaction-formatters.js +568 -0
- package/lib/manifest/cmi5-manifest.js +63 -0
- package/lib/manifest/lti-tool-config.js +53 -0
- package/lib/manifest/manifest-factory.js +99 -0
- package/lib/manifest/scorm-12-manifest.js +61 -0
- package/lib/manifest/scorm-2004-manifest.js +94 -0
- package/lib/manifest/scorm-proxy-manifest.js +104 -0
- package/lib/manifest-parser.js +96 -0
- package/lib/mcp-prompts.js +753 -0
- package/lib/mcp-server.js +316 -0
- package/lib/narration.js +53 -0
- package/lib/pdf-structure.js +142 -0
- package/lib/preview-export.js +231 -0
- package/lib/preview-routes-api.js +662 -0
- package/lib/preview-routes-editing.js +159 -0
- package/lib/preview-routes-lms.js +230 -0
- package/lib/preview-server.js +564 -0
- package/lib/project-utils.js +269 -0
- package/lib/proxy-templates/proxy.html +68 -0
- package/lib/proxy-templates/scorm-bridge.js +112 -0
- package/lib/scaffold.js +193 -0
- package/lib/schema-extractor.js +361 -0
- package/lib/slide-source-editor.js +586 -0
- package/lib/stub-player/app-viewer.js +195 -0
- package/lib/stub-player/app.js +370 -0
- package/lib/stub-player/catalog-panel.js +312 -0
- package/lib/stub-player/config-panel.js +1303 -0
- package/lib/stub-player/content-generator.js +586 -0
- package/lib/stub-player/content-viewer.js +173 -0
- package/lib/stub-player/debug-panel.js +420 -0
- package/lib/stub-player/edit-mode.js +922 -0
- package/lib/stub-player/edit-utils.js +400 -0
- package/lib/stub-player/header-bar.js +354 -0
- package/lib/stub-player/interaction-editor.js +210 -0
- package/lib/stub-player/interactions-panel.js +565 -0
- package/lib/stub-player/lms-api.js +1094 -0
- package/lib/stub-player/login-screen.js +74 -0
- package/lib/stub-player/outline-mode.js +689 -0
- package/lib/stub-player/styles/_assessments-panel.css +245 -0
- package/lib/stub-player/styles/_base.css +89 -0
- package/lib/stub-player/styles/_catalog-icons.css +96 -0
- package/lib/stub-player/styles/_catalog-panel.css +291 -0
- package/lib/stub-player/styles/_config-panel.css +636 -0
- package/lib/stub-player/styles/_content-viewer.css +834 -0
- package/lib/stub-player/styles/_debug-panel.css +576 -0
- package/lib/stub-player/styles/_edit-mode.css +128 -0
- package/lib/stub-player/styles/_header-bar.css +343 -0
- package/lib/stub-player/styles/_interaction-editor.css +140 -0
- package/lib/stub-player/styles/_interactions-panel.css +1038 -0
- package/lib/stub-player/styles/_login-screen.css +102 -0
- package/lib/stub-player/styles/_outline-mode.css +752 -0
- package/lib/stub-player/styles.css +15 -0
- package/lib/stub-player.js +160 -0
- package/lib/test-data-reporting.js +176 -0
- package/lib/test-error-reporting.js +146 -0
- package/lib/token.js +86 -0
- package/lib/upgrade.js +257 -0
- package/lib/validation-rules.js +517 -0
- package/lib/vite-plugin-content-discovery.js +296 -0
- package/package.json +108 -0
- package/schemas/XMLSchema.dtd +402 -0
- package/schemas/adlcp_v1p3.xsd +111 -0
- package/schemas/adlnav_v1p3.xsd +61 -0
- package/schemas/adlseq_v1p3.xsd +93 -0
- package/schemas/common/anyElement.xsd +27 -0
- package/schemas/common/dataTypes.xsd +138 -0
- package/schemas/common/elementNames.xsd +767 -0
- package/schemas/common/elementTypes.xsd +786 -0
- package/schemas/common/rootElement.xsd +31 -0
- package/schemas/common/vocabTypes.xsd +345 -0
- package/schemas/common/vocabValues.xsd +257 -0
- package/schemas/datatypes.dtd +203 -0
- package/schemas/ims_xml.xsd +35 -0
- package/schemas/imscp_v1p1.xsd +368 -0
- package/schemas/imsss_v1p0.xsd +67 -0
- package/schemas/imsss_v1p0auxresource.xsd +19 -0
- package/schemas/imsss_v1p0control.xsd +20 -0
- package/schemas/imsss_v1p0delivery.xsd +17 -0
- package/schemas/imsss_v1p0limit.xsd +47 -0
- package/schemas/imsss_v1p0objective.xsd +67 -0
- package/schemas/imsss_v1p0random.xsd +16 -0
- package/schemas/imsss_v1p0rollup.xsd +46 -0
- package/schemas/imsss_v1p0seqrule.xsd +108 -0
- package/schemas/imsss_v1p0util.xsd +94 -0
- package/schemas/license.txt +17 -0
- package/schemas/lom.xsd +102 -0
- package/schemas/lomCustom.xsd +62 -0
- package/schemas/lomLoose.xsd +62 -0
- package/schemas/lomStrict.xsd +62 -0
- package/schemas/xml.xsd +81 -0
- package/template/.env.example +92 -0
- package/template/course/assets/audio/example-intro.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--compact-player.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--demo-modal.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--full-player.mp3 +0 -0
- package/template/course/assets/docs/example_md_1.md +39 -0
- package/template/course/assets/docs/example_md_2.md +41 -0
- package/template/course/assets/docs/example_pdf_1_thumbnail.png +0 -0
- package/template/course/assets/docs/example_pdf_2.pdf +0 -0
- package/template/course/assets/images/course-architecture.svg +36 -0
- package/template/course/assets/images/logo.svg +14 -0
- package/template/course/assets/widgets/counter-demo.html +190 -0
- package/template/course/assets/widgets/gravity-painter.html +384 -0
- package/template/course/course-config.js +539 -0
- package/template/course/icons.js +19 -0
- package/template/course/interactions/PLUGIN_GUIDE.md +97 -0
- package/template/course/slides/example-course-structure.js +138 -0
- package/template/course/slides/example-final-exam.js +144 -0
- package/template/course/slides/example-finishing.js +127 -0
- package/template/course/slides/example-interactions-showcase.js +615 -0
- package/template/course/slides/example-preview-tour.js +129 -0
- package/template/course/slides/example-remedial.js +143 -0
- package/template/course/slides/example-summary.js +103 -0
- package/template/course/slides/example-ui-showcase.js +1805 -0
- package/template/course/slides/example-welcome.js +123 -0
- package/template/course/slides/example-workflow.js +140 -0
- package/template/course/theme.css +165 -0
- package/template/eslint.config.js +47 -0
- package/template/package.json +28 -0
- package/template/vite.config.js +339 -0
|
@@ -0,0 +1,560 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file scorm-12-driver.js
|
|
3
|
+
* @description SCORM 1.2 driver implementation using pipwerks wrapper.
|
|
4
|
+
* Extends ScormDriverBase for shared pipwerks initialization and connection management.
|
|
5
|
+
*
|
|
6
|
+
* Handles communication with the LMS API and element mapping from 2004 to 1.2.
|
|
7
|
+
* Implements Strict Diet Mode to stay within 4KB suspend_data limit.
|
|
8
|
+
*
|
|
9
|
+
* Uses the industry-standard pipwerks SCORM wrapper for battle-tested
|
|
10
|
+
* API discovery across complex iframe/opener hierarchies.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { ScormDriverBase } from './scorm-driver-base.js';
|
|
14
|
+
import { eventBus } from '../core/event-bus.js';
|
|
15
|
+
import { logger } from '../utilities/logger.js';
|
|
16
|
+
import LZString from 'lz-string';
|
|
17
|
+
|
|
18
|
+
// =============================================================================
|
|
19
|
+
// Status Mapping
|
|
20
|
+
// =============================================================================
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Maps SCORM 2004 completion_status + success_status to SCORM 1.2 lesson_status.
|
|
24
|
+
* SCORM 1.2 has a single combined status field.
|
|
25
|
+
*/
|
|
26
|
+
function mapStatusTo12(completionStatus, successStatus) {
|
|
27
|
+
if (completionStatus === 'completed') {
|
|
28
|
+
if (successStatus === 'passed') return 'passed';
|
|
29
|
+
if (successStatus === 'failed') return 'failed';
|
|
30
|
+
return 'completed';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (completionStatus === 'incomplete') return 'incomplete';
|
|
34
|
+
if (completionStatus === 'not attempted') return 'not attempted';
|
|
35
|
+
|
|
36
|
+
return 'incomplete';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Maps SCORM 1.2 lesson_status to SCORM 2004 completion + success status.
|
|
41
|
+
*/
|
|
42
|
+
function mapStatusTo2004(lessonStatus) {
|
|
43
|
+
switch (lessonStatus) {
|
|
44
|
+
case 'passed':
|
|
45
|
+
return { completion: 'completed', success: 'passed' };
|
|
46
|
+
case 'failed':
|
|
47
|
+
return { completion: 'completed', success: 'failed' };
|
|
48
|
+
case 'completed':
|
|
49
|
+
return { completion: 'completed', success: 'unknown' };
|
|
50
|
+
case 'incomplete':
|
|
51
|
+
return { completion: 'incomplete', success: 'unknown' };
|
|
52
|
+
case 'not attempted':
|
|
53
|
+
return { completion: 'not attempted', success: 'unknown' };
|
|
54
|
+
case 'browsed':
|
|
55
|
+
return { completion: 'incomplete', success: 'unknown' };
|
|
56
|
+
default:
|
|
57
|
+
return { completion: 'unknown', success: 'unknown' };
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// =============================================================================
|
|
62
|
+
// Time Format Conversion
|
|
63
|
+
// =============================================================================
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Converts ISO 8601 duration (SCORM 2004) to HHHH:MM:SS (SCORM 1.2).
|
|
67
|
+
*/
|
|
68
|
+
function convertTimeFormat2004To12(iso8601) {
|
|
69
|
+
if (!iso8601 || typeof iso8601 !== 'string') return '0000:00:00';
|
|
70
|
+
|
|
71
|
+
const match = iso8601.match(/PT(?:(\d+)H)?(?:(\d+)M)?(?:(\d+(?:\.\d+)?)S)?/);
|
|
72
|
+
if (!match) return '0000:00:00';
|
|
73
|
+
|
|
74
|
+
const hours = parseInt(match[1] || 0, 10);
|
|
75
|
+
const minutes = parseInt(match[2] || 0, 10);
|
|
76
|
+
const seconds = Math.floor(parseFloat(match[3] || 0));
|
|
77
|
+
|
|
78
|
+
const hStr = hours.toString().padStart(4, '0');
|
|
79
|
+
const mStr = minutes.toString().padStart(2, '0');
|
|
80
|
+
const sStr = seconds.toString().padStart(2, '0');
|
|
81
|
+
|
|
82
|
+
return `${hStr}:${mStr}:${sStr}`;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// =============================================================================
|
|
86
|
+
// SCORM 1.2 Driver Class (using pipwerks)
|
|
87
|
+
// =============================================================================
|
|
88
|
+
|
|
89
|
+
export class Scorm12Driver extends ScormDriverBase {
|
|
90
|
+
constructor() {
|
|
91
|
+
super();
|
|
92
|
+
|
|
93
|
+
// Cache for combined status (1.2 uses single field)
|
|
94
|
+
this._statusCache = {
|
|
95
|
+
completion: 'unknown',
|
|
96
|
+
success: 'unknown'
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
// Semantic cache populated at init
|
|
100
|
+
this._cache = {
|
|
101
|
+
entry: '',
|
|
102
|
+
bookmark: '',
|
|
103
|
+
learnerId: '',
|
|
104
|
+
learnerName: '',
|
|
105
|
+
interactionsCount: 0
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// =========================================================================
|
|
110
|
+
// Interface Implementation
|
|
111
|
+
// =========================================================================
|
|
112
|
+
|
|
113
|
+
getFormat() {
|
|
114
|
+
return 'scorm1.2';
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
getCapabilities() {
|
|
118
|
+
return {
|
|
119
|
+
supportsObjectives: true,
|
|
120
|
+
supportsInteractions: true,
|
|
121
|
+
supportsComments: false, // SCORM 1.2 comments are read-only
|
|
122
|
+
supportsEmergencySave: false,
|
|
123
|
+
maxSuspendDataBytes: 4096,
|
|
124
|
+
asyncCommit: false
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Initializes the SCORM 1.2 connection using pipwerks.
|
|
130
|
+
*/
|
|
131
|
+
async initialize() {
|
|
132
|
+
if (this._isConnected) {
|
|
133
|
+
return true;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
await this._initPipwerks('1.2');
|
|
137
|
+
|
|
138
|
+
const success = this._scorm.init();
|
|
139
|
+
|
|
140
|
+
if (!success) {
|
|
141
|
+
throw new Error('[Scorm12Driver] pipwerks LMSInitialize failed - cannot find SCORM 1.2 API');
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
this._isConnected = true;
|
|
145
|
+
this._populateCache();
|
|
146
|
+
|
|
147
|
+
logger.debug('[Scorm12Driver] LMSInitialize() completed successfully via pipwerks');
|
|
148
|
+
return true;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Sends a keep-alive ping to the LMS.
|
|
153
|
+
*/
|
|
154
|
+
ping() {
|
|
155
|
+
if (!this._isConnected || this._isTerminated) {
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
try {
|
|
160
|
+
this._scorm.get('cmi.core.lesson_mode');
|
|
161
|
+
} catch (e) {
|
|
162
|
+
logger.warn('[Scorm12Driver] Keep-alive ping failed:', e);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
// =========================================================================
|
|
167
|
+
// Semantic Reads
|
|
168
|
+
// =========================================================================
|
|
169
|
+
|
|
170
|
+
getEntryMode() {
|
|
171
|
+
return this._cache.entry;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
getBookmark() {
|
|
175
|
+
return this._cache.bookmark;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
getCompletion() {
|
|
179
|
+
return this._statusCache.completion;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
getSuccess() {
|
|
183
|
+
return this._statusCache.success;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
getScore() {
|
|
187
|
+
try {
|
|
188
|
+
const rawStr = this._scorm.get('cmi.core.score.raw');
|
|
189
|
+
if (!rawStr) return null;
|
|
190
|
+
const raw = parseFloat(rawStr);
|
|
191
|
+
if (isNaN(raw)) return null;
|
|
192
|
+
const minStr = this._scorm.get('cmi.core.score.min');
|
|
193
|
+
const maxStr = this._scorm.get('cmi.core.score.max');
|
|
194
|
+
return {
|
|
195
|
+
scaled: raw / 100,
|
|
196
|
+
raw,
|
|
197
|
+
min: minStr ? parseFloat(minStr) : 0,
|
|
198
|
+
max: maxStr ? parseFloat(maxStr) : 100
|
|
199
|
+
};
|
|
200
|
+
} catch (_e) {
|
|
201
|
+
return null;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
getLearnerInfo() {
|
|
206
|
+
return {
|
|
207
|
+
id: this._cache.learnerId,
|
|
208
|
+
name: this._cache.learnerName
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// =========================================================================
|
|
213
|
+
// Semantic Writes
|
|
214
|
+
// =========================================================================
|
|
215
|
+
|
|
216
|
+
setBookmark(location) {
|
|
217
|
+
this._rawSet('cmi.core.lesson_location', location);
|
|
218
|
+
this._cache.bookmark = location;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
reportScore({ raw, min, max }) {
|
|
222
|
+
// SCORM 1.2 doesn't have scaled score — silently ignored
|
|
223
|
+
if (raw !== undefined) this._rawSet('cmi.core.score.raw', String(raw));
|
|
224
|
+
if (min !== undefined) this._rawSet('cmi.core.score.min', String(min));
|
|
225
|
+
if (max !== undefined) this._rawSet('cmi.core.score.max', String(max));
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
reportCompletion(status) {
|
|
229
|
+
this._statusCache.completion = status;
|
|
230
|
+
this._syncLessonStatus();
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
reportSuccess(status) {
|
|
234
|
+
this._statusCache.success = status;
|
|
235
|
+
this._syncLessonStatus();
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
reportProgress(_measure) {
|
|
239
|
+
// SCORM 1.2 has no progress_measure — silently ignored
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
reportSessionTime(duration) {
|
|
243
|
+
const converted = convertTimeFormat2004To12(duration);
|
|
244
|
+
this._rawSet('cmi.core.session_time', converted);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
reportObjective(objective) {
|
|
248
|
+
if (!objective || !objective.id) return;
|
|
249
|
+
|
|
250
|
+
// SCORM 1.2 objectives support: id, score.raw, score.min, score.max, status
|
|
251
|
+
// But NOT success_status or completion_status separately
|
|
252
|
+
// We write what we can
|
|
253
|
+
const index = this._getOrCreateObjectiveIndex(objective.id);
|
|
254
|
+
|
|
255
|
+
if (objective.score !== null && objective.score !== undefined) {
|
|
256
|
+
this._rawSet(`cmi.objectives.${index}.score.raw`, String(objective.score));
|
|
257
|
+
this._rawSet(`cmi.objectives.${index}.score.min`, '0');
|
|
258
|
+
this._rawSet(`cmi.objectives.${index}.score.max`, '100');
|
|
259
|
+
|
|
260
|
+
// Map success_status to 1.2 objective status
|
|
261
|
+
if (objective.success_status === 'passed') {
|
|
262
|
+
this._rawSet(`cmi.objectives.${index}.status`, 'passed');
|
|
263
|
+
} else if (objective.success_status === 'failed') {
|
|
264
|
+
this._rawSet(`cmi.objectives.${index}.status`, 'failed');
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
if (objective.completion_status === 'completed' && !objective.success_status) {
|
|
269
|
+
this._rawSet(`cmi.objectives.${index}.status`, 'completed');
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
reportInteraction(interaction) {
|
|
274
|
+
if (!interaction || !interaction.id || !interaction.type) {
|
|
275
|
+
throw new Error('Scorm12Driver: interaction.id and interaction.type are required');
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
const index = this._cache.interactionsCount;
|
|
279
|
+
|
|
280
|
+
// SCORM 1.2 interaction fields
|
|
281
|
+
this._rawSet(`cmi.interactions.${index}.id`, interaction.id);
|
|
282
|
+
this._rawSet(`cmi.interactions.${index}.type`, interaction.type);
|
|
283
|
+
|
|
284
|
+
if (interaction.learner_response !== undefined && interaction.learner_response !== null && interaction.learner_response !== '') {
|
|
285
|
+
this._rawSet(`cmi.interactions.${index}.student_response`, interaction.learner_response);
|
|
286
|
+
}
|
|
287
|
+
if (interaction.result) {
|
|
288
|
+
this._rawSet(`cmi.interactions.${index}.result`, interaction.result);
|
|
289
|
+
}
|
|
290
|
+
if (interaction.timestamp) {
|
|
291
|
+
this._rawSet(`cmi.interactions.${index}.time`, interaction.timestamp);
|
|
292
|
+
}
|
|
293
|
+
if (interaction.weighting !== undefined && interaction.weighting !== null) {
|
|
294
|
+
this._rawSet(`cmi.interactions.${index}.weighting`, String(interaction.weighting));
|
|
295
|
+
}
|
|
296
|
+
if (interaction.latency) {
|
|
297
|
+
this._rawSet(`cmi.interactions.${index}.latency`, interaction.latency);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
// correct_responses
|
|
301
|
+
if (interaction.correct_responses && Array.isArray(interaction.correct_responses)) {
|
|
302
|
+
interaction.correct_responses.forEach((item, patternIndex) => {
|
|
303
|
+
const patternValue = (typeof item === 'object' && item !== null && 'pattern' in item)
|
|
304
|
+
? item.pattern
|
|
305
|
+
: item;
|
|
306
|
+
this._rawSet(`cmi.interactions.${index}.correct_responses.${patternIndex}.pattern`, patternValue);
|
|
307
|
+
});
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
// objectives
|
|
311
|
+
if (interaction.objectives && Array.isArray(interaction.objectives)) {
|
|
312
|
+
interaction.objectives.forEach((objectiveId, objIndex) => {
|
|
313
|
+
this._rawSet(`cmi.interactions.${index}.objectives.${objIndex}.id`, objectiveId);
|
|
314
|
+
});
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
this._cache.interactionsCount++;
|
|
318
|
+
|
|
319
|
+
const result = { ...interaction, _index: index };
|
|
320
|
+
logger.debug(`[Scorm12Driver] Appended interaction "${interaction.id}" at index ${index}`);
|
|
321
|
+
return result;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
setExitMode(mode) {
|
|
325
|
+
this._rawSet('cmi.core.exit', mode === 'suspend' ? 'suspend' : '');
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// =========================================================================
|
|
329
|
+
// Suspend Data (with Strict Diet Mode)
|
|
330
|
+
// =========================================================================
|
|
331
|
+
|
|
332
|
+
getSuspendData() {
|
|
333
|
+
const data = this._scorm.get('cmi.suspend_data') || '';
|
|
334
|
+
|
|
335
|
+
if (!data) {
|
|
336
|
+
return null;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
const jsonString = LZString.decompressFromUTF16(data);
|
|
340
|
+
if (!jsonString) {
|
|
341
|
+
logger.warn('[Scorm12Driver] Failed to decompress suspend_data');
|
|
342
|
+
return null;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
try {
|
|
346
|
+
const parsed = JSON.parse(jsonString);
|
|
347
|
+
return this._expandDietState(parsed);
|
|
348
|
+
} catch (error) {
|
|
349
|
+
logger.error('[Scorm12Driver] Failed to parse suspend_data:', error);
|
|
350
|
+
throw new Error(`Failed to parse suspend data: ${error.message}`);
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
setSuspendData(data) {
|
|
355
|
+
if (data === undefined || data === null) {
|
|
356
|
+
throw new Error('Cannot set suspend data: data is null or undefined');
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
// STRICT DIET MODE: Always prune, never adaptive
|
|
360
|
+
const dietData = this._createDietState(data);
|
|
361
|
+
|
|
362
|
+
const serialized = JSON.stringify(dietData);
|
|
363
|
+
const compressed = LZString.compressToUTF16(serialized);
|
|
364
|
+
|
|
365
|
+
const compressedSizeKB = (compressed.length / 1024).toFixed(2);
|
|
366
|
+
logger.debug(`[Scorm12Driver] Diet suspend_data: ${compressedSizeKB}KB compressed`);
|
|
367
|
+
|
|
368
|
+
if (compressed.length > 4000) {
|
|
369
|
+
logger.error(`[Scorm12Driver] ⚠️ CRITICAL: Strict diet still exceeds 4KB! (${compressedSizeKB}KB)`);
|
|
370
|
+
eventBus.emit('suspend-data:critical', { bytes: compressed.length, format: 'scorm1.2' });
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
this._rawSet('cmi.suspend_data', compressed);
|
|
374
|
+
return true;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
// =========================================================================
|
|
378
|
+
// Strict Diet Mode Implementation
|
|
379
|
+
// =========================================================================
|
|
380
|
+
|
|
381
|
+
_createDietState(fullState) {
|
|
382
|
+
const diet = {};
|
|
383
|
+
|
|
384
|
+
// Use cached bookmark (the authoritative location)
|
|
385
|
+
const currentSlide = this._cache.bookmark || null;
|
|
386
|
+
|
|
387
|
+
if (fullState.navigation) {
|
|
388
|
+
diet.nav = {
|
|
389
|
+
cur: currentSlide,
|
|
390
|
+
vis: fullState.navigation.visitedSlides
|
|
391
|
+
};
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
if (fullState.accessibility) {
|
|
395
|
+
diet.acc = fullState.accessibility;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
if (fullState.flags && Object.keys(fullState.flags).length > 0) {
|
|
399
|
+
diet.flg = fullState.flags;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
if (fullState.engagement) {
|
|
403
|
+
diet.eng = {};
|
|
404
|
+
for (const [slideId, slideState] of Object.entries(fullState.engagement)) {
|
|
405
|
+
diet.eng[slideId] = { c: slideState.complete ? 1 : 0 };
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
if (fullState.interactionResponses && currentSlide) {
|
|
410
|
+
if (fullState.interactionResponses[currentSlide]) {
|
|
411
|
+
diet.int = { [currentSlide]: fullState.interactionResponses[currentSlide] };
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
for (const [key, value] of Object.entries(fullState)) {
|
|
416
|
+
if (key.startsWith('assessment_')) {
|
|
417
|
+
diet[`as_${key.substring(11)}`] = value;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
return diet;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
_expandDietState(dietState) {
|
|
425
|
+
const expanded = {};
|
|
426
|
+
|
|
427
|
+
if (dietState.nav) {
|
|
428
|
+
expanded.navigation = {
|
|
429
|
+
currentSlide: dietState.nav.cur,
|
|
430
|
+
visitedSlides: dietState.nav.vis || []
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
if (dietState.acc) {
|
|
435
|
+
expanded.accessibility = dietState.acc;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
if (dietState.flg) {
|
|
439
|
+
expanded.flags = dietState.flg;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
if (dietState.eng) {
|
|
443
|
+
expanded.engagement = {};
|
|
444
|
+
for (const [slideId, slideState] of Object.entries(dietState.eng)) {
|
|
445
|
+
expanded.engagement[slideId] = {
|
|
446
|
+
complete: slideState.c === 1,
|
|
447
|
+
tracked: {}
|
|
448
|
+
};
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
if (dietState.int) {
|
|
453
|
+
expanded.interactionResponses = dietState.int;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
for (const [key, value] of Object.entries(dietState)) {
|
|
457
|
+
if (key.startsWith('as_')) {
|
|
458
|
+
expanded[`assessment_${key.substring(3)}`] = value;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
return expanded;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
// =========================================================================
|
|
466
|
+
// Private Helpers
|
|
467
|
+
// =========================================================================
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Populates the semantic cache at init time.
|
|
471
|
+
*/
|
|
472
|
+
_populateCache() {
|
|
473
|
+
// Read entry mode
|
|
474
|
+
const entryRaw = this._scorm.get('cmi.core.entry') || '';
|
|
475
|
+
// SCORM 1.2 entry: 'ab-initio', 'resume', ''
|
|
476
|
+
this._cache.entry = entryRaw;
|
|
477
|
+
|
|
478
|
+
// Read bookmark
|
|
479
|
+
this._cache.bookmark = this._scorm.get('cmi.core.lesson_location') || '';
|
|
480
|
+
|
|
481
|
+
// Read learner info
|
|
482
|
+
this._cache.learnerId = this._scorm.get('cmi.core.student_id') || '';
|
|
483
|
+
this._cache.learnerName = this._scorm.get('cmi.core.student_name') || '';
|
|
484
|
+
|
|
485
|
+
// Read combined status
|
|
486
|
+
const lessonStatus = this._scorm.get('cmi.core.lesson_status');
|
|
487
|
+
this._statusCache = mapStatusTo2004(lessonStatus);
|
|
488
|
+
|
|
489
|
+
// Read interactions count for append tracking
|
|
490
|
+
try {
|
|
491
|
+
const parsed = parseInt(this._scorm.get('cmi.interactions._count') || '0', 10);
|
|
492
|
+
this._cache.interactionsCount = isNaN(parsed) ? 0 : parsed;
|
|
493
|
+
} catch (_e) {
|
|
494
|
+
this._cache.interactionsCount = 0;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Objective index tracking (same pattern as SCORM 2004 but 1.2-native).
|
|
500
|
+
*/
|
|
501
|
+
_objectiveIdToIndex = new Map();
|
|
502
|
+
|
|
503
|
+
_getOrCreateObjectiveIndex(objectiveId) {
|
|
504
|
+
if (this._objectiveIdToIndex.has(objectiveId)) {
|
|
505
|
+
return this._objectiveIdToIndex.get(objectiveId);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
const newIndex = this._objectiveIdToIndex.size;
|
|
509
|
+
this._rawSet(`cmi.objectives.${newIndex}.id`, objectiveId);
|
|
510
|
+
this._objectiveIdToIndex.set(objectiveId, newIndex);
|
|
511
|
+
|
|
512
|
+
return newIndex;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* Low-level raw SCORM 1.2 set. No mapping, no translation.
|
|
517
|
+
*/
|
|
518
|
+
_rawSet(key12, value) {
|
|
519
|
+
if (this._isTerminated) {
|
|
520
|
+
if (import.meta.env.DEV) {
|
|
521
|
+
logger.warn(`[Scorm12Driver] Ignoring setValue('${key12}') - session terminated`);
|
|
522
|
+
}
|
|
523
|
+
return;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
const stringValue = typeof value === 'string' ? value : String(value);
|
|
527
|
+
const success = this._scorm.set(key12, stringValue);
|
|
528
|
+
|
|
529
|
+
if (!success) {
|
|
530
|
+
logger.error(`[Scorm12Driver] LMSSetValue('${key12}') failed`);
|
|
531
|
+
throw new Error(`Failed to set value for "${key12}"`);
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* Syncs the combined lesson_status to the LMS.
|
|
537
|
+
*/
|
|
538
|
+
_syncLessonStatus() {
|
|
539
|
+
if (this._isTerminated) {
|
|
540
|
+
if (import.meta.env.DEV) {
|
|
541
|
+
logger.warn('[Scorm12Driver] Ignoring _syncLessonStatus() - session terminated');
|
|
542
|
+
}
|
|
543
|
+
return;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
const lessonStatus = mapStatusTo12(this._statusCache.completion, this._statusCache.success);
|
|
547
|
+
const success = this._scorm.set('cmi.core.lesson_status', lessonStatus);
|
|
548
|
+
|
|
549
|
+
if (!success) {
|
|
550
|
+
logger.warn(`[Scorm12Driver] Failed to sync lesson_status to: ${lessonStatus}`);
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
// Exported for unit testing
|
|
556
|
+
export {
|
|
557
|
+
mapStatusTo12,
|
|
558
|
+
mapStatusTo2004,
|
|
559
|
+
convertTimeFormat2004To12
|
|
560
|
+
};
|