@3cr/viewer-browser 0.0.200 → 0.0.246
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/.circleci/config.yml +46 -22
- package/.prettierrc +6 -0
- package/components.d.ts +27 -10
- package/dist/Viewer3CR.js +36 -45
- package/dist/Viewer3CR.mjs +26893 -21667
- package/dist/Viewer3CR.umd.js +36 -45
- package/dist/android-chrome-192x192.png +0 -0
- package/dist/android-chrome-512x512.png +0 -0
- package/dist/apple-touch-icon.png +0 -0
- package/dist/browserconfig.xml +9 -0
- package/dist/favicon-16x16.png +0 -0
- package/dist/favicon-32x32.png +0 -0
- package/dist/favicon.ico +0 -0
- package/dist/mstile-144x144.png +0 -0
- package/dist/mstile-150x150.png +0 -0
- package/dist/mstile-310x150.png +0 -0
- package/dist/mstile-310x310.png +0 -0
- package/dist/mstile-70x70.png +0 -0
- package/dist/safari-pinned-tab.svg +50 -0
- package/dist/site.webmanifest +19 -0
- package/index.html +34 -41
- package/package.json +24 -20
- package/playground/android-chrome-192x192.png +0 -0
- package/playground/android-chrome-512x512.png +0 -0
- package/playground/apple-touch-icon.png +0 -0
- package/playground/browserconfig.xml +9 -0
- package/playground/favicon-16x16.png +0 -0
- package/playground/favicon-32x32.png +0 -0
- package/playground/favicon.ico +0 -0
- package/playground/index.html +30 -41
- package/playground/mstile-144x144.png +0 -0
- package/playground/mstile-150x150.png +0 -0
- package/playground/mstile-310x150.png +0 -0
- package/playground/mstile-310x310.png +0 -0
- package/playground/mstile-70x70.png +0 -0
- package/playground/safari-pinned-tab.svg +50 -0
- package/playground/site.webmanifest +19 -0
- package/playground/sw.js +15 -1
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-512x512.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/browserconfig.xml +9 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/mstile-144x144.png +0 -0
- package/public/mstile-150x150.png +0 -0
- package/public/mstile-310x150.png +0 -0
- package/public/mstile-310x310.png +0 -0
- package/public/mstile-70x70.png +0 -0
- package/public/safari-pinned-tab.svg +50 -0
- package/public/site.webmanifest +19 -0
- package/src/App.vue +55 -50
- package/src/__tests__/app.spec.ts +7 -8
- package/{__tests__/index.spec.ts → src/__tests__/main.spec.ts} +5 -6
- package/src/assets/logos/3dicom/white-mini.svg +20 -0
- package/src/assets/logos/3dicom/white.svg +30 -0
- package/src/assets/styles.scss +18 -4
- package/src/components/demo/DemoPatientModal.vue +12 -22
- package/src/components/demo/__tests__/DemoModal.spec.ts +9 -8
- package/src/components/demo/__tests__/DemoPatientModal.spec.ts +11 -10
- package/src/components/demo/__tests__/options.spec.ts +1 -1
- package/src/components/demo/licence/DemoLicenceInfoModal.vue +11 -29
- package/src/components/demo/licence/__tests__/DemoLicenceEnableCloudStorageModal.spec.ts +11 -10
- package/src/components/demo/licence/__tests__/DemoLicenceInfoModal.spec.ts +21 -11
- package/src/components/demo/licence/__tests__/DemoLicenceSendToPartyModal.spec.ts +10 -10
- package/src/components/demo/licence/__tests__/DemoLicenceShareToMobileModal.spec.ts +14 -13
- package/src/components/demo/options.ts +74 -76
- package/src/components/demo/patient/DemoPatientInfoModal.vue +11 -29
- package/src/components/demo/patient/__tests__/DemoPatientEnableCloudStorageModal.spec.ts +11 -10
- package/src/components/demo/patient/__tests__/DemoPatientInfoModal.spec.ts +12 -11
- package/src/components/demo/patient/__tests__/DemoPatientSendToPartyModal.spec.ts +10 -10
- package/src/components/demo/patient/__tests__/DemoPatientShareToMobileModal.spec.ts +14 -13
- package/src/components/modal/ActionRail.vue +7 -11
- package/src/components/modal/AskAI.vue +35 -50
- package/src/components/modal/CloseViewerModal.vue +22 -57
- package/src/components/modal/MftpWebGL3DRModal.vue +230 -635
- package/src/components/modal/ViewerActionRail.vue +44 -39
- package/src/components/modal/ViewerNavigationDrawer.vue +10 -8
- package/src/components/modal/ViewerNavigationDrawerContent.vue +91 -49
- package/src/components/modal/ViewerNavigationDrawerFooter.vue +83 -63
- package/src/components/modal/ViewerNavigationDrawerHeader.vue +14 -44
- package/src/components/modal/ViewerScanView.vue +114 -0
- package/src/components/modal/WebGL3DR.vue +91 -0
- package/src/components/modal/__tests__/ActionRail.spec.ts +10 -0
- package/src/components/modal/__tests__/AskAI.spec.ts +33 -0
- package/src/components/modal/__tests__/CloseViewerModal.spec.ts +24 -14
- package/src/components/modal/__tests__/MftpWebGL3DRModal.spec.ts +147 -176
- package/src/components/modal/__tests__/ViewerActionRail.spec.ts +11 -0
- package/src/components/modal/__tests__/ViewerNavigationDrawer.spec.ts +10 -12
- package/src/components/modal/__tests__/ViewerNavigationDrawerContent.spec.ts +4 -22
- package/src/components/modal/__tests__/ViewerNavigationDrawerFooter.spec.ts +35 -32
- package/src/components/modal/__tests__/ViewerNavigationDrawerHeader.spec.ts +14 -11
- package/src/components/modal/__tests__/ViewerScanView.spec.ts +60 -0
- package/src/components/modal/__tests__/WebGL3DR.spec.ts +57 -0
- package/src/components/modal/actions/Flip3dAction.vue +1 -1
- package/src/components/modal/actions/FlipHorizontalAction.vue +5 -10
- package/src/components/modal/actions/FlipVerticalAction.vue +5 -10
- package/src/components/modal/actions/FullscreenAction.vue +6 -11
- package/src/components/modal/actions/NavigationCubeAction.vue +7 -14
- package/src/components/modal/actions/PanAction.vue +4 -4
- package/src/components/modal/actions/ResetViewAction.vue +1 -1
- package/src/components/modal/actions/Rotate2dAction.vue +8 -20
- package/src/components/modal/actions/Slice3dAction.vue +10 -32
- package/src/components/modal/actions/ZoomAction.vue +1 -1
- package/src/components/modal/actions/__tests__/Action.spec.ts +8 -9
- package/src/components/modal/actions/__tests__/Flip3dAction.spec.ts +6 -8
- package/src/components/modal/actions/__tests__/FlipHorizontalAction.spec.ts +6 -7
- package/src/components/modal/actions/__tests__/FlipVerticalAction.spec.ts +6 -7
- package/src/components/modal/actions/__tests__/FullscreenAction.spec.ts +9 -10
- package/src/components/modal/actions/__tests__/NavigationCubeAction.spec.ts +11 -11
- package/src/components/modal/actions/__tests__/PanAction.spec.ts +9 -10
- package/src/components/modal/actions/__tests__/ResetViewAction.spec.ts +7 -7
- package/src/components/modal/actions/__tests__/Rotate2dAction.spec.ts +6 -8
- package/src/components/modal/actions/__tests__/Slice3dAction.spec.ts +23 -5
- package/src/components/modal/actions/__tests__/ZoomAction.spec.ts +8 -10
- package/src/components/modal/buttons/AutoAnnotateBtn.vue +197 -0
- package/src/components/modal/buttons/__tests__/AutoAnnotateBtn.spec.ts +28 -0
- package/src/components/modal/menus/FileMenu.vue +73 -0
- package/src/components/modal/menus/SettingsMenu.vue +106 -0
- package/src/components/modal/menus/__tests__/FileMenu.spec.ts +110 -0
- package/src/components/modal/menus/__tests__/SettingsMenu.spec.ts +71 -0
- package/src/components/navigation/mcad/McadGlobalActions.vue +20 -0
- package/src/components/navigation/mcad/McadGlobalOpacitySlider.vue +103 -0
- package/src/components/navigation/mcad/McadGlobalScanViewBtn.vue +28 -0
- package/src/components/navigation/mcad/McadGlobalVisibilityBtn.vue +38 -0
- package/src/components/shared/DoubleSliderSelector.vue +142 -0
- package/src/components/{loading → shared}/LoadingSpinner.vue +27 -36
- package/src/components/shared/UpdateSnackbar.vue +72 -0
- package/src/components/{selectors → shared}/ValueSelector.vue +9 -12
- package/src/components/shared/__tests__/DoubleSliderSelector.spec.ts +83 -0
- package/src/components/shared/__tests__/LoadingSpinner.spec.ts +9 -0
- package/src/components/shared/__tests__/UpdateSnackbar.spec.ts +116 -0
- package/src/components/shared/__tests__/ValueSelector.spec.ts +39 -0
- package/src/components/shared/__tests__/VerticalSliderSelector.spec.ts +50 -0
- package/src/components/views/AnnotationTreeView.vue +236 -0
- package/src/components/{modal/ViewerDisplaySettings.vue → views/DisplaySettings.vue} +7 -15
- package/src/components/views/MarkupTreeView.vue +201 -0
- package/src/components/views/McadObjectTreeView.vue +129 -0
- package/src/components/views/__tests__/AnnotationTreeView.spec.ts +62 -0
- package/src/components/{modal/__tests__/ViewerDisplaySettings.spec.ts → views/__tests__/DisplaySettings.spec.ts} +24 -20
- package/src/components/views/__tests__/MarkupTreeView.spec.ts +41 -0
- package/src/components/views/__tests__/McadObjectTreeView.spec.ts +47 -0
- package/src/components/views/modals/DataOverlayGeneralModal.vue +71 -0
- package/src/components/views/modals/DataOverlayMarkupModal.vue +60 -0
- package/src/components/views/modals/DataOverlayModal.vue +88 -0
- package/src/components/views/shared/MaskIcon.vue +44 -0
- package/src/components/views/shared/ObjectColor.vue +31 -0
- package/src/components/views/shared/ObjectLabel.vue +30 -0
- package/src/components/views/shared/Opacity.vue +65 -0
- package/src/components/views/shared/VisibilityBtn.vue +25 -0
- package/src/components/views/shared/__tests__/MaskIcon.spec.ts +10 -0
- package/src/components/views/shared/__tests__/ObjectColor.spec.ts +10 -0
- package/src/components/views/shared/__tests__/ObjectLabel.spec.ts +10 -0
- package/src/components/views/shared/__tests__/Opacity.spec.ts +24 -0
- package/src/components/views/shared/__tests__/VisibilityBtn.spec.ts +11 -0
- package/src/components/views/types/annotation-tree-view-item-child-action.ts +6 -0
- package/src/components/views/types/annotation-tree-view-item-child.ts +9 -0
- package/src/components/views/types/annotation-tree-view-item.ts +13 -0
- package/src/components/views/types/markup-tree-view-item-child.ts +6 -0
- package/src/components/views/types/markup-tree-view-item.ts +14 -0
- package/src/components/views/types/mcad-object-tree-view-item.ts +13 -0
- package/src/composables/__tests__/useAnnotations.spec.ts +35 -0
- package/src/composables/__tests__/useEventListener.spec.ts +32 -0
- package/src/composables/__tests__/useIntroJs.spec.ts +51 -0
- package/src/composables/__tests__/useMarkups.spec.ts +39 -0
- package/src/composables/__tests__/useMcadObjects.spec.ts +36 -0
- package/src/composables/__tests__/useMouse.spec.ts +20 -0
- package/src/{components/modal/composables → composables}/__tests__/useNavigationCubeObserver.spec.ts +17 -12
- package/src/{dataLayer → composables}/__tests__/useViewer3cr.spec.ts +1 -2
- package/src/composables/useAnnotations.ts +37 -0
- package/src/composables/useDebounce.ts +11 -0
- package/src/composables/useEventListener.ts +25 -0
- package/src/composables/useIntroJs.ts +142 -0
- package/src/composables/useMarkups.ts +41 -0
- package/src/composables/useMcadObjects.ts +32 -0
- package/src/composables/useMouse.ts +14 -0
- package/src/{components/modal/composables → composables}/useNavigationCubeObserver.ts +35 -25
- package/src/composables/useScanMovement.ts +25 -0
- package/src/composables/useScanSliders.ts +36 -0
- package/src/composables/useVersion3cr.ts +7 -0
- package/src/composables/useViewer3cr.ts +7 -0
- package/src/composables/useViewerOptions.ts +36 -0
- package/src/{dataLayer → functions}/__tests__/clamp.spec.ts +1 -2
- package/src/functions/__tests__/layoutOverlayStyle.spec.ts +325 -0
- package/src/{helpers/__tests__/model-helper.spec.ts → functions/__tests__/modelHelper.spec.ts} +77 -40
- package/src/{notifications → functions}/__tests__/notification.spec.ts +19 -29
- package/src/functions/__tests__/parseAction.spec.ts +9 -0
- package/src/functions/__tests__/parseCallToAction.spec.ts +11 -0
- package/src/functions/__tests__/parseDataOverlay.spec.ts +15 -0
- package/src/functions/__tests__/parseDataOverlayData.spec.ts +9 -0
- package/src/functions/__tests__/parseDataOverlayEvent.spec.ts +10 -0
- package/src/functions/__tests__/parseMcadEvent.spec.ts +10 -0
- package/src/functions/guards/isDataOverlayAngle.ts +6 -0
- package/src/functions/guards/isDataOverlayLength.ts +6 -0
- package/src/functions/guards/isDataOverlayPolygon.ts +6 -0
- package/src/functions/layoutOverlayStyle.ts +84 -0
- package/src/{helpers → functions}/modelHelper.ts +81 -18
- package/src/functions/notification.ts +82 -0
- package/src/functions/parseAction.ts +9 -0
- package/src/functions/parseCallToAction.ts +9 -0
- package/src/functions/parseDataOverlay.ts +10 -0
- package/src/functions/parseDataOverlayData.ts +10 -0
- package/src/functions/parseDataOverlayEvent.ts +17 -0
- package/src/functions/parseMcadEvent.ts +10 -0
- package/src/functions/rgbaToCss.ts +13 -0
- package/src/main.ts +57 -9
- package/src/{dataLayer → models}/__tests__/eventHandlers.spec.ts +2 -3
- package/src/models/__tests__/loadViewerOptions.spec.ts +72 -0
- package/src/models/__tests__/loadViewerPayload.spec.ts +10 -0
- package/src/models/__tests__/scanState.spec.ts +190 -0
- package/src/models/callbacks.ts +4 -0
- package/src/models/loadViewerOptions.ts +79 -0
- package/src/models/loadViewerPayload.ts +17 -0
- package/src/{dataLayer → models}/scanState.ts +63 -74
- package/src/plugins/__tests__/usePlugins.spec.ts +12 -0
- package/src/plugins/__tests__/vuetify.spec.ts +3 -4
- package/src/plugins/usePlugins.ts +8 -0
- package/src/plugins/vuetify.ts +31 -65
- package/src/services/{gpt/__tests__ → __tests__}/gpt.service.spec.ts +2 -2
- package/src/services/__tests__/service-worker.service.spec.ts +32 -0
- package/src/{dataLayer/__tests__/viewer3cr.spec.ts → services/__tests__/viewer-3cr.service.spec.ts} +97 -36
- package/src/services/gpt.service.ts +17 -0
- package/src/services/service-worker.service.ts +16 -0
- package/src/{dataLayer/viewer3cr.ts → services/viewer-3cr.service.ts} +281 -150
- package/src/tools/data-overlay.tool.ts +71 -0
- package/src/types/action.ts +13 -0
- package/src/types/call-to-action.ts +9 -0
- package/src/types/colour.ts +6 -0
- package/src/types/data-overlay-angle.ts +16 -0
- package/src/types/data-overlay-annotation.ts +18 -0
- package/src/types/data-overlay-data.ts +15 -0
- package/src/types/data-overlay-event.ts +5 -0
- package/src/types/data-overlay-info.ts +18 -0
- package/src/types/data-overlay-interaction.ts +15 -0
- package/src/types/data-overlay-length.ts +16 -0
- package/src/types/data-overlay-markup.ts +7 -0
- package/src/types/data-overlay-mcad.ts +20 -0
- package/src/types/data-overlay-polygon.ts +18 -0
- package/src/types/data-overlay.ts +16 -0
- package/src/types/demo-type.ts +4 -0
- package/src/types/gpt-question.ts +4 -0
- package/src/types/gpt-response-payload.ts +6 -0
- package/src/types/mcad-object-interaction.ts +15 -0
- package/src/types/segment-angle.ts +5 -0
- package/src/types/vector2.ts +4 -0
- package/src/types/vector3.ts +5 -0
- package/test/fakers/action-data.faker.ts +11 -0
- package/test/fakers/action.faker.ts +19 -0
- package/test/fakers/call-to-action.faker.ts +17 -0
- package/test/fakers/colour.faker.ts +17 -0
- package/test/fakers/data-overlay-angle.faker.ts +37 -0
- package/test/fakers/data-overlay-annotation.faker.ts +41 -0
- package/test/fakers/data-overlay-data.faker.ts +97 -0
- package/test/fakers/data-overlay-info.faker.ts +29 -0
- package/test/fakers/data-overlay-interaction.faker.ts +62 -0
- package/test/fakers/data-overlay-length.faker.ts +37 -0
- package/test/fakers/data-overlay-mcad.faker.ts +40 -0
- package/test/fakers/data-overlay-polygon.faker.ts +39 -0
- package/test/fakers/gpt-question.faker.ts +11 -0
- package/test/fakers/gpt-response.faker.ts +12 -0
- package/test/fakers/invert-transform.faker.ts +16 -0
- package/test/fakers/mcad-object-interaction.faker.ts +22 -0
- package/test/fakers/orientation.faker.ts +17 -0
- package/test/fakers/segment-angle.faker.ts +12 -0
- package/test/fakers/vector2.faker.ts +12 -0
- package/test/fakers/vector3.faker.ts +16 -0
- package/test/plugins/findByTestId.ts +25 -0
- package/test/plugins/vuetify.ts +16 -0
- package/test/setup.ts +16 -5
- package/tsconfig.json +4 -15
- package/vite.config.mts +20 -46
- package/vitest.config.mts +24 -43
- package/index.ts +0 -72
- package/src/assets/images/dark/3DICOM.png +0 -0
- package/src/assets/images/dark/3dicom-logo.svg +0 -1
- package/src/assets/images/light/3DICOM.png +0 -0
- package/src/assets/images/light/3dicom-logo.svg +0 -1
- package/src/assets/logo.png +0 -0
- package/src/assets/logo.svg +0 -6
- package/src/components/WebGL3DR.vue +0 -102
- package/src/components/__tests__/webgl3dr.spec.ts +0 -37
- package/src/components/icons/liver.vue +0 -21
- package/src/components/loading/__tests__/loading-spinner.spec.ts +0 -11
- package/src/components/modal/ViewerAnnotationModal.vue +0 -111
- package/src/components/modal/ViewerAnnotations.vue +0 -289
- package/src/components/modal/__tests__/ViewerAnnotationModal.spec.ts +0 -79
- package/src/components/modal/composables/useEventListener.ts +0 -22
- package/src/components/selectors/__tests__/value-selector.spec.ts +0 -53
- package/src/components/sliders/DoubleSliderSelector.vue +0 -141
- package/src/components/sliders/__tests__/double-slider-selector.spec.ts +0 -104
- package/src/components/sliders/__tests__/vertical-slider-selector.spec.ts +0 -61
- package/src/dataLayer/__tests__/getIconForPreset.spec.ts +0 -40
- package/src/dataLayer/__tests__/patchDataOverlay.spec.ts +0 -88
- package/src/dataLayer/__tests__/scanState.spec.ts +0 -93
- package/src/dataLayer/getIconForPreset.ts +0 -11
- package/src/dataLayer/patchDataOverlay.ts +0 -101
- package/src/dataLayer/useViewer3cr.ts +0 -7
- package/src/helpers/__tests__/layout-overlay-style.spec.ts +0 -290
- package/src/helpers/__tests__/utils.spec.ts +0 -70
- package/src/helpers/layoutOverlayStyle.ts +0 -96
- package/src/helpers/utils.ts +0 -16
- package/src/models/Callbacks.ts +0 -2
- package/src/models/LoadViewerOptions.ts +0 -31
- package/src/models/LoadViewerPayload.ts +0 -9
- package/src/models/__tests__/load-viewer-options.spec.ts +0 -22
- package/src/notifications/notification.ts +0 -50
- package/src/plugins/__tests__/index.spec.ts +0 -19
- package/src/plugins/index.ts +0 -17
- package/src/services/gpt/gpt.service.ts +0 -35
- package/static/3cr-types-browser/index.ts +0 -74
- package/static/3cr-types-browser/types/Action.ts +0 -6
- package/static/3cr-types-browser/types/AlphaKeys.ts +0 -5
- package/static/3cr-types-browser/types/AnchorPoint.ts +0 -12
- package/static/3cr-types-browser/types/CallToAction.ts +0 -5
- package/static/3cr-types-browser/types/ColourData.ts +0 -7
- package/static/3cr-types-browser/types/ColourPresetData.ts +0 -9
- package/static/3cr-types-browser/types/CurrentDataOverlayState.ts +0 -6
- package/static/3cr-types-browser/types/CurrentScanState.ts +0 -22
- package/static/3cr-types-browser/types/DataOverlay.ts +0 -22
- package/static/3cr-types-browser/types/DataOverlayActions.ts +0 -14
- package/static/3cr-types-browser/types/DataOverlayData.ts +0 -8
- package/static/3cr-types-browser/types/DataOverlayEvent.ts +0 -8
- package/static/3cr-types-browser/types/DecryptionKey.ts +0 -4
- package/static/3cr-types-browser/types/DisplaySettings.ts +0 -10
- package/static/3cr-types-browser/types/EmptyPayload.ts +0 -3
- package/static/3cr-types-browser/types/EnumPayload.ts +0 -4
- package/static/3cr-types-browser/types/FileManagementActions.ts +0 -11
- package/static/3cr-types-browser/types/FlipValue.ts +0 -7
- package/static/3cr-types-browser/types/FrontEndInterfaces.ts +0 -14
- package/static/3cr-types-browser/types/GradientKeys.ts +0 -7
- package/static/3cr-types-browser/types/GreyscalePresetData.ts +0 -6
- package/static/3cr-types-browser/types/InitialDataOverlayState.ts +0 -6
- package/static/3cr-types-browser/types/InitialScanState.ts +0 -19
- package/static/3cr-types-browser/types/InteractionType.ts +0 -8
- package/static/3cr-types-browser/types/InteractivityActions.ts +0 -6
- package/static/3cr-types-browser/types/InteractivityState.ts +0 -4
- package/static/3cr-types-browser/types/InvertTransformData.ts +0 -6
- package/static/3cr-types-browser/types/LayoutActions.ts +0 -6
- package/static/3cr-types-browser/types/LayoutData.ts +0 -7
- package/static/3cr-types-browser/types/LoadDataSet.ts +0 -6
- package/static/3cr-types-browser/types/LoadSessionState.ts +0 -4
- package/static/3cr-types-browser/types/LocalLoadDataset.ts +0 -3
- package/static/3cr-types-browser/types/MovementData.ts +0 -7
- package/static/3cr-types-browser/types/NavigationCubeActions.ts +0 -8
- package/static/3cr-types-browser/types/NavigationCubeData.ts +0 -12
- package/static/3cr-types-browser/types/NavigationCubeTransform.ts +0 -9
- package/static/3cr-types-browser/types/NotificationPayload.ts +0 -7
- package/static/3cr-types-browser/types/NotificationsActions.ts +0 -6
- package/static/3cr-types-browser/types/Object.ts +0 -1
- package/static/3cr-types-browser/types/ObjectColour.ts +0 -7
- package/static/3cr-types-browser/types/ObjectIcon.ts +0 -5
- package/static/3cr-types-browser/types/ObjectInvert.ts +0 -7
- package/static/3cr-types-browser/types/ObjectSize.ts +0 -7
- package/static/3cr-types-browser/types/ObjectSize2D.ts +0 -7
- package/static/3cr-types-browser/types/ObjectVisible.ts +0 -5
- package/static/3cr-types-browser/types/PositionData.ts +0 -14
- package/static/3cr-types-browser/types/PresetsActions.ts +0 -4
- package/static/3cr-types-browser/types/RotationValue.ts +0 -7
- package/static/3cr-types-browser/types/ScanMovementActions.ts +0 -27
- package/static/3cr-types-browser/types/ScanMovementData.ts +0 -3
- package/static/3cr-types-browser/types/ScanOrientationActions.ts +0 -6
- package/static/3cr-types-browser/types/ScanStateActions.ts +0 -4
- package/static/3cr-types-browser/types/ScanView.ts +0 -6
- package/static/3cr-types-browser/types/SettingsData.ts +0 -12
- package/static/3cr-types-browser/types/SlicerData.ts +0 -9
- package/static/3cr-types-browser/types/SliderValue.ts +0 -4
- package/static/3cr-types-browser/types/SlidersActions.ts +0 -18
- package/static/3cr-types-browser/types/Vector2Data.ts +0 -5
- package/static/3cr-types-browser/types/Vector3Data.ts +0 -6
- package/static/3cr-types-browser/types/VectorMovementData.ts +0 -8
- package/static/3cr-types-browser/types/ViewInteractiveMode.ts +0 -5
- package/static/3cr-types-browser/types/ViewOrientation.ts +0 -8
- package/static/3cr-types-browser/types/ViewOrientations.ts +0 -10
- package/static/3cr-types-browser/types/ViewSelectionActions.ts +0 -9
- package/static/3cr-types-browser/types/ViewToggleData.ts +0 -7
- package/static/3cr-types-browser/types/VolumeOrientation.ts +0 -7
- package/test/helper.ts +0 -44
- /package/src/components/{sliders → shared}/VerticalSliderSelector.vue +0 -0
- /package/{config.ts → src/config.ts} +0 -0
- /package/src/{dataLayer → functions}/clamp.ts +0 -0
- /package/src/{dataLayer → models}/eventHandlers.ts +0 -0
- /package/{static/3cr-types-browser/types/ActionData.ts → src/types/action-data.ts} +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-snackbar
|
|
3
|
+
v-model="updateFound"
|
|
4
|
+
:timeout="-1"
|
|
5
|
+
color="transparent"
|
|
6
|
+
location="bottom end"
|
|
7
|
+
rounded="lg"
|
|
8
|
+
class="bg-transparent"
|
|
9
|
+
min-width="240"
|
|
10
|
+
elevation="0"
|
|
11
|
+
variant="elevated"
|
|
12
|
+
>
|
|
13
|
+
<v-alert v-model="updateFound" :color="`#303474`" prominent rounded="lg" icon="browser_updated">
|
|
14
|
+
<span class="text-subtitle-2">
|
|
15
|
+
We have detected an update for you! <br />Please click update as soon as possible.
|
|
16
|
+
</span>
|
|
17
|
+
<template #append>
|
|
18
|
+
<v-btn v-if="!updateInstalled" :loading="true" disabled>Installing</v-btn>
|
|
19
|
+
<v-btn
|
|
20
|
+
v-if="updateInstalled"
|
|
21
|
+
data-testid="update"
|
|
22
|
+
color="#2596be"
|
|
23
|
+
variant="flat"
|
|
24
|
+
size="large"
|
|
25
|
+
:loading="updateLoading"
|
|
26
|
+
@click="completeRegistration"
|
|
27
|
+
>Update</v-btn
|
|
28
|
+
>
|
|
29
|
+
</template>
|
|
30
|
+
</v-alert>
|
|
31
|
+
</v-snackbar>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script setup lang="ts">
|
|
35
|
+
import { onMounted, ref } from 'vue';
|
|
36
|
+
import { ServiceWorkerService } from '@/services/service-worker.service';
|
|
37
|
+
|
|
38
|
+
let registration: ServiceWorkerRegistration | undefined = undefined;
|
|
39
|
+
|
|
40
|
+
const updateFound = ref<boolean>(false);
|
|
41
|
+
const updateInstalled = ref<boolean>(false);
|
|
42
|
+
const updateLoading = ref<boolean>(false);
|
|
43
|
+
|
|
44
|
+
onMounted(async () => {
|
|
45
|
+
registration = await ServiceWorkerService.Instantiate().getRegistration();
|
|
46
|
+
if (registration) {
|
|
47
|
+
setupCheck(registration);
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
function setupCheck(registration: ServiceWorkerRegistration) {
|
|
52
|
+
registration.addEventListener('updatefound', () => {
|
|
53
|
+
updateFound.value = true;
|
|
54
|
+
if (registration.installing) {
|
|
55
|
+
registration.installing.addEventListener('statechange', () => {
|
|
56
|
+
if (registration.waiting) {
|
|
57
|
+
updateInstalled.value = true;
|
|
58
|
+
console.log('[app]Service Worker update available');
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
setInterval(() => {
|
|
64
|
+
registration.update();
|
|
65
|
+
}, 1000);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function completeRegistration() {
|
|
69
|
+
updateLoading.value = true;
|
|
70
|
+
registration?.waiting?.postMessage('SKIP_WAITING');
|
|
71
|
+
}
|
|
72
|
+
</script>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<v-col cols="4">
|
|
10
10
|
<v-text-field
|
|
11
11
|
:model-value="sliderValue"
|
|
12
|
-
@update:modelValue="sliderValue =
|
|
12
|
+
@update:modelValue="sliderValue = parseInt($event)"
|
|
13
13
|
class="mt-0 pt-0"
|
|
14
14
|
hide-details
|
|
15
15
|
variant="outlined"
|
|
@@ -23,9 +23,8 @@
|
|
|
23
23
|
</template>
|
|
24
24
|
|
|
25
25
|
<script setup lang="ts">
|
|
26
|
-
import { computed } from
|
|
27
|
-
import {
|
|
28
|
-
import { clamp } from "@/dataLayer/clamp";
|
|
26
|
+
import { computed } from 'vue';
|
|
27
|
+
import { clamp } from '@/functions/clamp';
|
|
29
28
|
|
|
30
29
|
export interface Props {
|
|
31
30
|
value: number;
|
|
@@ -40,15 +39,15 @@ export interface Props {
|
|
|
40
39
|
const props = withDefaults(defineProps<Props>(), {
|
|
41
40
|
value: 0,
|
|
42
41
|
loading: false,
|
|
43
|
-
label:
|
|
42
|
+
label: 'Test',
|
|
44
43
|
min: -99999,
|
|
45
44
|
max: 99999,
|
|
46
45
|
step: 1,
|
|
47
|
-
prepend:
|
|
46
|
+
prepend: ''
|
|
48
47
|
});
|
|
49
48
|
|
|
50
49
|
const emit = defineEmits<{
|
|
51
|
-
|
|
50
|
+
'update:value': [number];
|
|
52
51
|
}>();
|
|
53
52
|
|
|
54
53
|
const sliderValue = computed({
|
|
@@ -57,8 +56,8 @@ const sliderValue = computed({
|
|
|
57
56
|
},
|
|
58
57
|
set(value: number) {
|
|
59
58
|
const val = clamp(value, props.min, props.max);
|
|
60
|
-
emit(
|
|
61
|
-
}
|
|
59
|
+
emit('update:value', val);
|
|
60
|
+
}
|
|
62
61
|
});
|
|
63
62
|
|
|
64
63
|
defineExpose({ sliderValue });
|
|
@@ -69,9 +68,7 @@ defineExpose({ sliderValue });
|
|
|
69
68
|
.v-text-field.v-text-field--enclosed:not(.v-text-field--rounded)
|
|
70
69
|
> .v-input__control
|
|
71
70
|
> .v-input__slot,
|
|
72
|
-
.single-slider-selector
|
|
73
|
-
.v-text-field.v-text-field--enclosed
|
|
74
|
-
.v-text-field__details {
|
|
71
|
+
.single-slider-selector .v-text-field.v-text-field--enclosed .v-text-field__details {
|
|
75
72
|
padding: 0px 8px !important;
|
|
76
73
|
}
|
|
77
74
|
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { flushPromises, mount, VueWrapper } from '@vue/test-utils';
|
|
2
|
+
import { VRangeSlider, VTextField } from 'vuetify/components';
|
|
3
|
+
import DoubleSliderSelector from '@/components/shared/DoubleSliderSelector.vue';
|
|
4
|
+
|
|
5
|
+
class DoubleSliderSelectorHarness<T> {
|
|
6
|
+
constructor(private readonly _wrapper: VueWrapper<T>) {}
|
|
7
|
+
|
|
8
|
+
get wrapper(): VueWrapper<T> {
|
|
9
|
+
return this._wrapper;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
lower() {
|
|
13
|
+
return this.wrapper.findComponent<VTextField>('[data-testid="lower"]');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
upper() {
|
|
17
|
+
return this.wrapper.findComponent<VTextField>('[data-testid="upper"]');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// slider() {
|
|
21
|
+
// return this.wrapper.findComponent<VRangeSlider>('[data-testid="slider"]');
|
|
22
|
+
// }
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
describe('DoubleSliderSelector tests', () => {
|
|
26
|
+
it('should timeout the thumb', async () => {
|
|
27
|
+
vi.useFakeTimers();
|
|
28
|
+
const props = { min: 0, max: 100 };
|
|
29
|
+
const wrapper = mount(DoubleSliderSelector, { props });
|
|
30
|
+
const harness = new DoubleSliderSelectorHarness(wrapper);
|
|
31
|
+
await harness.wrapper.setProps({ modelValue: [1, 1] });
|
|
32
|
+
const slider = harness.wrapper.findComponent(VRangeSlider);
|
|
33
|
+
vi.advanceTimersByTime(999);
|
|
34
|
+
expect(slider.props().thumbLabel).toEqual('always');
|
|
35
|
+
vi.advanceTimersByTime(1);
|
|
36
|
+
await flushPromises();
|
|
37
|
+
expect(slider.props().thumbLabel).toEqual(false);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it('should clamp lower only to min', async () => {
|
|
41
|
+
const props = { min: 0, max: 100 };
|
|
42
|
+
const wrapper = mount(DoubleSliderSelector, { props });
|
|
43
|
+
const harness = new DoubleSliderSelectorHarness(wrapper);
|
|
44
|
+
await harness.lower().setValue(-100);
|
|
45
|
+
await harness.lower().trigger('blur');
|
|
46
|
+
await harness.upper().setValue(50);
|
|
47
|
+
await harness.upper().trigger('blur');
|
|
48
|
+
expect(wrapper.emitted('update:modelValue')).toEqual([[[0, 0]], [[0, 50]]]);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it('should clamp upper only to max', async () => {
|
|
52
|
+
const props = { min: 0, max: 100 };
|
|
53
|
+
const wrapper = mount(DoubleSliderSelector, { props });
|
|
54
|
+
const harness = new DoubleSliderSelectorHarness(wrapper);
|
|
55
|
+
await harness.upper().setValue(200);
|
|
56
|
+
await harness.upper().trigger('blur');
|
|
57
|
+
await harness.lower().setValue(50);
|
|
58
|
+
await harness.lower().trigger('blur');
|
|
59
|
+
expect(wrapper.emitted('update:modelValue')).toEqual([[[0, 100]], [[50, 100]]]);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('should clamp lower and upper to min', async () => {
|
|
63
|
+
const props = { min: 0, max: 100 };
|
|
64
|
+
const wrapper = mount(DoubleSliderSelector, { props });
|
|
65
|
+
const harness = new DoubleSliderSelectorHarness(wrapper);
|
|
66
|
+
await harness.lower().setValue(-100);
|
|
67
|
+
await harness.lower().trigger('blur');
|
|
68
|
+
await harness.upper().setValue(-10);
|
|
69
|
+
await harness.upper().trigger('blur');
|
|
70
|
+
expect(wrapper.emitted('update:modelValue')).toEqual([[[0, 0]], [[0, 0]]]);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it('should clamp lower and upper to max', async () => {
|
|
74
|
+
const props = { min: 0, max: 100 };
|
|
75
|
+
const wrapper = mount(DoubleSliderSelector, { props });
|
|
76
|
+
const harness = new DoubleSliderSelectorHarness(wrapper);
|
|
77
|
+
await harness.upper().setValue(9001);
|
|
78
|
+
await harness.upper().trigger('blur');
|
|
79
|
+
await harness.lower().setValue(9000);
|
|
80
|
+
await harness.lower().trigger('blur');
|
|
81
|
+
expect(wrapper.emitted('update:modelValue')).toEqual([[[0, 100]], [[100, 100]]]);
|
|
82
|
+
});
|
|
83
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { mount } from '@vue/test-utils';
|
|
2
|
+
import LoadingSpinner from '@/components/shared/LoadingSpinner.vue';
|
|
3
|
+
|
|
4
|
+
describe('LoadingSpinner tests', () => {
|
|
5
|
+
it('should mount', () => {
|
|
6
|
+
const wrapper = mount(LoadingSpinner);
|
|
7
|
+
expect(wrapper).toBeTruthy();
|
|
8
|
+
});
|
|
9
|
+
});
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { flushPromises, mount } from '@vue/test-utils';
|
|
2
|
+
import { VAlert, VBtn, VSnackbar } from 'vuetify/components';
|
|
3
|
+
import UpdateSnackbar from '../UpdateSnackbar.vue';
|
|
4
|
+
|
|
5
|
+
const registration: any = {
|
|
6
|
+
addEventListener: vi.fn().mockImplementation((e, callback) => {
|
|
7
|
+
callback();
|
|
8
|
+
}),
|
|
9
|
+
installing: {
|
|
10
|
+
addEventListener: vi.fn().mockImplementation((e, callback) => {
|
|
11
|
+
callback();
|
|
12
|
+
})
|
|
13
|
+
},
|
|
14
|
+
waiting: {
|
|
15
|
+
postMessage: vi.fn()
|
|
16
|
+
},
|
|
17
|
+
update: vi.fn()
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const navigator: any = {
|
|
21
|
+
serviceWorker: {
|
|
22
|
+
getRegistration() {
|
|
23
|
+
return registration;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const navigatorWithoutInstalling: any = {
|
|
29
|
+
serviceWorker: {
|
|
30
|
+
getRegistration() {
|
|
31
|
+
return {
|
|
32
|
+
addEventListener: vi.fn().mockImplementation((e, callback) => {
|
|
33
|
+
callback();
|
|
34
|
+
})
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const navigatorWithoutWaiting: any = {
|
|
41
|
+
serviceWorker: {
|
|
42
|
+
getRegistration() {
|
|
43
|
+
return {
|
|
44
|
+
addEventListener: vi.fn().mockImplementation((e, callback) => {
|
|
45
|
+
callback();
|
|
46
|
+
}),
|
|
47
|
+
installing: {
|
|
48
|
+
addEventListener: vi.fn().mockImplementation((e, callback) => {
|
|
49
|
+
callback();
|
|
50
|
+
})
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
describe('UpdateSnackbar tests', () => {
|
|
58
|
+
it('should mount', () => {
|
|
59
|
+
const wrapper = mount(UpdateSnackbar);
|
|
60
|
+
expect(wrapper).toBeTruthy();
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it('should set v-alert state', async () => {
|
|
64
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigator);
|
|
65
|
+
const wrapper = mount(UpdateSnackbar);
|
|
66
|
+
await flushPromises();
|
|
67
|
+
await wrapper.findComponent(VAlert).setValue(false);
|
|
68
|
+
expect(wrapper.findComponent(VAlert).text()).toBe('');
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
it('should set v-snackbar state', async () => {
|
|
72
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigator);
|
|
73
|
+
const wrapper = mount(UpdateSnackbar);
|
|
74
|
+
await flushPromises();
|
|
75
|
+
await wrapper.findComponent(VSnackbar).setValue(false);
|
|
76
|
+
expect(wrapper.findComponent(VSnackbar).text()).toBe('');
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
it('should check for updates if navigator present', () => {
|
|
80
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigator);
|
|
81
|
+
const wrapper = mount(UpdateSnackbar);
|
|
82
|
+
expect(wrapper).toBeTruthy();
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
it('should check for updates on interval', async () => {
|
|
86
|
+
vi.useFakeTimers();
|
|
87
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigator);
|
|
88
|
+
mount(UpdateSnackbar);
|
|
89
|
+
await flushPromises();
|
|
90
|
+
vi.advanceTimersByTime(1000);
|
|
91
|
+
expect(navigator.serviceWorker.getRegistration().update).toHaveBeenCalled();
|
|
92
|
+
vi.useRealTimers();
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
it('should show installing when update found', async () => {
|
|
96
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigatorWithoutInstalling);
|
|
97
|
+
const wrapper = mount(UpdateSnackbar);
|
|
98
|
+
await flushPromises();
|
|
99
|
+
expect(wrapper.findComponent(VBtn).text()).toBe('Installing');
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
it('should ignore update if waiting not found', async () => {
|
|
103
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigatorWithoutWaiting);
|
|
104
|
+
const wrapper = mount(UpdateSnackbar);
|
|
105
|
+
await flushPromises();
|
|
106
|
+
expect(wrapper.findComponent(VBtn).text()).toBe('Installing');
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('should apply update on user confirmation', async () => {
|
|
110
|
+
vi.spyOn(global, 'navigator', 'get').mockReturnValue(navigator);
|
|
111
|
+
const wrapper = mount(UpdateSnackbar);
|
|
112
|
+
await flushPromises();
|
|
113
|
+
await wrapper.findComponentByTestId('update').trigger('click');
|
|
114
|
+
expect(navigator.serviceWorker.getRegistration().waiting.postMessage).toHaveBeenCalledWith('SKIP_WAITING');
|
|
115
|
+
});
|
|
116
|
+
});
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { flushPromises, mount } from '@vue/test-utils';
|
|
2
|
+
import ValueSelector from '@/components/shared/ValueSelector.vue';
|
|
3
|
+
|
|
4
|
+
describe('ValueSelector.vue', () => {
|
|
5
|
+
const props = { value: 1, min: 0, max: 100 };
|
|
6
|
+
let wrapper = mount(ValueSelector, { props });
|
|
7
|
+
|
|
8
|
+
beforeEach(() => {
|
|
9
|
+
const props = { value: 0, min: 0, max: 100 };
|
|
10
|
+
wrapper = mount(ValueSelector, { props });
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it('should inflate component', () => {
|
|
14
|
+
expect(wrapper).toBeTruthy();
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
it('should change from props', async () => {
|
|
18
|
+
await wrapper.setProps({ value: 1 });
|
|
19
|
+
await flushPromises();
|
|
20
|
+
expect(wrapper.vm.value).toStrictEqual(1);
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it('should set text lower than min limits', async () => {
|
|
24
|
+
wrapper.vm.sliderValue = -100;
|
|
25
|
+
await flushPromises();
|
|
26
|
+
expect(wrapper.emitted('update:value')).toStrictEqual([[0]]);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it('should set text higher than max limits', async () => {
|
|
30
|
+
wrapper.vm.sliderValue = 9000;
|
|
31
|
+
await flushPromises();
|
|
32
|
+
expect(wrapper.emitted('update:value')).toStrictEqual([[100]]);
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
it('should set text', async () => {
|
|
36
|
+
const slider = wrapper.findAllComponents('.v-text-field');
|
|
37
|
+
await slider[0].setValue(10);
|
|
38
|
+
});
|
|
39
|
+
});
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { flushPromises, mount } from '@vue/test-utils';
|
|
2
|
+
import { VSlider } from 'vuetify/components';
|
|
3
|
+
import VerticalSliderSelector from '@/components/shared/VerticalSliderSelector.vue';
|
|
4
|
+
|
|
5
|
+
describe('VerticalSliderSelector.vue', () => {
|
|
6
|
+
const props = { value: 0 };
|
|
7
|
+
let wrapper = mount(VerticalSliderSelector, { props });
|
|
8
|
+
|
|
9
|
+
beforeEach(() => {
|
|
10
|
+
wrapper = mount(VerticalSliderSelector, { props });
|
|
11
|
+
vi.useFakeTimers();
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
afterEach(() => {
|
|
15
|
+
vi.useRealTimers();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should inflate component', () => {
|
|
19
|
+
expect(wrapper).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('should change from props', async () => {
|
|
23
|
+
await wrapper.setProps({
|
|
24
|
+
value: 1
|
|
25
|
+
});
|
|
26
|
+
await flushPromises();
|
|
27
|
+
expect(wrapper.vm.value).toStrictEqual(1);
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
it('should timeout the thumb', async () => {
|
|
31
|
+
await wrapper.setProps({ value: 1 });
|
|
32
|
+
const slider = wrapper.findComponent(VSlider);
|
|
33
|
+
await flushPromises();
|
|
34
|
+
expect(wrapper.vm.value).toStrictEqual(1);
|
|
35
|
+
|
|
36
|
+
await wrapper.setProps({ value: 1 });
|
|
37
|
+
vi.advanceTimersByTime(999);
|
|
38
|
+
expect(slider.vm.thumbLabel).toBe('always');
|
|
39
|
+
|
|
40
|
+
vi.advanceTimersByTime(1);
|
|
41
|
+
await flushPromises();
|
|
42
|
+
expect(wrapper.vm.value).toStrictEqual(1);
|
|
43
|
+
expect(slider.vm.thumbLabel).toBe(false);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it('should set slider value', async () => {
|
|
47
|
+
const slider = wrapper.findComponent('.v-slider');
|
|
48
|
+
await slider.setValue(1);
|
|
49
|
+
});
|
|
50
|
+
});
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-treeview
|
|
3
|
+
class="py-0 annotation-treeview"
|
|
4
|
+
:items="data"
|
|
5
|
+
item-value="id"
|
|
6
|
+
density="compact"
|
|
7
|
+
open-strategy="single"
|
|
8
|
+
@click:open="focusSlices"
|
|
9
|
+
>
|
|
10
|
+
<template #prepend="{ item }">
|
|
11
|
+
<visibility-btn :is-visible="item.isVisible" @click.stop="toggleVisibility(item)" />
|
|
12
|
+
</template>
|
|
13
|
+
<template #title="{ item }">
|
|
14
|
+
<object-label :label="item.title">
|
|
15
|
+
<template #prepend>
|
|
16
|
+
<mask-icon class="mr-2" :data="item.icon!" :color="getColor(item)" />
|
|
17
|
+
</template>
|
|
18
|
+
</object-label>
|
|
19
|
+
</template>
|
|
20
|
+
<template #item="{ props }">
|
|
21
|
+
<v-row no-gutters class="px-6 py-2">
|
|
22
|
+
<v-col cols="4">
|
|
23
|
+
<b>{{ props.key }}</b>
|
|
24
|
+
</v-col>
|
|
25
|
+
<v-col>
|
|
26
|
+
<span v-html="props.value"></span>
|
|
27
|
+
<template v-for="action in props.actions">
|
|
28
|
+
<v-chip
|
|
29
|
+
v-if="action.isBtn"
|
|
30
|
+
size="small"
|
|
31
|
+
label
|
|
32
|
+
variant="tonal"
|
|
33
|
+
class="action text-wrap mb-2"
|
|
34
|
+
@click="selectAction(action)"
|
|
35
|
+
>
|
|
36
|
+
{{ action.description }}
|
|
37
|
+
</v-chip>
|
|
38
|
+
<a v-else :href="action.url">{{ action.description }}</a>
|
|
39
|
+
<br />
|
|
40
|
+
</template>
|
|
41
|
+
</v-col>
|
|
42
|
+
</v-row>
|
|
43
|
+
</template>
|
|
44
|
+
</v-treeview>
|
|
45
|
+
<AskAI
|
|
46
|
+
v-model:modal="m_askAi"
|
|
47
|
+
:title="title"
|
|
48
|
+
:question-key="questionKey"
|
|
49
|
+
:question-text="questionText"
|
|
50
|
+
@askFollowup="askFollowUpQuestion"
|
|
51
|
+
>
|
|
52
|
+
</AskAI>
|
|
53
|
+
<div class="px-4 py-2 text-caption" style="font-size: 9px !important; line-height: 12px !important">
|
|
54
|
+
* 3Dicom's Annotiva AI is powered by AI Large Language Models (LLMs) which generate general health information for
|
|
55
|
+
improved patient comprehension.
|
|
56
|
+
<br /><br />It is NOT for diagnostic usage.
|
|
57
|
+
</div>
|
|
58
|
+
</template>
|
|
59
|
+
|
|
60
|
+
<script setup lang="ts">
|
|
61
|
+
import { nextTick, ref, watch } from 'vue';
|
|
62
|
+
import { SlidersActions } from '@3cr/types-ts';
|
|
63
|
+
import { initialScanState } from '@/models/scanState';
|
|
64
|
+
import { GptService } from '@/services/gpt.service';
|
|
65
|
+
import { useViewer3cr } from '@/composables/useViewer3cr';
|
|
66
|
+
import { rgbaNormalizedToCss } from '@/functions/rgbaToCss';
|
|
67
|
+
import { AnnotationTreeViewItem } from '@/components/views/types/annotation-tree-view-item';
|
|
68
|
+
import { AnnotationTreeViewItemChildAction } from '@/components/views/types/annotation-tree-view-item-child-action';
|
|
69
|
+
import { AnnotationTreeViewItemChild } from '@/components/views/types/annotation-tree-view-item-child';
|
|
70
|
+
import { DataOverlayAnnotation } from '@/types/data-overlay-annotation';
|
|
71
|
+
import { DataOverlayData } from '@/types/data-overlay-data';
|
|
72
|
+
import { GptResponsePayload } from '@/types/gpt-response-payload';
|
|
73
|
+
import { GptQuestion } from '@/types/gpt-question';
|
|
74
|
+
|
|
75
|
+
interface Props {
|
|
76
|
+
items: DataOverlayData<DataOverlayAnnotation>[];
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const props = withDefaults(defineProps<Props>(), {
|
|
80
|
+
items: () => []
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
const viewer3cr = useViewer3cr();
|
|
84
|
+
const data = ref<AnnotationTreeViewItem[]>([]);
|
|
85
|
+
const aiData = ref<Record<string, GptResponsePayload>>({});
|
|
86
|
+
const m_askAi = ref<boolean>(false);
|
|
87
|
+
const questionKey = ref<number>(0);
|
|
88
|
+
const questionText = ref<string>('');
|
|
89
|
+
const title = ref<string>('');
|
|
90
|
+
|
|
91
|
+
function setTreeViewData(annotations: DataOverlayData<DataOverlayAnnotation>[]): void {
|
|
92
|
+
data.value = annotations
|
|
93
|
+
.sort((a, b) => a.Data.Title.localeCompare(b.Data.Title))
|
|
94
|
+
.map((annotation) => mapToTreeViewItem(annotation));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
watch(
|
|
98
|
+
() => props.items,
|
|
99
|
+
async (items) => {
|
|
100
|
+
await generateAiData(items);
|
|
101
|
+
setTreeViewData(items);
|
|
102
|
+
},
|
|
103
|
+
{ immediate: true }
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
async function selectAction(action: AnnotationTreeViewItemChildAction): Promise<void> {
|
|
107
|
+
questionKey.value = Number(action.url);
|
|
108
|
+
questionText.value = action.description;
|
|
109
|
+
title.value = action.title;
|
|
110
|
+
m_askAi.value = true;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
async function askFollowUpQuestion(question: GptQuestion): Promise<void> {
|
|
114
|
+
m_askAi.value = false;
|
|
115
|
+
await nextTick();
|
|
116
|
+
questionKey.value = question.ApiPreFilledRequestKey;
|
|
117
|
+
questionText.value = question.Question;
|
|
118
|
+
m_askAi.value = true;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
async function toggleVisibility(annotation: AnnotationTreeViewItem): Promise<void> {
|
|
122
|
+
const value = { Id: annotation.id, Visibility: !annotation.isVisible };
|
|
123
|
+
await viewer3cr.toggle2dAnnotation(value);
|
|
124
|
+
await viewer3cr.toggle3dAnnotation(value);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function getColor(annotation: AnnotationTreeViewItem): string {
|
|
128
|
+
const { r, g, b, a } = annotation.colour;
|
|
129
|
+
return rgbaNormalizedToCss(r + 0.2, g + 0.2, b + 0.2, a - 0.2);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
function mapToTreeViewItem(data: DataOverlayData<DataOverlayAnnotation>): AnnotationTreeViewItem {
|
|
133
|
+
return {
|
|
134
|
+
id: data.Data.Id,
|
|
135
|
+
title: data.Data.Title,
|
|
136
|
+
icon: data.Data.Icon2d,
|
|
137
|
+
isVisible: !!data.Data.Visibility2d && !!data.Data.Visibility3d,
|
|
138
|
+
colour: {
|
|
139
|
+
r: data.Data.Colour2d.R,
|
|
140
|
+
g: data.Data.Colour2d.G,
|
|
141
|
+
b: data.Data.Colour2d.B,
|
|
142
|
+
a: data.Data.Colour2d.A
|
|
143
|
+
},
|
|
144
|
+
position: {
|
|
145
|
+
x: data.Data.Position.X,
|
|
146
|
+
y: data.Data.Position.Y,
|
|
147
|
+
z: data.Data.Position.Z
|
|
148
|
+
},
|
|
149
|
+
children: mapToTreeViewItemChild(data)
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
function mapToTreeViewItemChild(data: DataOverlayData<DataOverlayAnnotation>): AnnotationTreeViewItemChild[] {
|
|
154
|
+
return [
|
|
155
|
+
{
|
|
156
|
+
props: {
|
|
157
|
+
key: data.Data.Description ? 'Description' : 'Smart Description',
|
|
158
|
+
value: data.Data.Description || aiData.value[data.Data.Title]?.GptResponse || '',
|
|
159
|
+
actions: []
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
props: {
|
|
164
|
+
key: 'Resources',
|
|
165
|
+
value: '',
|
|
166
|
+
actions:
|
|
167
|
+
data.Data.CallToAction?.Actions.map((action) => ({
|
|
168
|
+
title: '',
|
|
169
|
+
description: action.ActionData.Description,
|
|
170
|
+
url: action.ActionData.Url,
|
|
171
|
+
isBtn: false
|
|
172
|
+
})) ?? []
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
props: {
|
|
177
|
+
key: 'Annotiva AI',
|
|
178
|
+
value: '',
|
|
179
|
+
actions:
|
|
180
|
+
aiData.value[data.Data.Title]?.FollowupQuestions.map((question) => ({
|
|
181
|
+
title: data.Data.Title,
|
|
182
|
+
description: question.Question,
|
|
183
|
+
url: question.ApiPreFilledRequestKey.toString(),
|
|
184
|
+
isBtn: true
|
|
185
|
+
})) ?? []
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
];
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
async function generateAiData(data: DataOverlayData<DataOverlayAnnotation>[]): Promise<void> {
|
|
192
|
+
await Promise.all(
|
|
193
|
+
data.map(async (d) => {
|
|
194
|
+
const key = d.Data.Title;
|
|
195
|
+
if (!(key in aiData.value)) {
|
|
196
|
+
aiData.value[key] = await GptService.Instantiate()
|
|
197
|
+
.GenerateAnnotations(key)
|
|
198
|
+
.then((data) => data.data)
|
|
199
|
+
.catch(() => ({ GptResponse: 'failed to execute', FollowupQuestions: [] }));
|
|
200
|
+
}
|
|
201
|
+
})
|
|
202
|
+
);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
async function focusSlices(value: { id: unknown; value: boolean }): Promise<void> {
|
|
206
|
+
const item = data.value.find((annotation) => annotation.id === value.id);
|
|
207
|
+
if (value.value && item) {
|
|
208
|
+
const sagittal = Math.round(item.position.x / (initialScanState.value.XSpacing || 1));
|
|
209
|
+
const transverse = Math.round(item.position.y / (initialScanState.value.YSpacing || 1));
|
|
210
|
+
const coronal = Math.round(item.position.z / (initialScanState.value.ZSpacing || 1));
|
|
211
|
+
|
|
212
|
+
await viewer3cr.sliderHandler(SlidersActions.sl12, sagittal);
|
|
213
|
+
await viewer3cr.sliderHandler(SlidersActions.sl09, coronal);
|
|
214
|
+
await viewer3cr.sliderHandler(SlidersActions.sl15, transverse);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
</script>
|
|
218
|
+
|
|
219
|
+
<style lang="scss">
|
|
220
|
+
.annotation-treeview {
|
|
221
|
+
font-size: 12px;
|
|
222
|
+
|
|
223
|
+
.v-list-group ~ .v-list-group {
|
|
224
|
+
border-top: thin solid rgb(100%, 100%, 100%, var(--v-border-opacity));
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.v-chip.action {
|
|
228
|
+
text-wrap: wrap;
|
|
229
|
+
word-wrap: break-word;
|
|
230
|
+
min-height: 42px;
|
|
231
|
+
line-height: 14px !important;
|
|
232
|
+
height: unset;
|
|
233
|
+
padding: 4px 8px;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
</style>
|