diff --git a/README.md b/README.md index 0de590f74..f861a4803 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@

OHIF Medical Imaging Viewer

-

The OHIF Viewer is a zero-footprint medical image viewer provided by the Open Health Imaging Foundation (OHIF). It is a configurable and extensible progressive web application with out-of-the-box support for image archives which support DICOMweb.

+

The OHIF Viewer is a zero-footprint medical image viewer +provided by the Open Health Imaging Foundation (OHIF). It is a configurable and extensible progressive web application with out-of-the-box support for image archives which support DICOMweb.

diff --git a/extensions/cornerstone-dicom-seg/src/utils/_hydrateSEG.ts b/extensions/cornerstone-dicom-seg/src/utils/_hydrateSEG.ts index 343f583b1..f6b1522be 100644 --- a/extensions/cornerstone-dicom-seg/src/utils/_hydrateSEG.ts +++ b/extensions/cornerstone-dicom-seg/src/utils/_hydrateSEG.ts @@ -31,8 +31,6 @@ async function _hydrateSEGDisplaySet({ displaySetInstanceUID ); - viewportGridService.setDisplaySetsForViewports(updatedViewports); - // Todo: fix this after we have a better way for stack viewport segmentations // check every viewport in the viewports to see if the displaySetInstanceUID @@ -50,7 +48,7 @@ async function _hydrateSEGDisplaySet({ ); if (shouldDisplaySeg) { - viewportGridService.setDisplaySetsForViewport({ + updatedViewports.push({ viewportIndex: index, displaySetInstanceUIDs: viewport.displaySetInstanceUIDs, viewportOptions: { @@ -62,6 +60,9 @@ async function _hydrateSEGDisplaySet({ } }); + // Do the entire update at once + viewportGridService.setDisplaySetsForViewports(updatedViewports); + return true; } diff --git a/extensions/cornerstone-dicom-sr/package.json b/extensions/cornerstone-dicom-sr/package.json index ab7ddb077..923385eda 100644 --- a/extensions/cornerstone-dicom-sr/package.json +++ b/extensions/cornerstone-dicom-sr/package.json @@ -45,8 +45,8 @@ "dependencies": { "@babel/runtime": "^7.20.13", "classnames": "^2.3.2", - "@cornerstonejs/adapters": "^0.4.1", - "@cornerstonejs/core": "^0.33.2", - "@cornerstonejs/tools": "^0.50.2" + "@cornerstonejs/adapters": "^0.6.0", + "@cornerstonejs/core": "^0.40.0", + "@cornerstonejs/tools": "^0.60.1" } } diff --git a/extensions/cornerstone-dicom-sr/src/utils/getFilteredCornerstoneToolState.ts b/extensions/cornerstone-dicom-sr/src/utils/getFilteredCornerstoneToolState.ts index 9cef86345..18c5b8465 100644 --- a/extensions/cornerstone-dicom-sr/src/utils/getFilteredCornerstoneToolState.ts +++ b/extensions/cornerstone-dicom-sr/src/utils/getFilteredCornerstoneToolState.ts @@ -35,7 +35,7 @@ function getFilteredCornerstoneToolState( ); const toolData = imageIdSpecificToolState[toolType].data; - let finding; + let { finding } = measurementDataI; const findingSites = []; // NOTE -> We use the CORNERSTONEJS coding schemeDesignator which we have @@ -56,6 +56,10 @@ function getFilteredCornerstoneToolState( } } + if (measurementDataI.findingSites) { + findingSites.push(...measurementDataI.findingSites); + } + const measurement = Object.assign({}, annotation, { finding, findingSites, @@ -73,7 +77,7 @@ function getFilteredCornerstoneToolState( for (let i = 0; i < framesOfReference.length; i++) { const frameOfReference = framesOfReference[i]; - const frameOfReferenceAnnotations = annotationManager.getFrameOfReferenceAnnotations( + const frameOfReferenceAnnotations = annotationManager.getAnnotations( frameOfReference ); diff --git a/extensions/cornerstone-dicom-sr/src/utils/hydrateStructuredReport.js b/extensions/cornerstone-dicom-sr/src/utils/hydrateStructuredReport.js index bb1246e5c..346bfc5db 100644 --- a/extensions/cornerstone-dicom-sr/src/utils/hydrateStructuredReport.js +++ b/extensions/cornerstone-dicom-sr/src/utils/hydrateStructuredReport.js @@ -11,6 +11,25 @@ const CORNERSTONE_3D_TOOLS_SOURCE_VERSION = '0.1'; const supportedLegacyCornerstoneTags = ['cornerstoneTools@^4.0.0']; +const convertCode = (codingValues, code) => { + if (!code || code.CodingSchemeDesignator === 'CORNERSTONEJS') return; + const ref = `${code.CodingSchemeDesignator}:${code.CodeValue}`; + const ret = { ...codingValues[ref], ref, ...code, text: code.CodeMeaning }; + return ret; +}; + +const convertSites = (codingValues, sites) => { + if (!sites || !sites.length) return; + const ret = []; + // Do as a loop to convert away from Proxy instances + for (let i = 0; i < sites.length; i++) { + // Deal with irregular conversion from dcmjs + const site = convertCode(codingValues, sites[i][0] || sites[i]); + if (site) ret.push(site); + } + return (ret.length && ret) || undefined; +}; + /** * Hydrates a structured report, for default viewports. * @@ -20,8 +39,16 @@ export default function hydrateStructuredReport( displaySetInstanceUID ) { const dataSource = extensionManager.getActiveDataSource()[0]; - const { measurementService, displaySetService } = servicesManager.services; + const { + measurementService, + displaySetService, + customizationService, + } = servicesManager.services; + const codingValues = customizationService.getCustomization( + 'codingValues', + {} + ); const displaySet = displaySetService.getDisplaySetByUID( displaySetInstanceUID ); @@ -171,6 +198,15 @@ export default function hydrateStructuredReport( CORNERSTONE_3D_TOOLS_SOURCE_VERSION ); annotation.data.label = getLabelFromDCMJSImportedToolData(toolData); + annotation.data.finding = convertCode( + codingValues, + toolData.finding?.[0] + ); + annotation.data.findingSites = convertSites( + codingValues, + toolData.findingSites + ); + annotation.data.site = annotation.data.findingSites?.[0]; const matchingMapping = mappings.find( m => m.annotationType === annotationType diff --git a/extensions/cornerstone-dicom-sr/src/viewports/OHIFCornerstoneSRViewport.tsx b/extensions/cornerstone-dicom-sr/src/viewports/OHIFCornerstoneSRViewport.tsx index 61068726c..c16b6a334 100644 --- a/extensions/cornerstone-dicom-sr/src/viewports/OHIFCornerstoneSRViewport.tsx +++ b/extensions/cornerstone-dicom-sr/src/viewports/OHIFCornerstoneSRViewport.tsx @@ -1,7 +1,7 @@ import PropTypes from 'prop-types'; import React, { useCallback, useContext, useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; -import OHIF, { utils } from '@ohif/core'; +import OHIF, { utils, ServicesManager, ExtensionManager } from '@ohif/core'; import { setTrackingUniqueIdentifiersForElement } from '../tools/modules/dicomSRModule'; import { @@ -27,6 +27,7 @@ function OHIFCornerstoneSRViewport(props) { dataSource, displaySets, viewportIndex, + viewportOptions, viewportLabel, servicesManager, extensionManager, @@ -215,6 +216,7 @@ function OHIFCornerstoneSRViewport(props) { // override the activeImageDisplaySetData displaySets={[activeImageDisplaySetData]} viewportOptions={{ + ...viewportOptions, toolGroupId: `${SR_TOOLGROUP_BASE_NAME}`, }} onElementEnabled={onElementEnabled} @@ -419,6 +421,9 @@ OHIFCornerstoneSRViewport.propTypes = { dataSource: PropTypes.object, children: PropTypes.node, customProps: PropTypes.object, + viewportOptions: PropTypes.object, + servicesManager: PropTypes.instanceOf(ServicesManager).isRequired, + extensionManager: PropTypes.instanceOf(ExtensionManager).isRequired, }; OHIFCornerstoneSRViewport.defaultProps = { diff --git a/extensions/cornerstone/package.json b/extensions/cornerstone/package.json index b981ec98c..2eab62700 100644 --- a/extensions/cornerstone/package.json +++ b/extensions/cornerstone/package.json @@ -29,7 +29,7 @@ "peerDependencies": { "@ohif/core": "^3.0.0", "@ohif/ui": "^2.0.0", - "cornerstone-wado-image-loader": "^4.2.1", + "cornerstone-wado-image-loader": "^4.13.0", "dcmjs": "^0.29.4", "dicom-parser": "^1.8.9", "hammerjs": "^2.0.8", @@ -43,10 +43,10 @@ }, "dependencies": { "@babel/runtime": "^7.20.13", - "@cornerstonejs/adapters": "^0.4.1", - "@cornerstonejs/core": "^0.33.2", - "@cornerstonejs/streaming-image-volume-loader": "^0.14.1", - "@cornerstonejs/tools": "^0.50.2", + "@cornerstonejs/adapters": "^0.6.0", + "@cornerstonejs/core": "^0.40.0", + "@cornerstonejs/streaming-image-volume-loader": "^0.16.0", + "@cornerstonejs/tools": "^0.60.1", "@kitware/vtk.js": "26.5.6", "html2canvas": "^1.4.1", "lodash.debounce": "4.0.8", diff --git a/extensions/cornerstone/src/Viewport/OHIFCornerstoneViewport.tsx b/extensions/cornerstone/src/Viewport/OHIFCornerstoneViewport.tsx index e1a6bbb1b..83d012ef2 100644 --- a/extensions/cornerstone/src/Viewport/OHIFCornerstoneViewport.tsx +++ b/extensions/cornerstone/src/Viewport/OHIFCornerstoneViewport.tsx @@ -128,6 +128,7 @@ const OHIFCornerstoneViewport = React.memo(props => { cornerstoneViewportService, cornerstoneCacheService, viewportGridService, + stateSyncService, } = servicesManager.services; const cineHandler = () => { @@ -211,6 +212,33 @@ const OHIFCornerstoneViewport = React.memo(props => { } }, [elementRef]); + const storePresentation = () => { + const currentPresentation = cornerstoneViewportService.getPresentation( + viewportIndex + ); + if (!currentPresentation || !currentPresentation.presentationIds) return; + const { + lutPresentationStore, + positionPresentationStore, + } = stateSyncService.getState(); + const { presentationIds } = currentPresentation; + const { lutPresentationId, positionPresentationId } = presentationIds || {}; + const storeState = {}; + if (lutPresentationId) { + storeState.lutPresentationStore = { + ...lutPresentationStore, + [lutPresentationId]: currentPresentation, + }; + } + if (positionPresentationId) { + storeState.positionPresentationStore = { + ...positionPresentationStore, + [positionPresentationId]: currentPresentation, + }; + } + stateSyncService.store(storeState); + }; + const cleanUpServices = useCallback(() => { const viewportInfo = cornerstoneViewportService.getViewportInfoByIndex( viewportIndex @@ -288,6 +316,8 @@ const OHIFCornerstoneViewport = React.memo(props => { setImageScrollBarHeight(); return () => { + storePresentation(); + cleanUpServices(); cornerstoneViewportService.disableElement(viewportIndex); @@ -360,11 +390,26 @@ const OHIFCornerstoneViewport = React.memo(props => { initialImageIndex ); + storePresentation(); + + const { + lutPresentationStore, + positionPresentationStore, + } = stateSyncService.getState(); + const { presentationIds } = viewportOptions; + const presentations = { + positionPresentation: + positionPresentationStore[presentationIds?.positionPresentationId], + lutPresentation: + lutPresentationStore[presentationIds?.lutPresentationId], + }; + cornerstoneViewportService.setViewportData( viewportIndex, viewportData, viewportOptions, - displaySetOptions + displaySetOptions, + presentations ); }; diff --git a/extensions/cornerstone/src/Viewport/Overlays/CustomizableViewportOverlay.tsx b/extensions/cornerstone/src/Viewport/Overlays/CustomizableViewportOverlay.tsx index 38f1d206a..bf7665200 100644 --- a/extensions/cornerstone/src/Viewport/Overlays/CustomizableViewportOverlay.tsx +++ b/extensions/cornerstone/src/Viewport/Overlays/CustomizableViewportOverlay.tsx @@ -117,8 +117,11 @@ function CustomizableViewportOverlay({ viewportIndex, servicesManager, }) { - const { toolbarService, cornerstoneViewportService, customizationService } = - servicesManager.services; + const { + toolbarService, + cornerstoneViewportService, + customizationService, + } = servicesManager.services; const [voi, setVOI] = useState({ windowCenter: null, windowWidth: null }); const [scale, setScale] = useState(1); const [activeTools, setActiveTools] = useState([]); @@ -202,10 +205,9 @@ function CustomizableViewportOverlay({ previousCamera.parallelScale !== camera.parallelScale || previousCamera.scale !== camera.scale ) { - const viewport = - cornerstoneViewportService.getCornerstoneViewportByIndex( - viewportIndex - ); + const viewport = cornerstoneViewportService.getCornerstoneViewportByIndex( + viewportIndex + ); if (!viewport) { return; @@ -283,7 +285,7 @@ function CustomizableViewportOverlay({ } else if (item.customizationType === 'ohif.overlayItem.instanceNumber') { return ; } else { - const renderItem = customizationService.applyType(item); + const renderItem = customizationService.transform(item); if (typeof renderItem.content === 'function') { return renderItem.content(overlayItemProps); @@ -450,8 +452,9 @@ function _getInstanceNumberFromVolume( const volume = volumes[0]; const { direction, imageIds } = volume; - const cornerstoneViewport = - cornerstoneViewportService.getCornerstoneViewportByIndex(viewportIndex); + const cornerstoneViewport = cornerstoneViewportService.getCornerstoneViewportByIndex( + viewportIndex + ); if (!cornerstoneViewport) { return; diff --git a/extensions/cornerstone/src/Viewport/Overlays/ViewportOrientationMarkers.tsx b/extensions/cornerstone/src/Viewport/Overlays/ViewportOrientationMarkers.tsx index c974bce45..8e431ac52 100644 --- a/extensions/cornerstone/src/Viewport/Overlays/ViewportOrientationMarkers.tsx +++ b/extensions/cornerstone/src/Viewport/Overlays/ViewportOrientationMarkers.tsx @@ -118,6 +118,10 @@ function ViewportOrientationMarkers({ viewportIndex ); + if (!ohifViewport) { + console.log('ViewportOrientationMarkers::No viewport'); + return null; + } const backgroundColor = ohifViewport.getViewportOptions().background; // Todo: probably this can be done in a better way in which we identify bright diff --git a/extensions/cornerstone/src/commandsModule.ts b/extensions/cornerstone/src/commandsModule.ts index 45726c0bb..4d1948de8 100644 --- a/extensions/cornerstone/src/commandsModule.ts +++ b/extensions/cornerstone/src/commandsModule.ts @@ -15,11 +15,11 @@ import { ServicesManager } from '@ohif/core'; import CornerstoneViewportDownloadForm from './utils/CornerstoneViewportDownloadForm'; import callInputDialog from './utils/callInputDialog'; import { setColormap } from './utils/colormap/transferFunctionHelpers'; -import toggleMPRHangingProtocol from './utils/mpr/toggleMPRHangingProtocol'; import toggleStackImageSync from './utils/stackSync/toggleStackImageSync'; +import { getFirstAnnotationSelected } from './utils/measurementServiceMappings/utils/selection'; import getActiveViewportEnabledElement from './utils/getActiveViewportEnabledElement'; -const commandsModule = ({ servicesManager }) => { +function commandsModule({ servicesManager, commandsManager }) { const { viewportGridService, toolGroupService, @@ -27,10 +27,14 @@ const commandsModule = ({ servicesManager }) => { toolbarService, uiDialogService, cornerstoneViewportService, - hangingProtocolService, uiNotificationService, + customizationService, + measurementService, + hangingProtocolService, } = (servicesManager as ServicesManager).services; + const { measurementServiceSource } = this; + function _getActiveViewportEnabledElement() { return getActiveViewportEnabledElement(viewportGridService); } @@ -70,9 +74,165 @@ const commandsModule = ({ servicesManager }) => { } const actions = { - getActiveViewportEnabledElement: () => { - return _getActiveViewportEnabledElement(); + /** + * Generates the selector props for the context menu, specific to + * the cornerstone viewport, and then runs the context menu. + */ + showCornerstoneContextMenu: options => { + const element = _getActiveViewportEnabledElement()?.viewport?.element; + + const optionsToUse = { ...options, element }; + const { useSelectedAnnotation, nearbyToolData, event } = optionsToUse; + + // This code is used to invoke the context menu via keyboard shortcuts + if (useSelectedAnnotation && !nearbyToolData) { + const firstAnnotationSelected = getFirstAnnotationSelected(element); + // filter by allowed selected tools from config property (if there is any) + const isToolAllowed = + !optionsToUse.allowedSelectedTools || + optionsToUse.allowedSelectedTools.includes( + firstAnnotationSelected?.metadata?.toolName + ); + if (isToolAllowed) { + optionsToUse.nearbyToolData = firstAnnotationSelected; + } else { + return; + } + } + + optionsToUse.defaultPointsPosition = []; + // if (optionsToUse.nearbyToolData) { + // optionsToUse.defaultPointsPosition = commandsManager.runCommand( + // 'getToolDataActiveCanvasPoints', + // { toolData: optionsToUse.nearbyToolData } + // ); + // } + + // TODO - make the selectorProps richer by including the study metadata and display set. + optionsToUse.selectorProps = { + toolName: optionsToUse.nearbyToolData?.metadata?.toolName, + value: optionsToUse.nearbyToolData, + uid: optionsToUse.nearbyToolData?.annotationUID, + nearbyToolData: optionsToUse.nearbyToolData, + event, + ...optionsToUse.selectorProps, + }; + + commandsManager.run(options, optionsToUse); }, + + getNearbyToolData({ nearbyToolData, element, canvasCoordinates }) { + return ( + nearbyToolData ?? + cstUtils.getAnnotationNearPoint(element, canvasCoordinates) + ); + }, + + // Measurement tool commands: + + /** Delete the given measurement */ + deleteMeasurement: ({ uid }) => { + if (uid) { + measurementServiceSource.remove(uid); + } + }, + + /** + * Show the measurement labelling input dialog and update the label + * on the measurement with a response if not cancelled. + */ + setMeasurementLabel: ({ uid }) => { + const measurement = measurementService.getMeasurement(uid); + + callInputDialog( + uiDialogService, + measurement, + (label, actionId) => { + if (actionId === 'cancel') { + return; + } + + const updatedMeasurement = Object.assign({}, measurement, { + label, + }); + + measurementService.update( + updatedMeasurement.uid, + updatedMeasurement, + true + ); + }, + false + ); + }, + + /** + * + * @param props - containing the updates to apply + * @param props.measurementKey - chooses the measurement key to apply the + * code to. This will typically be finding or site to apply a + * finind code or a findingSites code. + * @param props.code - A coding scheme value from DICOM, including: + * * CodeValue - the language independent code, for example '1234' + * * CodingSchemeDesignator - the issue of the code value + * * CodeMeaning - the text value shown to the user + * * ref - a string reference in the form `:` + * * Other fields + * Note it is a valid option to remove the finding or site values by + * supplying null for the code. + * @param props.uid - the measurement UID to find it with + * @param props.label - the text value for the code. Has NOTHING to do with + * the measurement label, which can be set with textLabel + * @param props.textLabel is the measurement label to apply. Set to null to + * delete. + * + * If the measurementKey is `site`, then the code will also be added/replace + * the 0 element of findingSites. This behaviour is expected to be enhanced + * in the future with ability to set other site information. + */ + updateMeasurement: props => { + const { code, uid, textLabel, label } = props; + const measurement = measurementService.getMeasurement(uid); + const updatedMeasurement = { + ...measurement, + }; + // Call it textLabel as the label value + // TODO - remove the label setting when direct rendering of findingSites is enabled + if (textLabel !== undefined) { + updatedMeasurement.label = textLabel; + } + if (code !== undefined) { + const measurementKey = code.type || 'finding'; + + if (code.ref && !code.CodeValue) { + const split = code.ref.indexOf(':'); + code.CodeValue = code.ref.substring(split + 1); + code.CodeMeaning = code.text || label; + code.CodingSchemeDesignator = code.ref.substring(0, split); + } + updatedMeasurement[measurementKey] = code; + // TODO - remove this line once the measurements table customizations are in + if (measurementKey !== 'finding') { + if (updatedMeasurement.findingSites) { + updatedMeasurement.findingSites = updatedMeasurement.findingSites.filter( + it => it.type !== measurementKey + ); + updatedMeasurement.findingSites.push(code); + } else { + updatedMeasurement.findingSites = [code]; + } + } + } + measurementService.update( + updatedMeasurement.uid, + updatedMeasurement, + true + ); + }, + + // Retrieve value commands + getActiveViewportEnabledElement: _getActiveViewportEnabledElement, + setViewportActive: ({ viewportId }) => { const viewportInfo = cornerstoneViewportService.getViewportInfo( viewportId @@ -128,6 +288,14 @@ const commandsModule = ({ servicesManager }) => { }); viewport.render(); }, + + // Just call the toolbar service record interaction - allows + // executing a toolbar command as a full toolbar command with side affects + // coming from the ToolbarService itself. + toolbarServiceRecordInteraction: props => { + toolbarService.recordInteraction(props); + }, + setToolActive: ({ toolName, toolGroupId = null }) => { if (toolName === 'Crosshairs') { const activeViewportToolGroup = _getToolGroup(null); @@ -150,7 +318,7 @@ const commandsModule = ({ servicesManager }) => { }; const toolGroup = _getToolGroup(toolGroupId); - const toolGroupViewportIds = toolGroup.getViewportIds(); + const toolGroupViewportIds = toolGroup?.getViewportIds?.(); // if toolGroup has been destroyed, or its viewports have been removed if (!toolGroupViewportIds || !toolGroupViewportIds.length) { @@ -171,6 +339,17 @@ const commandsModule = ({ servicesManager }) => { return; } + if (!toolGroup.getToolInstance(toolName)) { + uiNotificationService.show({ + title: `${toolName} tool`, + message: `The ${toolName} tool is not available in this viewport.`, + type: 'info', + duration: 3000, + }); + + throw new Error(`ToolGroup ${toolGroup.id} does not have this tool.`); + } + const activeToolName = toolGroup.getActivePrimaryMouseButtonTool(); if (activeToolName) { @@ -404,16 +583,6 @@ const commandsModule = ({ servicesManager }) => { (activeViewportIndex - 1 + viewports.length) % viewports.length; viewportGridService.setActiveViewportIndex(nextViewportIndex); }, - setHangingProtocol: ({ protocolId }) => { - hangingProtocolService.setProtocol(protocolId); - }, - toggleMPR: ({ toggledState }) => { - toggleMPRHangingProtocol({ - toggledState, - servicesManager, - getToolGroup: _getToolGroup, - }); - }, toggleStackImageSync: ({ toggledState }) => { toggleStackImageSync({ getEnabledElement, @@ -446,11 +615,53 @@ const commandsModule = ({ servicesManager }) => { }; const definitions = { + // The command here is to show the viewer context menu, as being the + // context menu + showCornerstoneContextMenu: { + commandFn: actions.showCornerstoneContextMenu, + storeContexts: [], + options: { + menuCustomizationId: 'measurementsContextMenu', + commands: [ + { + commandName: 'showContextMenu', + }, + ], + }, + }, + + getNearbyToolData: { + commandFn: actions.getNearbyToolData, + storeContexts: [], + options: {}, + }, + + deleteMeasurement: { + commandFn: actions.deleteMeasurement, + storeContexts: [], + options: {}, + }, + setMeasurementLabel: { + commandFn: actions.setMeasurementLabel, + storeContexts: [], + options: {}, + }, + updateMeasurement: { + commandFn: actions.updateMeasurement, + storeContexts: [], + options: {}, + }, + setWindowLevel: { commandFn: actions.setWindowLevel, storeContexts: [], options: {}, }, + toolbarServiceRecordInteraction: { + commandFn: actions.toolbarServiceRecordInteraction, + storeContexts: [], + options: {}, + }, setToolActive: { commandFn: actions.setToolActive, storeContexts: [], @@ -554,16 +765,6 @@ const commandsModule = ({ servicesManager }) => { storeContexts: [], options: {}, }, - setHangingProtocol: { - commandFn: actions.setHangingProtocol, - storeContexts: [], - options: {}, - }, - toggleMPR: { - commandFn: actions.toggleMPR, - storeContexts: [], - options: {}, - }, toggleStackImageSync: { commandFn: actions.toggleStackImageSync, storeContexts: [], @@ -581,6 +782,6 @@ const commandsModule = ({ servicesManager }) => { definitions, defaultContext: 'CORNERSTONE', }; -}; +} export default commandsModule; diff --git a/extensions/cornerstone/src/getHangingProtocolModule.ts b/extensions/cornerstone/src/getHangingProtocolModule.ts index c13a45d50..2c21e0ab1 100644 --- a/extensions/cornerstone/src/getHangingProtocolModule.ts +++ b/extensions/cornerstone/src/getHangingProtocolModule.ts @@ -1,16 +1,46 @@ -const mpr = { - id: 'mpr', +import { Types } from '@ohif/core'; + +const mpr: Types.HangingProtocol.Protocol = { locked: true, hasUpdatedPriorsInformation: false, name: 'mpr', createdDate: '2021-02-23T19:22:08.894Z', - modifiedDate: '2022-10-04T19:22:08.894Z', + modifiedDate: '2023-02-17', availableTo: {}, editableBy: {}, + // Unknown number of priors referenced - so just match any study + numberOfPriorsReferenced: 0, protocolMatchingRules: [], imageLoadStrategy: 'nth', + callbacks: { + // Switches out of MPR mode when the layout change button is used + onLayoutChange: [ + { + commandName: 'toggleHangingProtocol', + commandOptions: { protocolId: 'mpr' }, + context: 'DEFAULT', + }, + ], + // Turns off crosshairs when switching out of MPR mode + onProtocolExit: [ + { + commandName: 'toolbarServiceRecordInteraction', + commandOptions: { + interactionType: 'tool', + commands: [ + { + commandOptions: { + toolName: 'WindowLevel', + }, + context: 'CORNERSTONE', + }, + ], + }, + }, + ], + }, displaySetSelectors: { - mprDisplaySet: { + activeDisplaySet: { seriesMatchingRules: [ { weight: 1, @@ -27,8 +57,7 @@ const mpr = { }, stages: [ { - id: 'mpr3Stage', - name: 'mpr', + name: 'MPR 1x3', viewportStructure: { layoutType: 'grid', properties: { @@ -74,6 +103,169 @@ const mpr = { }, ], }, + displaySets: [ + { + id: 'activeDisplaySet', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'mpr', + viewportType: 'volume', + orientation: 'sagittal', + initialImageOptions: { + preset: 'middle', + }, + syncGroups: [ + { + type: 'voi', + id: 'mpr', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'activeDisplaySet', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'mpr', + viewportType: 'volume', + orientation: 'coronal', + initialImageOptions: { + preset: 'middle', + }, + syncGroups: [ + { + type: 'voi', + id: 'mpr', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'activeDisplaySet', + }, + ], + }, + ], + }, + ], +}; + +const mprAnd3DVolumeViewport = { + id: 'mprAnd3DVolumeViewport', + locked: true, + hasUpdatedPriorsInformation: false, + name: 'mpr', + createdDate: '2023-03-15T10:29:44.894Z', + modifiedDate: '2023-03-15T10:29:44.894Z', + availableTo: {}, + editableBy: {}, + protocolMatchingRules: [], + imageLoadStrategy: 'interleaveCenter', + displaySetSelectors: { + mprDisplaySet: { + seriesMatchingRules: [ + { + weight: 1, + attribute: 'isReconstructable', + constraint: { + equals: { + value: true, + }, + }, + required: true, + }, + { + attribute: 'Modality', + constraint: { + equals: { + value: 'CT', + }, + }, + required: true, + }, + ], + }, + }, + stages: [ + { + id: 'mpr3Stage', + name: 'mpr', + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 2, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'mpr', + viewportType: 'volume', + orientation: 'axial', + initialImageOptions: { + preset: 'middle', + }, + syncGroups: [ + { + type: 'voi', + id: 'mpr', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'mprDisplaySet', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'volume3d', + viewportType: 'volume3d', + orientation: 'coronal', + customViewportProps: { + hideOverlays: true, + }, + }, + displaySets: [ + { + id: 'mprDisplaySet', + options: { + presetName: 'CT-Bone', + }, + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'mpr', + viewportType: 'volume', + orientation: 'coronal', + initialImageOptions: { + preset: 'middle', + }, + syncGroups: [ + { + type: 'voi', + id: 'mpr', + source: true, + target: true, + }, + ], + }, displaySets: [ { id: 'mprDisplaySet', @@ -103,29 +295,6 @@ const mpr = { }, ], }, - { - viewportOptions: { - toolGroupId: 'mpr', - viewportType: 'volume', - orientation: 'coronal', - initialImageOptions: { - preset: 'middle', - }, - syncGroups: [ - { - type: 'voi', - id: 'mpr', - source: true, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'mprDisplaySet', - }, - ], - }, ], }, ], @@ -134,9 +303,13 @@ const mpr = { function getHangingProtocolModule() { return [ { - id: 'mpr', + name: 'mpr', protocol: mpr, }, + { + name: mprAnd3DVolumeViewport.id, + protocol: mprAnd3DVolumeViewport, + }, ]; } diff --git a/extensions/cornerstone/src/index.tsx b/extensions/cornerstone/src/index.tsx index 5259b267c..f1ec22f16 100644 --- a/extensions/cornerstone/src/index.tsx +++ b/extensions/cornerstone/src/index.tsx @@ -10,7 +10,7 @@ import { Enums as cs3DToolsEnums } from '@cornerstonejs/tools'; import { Types } from '@ohif/core'; import init from './init'; -import commandsModule from './commandsModule'; +import getCommandsModule from './commandsModule'; import getHangingProtocolModule from './getHangingProtocolModule'; import ToolGroupService from './services/ToolGroupService'; import SyncGroupService from './services/SyncGroupService'; @@ -26,6 +26,7 @@ import { registerColormap } from './utils/colormap/transferFunctionHelpers'; import { id } from './id'; import * as csWADOImageLoader from './initWADOImageLoader.js'; import { measurementMappingUtils } from './utils/measurementServiceMappings'; +import { PublicViewportOptions } from './services/ViewportService/Viewport'; const Component = React.lazy(() => { return import( @@ -50,7 +51,7 @@ const cornerstoneExtension: Types.Extensions.Extension = { */ id, - onModeExit: () => { + onModeExit: (): void => { // Empty out the image load and retrieval pools to prevent memory leaks // on the mode exits Object.values(cs3DEnums.RequestType).forEach(type => { @@ -67,12 +68,10 @@ const cornerstoneExtension: Types.Extensions.Extension = { * * @param configuration.csToolsConfig - Passed directly to `initCornerstoneTools` */ - async preRegistration({ - servicesManager, - commandsManager, - configuration = {}, - appConfig, - }) { + preRegistration: function ( + props: Types.Extensions.ExtensionParams + ): Promise { + const { servicesManager } = props; // Todo: we should be consistent with how services get registered. Use REGISTRATION static method for all servicesManager.registerService( CornerstoneViewportService(servicesManager) @@ -86,20 +85,21 @@ const cornerstoneExtension: Types.Extensions.Extension = { CornerstoneCacheService.REGISTRATION(servicesManager) ); - await init({ servicesManager, commandsManager, configuration, appConfig }); + return init.call(this, props); }, + getHangingProtocolModule, getViewportModule({ servicesManager, commandsManager }) { const ExtendedOHIFCornerstoneViewport = props => { // const onNewImageHandler = jumpData => { // commandsManager.runCommand('jumpToImage', jumpData); // }; - const { ToolbarService } = servicesManager.services; + const { toolbarService } = (servicesManager as ServicesManager).services; return ( @@ -113,13 +113,7 @@ const cornerstoneExtension: Types.Extensions.Extension = { }, ]; }, - getCommandsModule({ servicesManager, commandsManager, extensionManager }) { - return commandsModule({ - servicesManager, - commandsManager, - extensionManager, - }); - }, + getCommandsModule, getUtilityModule({ servicesManager }) { return [ { @@ -150,5 +144,6 @@ const cornerstoneExtension: Types.Extensions.Extension = { }, }; -export default cornerstoneExtension; +export type { PublicViewportOptions }; export { measurementMappingUtils }; +export default cornerstoneExtension; diff --git a/extensions/cornerstone/src/init.tsx b/extensions/cornerstone/src/init.tsx index 8752baefe..27ca02ee7 100644 --- a/extensions/cornerstone/src/init.tsx +++ b/extensions/cornerstone/src/init.tsx @@ -1,6 +1,5 @@ import OHIF from '@ohif/core'; import React from 'react'; -import { ContextMenuMeasurements } from '@ohif/ui'; import * as cornerstone from '@cornerstonejs/core'; import * as cornerstoneTools from '@cornerstonejs/tools'; @@ -21,15 +20,12 @@ import initWADOImageLoader from './initWADOImageLoader'; import initCornerstoneTools from './initCornerstoneTools'; import { connectToolsToMeasurementService } from './initMeasurementService'; -import callInputDialog from './utils/callInputDialog'; import initCineService from './initCineService'; import interleaveCenterLoader from './utils/interleaveCenterLoader'; import nthLoader from './utils/nthLoader'; import interleaveTopToBottom from './utils/interleaveTopToBottom'; - -const cs3DToolsEvents = Enums.Events; - -let CONTEXT_MENU_OPEN = false; +import initContextMenu from './initContextMenu'; +import initDoubleClick from './initDoubleClick'; // TODO: Cypress tests are currently grabbing this from the window? window.cornerstone = cornerstone; @@ -42,11 +38,19 @@ export default async function init({ commandsManager, configuration, appConfig, -}) { +}: Types.Extensions.ExtensionParams): Promise { await cs3DInit(); // For debugging e2e tests that are failing on CI cornerstone.setUseCPURendering(Boolean(appConfig.useCPURendering)); + cornerstone.setConfiguration({ + ...cornerstone.getConfiguration(), + rendering: { + ...cornerstone.getConfiguration().rendering, + strictZSpacingForVolumeViewport: + appConfig.strictZSpacingForVolumeViewport, + }, + }); // For debugging large datasets const MAX_CACHE_SIZE_1GB = 1073741824; @@ -65,6 +69,7 @@ export default async function init({ const { userAuthenticationService, measurementService, + customizationService, displaySetService, uiDialogService, uiModalService, @@ -74,6 +79,7 @@ export default async function init({ hangingProtocolService, toolGroupService, viewportGridService, + stateSyncService, } = servicesManager.services; window.services = servicesManager.services; @@ -97,6 +103,22 @@ export default async function init({ _showCPURenderingModal(uiModalService, hangingProtocolService); } + // Stores a map from `lutPresentationId` to a Presentation object so that + // an OHIFCornerstoneViewport can be redisplayed with the same LUT + stateSyncService.register('lutPresentationStore', { clearOnModeExit: true }); + + // Stores a map from `positionPresentationId` to a Presentation object so that + // an OHIFCornerstoneViewport can be redisplayed with the same position + stateSyncService.register('positionPresentationStore', { + clearOnModeExit: true, + }); + + // Stores the entire ViewportGridService getState when toggling to one up + // (e.g. via a double click) so that it can be restored when toggling back. + stateSyncService.register('toggleOneUpViewportGridStore', { + clearOnModeExit: true, + }); + const labelmapRepresentation = cornerstoneTools.Enums.SegmentationRepresentations.Labelmap; @@ -144,118 +166,12 @@ export default async function init({ initWADOImageLoader(userAuthenticationService, appConfig); /* Measurement Service */ - const measurementServiceSource = connectToolsToMeasurementService( + this.measurementServiceSource = connectToolsToMeasurementService( servicesManager ); initCineService(cineService); - const _getDefaultPosition = event => ({ - x: (event && event.currentPoints.client[0]) || 0, - y: (event && event.currentPoints.client[1]) || 0, - }); - - const onRightClick = event => { - if (!uiDialogService) { - console.warn('Unable to show dialog; no UI Dialog Service available.'); - return; - } - - const onGetMenuItems = defaultMenuItems => { - const { element, currentPoints } = event.detail; - - const nearbyToolData = utilities.getAnnotationNearPoint( - element, - currentPoints.canvas - ); - - const menuItems = []; - if (nearbyToolData && nearbyToolData.metadata.toolName !== 'Crosshairs') { - defaultMenuItems.forEach(item => { - item.value = nearbyToolData; - item.element = element; - menuItems.push(item); - }); - } - - return menuItems; - }; - - CONTEXT_MENU_OPEN = true; - - uiDialogService.dismiss({ id: 'context-menu' }); - uiDialogService.create({ - id: 'context-menu', - isDraggable: false, - preservePosition: false, - defaultPosition: _getDefaultPosition(event.detail), - content: ContextMenuMeasurements, - onClickOutside: () => { - uiDialogService.dismiss({ id: 'context-menu' }); - CONTEXT_MENU_OPEN = false; - }, - contentProps: { - onGetMenuItems, - eventData: event.detail, - onDelete: item => { - const { annotationUID } = item.value; - - const uid = annotationUID; - // Sync'd w/ Measurement Service - if (uid) { - measurementServiceSource.remove(uid, { - element: item.element, - }); - } - CONTEXT_MENU_OPEN = false; - }, - onClose: () => { - CONTEXT_MENU_OPEN = false; - uiDialogService.dismiss({ id: 'context-menu' }); - }, - onSetLabel: item => { - const { annotationUID } = item.value; - - const measurement = measurementService.getMeasurement(annotationUID); - - callInputDialog( - uiDialogService, - measurement, - (label, actionId) => { - if (actionId === 'cancel') { - return; - } - - const updatedMeasurement = Object.assign({}, measurement, { - label, - }); - - measurementService.update( - updatedMeasurement.uid, - updatedMeasurement, - true - ); - }, - false - ); - - CONTEXT_MENU_OPEN = false; - }, - }, - }); - }; - - const resetContextMenu = () => { - if (!uiDialogService) { - console.warn('Unable to show dialog; no UI Dialog Service available.'); - return; - } - - CONTEXT_MENU_OPEN = false; - - uiDialogService.dismiss({ id: 'context-menu' }); - }; - // When a custom image load is performed, update the relevant viewports hangingProtocolService.subscribe( hangingProtocolService.EVENTS.CUSTOM_IMAGE_LOAD_PERFORMED, @@ -266,32 +182,41 @@ export default async function init({ viewportId ); + const ohifViewport = cornerstoneViewportService.getViewportInfo( + viewportId + ); + + const { + lutPresentationStore, + positionPresentationStore, + } = stateSyncService.getState(); + const { presentationIds } = ohifViewport.getViewportOptions(); + const presentations = { + positionPresentation: + positionPresentationStore[presentationIds?.positionPresentationId], + lutPresentation: + lutPresentationStore[presentationIds?.lutPresentationId], + }; + cornerstoneViewportService.setVolumesForViewport( viewport, - volumeInputArray + volumeInputArray, + presentations ); } } ); - /* - * Because click gives us the native "mouse up", buttons will always be `0` - * Need to fallback to event.which; - * - */ - const contextMenuHandleClick = evt => { - const mouseUpEvent = evt.detail.event; - const isRightClick = mouseUpEvent.which === 3; + initContextMenu({ + cornerstoneViewportService, + customizationService, + commandsManager, + }); - const clickMethodHandler = isRightClick ? onRightClick : resetContextMenu; - clickMethodHandler(evt); - }; - - // const cancelContextMenuIfOpen = evt => { - // if (CONTEXT_MENU_OPEN) { - // resetContextMenu(); - // } - // }; + initDoubleClick({ + customizationService, + commandsManager, + }); const newStackCallback = evt => { const { element } = evt.detail; @@ -326,12 +251,6 @@ export default async function init({ function elementEnabledHandler(evt) { const { element } = evt.detail; - - element.addEventListener( - cs3DToolsEvents.MOUSE_CLICK, - contextMenuHandleClick - ); - element.addEventListener(EVENTS.CAMERA_RESET, resetCrosshairs); eventTarget.addEventListener( @@ -343,11 +262,6 @@ export default async function init({ function elementDisabledHandler(evt) { const { element } = evt.detail; - element.removeEventListener( - cs3DToolsEvents.MOUSE_CLICK, - contextMenuHandleClick - ); - element.removeEventListener(EVENTS.CAMERA_RESET, resetCrosshairs); // TODO - consider removing the callback when all elements are gone @@ -369,8 +283,8 @@ export default async function init({ viewportGridService.subscribe( viewportGridService.EVENTS.ACTIVE_VIEWPORT_INDEX_CHANGED, - ({ viewportIndex }) => { - const viewportId = `viewport-${viewportIndex}`; + ({ viewportIndex, viewportId }) => { + viewportId = viewportId || `viewport-${viewportIndex}`; const toolGroup = toolGroupService.getToolGroupForViewport(viewportId); if (!toolGroup || !toolGroup._toolInstances?.['ReferenceLines']) { @@ -427,9 +341,9 @@ function _showCPURenderingModal(uiModalService, hangingProtocolService) { }; const { unsubscribe } = hangingProtocolService.subscribe( - hangingProtocolService.EVENTS.HANGING_PROTOCOL_APPLIED_FOR_VIEWPORT, - ({ progress }) => { - const done = callback(progress); + hangingProtocolService.EVENTS.PROTOCOL_CHANGED, + () => { + const done = callback(100); if (done) { unsubscribe(); diff --git a/extensions/cornerstone/src/initContextMenu.ts b/extensions/cornerstone/src/initContextMenu.ts new file mode 100644 index 000000000..c46e5053e --- /dev/null +++ b/extensions/cornerstone/src/initContextMenu.ts @@ -0,0 +1,107 @@ +import { eventTarget, EVENTS } from '@cornerstonejs/core'; +import { Enums } from '@cornerstonejs/tools'; +import { setEnabledElement } from './state'; +import { findNearbyToolData } from './utils/findNearbyToolData'; + +const cs3DToolsEvents = Enums.Events; + +const DEFAULT_CONTEXT_MENU_CLICKS = { + button1: { + commands: [ + { + commandName: 'closeContextMenu', + }, + ], + }, + button3: { + commands: [ + { + commandName: 'showCornerstoneContextMenu', + commandOptions: { + menuId: 'measurementsContextMenu', + }, + }, + ], + }, +}; + +/** + * Generates a name, consisting of: + * * alt when the alt key is down + * * ctrl when the cctrl key is down + * * shift when the shift key is down + * * 'button' followed by the button number (1 left, 3 right etc) + */ +function getEventName(evt) { + const button = evt.detail.event.which; + const nameArr = []; + if (evt.detail.event.altKey) nameArr.push('alt'); + if (evt.detail.event.ctrlKey) nameArr.push('ctrl'); + if (evt.detail.event.shiftKey) nameArr.push('shift'); + nameArr.push('button'); + nameArr.push(button); + return nameArr.join(''); +} + +function initContextMenu({ + cornerstoneViewportService, + customizationService, + commandsManager, +}): void { + /* + * Run the commands associated with the given button press, + * defaults on button1 and button2 + */ + const cornerstoneViewportHandleEvent = (name, evt) => { + const customizations = + customizationService.get('cornerstoneViewportClickCommands') || + DEFAULT_CONTEXT_MENU_CLICKS; + const toRun = customizations[name]; + console.log('initContextMenu::cornerstoneViewportHandleEvent', name, toRun); + const options = { + nearbyToolData: findNearbyToolData(commandsManager, evt), + event: evt, + }; + commandsManager.run(toRun, options); + }; + + const cornerstoneViewportHandleClick = evt => { + const name = getEventName(evt); + cornerstoneViewportHandleEvent(name, evt); + }; + + function elementEnabledHandler(evt) { + const { viewportId, element } = evt.detail; + const viewportInfo = cornerstoneViewportService.getViewportInfo(viewportId); + if (!viewportInfo) return; + const viewportIndex = viewportInfo.getViewportIndex(); + // TODO check update upstream + setEnabledElement(viewportIndex, element); + + element.addEventListener( + cs3DToolsEvents.MOUSE_CLICK, + cornerstoneViewportHandleClick + ); + } + + function elementDisabledHandler(evt) { + const { element } = evt.detail; + + element.removeEventListener( + cs3DToolsEvents.MOUSE_CLICK, + cornerstoneViewportHandleClick + ); + } + + eventTarget.addEventListener( + EVENTS.ELEMENT_ENABLED, + elementEnabledHandler.bind(null) + ); + + eventTarget.addEventListener( + EVENTS.ELEMENT_DISABLED, + elementDisabledHandler.bind(null) + ); +} + +export default initContextMenu; diff --git a/extensions/cornerstone/src/initCornerstoneTools.js b/extensions/cornerstone/src/initCornerstoneTools.js index 291e02924..2d305af8a 100644 --- a/extensions/cornerstone/src/initCornerstoneTools.js +++ b/extensions/cornerstone/src/initCornerstoneTools.js @@ -23,6 +23,7 @@ import { addTool, annotation, ReferenceLinesTool, + TrackballRotateTool, } from '@cornerstonejs/tools'; import CalibrationLineTool from './tools/CalibrationLineTool'; @@ -51,6 +52,7 @@ export default function initCornerstoneTools(configuration = {}) { addTool(SegmentationDisplayTool); addTool(ReferenceLinesTool); addTool(CalibrationLineTool); + addTool(TrackballRotateTool); // Modify annotation tools to use dashed lines on SR const annotationStyle = { @@ -90,6 +92,7 @@ const toolNames = { SegmentationDisplay: SegmentationDisplayTool.toolName, ReferenceLines: ReferenceLinesTool.toolName, CalibrationLine: CalibrationLineTool.toolName, + TrackballRotateTool: TrackballRotateTool.toolName, }; export { toolNames }; diff --git a/extensions/cornerstone/src/initDoubleClick.ts b/extensions/cornerstone/src/initDoubleClick.ts new file mode 100644 index 000000000..da8fb8fa4 --- /dev/null +++ b/extensions/cornerstone/src/initDoubleClick.ts @@ -0,0 +1,92 @@ +import { eventTarget, EVENTS } from '@cornerstonejs/core'; +import { Enums } from '@cornerstonejs/tools'; +import { CommandsManager, CustomizationService, Types } from '@ohif/core'; +import { findNearbyToolData } from './utils/findNearbyToolData'; + +const cs3DToolsEvents = Enums.Events; + +const DEFAULT_DOUBLE_CLICK = { + doubleClick: { + commandName: 'toggleOneUp', + commandOptions: {}, + }, +}; + +/** + * Generates a double click event name, consisting of: + * * alt when the alt key is down + * * ctrl when the cctrl key is down + * * shift when the shift key is down + * * 'doubleClick' + */ +function getDoubleClickEventName(evt: CustomEvent) { + const nameArr = []; + if (evt.detail.event.altKey) nameArr.push('alt'); + if (evt.detail.event.ctrlKey) nameArr.push('ctrl'); + if (evt.detail.event.shiftKey) nameArr.push('shift'); + nameArr.push('doubleClick'); + return nameArr.join(''); +} + +export type initDoubleClickArgs = { + customizationService: CustomizationService; + commandsManager: CommandsManager; +}; + +function initDoubleClick({ + customizationService, + commandsManager, +}: initDoubleClickArgs): void { + const cornerstoneViewportHandleDoubleClick = (evt: CustomEvent) => { + // Do not allow double click on a tool. + const nearbyToolData = findNearbyToolData(commandsManager, evt); + if (nearbyToolData) { + return; + } + + const eventName = getDoubleClickEventName(evt); + + // Allows for the customization of the double click on a viewport. + const customizations = + customizationService.get('cornerstoneViewportClickCommands') || + DEFAULT_DOUBLE_CLICK; + + const toRun = customizations[eventName]; + + if (!toRun) { + return; + } + + commandsManager.run(toRun); + }; + + function elementEnabledHandler(evt: CustomEvent) { + const { element } = evt.detail; + + element.addEventListener( + cs3DToolsEvents.MOUSE_DOUBLE_CLICK, + cornerstoneViewportHandleDoubleClick + ); + } + + function elementDisabledHandler(evt: CustomEvent) { + const { element } = evt.detail; + + element.removeEventListener( + cs3DToolsEvents.MOUSE_DOUBLE_CLICK, + cornerstoneViewportHandleDoubleClick + ); + } + + eventTarget.addEventListener( + EVENTS.ELEMENT_ENABLED, + elementEnabledHandler.bind(null) + ); + + eventTarget.addEventListener( + EVENTS.ELEMENT_DISABLED, + elementDisabledHandler.bind(null) + ); +} + +export default initDoubleClick; diff --git a/extensions/cornerstone/src/services/CornerstoneCacheService/CornerstoneCacheService.ts b/extensions/cornerstone/src/services/CornerstoneCacheService/CornerstoneCacheService.ts index 01a359368..8a29bcab4 100644 --- a/extensions/cornerstone/src/services/CornerstoneCacheService/CornerstoneCacheService.ts +++ b/extensions/cornerstone/src/services/CornerstoneCacheService/CornerstoneCacheService.ts @@ -62,12 +62,20 @@ class CornerstoneCacheService { viewportData = await this._getStackViewportData( dataSource, displaySets, - initialImageIndex + initialImageIndex, + cs3DViewportType ); } - if (cs3DViewportType === Enums.ViewportType.ORTHOGRAPHIC) { - viewportData = await this._getVolumeViewportData(dataSource, displaySets); + if ( + cs3DViewportType === Enums.ViewportType.ORTHOGRAPHIC || + cs3DViewportType === Enums.ViewportType.VOLUME_3D + ) { + viewportData = await this._getVolumeViewportData( + dataSource, + displaySets, + cs3DViewportType + ); } viewportData.viewportType = cs3DViewportType; @@ -100,7 +108,8 @@ class CornerstoneCacheService { const newViewportData = await this._getVolumeViewportData( dataSource, - displaySets + displaySets, + viewportData.viewportType ); return newViewportData; @@ -109,7 +118,8 @@ class CornerstoneCacheService { private _getStackViewportData( dataSource, displaySets, - initialImageIndex + initialImageIndex, + viewportType: Enums.ViewportType ): StackViewportData { // For Stack Viewport we don't have fusion currently const displaySet = displaySets[0]; @@ -126,7 +136,7 @@ class CornerstoneCacheService { const { displaySetInstanceUID, StudyInstanceUID } = displaySet; const StackViewportData: StackViewportData = { - viewportType: Enums.ViewportType.STACK, + viewportType, data: { StudyInstanceUID, displaySetInstanceUID, @@ -143,7 +153,8 @@ class CornerstoneCacheService { private async _getVolumeViewportData( dataSource, - displaySets + displaySets, + viewportType: Enums.ViewportType ): Promise { // Todo: Check the cache for multiple scenarios to see if we need to // decache the volume data from other viewports or not @@ -207,7 +218,7 @@ class CornerstoneCacheService { } return { - viewportType: Enums.ViewportType.ORTHOGRAPHIC, + viewportType, data: volumeData, }; } diff --git a/extensions/cornerstone/src/services/SegmentationService/SegmentationService.ts b/extensions/cornerstone/src/services/SegmentationService/SegmentationService.ts index 56ff73781..658ee816f 100644 --- a/extensions/cornerstone/src/services/SegmentationService/SegmentationService.ts +++ b/extensions/cornerstone/src/services/SegmentationService/SegmentationService.ts @@ -1,22 +1,22 @@ import cloneDeep from 'lodash.clonedeep'; -import { pubSubServiceInterface } from '@ohif/core'; import { - utilities as cstUtils, - segmentation as cstSegmentation, - CONSTANTS as cstConstants, - Enums as csToolsEnums, - Types as cstTypes, -} from '@cornerstonejs/tools'; -import { - eventTarget, cache, + eventTarget, + getEnabledElementByIds, + metaData, + Types, utilities as csUtils, volumeLoader, - Types, - metaData, - getEnabledElementByIds, } from '@cornerstonejs/core'; +import { + CONSTANTS as cstConstants, + Enums as csToolsEnums, + segmentation as cstSegmentation, + Types as cstTypes, + utilities as cstUtils, +} from '@cornerstonejs/tools'; +import { pubSubServiceInterface } from '@ohif/core'; import isEqual from 'lodash.isequal'; import { easeInOutBell } from '../../utils/transitions'; import { @@ -202,7 +202,7 @@ class SegmentationService { this._setActiveSegment(segmentationId, segmentIndex, suppressEvents); } - // Todo: this includes nonhydrated segmentations which might not be + // Todo: this includes non-hydrated segmentations which might not be // persisted in the store this._broadcastEvent(this.EVENTS.SEGMENTATION_UPDATED, { segmentation, @@ -1591,13 +1591,20 @@ class SegmentationService { segmentInfo.isVisible = isVisible; - cstSegmentation.config.visibility.setVisibilityForSegmentIndex( + cstSegmentation.config.visibility.setSegmentVisibility( toolGroupId, segmentationRepresentationUID, segmentIndex, isVisible ); + // make sure to update the isVisible flag on the segmentation + // if a segment becomes invisible then the segmentation should be invisible + // in the status as well, and show correct icon + segmentation.isVisible = segmentation.segments + .filter(Boolean) + .every(segment => segment.isVisible); + if (suppressEvents === false) { this._broadcastEvent(this.EVENTS.SEGMENTATION_UPDATED, { segmentation, @@ -1917,28 +1924,27 @@ class SegmentationService { representation => representation.segmentationId === segmentationId ); - const visibility = cstSegmentation.config.visibility.getSegmentationVisibility( - toolGroupId, - representation.segmentationRepresentationUID - ); + const { segmentsHidden } = representation; + + const currentVisibility = segmentsHidden.size === 0 ? true : false; + const newVisibility = !currentVisibility; cstSegmentation.config.visibility.setSegmentationVisibility( toolGroupId, representation.segmentationRepresentationUID, - !visibility + newVisibility ); - // set all segments to visible as well - const segments = this.getSegmentation(segmentationId).segments; - Object.keys(segments).forEach(segmentIndex => { - if (segmentIndex !== '0') { - this._setSegmentVisibility( - segmentationId, - Number(segmentIndex), - !visibility, - toolGroupId - ); - } + // update segments visibility + const { segmentation } = this._getSegmentationInfo( + segmentationId, + toolGroupId + ); + + const segments = segmentation.segments.filter(Boolean); + + segments.forEach(segment => { + segment.isVisible = newVisibility; }); }); }; diff --git a/extensions/cornerstone/src/services/ViewportService/CornerstoneViewportService.ts b/extensions/cornerstone/src/services/ViewportService/CornerstoneViewportService.ts index 05e4e382c..946dee124 100644 --- a/extensions/cornerstone/src/services/ViewportService/CornerstoneViewportService.ts +++ b/extensions/cornerstone/src/services/ViewportService/CornerstoneViewportService.ts @@ -1,4 +1,4 @@ -import { pubSubServiceInterface } from '@ohif/core'; +import { PubSubService } from '@ohif/core'; import { RenderingEngine, StackViewport, @@ -6,7 +6,10 @@ import { getRenderingEngine, utilities as csUtils, VolumeViewport, + VolumeViewport3D, cache, + utilities, + CONSTANTS, } from '@cornerstonejs/core'; import { utilities as csToolsUtils } from '@cornerstonejs/tools'; @@ -21,6 +24,7 @@ import { StackViewportData, VolumeViewportData, } from '../../types/CornerstoneCacheService'; +import { Presentation, Presentations } from '../../types/Presentation'; import { setColormap, setLowerUpperColorTransferFunction, @@ -37,18 +41,14 @@ const EVENTS = { * Handles cornerstone viewport logic including enabling, disabling, and * updating the viewport. */ -class CornerstoneViewportService implements IViewportService { +class CornerstoneViewportService extends PubSubService + implements IViewportService { renderingEngine: Types.IRenderingEngine | null; - viewportsInfo: Map; + viewportsInfo: Map = new Map(); + viewportsById: Map = new Map(); viewportGridResizeObserver: ResizeObserver | null; viewportsDisplaySets: Map = new Map(); - /** - * Service-specific - */ - EVENTS: { [key: string]: string }; - listeners: { [key: string]: Array<(...args: any[]) => void> }; - _broadcastEvent: unknown; // we should be able to extend the PubSub class to get this // Some configs enableResizeDetector: true; resizeRefreshRateMs: 200; @@ -56,15 +56,10 @@ class CornerstoneViewportService implements IViewportService { servicesManager = null; constructor(servicesManager) { + super(EVENTS); this.renderingEngine = null; this.viewportGridResizeObserver = null; - this.viewportsInfo = new Map(); - // - this.listeners = {}; - this.EVENTS = EVENTS; this.servicesManager = servicesManager; - Object.assign(this, pubSubServiceInterface); - // } /** @@ -77,12 +72,23 @@ class CornerstoneViewportService implements IViewportService { viewportOptions: PublicViewportOptions, elementRef: HTMLDivElement ) { - const viewportInfo = new ViewportInfo( - viewportIndex, - this.getViewportId(viewportIndex) - ); + // Use the provided viewportId + // Not providing a viewportId is frowned upon because it does weird things + // on moving them around, but it does mostly work. + if (!viewportOptions.viewportId) { + console.warn('Should provide viewport id externally', viewportOptions); + viewportOptions.viewportId = + this.getViewportId(viewportIndex) || `viewport-${viewportIndex}`; + } + const { viewportId } = viewportOptions; + const viewportInfo = new ViewportInfo(viewportIndex, viewportId); + if (!viewportInfo.viewportId) { + throw new Error('Should have viewport ID afterwards'); + } + viewportInfo.setElement(elementRef); this.viewportsInfo.set(viewportIndex, viewportInfo); + this.viewportsById.set(viewportId, viewportInfo); } public getViewportIds(): string[] { @@ -96,7 +102,7 @@ class CornerstoneViewportService implements IViewportService { } public getViewportId(viewportIndex: number): string { - return `viewport-${viewportIndex}`; + return this.viewportsInfo[viewportIndex]?.viewportId; } /** @@ -149,9 +155,14 @@ class CornerstoneViewportService implements IViewportService { /** * Disables the viewport inside the renderingEngine, if no viewport is left * it destroys the renderingEngine. + * + * This is called when the element goes away entirely - with new viewportId's + * created for every new viewport, this will be called whenever the set of + * viewports is changed, but NOT when the viewport position changes only. + * * @param viewportIndex */ - public disableElement(viewportIndex: number) { + public disableElement(viewportIndex: number): void { const viewportInfo = this.viewportsInfo.get(viewportIndex); if (!viewportInfo) { return; @@ -163,6 +174,39 @@ class CornerstoneViewportService implements IViewportService { this.viewportsInfo.get(viewportIndex).destroy(); this.viewportsInfo.delete(viewportIndex); + this.viewportsById.delete(viewportId); + } + + public setPresentations(viewport, presentations?: Presentations): void { + const properties = presentations?.lutPresentation?.properties; + if (properties) viewport.setProperties(properties); + const camera = presentations?.positionPresentation?.camera; + if (camera) viewport.setCamera(camera); + } + + public getPresentation(viewportIndex: number): Presentation { + const viewportInfo = this.viewportsInfo.get(viewportIndex); + if (!viewportInfo) return; + const { viewportType, presentationIds } = viewportInfo.getViewportOptions(); + + const csViewport = this.getCornerstoneViewportByIndex(viewportIndex); + if (!csViewport) return; + + const properties = csViewport.getProperties(); + if (properties.isComputedVOI) { + delete properties.voiRange; + delete properties.VOILUTFunction; + } + const initialImageIndex = csViewport.getCurrentImageIdIndex(); + const camera = csViewport.getCamera(); + return { + presentationIds, + viewportType: + !viewportType || viewportType === 'stack' ? 'stack' : 'volume', + properties, + initialImageIndex, + camera, + }; } /** @@ -177,29 +221,27 @@ class CornerstoneViewportService implements IViewportService { viewportIndex: number, viewportData: StackViewportData | VolumeViewportData, publicViewportOptions: PublicViewportOptions, - publicDisplaySetOptions: DisplaySetOptions[] + publicDisplaySetOptions: DisplaySetOptions[], + presentations?: Presentations ): void { const renderingEngine = this.getRenderingEngine(); - const viewportInfo = this.viewportsInfo.get(viewportIndex); - - if (!publicViewportOptions.viewportId) { - publicViewportOptions.viewportId = this.getViewportId(viewportIndex); + const viewportId = + publicViewportOptions.viewportId || this.getViewportId(viewportIndex); + if (!viewportId) { + throw new Error('Must define viewportId externally'); } - let viewportId = viewportInfo.getViewportId(); + const viewportInfo = this.viewportsById.get(viewportId); - // if currently there is a viewport with the viewportId, but it is not the same - // as the one we are trying to set, we need to disable the old one - // and enable the new one, we could ideally change the name of the viewportId - // but the viewportId is an integral part in renderers map, tools svg cache - // etc. which would require a lot of refactoring, for now we will just disable - // the old one and enable the new one at the end of this function - let newViewportId = null; - if (publicViewportOptions?.viewportId !== viewportId) { - newViewportId = publicViewportOptions.viewportId; - viewportInfo.setViewportId(newViewportId); + if (!viewportInfo) { + throw new Error('Viewport info not defined'); + } - renderingEngine.disableElement(viewportId); + // If the viewport has moved index, then record the new index + if (viewportInfo.viewportIndex !== viewportIndex) { + this.viewportsInfo.delete(viewportInfo.viewportIndex); + this.viewportsInfo.set(viewportIndex, viewportInfo); + viewportInfo.viewportIndex = viewportIndex; } viewportInfo.setRenderingEngineId(renderingEngine.id); @@ -217,12 +259,6 @@ class CornerstoneViewportService implements IViewportService { viewportInfo.setDisplaySetOptions(displaySetOptions); viewportInfo.setViewportData(viewportData); - this._broadcastEvent(this.EVENTS.VIEWPORT_DATA_CHANGED, { - viewportData, - viewportIndex, - }); - - viewportId = viewportInfo.getViewportId(); const element = viewportInfo.getElement(); const type = viewportInfo.getViewportType(); const background = viewportInfo.getBackground(); @@ -245,7 +281,16 @@ class CornerstoneViewportService implements IViewportService { renderingEngine.enableElement(viewportInput); const viewport = renderingEngine.getViewport(viewportId); - this._setDisplaySets(viewport, viewportData, viewportInfo); + this._setDisplaySets(viewport, viewportData, viewportInfo, presentations); + + // The broadcast event here ensures that listeners have a valid, up to date + // viewport to access. Doing it too early can result in exceptions or + // invalid data. + this._broadcastEvent(this.EVENTS.VIEWPORT_DATA_CHANGED, { + viewportData, + viewportIndex, + viewportId, + }); } public getCornerstoneViewport( @@ -308,8 +353,9 @@ class CornerstoneViewportService implements IViewportService { _setStackViewport( viewport: Types.IStackViewport, viewportData: StackViewportData, - viewportInfo: ViewportInfo - ) { + viewportInfo: ViewportInfo, + presentations: Presentations + ): void { const displaySetOptions = viewportInfo.getDisplaySetOptions(); const { @@ -320,29 +366,38 @@ class CornerstoneViewportService implements IViewportService { this.viewportsDisplaySets.set(viewport.id, [displaySetInstanceUID]); - let initialImageIndexToUse = initialImageIndex; + let initialImageIndexToUse = + presentations?.positionPresentation?.initialImageIndex ?? + initialImageIndex; - if (!initialImageIndexToUse) { + if ( + initialImageIndexToUse === undefined || + initialImageIndexToUse === null + ) { initialImageIndexToUse = this._getInitialImageIndexForStackViewport(viewportInfo, imageIds) || 0; } - const { voi, voiInverted } = displaySetOptions[0]; - const properties = {}; - if (voi && (voi.windowWidth || voi.windowCenter)) { - const { lower, upper } = csUtils.windowLevel.toLowHighRange( - voi.windowWidth, - voi.windowCenter - ); - properties.voiRange = { lower, upper }; - } + const properties = { ...presentations.lutPresentation?.properties }; + if (!presentations.lutPresentation?.properties) { + const { voi, voiInverted } = displaySetOptions[0]; + if (voi && (voi.windowWidth || voi.windowCenter)) { + const { lower, upper } = csUtils.windowLevel.toLowHighRange( + voi.windowWidth, + voi.windowCenter + ); + properties.voiRange = { lower, upper }; + } - if (voiInverted !== undefined) { - properties.invert = voiInverted; + if (voiInverted !== undefined) { + properties.invert = voiInverted; + } } viewport.setStack(imageIds, initialImageIndexToUse).then(() => { viewport.setProperties(properties); + const camera = presentations.positionPresentation?.camera; + if (camera) viewport.setCamera(camera); }); } @@ -397,7 +452,8 @@ class CornerstoneViewportService implements IViewportService { async _setVolumeViewport( viewport: Types.IVolumeViewport, viewportData: VolumeViewportData, - viewportInfo: ViewportInfo + viewportInfo: ViewportInfo, + presentations: Presentations ): Promise { // TODO: We need to overhaul the way data sources work so requests can be made // async. I think we should follow the image loader pattern which is async and @@ -423,6 +479,7 @@ class CornerstoneViewportService implements IViewportService { displaySetInstanceUIDs.push(displaySetInstanceUID); if (!volume) { + console.log('Volume display set not found'); continue; } @@ -460,14 +517,24 @@ class CornerstoneViewportService implements IViewportService { } volumeToLoad.forEach(volume => { - volume.load(); + if (!volume.loadStatus.loaded && !volume.loadStatus.loading) { + volume.load(); + } }); // This returns the async continuation only - return this.setVolumesForViewport(viewport, volumeInputArray); + return this.setVolumesForViewport( + viewport, + volumeInputArray, + presentations + ); } - public async setVolumesForViewport(viewport, volumeInputArray) { + public async setVolumesForViewport( + viewport, + volumeInputArray, + presentations + ) { const { displaySetService, segmentationService, @@ -475,6 +542,7 @@ class CornerstoneViewportService implements IViewportService { } = this.servicesManager.services; await viewport.setVolumes(volumeInputArray); + this.setPresentations(viewport, presentations); // load any secondary displaySets const displaySetInstanceUIDs = this.viewportsDisplaySets.get(viewport.id); @@ -557,6 +625,10 @@ class CornerstoneViewportService implements IViewportService { const viewportInfo = this.getViewportInfo(viewport.id); + if (!viewportInfo) { + console.warn('Viewport info not defined for', viewport.id); + } + const toolGroup = toolGroupService.getToolGroupForViewport(viewport.id); csToolsUtils.segmentation.triggerSegmentationRender(toolGroup.id); @@ -589,7 +661,11 @@ class CornerstoneViewportService implements IViewportService { // Todo: keepCamera is an interim solution until we have a better solution for // keeping the camera position when the viewport data is changed - public updateViewport(viewportIndex, viewportData, keepCamera = false) { + public updateViewport( + viewportIndex: number, + viewportData, + keepCamera = false + ) { const viewportInfo = this.getViewportInfoByIndex(viewportIndex); const viewportId = viewportInfo.getViewportId(); @@ -614,7 +690,12 @@ class CornerstoneViewportService implements IViewportService { } _getVOICallbacks(volumeId, displaySetOptions) { - const { voi, voiInverted: inverted, colormap } = displaySetOptions; + const { + voi, + voiInverted: inverted, + colormap, + presetName, + } = displaySetOptions; const voiCallbackArray = []; @@ -639,25 +720,41 @@ class CornerstoneViewportService implements IViewportService { ); } + if (presetName) { + voiCallbackArray.push(volumeActor => { + utilities.applyPreset( + volumeActor, + CONSTANTS.VIEWPORT_PRESETS.find(preset => { + return preset.name === presetName; + }) + ); + }); + } return voiCallbackArray; } _setDisplaySets( viewport: StackViewport | VolumeViewport, viewportData: StackViewportData | VolumeViewportData, - viewportInfo: ViewportInfo + viewportInfo: ViewportInfo, + presentations: Presentations = {} ): void { if (viewport instanceof StackViewport) { this._setStackViewport( viewport, viewportData as StackViewportData, - viewportInfo + viewportInfo, + presentations ); - } else if (viewport instanceof VolumeViewport) { + } else if ( + viewport instanceof VolumeViewport || + viewport instanceof VolumeViewport3D + ) { this._setVolumeViewport( viewport, viewportData as VolumeViewportData, - viewportInfo + viewportInfo, + presentations ); } else { throw new Error('Unknown viewport type'); @@ -758,7 +855,7 @@ class CornerstoneViewportService implements IViewportService { } } -export default function ExtendedCornerstoneViewportService(serviceManager) { +export default function CornerstoneViewportServiceRegistration(serviceManager) { return { name: 'cornerstoneViewportService', altName: 'CornerstoneViewportService', @@ -767,3 +864,5 @@ export default function ExtendedCornerstoneViewportService(serviceManager) { }, }; } + +export { CornerstoneViewportService, CornerstoneViewportServiceRegistration }; diff --git a/extensions/cornerstone/src/services/ViewportService/Viewport.ts b/extensions/cornerstone/src/services/ViewportService/Viewport.ts index 03fce0312..4f43aff23 100644 --- a/extensions/cornerstone/src/services/ViewportService/Viewport.ts +++ b/extensions/cornerstone/src/services/ViewportService/Viewport.ts @@ -1,13 +1,14 @@ import { Types, Enums } from '@cornerstonejs/core'; +import { Types as UITypes } from '@ohif/ui'; +import { + StackViewportData, + VolumeViewportData, +} from '../../types/CornerstoneCacheService'; import getCornerstoneBlendMode from '../../utils/getCornerstoneBlendMode'; import getCornerstoneOrientation from '../../utils/getCornerstoneOrientation'; import getCornerstoneViewportType from '../../utils/getCornerstoneViewportType'; import JumpPresets from '../../utils/JumpPresets'; import { SyncGroup } from '../SyncGroupService/SyncGroupService'; -import { - StackViewportData, - VolumeViewportData, -} from '../../types/CornerstoneCacheService'; export type InitialImageOptions = { index?: number; @@ -15,10 +16,13 @@ export type InitialImageOptions = { }; export type ViewportOptions = { + id?: string; viewportType: Enums.ViewportType; toolGroupId: string; viewportId: string; - orientation?: Types.Orientation; + // Presentation ID to store/load presentation state from + presentationIds?: UITypes.PresentationIds; + orientation?: Enums.OrientationAxis; background?: Types.Point3; syncGroups?: SyncGroup[]; initialImageOptions?: InitialImageOptions; @@ -31,10 +35,12 @@ export type ViewportOptions = { }; export type PublicViewportOptions = { + id?: string; viewportType?: string; toolGroupId?: string; + presentationIds?: UITypes.PresentationIds; viewportId?: string; - orientation?: string; + orientation?: Enums.OrientationAxis; background?: Types.Point3; syncGroups?: SyncGroup[]; initialImageOptions?: InitialImageOptions; @@ -42,20 +48,32 @@ export type PublicViewportOptions = { allowUnmatchedView?: boolean; }; +export type DisplaySetSelector = { + id?: string; + options?: PublicDisplaySetOptions; +}; + export type PublicDisplaySetOptions = { + /** The display set options can have an id in order to distinguish + * it from other similar items. + */ + id?: string; voi?: VOI; voiInverted?: boolean; blendMode?: string; slabThickness?: number; colormap?: string; + presetName?: string; }; export type DisplaySetOptions = { + id?: string; voi?: VOI; voiInverted: boolean; blendMode?: Enums.BlendModes; slabThickness?: number; colormap?: string; + presetName?: string; }; type VOI = { @@ -68,7 +86,6 @@ export type DisplaySet = { }; const STACK = 'stack'; -const VOLUME = 'volume'; const DEFAULT_TOOLGROUP_ID = 'default'; class ViewportInfo { @@ -136,7 +153,7 @@ class ViewportInfo { } public setPublicDisplaySetOptions( - publicDisplaySetOptions: Array + publicDisplaySetOptions: PublicDisplaySetOptions[] | DisplaySetSelector[] ): void { // map the displaySetOptions and check if they are undefined then set them to default values const displaySetOptions = this.mapDisplaySetOptions( @@ -167,7 +184,10 @@ class ViewportInfo { viewportOptionsEntry: PublicViewportOptions ): void { let viewportType = viewportOptionsEntry.viewportType; - let toolGroupId = viewportOptionsEntry.toolGroupId; + const { + toolGroupId = DEFAULT_TOOLGROUP_ID, + presentationIds, + } = viewportOptionsEntry; let orientation; if (!viewportType) { @@ -179,14 +199,8 @@ class ViewportInfo { } // map SAGITTAL, AXIAL, CORONAL orientation to be used by cornerstone - if (viewportOptionsEntry.viewportType?.toLowerCase() === VOLUME) { + if (viewportOptionsEntry.viewportType?.toLowerCase() !== STACK) { orientation = getCornerstoneOrientation(viewportOptionsEntry.orientation); - } else { - orientation = Enums.OrientationAxis.AXIAL; - } - - if (!toolGroupId) { - toolGroupId = DEFAULT_TOOLGROUP_ID; } this.setViewportOptions({ @@ -195,6 +209,7 @@ class ViewportInfo { viewportType: viewportType as Enums.ViewportType, orientation, toolGroupId, + presentationIds, }); } @@ -232,7 +247,7 @@ class ViewportInfo { return this.viewportOptions.background || [0, 0, 0]; } - public getOrientation(): Types.Orientation { + public getOrientation(): Enums.OrientationAxis { return this.viewportOptions.orientation; } @@ -240,12 +255,15 @@ class ViewportInfo { return this.viewportOptions.initialImageOptions; } + // Handle incoming public display set options or a display set select + // with a contained options. private mapDisplaySetOptions( - publicDisplaySetOptions: Array + options: PublicDisplaySetOptions[] | DisplaySetSelector[] = [{}] ): Array { const displaySetOptions: Array = []; - publicDisplaySetOptions.forEach(option => { + options.forEach(item => { + let option = item?.options || item; if (!option) { option = { blendMode: undefined, @@ -263,6 +281,7 @@ class ViewportInfo { colormap: option.colormap, slabThickness: option.slabThickness, blendMode, + presetName: option.presetName, }); }); diff --git a/extensions/cornerstone/src/tools/CalibrationLineTool.ts b/extensions/cornerstone/src/tools/CalibrationLineTool.ts index 27e521d46..1db404034 100644 --- a/extensions/cornerstone/src/tools/CalibrationLineTool.ts +++ b/extensions/cornerstone/src/tools/CalibrationLineTool.ts @@ -1,9 +1,10 @@ import { metaData } from '@cornerstonejs/core'; -import { LengthTool } from '@cornerstonejs/tools'; -import { calibrateImageSpacing } from '@cornerstonejs/tools/dist/esm/utilities'; +import { LengthTool, utilities } from '@cornerstonejs/tools'; import callInputDialog from '../utils/callInputDialog'; import getActiveViewportEnabledElement from '../utils/getActiveViewportEnabledElement'; +const { calibrateImageSpacing } = utilities; + /** * Calibration Line tool works almost the same as the */ diff --git a/extensions/cornerstone/src/types/Presentation.ts b/extensions/cornerstone/src/types/Presentation.ts new file mode 100644 index 000000000..82f13f745 --- /dev/null +++ b/extensions/cornerstone/src/types/Presentation.ts @@ -0,0 +1,23 @@ +/** Store presentation data for either stack viewports or volume viewports */ +import { Types } from '@cornerstonejs/core'; +import { Types as UITypes } from '@ohif/ui'; + +/** + * Has information on the presentation of the viewport. + */ +export interface Presentation extends Types.StackViewportProperties { + presentationIds: UITypes.PresentationIds; + viewportType: string; + initialImageIndex: number; + camera: Types.ICamera; + properties: Types.StackViewportProperties | Types.VolumeViewportProperties; + zoom?: number; + pan?: [number, number]; +} + +export type Presentations = { + positionPresentation?: Presentation; + lutPresentation?: Presentation; +}; + +export default Presentation; diff --git a/extensions/cornerstone/src/utils/findNearbyToolData.ts b/extensions/cornerstone/src/utils/findNearbyToolData.ts new file mode 100644 index 000000000..ab57a67d2 --- /dev/null +++ b/extensions/cornerstone/src/utils/findNearbyToolData.ts @@ -0,0 +1,21 @@ +/** + * Finds tool nearby event position triggered. + * + * @param {Object} commandsManager mannager of commands + * @param {Object} event that has being triggered + * @returns cs toolData or undefined if not found. + */ +export const findNearbyToolData = (commandsManager, evt) => { + if (!evt?.detail) { + return; + } + const { element, currentPoints } = evt.detail; + return commandsManager.runCommand( + 'getNearbyToolData', + { + element, + canvasCoordinates: currentPoints?.canvas, + }, + 'CORNERSTONE' + ); +}; diff --git a/extensions/cornerstone/src/utils/getCornerstoneOrientation.ts b/extensions/cornerstone/src/utils/getCornerstoneOrientation.ts index e37177d55..8ac7b2cb5 100644 --- a/extensions/cornerstone/src/utils/getCornerstoneOrientation.ts +++ b/extensions/cornerstone/src/utils/getCornerstoneOrientation.ts @@ -1,5 +1,4 @@ import { Enums } from '@cornerstonejs/core'; -import { log } from '@ohif/core'; const AXIAL = 'axial'; const SAGITTAL = 'sagittal'; diff --git a/extensions/cornerstone/src/utils/getCornerstoneViewportType.ts b/extensions/cornerstone/src/utils/getCornerstoneViewportType.ts index 2e19312b6..47a5ede85 100644 --- a/extensions/cornerstone/src/utils/getCornerstoneViewportType.ts +++ b/extensions/cornerstone/src/utils/getCornerstoneViewportType.ts @@ -2,18 +2,25 @@ import { Enums } from '@cornerstonejs/core'; const STACK = 'stack'; const VOLUME = 'volume'; +const ORTHOGRAPHIC = 'orthographic'; +const VOLUME_3D = 'volume3d'; export default function getCornerstoneViewportType( viewportType: string ): Enums.ViewportType { - if (viewportType.toLowerCase() === STACK) { + const lowerViewportType = viewportType.toLowerCase(); + if (lowerViewportType === STACK) { return Enums.ViewportType.STACK; } - if (viewportType.toLowerCase() === VOLUME) { + if (lowerViewportType === VOLUME || lowerViewportType === ORTHOGRAPHIC) { return Enums.ViewportType.ORTHOGRAPHIC; } + if (lowerViewportType === VOLUME_3D) { + return Enums.ViewportType.VOLUME_3D; + } + throw new Error( `Invalid viewport type: ${viewportType}. Valid types are: stack, volume` ); diff --git a/extensions/cornerstone/src/utils/mpr/toggleMPRHangingProtocol.ts b/extensions/cornerstone/src/utils/mpr/toggleMPRHangingProtocol.ts deleted file mode 100644 index cd6b556a2..000000000 --- a/extensions/cornerstone/src/utils/mpr/toggleMPRHangingProtocol.ts +++ /dev/null @@ -1,301 +0,0 @@ -import { Enums } from '@cornerstonejs/tools'; -import removeToolGroupSegmentationRepresentations from '../removeToolGroupSegmentationRepresentations'; - -const MPR_TOOLGROUP_ID = 'mpr'; - -const cachedState = { - protocol: null, - stage: null, - viewportMatchDetails: null, - viewportStructure: null, - toolOptions: null, -}; - -const setCachedState = ( - protocol, - stage, - viewportMatchDetails, - viewportStructure, - toolOptions -) => { - cachedState.protocol = protocol; - cachedState.stage = stage; - cachedState.viewportMatchDetails = viewportMatchDetails; - cachedState.viewportStructure = viewportStructure; - cachedState.toolOptions = JSON.parse(JSON.stringify(toolOptions)); -}; - -const resetCachedState = () => { - cachedState.protocol = null; - cachedState.stage = null; - cachedState.viewportMatchDetails = null; - cachedState.viewportStructure = null; - cachedState.toolOptions = null; -}; - -export default function toggleMPRHangingProtocol({ - toggledState, - servicesManager, - getToolGroup, -}) { - const { - uiNotificationService, - hangingProtocolService, - viewportGridService, - toolbarService, - } = servicesManager.services; - - // TODO Introduce a service to persist the state of the current hanging protocol/app. - // So all of the code to persist the state here will no longer be needed. Perhaps - // just the id of the current hanging protocol to toggle MPR off is needed. - - const { - activeViewportIndex, - viewports, - numRows, - numCols, - } = viewportGridService.getState(); - const viewportDisplaySetInstanceUIDs = - viewports[activeViewportIndex].displaySetInstanceUIDs; - - // What is the current active protocol and stage number to restore later - const { protocol, stage } = hangingProtocolService.getActiveProtocol(); - - const restoreErrorCallback = error => { - console.error(error); - uiNotificationService.show({ - title: 'Multiplanar reconstruction (MPR) ', - message: - 'Something went wrong while trying to restore the previous layout.', - type: 'info', - duration: 3000, - }); - }; - - if (toggledState) { - resetCachedState(); - - const { - viewportMatchDetails, - viewportStructure, - toolOptions, - } = _getViewportsInfo({ - protocol, - stage, - viewports, - servicesManager, - }); - - setCachedState( - protocol, - stage, - viewportMatchDetails, - viewportStructure, - toolOptions - ); - - const matchDetails = { - displaySetInstanceUIDs: viewportDisplaySetInstanceUIDs, - }; - - _disableCrosshairs( - toolOptions.map(({ toolGroupId }) => toolGroupId), - getToolGroup - ); - - const errorCallback = error => { - // Unable to create MPR, so be sure to return to the cached/original protocol. - hangingProtocolService.setProtocol( - cachedState.protocol.id, - viewportMatchDetails, - restoreErrorCallback - ); - - uiNotificationService.show({ - title: 'Multiplanar reconstruction (MPR) ', - message: - 'Cannot create MPR for this DisplaySet since it is not reconstructable.', - type: 'info', - duration: 3000, - }); - }; - - hangingProtocolService.setProtocol( - MPR_TOOLGROUP_ID, - matchDetails, - errorCallback - ); - return; - } - - _disableCrosshairs([MPR_TOOLGROUP_ID], getToolGroup); - - const { layoutType, properties } = cachedState.viewportStructure; - const { viewportMatchDetails } = cachedState; - - // The reason we split the flow here is that we don't allow viewport grid - // change in the non default hanging protocol, so we can just apply the - // cached protocol and stage. However, for the default protocol, we need - // to also apply the layout type and properties. - if (cachedState.protocol.id !== 'default') { - hangingProtocolService.setProtocol( - cachedState.protocol.id, - viewportMatchDetails, - restoreErrorCallback - ); - - return; - } - - hangingProtocolService.setProtocol( - 'default', - viewportMatchDetails, - restoreErrorCallback - ); - - if (numRows !== properties.rows || numCols !== properties.columns) { - viewportGridService.setLayout({ - numRows: properties.rows, - numCols: properties.columns, - layoutType, - layoutOptions: properties.layoutOptions, - }); - } - - const numViewports = - properties.layoutOptions.length || properties.rows * properties.columns; - - // loop inside viewportMatchDetails map - // and set the viewportOptions for each viewport - [...Array(numViewports).keys()].forEach(viewportIndex => { - const viewportMatchDetailsForViewport = viewportMatchDetails.get( - viewportIndex - ); - - if (viewportMatchDetailsForViewport) { - const { - viewportOptions, - displaySetsInfo, - } = viewportMatchDetailsForViewport; - viewportGridService.setDisplaySetsForViewport({ - viewportIndex, - displaySetInstanceUIDs: displaySetsInfo.map( - displaySetInfo => displaySetInfo.displaySetInstanceUID - ), - viewportOptions, - }); - } else { - viewportGridService.setDisplaySetsForViewport({ - viewportIndex, - displaySetInstanceUIDs: [], - viewportOptions: {}, - }); - } - }); - - toolbarService.recordInteraction({ - groupId: 'WindowLevel', - itemId: 'WindowLevel', - interactionType: 'tool', - commands: [ - { - commandName: 'setToolActive', - commandOptions: { - toolName: 'WindowLevel', - }, - context: 'CORNERSTONE', - }, - ], - }); - - //clear segmentations if they exist - removeToolGroupSegmentationRepresentations(MPR_TOOLGROUP_ID); -} - -function _disableCrosshairs(toolGroupIds, getToolGroup) { - toolGroupIds.forEach(toolGroupId => { - const toolGroup = getToolGroup(toolGroupId); - if ( - toolGroup.getToolInstance('Crosshairs')?.mode === Enums.ToolModes.Active - ) { - toolGroup.setToolDisabled('Crosshairs'); - } - }); -} - -function _getViewportsInfo({ protocol, stage, viewports, servicesManager }) { - // here we need to use the viewports and try to map it into the - // viewportMatchDetails and displaySetMatch that hangingProtocolService - // expects - const { - viewportGridService, - hangingProtocolService, - toolGroupService, - } = servicesManager.services; - - const { numRows, numCols } = viewportGridService.getState(); - - let viewportMatchDetails = new Map(); - - const viewportStructure = { - layoutType: 'grid', - properties: { - rows: numRows, - columns: numCols, - layoutOptions: [], - }, - }; - - viewports.forEach((viewport, viewportIndex) => { - viewportStructure.properties.layoutOptions.push({ - x: viewport.x, - y: viewport.y, - width: viewport.width, - height: viewport.height, - }); - }); - - if (protocol.id === 'default') { - viewports.forEach((viewport, viewportIndex) => { - if (viewport.displaySetInstanceUIDs) { - viewportMatchDetails.set(viewportIndex, { - displaySetsInfo: viewport.displaySetInstanceUIDs.map( - displaySetInstanceUID => { - return { displaySetInstanceUID }; - } - ), - viewportOptions: viewport.viewportOptions, - }); - } - }); - } else { - ({ viewportMatchDetails } = hangingProtocolService.getMatchDetails()); - } - - // get the toolGroup state for viewports - let toolOptions = []; - const viewportIds = viewports - .map( - viewport => - viewport.displaySetInstanceUIDs && - viewport.displaySetInstanceUIDs.length > 0 && - viewport.viewportOptions?.viewportId - ) - .filter(Boolean); - - if (viewportIds.length) { - toolOptions = viewportIds - .map(viewportId => { - const toolGroup = toolGroupService.getToolGroupForViewport(viewportId); - return toolGroup - ? { - toolGroupId: toolGroup.id, - toolOptions: toolGroup.toolOptions, - } - : null; - }) - .filter(Boolean); - } - - return { viewportMatchDetails, viewportStructure, toolOptions }; -} diff --git a/extensions/cornerstone/src/utils/nthLoader.ts b/extensions/cornerstone/src/utils/nthLoader.ts index a34066eb2..bce0d22f5 100644 --- a/extensions/cornerstone/src/utils/nthLoader.ts +++ b/extensions/cornerstone/src/utils/nthLoader.ts @@ -18,7 +18,6 @@ const viewportIdVolumeInputArrayMap = new Map(); export default function interleaveNthLoader({ data: { viewportId, volumeInputArray }, displaySetsMatchDetails, - viewportMatchDetails: matchDetails, }) { viewportIdVolumeInputArrayMap.set(viewportId, volumeInputArray); @@ -29,6 +28,7 @@ export default function interleaveNthLoader({ const volume = cache.getVolume(volumeId); if (!volume) { + console.log("interleaveNthLoader::No volume, can't load it"); return; } @@ -39,33 +39,6 @@ export default function interleaveNthLoader({ } } - /** - * The following is checking if all the viewports that were matched in the HP has been - * successfully created their cornerstone viewport or not. Todo: This can be - * improved by not checking it, and as soon as the matched DisplaySets have their - * volume loaded, we start the loading, but that comes at the cost of viewports - * not being created yet (e.g., in a 10 viewport ptCT fusion, when one ct viewport and one - * pt viewport are created we have a guarantee that the volumes are created in the cache - * but the rest of the viewports (fusion, mip etc.) are not created yet. So - * we can't initiate setting the volumes for those viewports. One solution can be - * to add an event when a viewport is created (not enabled element event) and then - * listen to it and as the other viewports are created we can set the volumes for them - * since volumes are already started loading. - */ - if (matchDetails.size !== viewportIdVolumeInputArrayMap.size) { - return; - } - - // Check if all the matched volumes are loaded - for (const [_, details] of displaySetsMatchDetails.entries()) { - const { SeriesInstanceUID } = details; - - // HangingProtocol has matched, but don't have all the volumes created yet, so return - if (!Array.from(volumeIdMapsToLoad.values()).includes(SeriesInstanceUID)) { - return; - } - } - const volumeIds = Array.from(volumeIdMapsToLoad.keys()).slice(); // get volumes from cache const volumes = volumeIds.map(volumeId => { diff --git a/extensions/default/package.json b/extensions/default/package.json index 80332ef34..0ca309f62 100644 --- a/extensions/default/package.json +++ b/extensions/default/package.json @@ -6,7 +6,7 @@ "license": "MIT", "repository": "OHIF/Viewers", "main": "dist/index.umd.js", - "module": "src/index.js", + "module": "src/index.ts", "publishConfig": { "access": "public" }, diff --git a/extensions/default/src/CustomizeableContextMenu/ContextMenuController.tsx b/extensions/default/src/CustomizeableContextMenu/ContextMenuController.tsx new file mode 100644 index 000000000..82879bf02 --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/ContextMenuController.tsx @@ -0,0 +1,208 @@ +import * as ContextMenuItemsBuilder from './ContextMenuItemsBuilder'; +import ContextMenu from '../../../../platform/ui/src/components/ContextMenu/ContextMenu'; +import { CommandsManager, ServicesManager, Types } from '@ohif/core'; +import { Menu, MenuItem, Point, ContextMenuProps } from './types'; + +/** + * The context menu controller is a helper class that knows how + * to manage context menus based on the UI Customization Service. + * There are a few parts to this: + * 1. Basic controls to manage displaying and hiding context menus + * 2. Menu selection services, which use the UI customization service + * to choose which menu to display + * 3. Menu item adapter services to convert menu items into displayable and actionable items. + * + * The format for a menu is defined in the exported type MenuItem + */ +export default class ContextMenuController { + commandsManager: CommandsManager; + services: Types.Services; + menuItems: Menu[] | MenuItem[]; + + constructor( + servicesManager: ServicesManager, + commandsManager: CommandsManager + ) { + this.services = servicesManager.services as Obj; + this.commandsManager = commandsManager; + } + + closeContextMenu() { + this.services.uiDialogService.dismiss({ id: 'context-menu' }); + } + + /** + * Figures out which context menu is appropriate to display and shows it. + * + * @param contextMenuProps - the context menu properties, see ./types.ts + * @param viewportElement - the DOM element this context menu is related to + * @param defaultPointsPosition - a default position to show the context menu + */ + showContextMenu( + contextMenuProps: ContextMenuProps, + viewportElement, + defaultPointsPosition + ): void { + if (!this.services.uiDialogService) { + console.warn('Unable to show dialog; no UI Dialog Service available.'); + return; + } + + const { event, subMenu, menuId, menus, selectorProps } = contextMenuProps; + + console.log('Getting items from', menus); + const items = ContextMenuItemsBuilder.getMenuItems( + selectorProps || contextMenuProps, + event, + menus, + menuId + ); + + this.services.uiDialogService.dismiss({ id: 'context-menu' }); + this.services.uiDialogService.create({ + id: 'context-menu', + isDraggable: false, + preservePosition: false, + preventCutOf: true, + defaultPosition: ContextMenuController._getDefaultPosition( + defaultPointsPosition, + event?.detail, + viewportElement + ), + event, + content: ContextMenu, + + // This naming is part of hte uiDialogService convention + // Clicking outside simpy closes the dialog box. + onClickOutside: () => + this.services.uiDialogService.dismiss({ id: 'context-menu' }), + + contentProps: { + items, + selectorProps, + menus, + event, + subMenu, + eventData: event?.detail, + + onClose: () => { + this.services.uiDialogService.dismiss({ id: 'context-menu' }); + }, + + /** + * Displays a sub-menu, removing this menu + * @param {*} item + * @param {*} itemRef + * @param {*} subProps + */ + onShowSubMenu: (item, itemRef, subProps) => { + if (!itemRef.subMenu) { + console.warn('No submenu defined for', item, itemRef, subProps); + return; + } + this.showContextMenu( + { + ...contextMenuProps, + menuId: itemRef.subMenu, + }, + viewportElement, + defaultPointsPosition + ); + }, + + // Default is to run the specified commands. + onDefault: (item, itemRef, subProps) => { + this.commandsManager.run(item, { + ...selectorProps, + ...itemRef, + subProps, + }); + }, + }, + }); + } + + static getDefaultPosition = (): Point => { + return { + x: 0, + y: 0, + }; + }; + + static _getEventDefaultPosition = eventDetail => ({ + x: eventDetail && eventDetail.currentPoints.client[0], + y: eventDetail && eventDetail.currentPoints.client[1], + }); + + static _getElementDefaultPosition = element => { + if (element) { + const boundingClientRect = element.getBoundingClientRect(); + return { + x: boundingClientRect.x, + y: boundingClientRect.y, + }; + } + + return { + x: undefined, + y: undefined, + }; + }; + + static _getCanvasPointsPosition = (points = [], element) => { + const viewerPos = ContextMenuController._getElementDefaultPosition(element); + + for (let pointIndex = 0; pointIndex < points.length; pointIndex++) { + const point = { + x: points[pointIndex][0] || points[pointIndex]['x'], + y: points[pointIndex][1] || points[pointIndex]['y'], + }; + if ( + ContextMenuController._isValidPosition(point) && + ContextMenuController._isValidPosition(viewerPos) + ) { + return { + x: point.x + viewerPos.x, + y: point.y + viewerPos.y, + }; + } + } + }; + + static _isValidPosition = (source): boolean => { + return ( + source && typeof source.x === 'number' && typeof source.y === 'number' + ); + }; + + /** + * Returns the context menu default position. It look for the positions of: canvasPoints (got from selected), event that triggers it, current viewport element + */ + static _getDefaultPosition = (canvasPoints, eventDetail, viewerElement) => { + function* getPositionIterator() { + yield ContextMenuController._getCanvasPointsPosition( + canvasPoints, + viewerElement + ); + yield ContextMenuController._getEventDefaultPosition(eventDetail); + yield ContextMenuController._getElementDefaultPosition(viewerElement); + yield ContextMenuController.getDefaultPosition(); + } + + const positionIterator = getPositionIterator(); + + let current = positionIterator.next(); + let position = current.value; + + while (!current.done) { + position = current.value; + + if (ContextMenuController._isValidPosition(position)) { + positionIterator.return(); + } + current = positionIterator.next(); + } + + return position; + }; +} diff --git a/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.test.js b/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.test.js new file mode 100644 index 000000000..b5555f71f --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.test.js @@ -0,0 +1,29 @@ +import ContextMenuItemsBuilder from "./ContextMenuItemsBuilder"; + +const menus = [ + { + id: 'one', + selector: ({ value }) => value === 'one', + items: [], + }, + { + id: 'two', + selector: ({ value }) => value === 'two', + items: [], + }, + { + id: 'default', + items: [], + }, +]; + +const menuBuilder = new ContextMenuItemsBuilder(); + +describe('ContextMenuItemsBuilder', () => { + test('findMenuDefault', () => { + expect(menuBuilder.findMenuDefault(menus, {})).toBe(menus[2]); + expect(menuBuilder.findMenuDefault(menus, { value: 'two' })).toBe(menus[1]); + expect(menuBuilder.findMenuDefault([], {})).toBeUndefined(); + expect(menuBuilder.findMenuDefault(undefined, undefined)).toBeNull(); + }); +}); diff --git a/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.ts b/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.ts new file mode 100644 index 000000000..2fe20e8d9 --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/ContextMenuItemsBuilder.ts @@ -0,0 +1,193 @@ +import { Types } from '@ohif/ui'; +import { Menu, SelectorProps, MenuItem, ContextMenuProps } from './types'; + +type ContextMenuItem = Types.ContextMenuItem; + +/** + * Finds menu by menu id + * + * @returns Menu having the menuId + */ +export function findMenuById(menus: Menu[], menuId?: string): Menu { + if (!menuId) { + return; + } + + return menus.find(menu => menu.id === menuId); +} + +/** + * Default finding menu method. This method will go through + * the list of menus until it finds the first one which + * has no selector, OR has the selector, when applied to the + * check props, return true. + * The selectorProps are a set of provided properties which can be + * passed into the selector function to determine when to display a menu. + * For example, a selector function of: + * `({displayset}) => displaySet?.SeriesDescription?.indexOf?.('Left')!==-1 + * would match series descriptions containing 'Left'. + * + * @param {Object[]} menus List of menus + * @param {*} subProps + * @returns + */ +export function findMenuDefault( + menus: Menu[], + subProps: Record +): Menu { + if (!menus) { + return null; + } + return menus.find( + menu => !menu.selector || menu.selector(subProps.selectorProps) + ); +} + +/** + * Finds the menu to be used for different scenarios: + * This will first look for a subMenu with the specified subMenuId + * Next it will look for the first menu whose selector returns true. + * + * @param menus - List of menus + * @param props - root props + * @param menuIdFilter - menu id identifier (to be considered on selection) + * This is intended to support other types of filtering in the future. + */ +export function findMenu( + menus: Menu[], + props?: Types.IProps, + menuIdFilter?: string +) { + const { subMenu } = props; + + function* findMenuIterator() { + yield findMenuById(menus, menuIdFilter || subMenu); + yield findMenuDefault(menus, props); + } + + const findIt = findMenuIterator(); + + let current = findIt.next(); + let menu = current.value; + + while (!current.done) { + menu = current.value; + + if (menu) { + findIt.return(); + } + current = findIt.next(); + } + + console.log('Menu chosen', menu?.id || 'NONE'); + + return menu; +} + +/** + * Returns the menu from a list of possible menus, based on the actual state of component props and tool data nearby. + * This uses the findMenu command above to first find the appropriate + * menu, and then it chooses the actual contents of that menu. + * A menu item can be optional by implementing the 'selector', + * which will be called with the selectorProps, and if it does not return true, + * then the item is excluded. + * + * Other menus can be delegated to by setting the delegating value to + * a string id for another menu. That menu's content will replace the + * current menu item (only if the item would be included). + * + * This allows single id menus to be chosen by id, but have varying contents + * based on the delegated menus. + * + * Finally, for each item, the adaptItem call is made. This allows + * items to modify themselves before being displayed, such as + * incorporating additional information from translation sources. + * See the `test-mode` examples for details. + * + * @param selectorProps + * @param {*} event event that originates the context menu + * @param {*} menus List of menus + * @param {*} menuIdFilter + * @returns + */ +export function getMenuItems( + selectorProps: SelectorProps, + event: Event, + menus: Menu[], + menuIdFilter?: string +): MenuItem[] | void { + // Include both the check props and the ...check props as one is used + // by the child menu and the other used by the selector function + const subProps = { selectorProps, event }; + + const menu = findMenu(menus, subProps, menuIdFilter); + + if (!menu) { + return undefined; + } + + if (!menu.items) { + console.warn('Must define items in menu', menu); + return []; + } + + let menuItems = []; + menu.items.forEach(item => { + const { delegating, selector, subMenu } = item; + + if (!selector || selector(selectorProps)) { + if (delegating) { + menuItems = [ + ...menuItems, + ...getMenuItems(selectorProps, event, menus, subMenu), + ]; + } else { + const toAdd = adaptItem(item, subProps); + menuItems.push(toAdd); + } + } + }); + + return menuItems; +} + +/** + * Returns item adapted to be consumed by ContextMenu component + * and then goes through the item to add action behaviour for clicking the item, + * making it compatible with the default ContextMenu display. + * + * @param {Object} item + * @param {Object} subProps + * @returns a MenuItem that is compatible with the base ContextMenu + * This requires having a label and set of actions to be called. + */ +export function adaptItem( + item: MenuItem, + subProps: ContextMenuProps +): ContextMenuItem { + const newItem: ContextMenuItem = { + ...item, + value: subProps.selectorProps?.value, + }; + + if (item.actionType === 'ShowSubMenu' && !newItem.iconRight) { + newItem.iconRight = 'chevron-menu'; + } + if (!item.action) { + newItem.action = (itemRef, componentProps) => { + const { event = {} } = componentProps; + const { detail = {} } = event; + newItem.element = detail.element; + + componentProps.onClose(); + const action = componentProps[`on${itemRef.actionType || 'Default'}`]; + if (action) { + action.call(componentProps, newItem, itemRef, subProps); + } else { + console.warn('No action defined for', itemRef); + } + }; + } + + return newItem; +} diff --git a/extensions/default/src/CustomizeableContextMenu/defaultContextMenu.ts b/extensions/default/src/CustomizeableContextMenu/defaultContextMenu.ts new file mode 100644 index 000000000..29a760c79 --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/defaultContextMenu.ts @@ -0,0 +1,31 @@ +const defaultContextMenu = { + id: 'measurementsContextMenu', + customizationType: 'ohif.contextMenu', + menus: [ + // Get the items from the UI Customization for the menu name (and have a custom name) + { + id: 'forExistingMeasurement', + selector: ({ nearbyToolData }) => !!nearbyToolData, + items: [ + { + label: 'Delete measurement', + commands: [ + { + commandName: 'deleteMeasurement', + }, + ], + }, + { + label: 'Add Label', + commands: [ + { + commandName: 'setMeasurementLabel', + }, + ], + }, + ], + }, + ], +}; + +export default defaultContextMenu; diff --git a/extensions/default/src/CustomizeableContextMenu/index.ts b/extensions/default/src/CustomizeableContextMenu/index.ts new file mode 100644 index 000000000..d630bcad9 --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/index.ts @@ -0,0 +1,11 @@ +import ContextMenuController from './ContextMenuController'; +import ContextMenuItemsBuilder from './ContextMenuItemsBuilder'; +import defaultContextMenu from './defaultContextMenu'; +import * as CustomizeableContextMenuTypes from './types'; + +export { + ContextMenuController, + CustomizeableContextMenuTypes, + ContextMenuItemsBuilder, + defaultContextMenu, +}; diff --git a/extensions/default/src/CustomizeableContextMenu/types.ts b/extensions/default/src/CustomizeableContextMenu/types.ts new file mode 100644 index 000000000..23075d057 --- /dev/null +++ b/extensions/default/src/CustomizeableContextMenu/types.ts @@ -0,0 +1,125 @@ +import { Types } from '@ohif/core'; + +/** + * SelectorProps are properties used to decide whether to select a menu or + * menu item for display. + * An instance of SelectorProps is provided to the selector functions, which + * return true to include the item or false to exclude it. + * The point of this is to allow more specific conext menus which hide + * non-relevant menu options, optimizing the speed of selection of menus + */ +export interface SelectorProps { + // If the context menu is invoked in the context of a measurement, then it + // will contain the nearby tool data. + nearbyToolData?: Record; + + // The tool name for the nearby tool + toolName?: string; + + // An annotation UID - this will be present if nearbyToolData is present. + uid?: string; + + // If the context menu is invoked on an active viewport, then it will contain + // the first display set. + displaySet?: Record; + + // The triggering event - can be used to determine key modifiers + event?: Event; + + // Any other properties + [propertyName: string]: unknown; +} + +/** + * The type of item actually required for the ContextMenu UI display + */ +export type UIMenuItem = { + label: string; + // Called when the item is selected + action?: (itemRef, componentProps) => void; +}; + +/** + * A MenuItem is a single line item within a menu, and specifies a selectable + * value for the menu. + */ +export interface MenuItem { + id?: string; + /** The customization type is used to apply preset values to this item + * when registered with the customization service. + */ + customizationType?: string; + + // The label is the value to show in the menu for this item + label?: string; + + // Delegating items are used to include other sub-menus inline within + // this menu. That allows sharing part of the menu structure, but also, + // more importantly to use a single selector function to include/exclude + // and entire section of sub-menu. + // See the `siteSelectionSubMenu` within the example `findingsMenu` + // for an example + delegating?: boolean; + + // A sub-menu is shown when this item is selected or is delegating. + // This item gives the name of the sub-menu. + subMenu?: string; + + // The selector is used to determine if this menu entry will be shown + // or more importantly, if the delegating subMenu will be included. + selector?: (props: SelectorProps) => boolean; + + /** Adapts the item by filling in additional properties as requried */ + adaptItem?: (item: MenuItem, props: ContextMenuProps) => UIMenuItem; + + /** List of commands to run when this item's action is taken. */ + commands?: Types.Command[]; +} + +/** + * A menu is a list of menu items, plus a selector. + * The selector is used to determine whether the menu should be displayed + * in a given context. The parameters passed to the selector come from + * the 'selectorProps' value in the options, and are intended to be context + * specific values containing things like the selected object, the currently + * displayed study etc so that the context menu can dynamically choose which + * view to show. + */ +export interface Menu { + id: string; + + /** The customization type is used to apply preset values to this item + * when registered with the customization service. + */ + customizationType?: string; + + // Choose whether this menu applies. + selector?: Types.Predicate; + + items: MenuItem[]; +} + +export type Point = { + x: number; + y: number; +}; + +/** + * ContextMenuProps is the top level argument used to invoke the context menu + * itself. It contains the menus available for display, as well as the event + * and selector props used to decide the menu. + */ +export type ContextMenuProps = { + event?: EventTarget; + menuCustomizationId?: string; + menuId: string; + element?: HTMLElement; + + /** A set of menus to choose from for this context menu */ + menus: Menu[]; + + /** The properties used to decide the menu type */ + selectorProps: SelectorProps; + + defaultPointsPosition?: [number, number] | []; +}; diff --git a/extensions/default/src/DicomLocalDataSource/index.js b/extensions/default/src/DicomLocalDataSource/index.js index fc6f366bb..f10d427ba 100644 --- a/extensions/default/src/DicomLocalDataSource/index.js +++ b/extensions/default/src/DicomLocalDataSource/index.js @@ -138,7 +138,9 @@ function createDicomLocalApi(dicomLocalConfig) { study.series.forEach(aSeries => { const { SeriesInstanceUID } = aSeries; - aSeries.instances.forEach(instance => { + const isMultiframe = aSeries.instances[0].NumberOfFrames > 1; + + aSeries.instances.forEach((instance, index) => { const { url: imageId, StudyInstanceUID, @@ -153,6 +155,7 @@ function createDicomLocalApi(dicomLocalConfig) { StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID, + frameIndex: isMultiframe ? index : 1, }); }); @@ -185,7 +188,7 @@ function createDicomLocalApi(dicomLocalConfig) { displaySet.images.forEach(instance => { const NumberOfFrames = instance.NumberOfFrames; if (NumberOfFrames > 1) { - for (let i = 0; i < NumberOfFrames; i++) { + for (let i = 1; i <= NumberOfFrames; i++) { const imageId = this.getImageIdsForInstance({ instance, frame: i, diff --git a/extensions/default/src/DicomWebDataSource/index.js b/extensions/default/src/DicomWebDataSource/index.js index ccb61f620..1af67936d 100644 --- a/extensions/default/src/DicomWebDataSource/index.js +++ b/extensions/default/src/DicomWebDataSource/index.js @@ -104,7 +104,7 @@ function createDicomWebApi(dicomWebConfig, userAuthenticationService) { query: { studies: { mapParams: mapParams.bind(), - search: async function (origParams) { + search: async function(origParams) { const headers = userAuthenticationService.getAuthorizationHeader(); if (headers) { qidoDicomWebClient.headers = headers; @@ -129,7 +129,7 @@ function createDicomWebApi(dicomWebConfig, userAuthenticationService) { }, series: { // mapParams: mapParams.bind(), - search: async function (studyInstanceUid) { + search: async function(studyInstanceUid) { const headers = userAuthenticationService.getAuthorizationHeader(); if (headers) { qidoDicomWebClient.headers = headers; diff --git a/extensions/default/src/Panels/PanelMeasurementTable.tsx b/extensions/default/src/Panels/PanelMeasurementTable.tsx index c2314bf08..e00b2d679 100644 --- a/extensions/default/src/Panels/PanelMeasurementTable.tsx +++ b/extensions/default/src/Panels/PanelMeasurementTable.tsx @@ -218,6 +218,7 @@ export default function PanelMeasurementTable({ > { + if (site?.text !== label) siteText.push(site.text); + }); + displayText = [...siteText, ...displayText]; + } + if (finding && finding?.text !== label) { + displayText = [finding.text, ...displayText]; + } return { uid, - label: label || '(empty)', + label, + baseLabel, measurementType: type, - displayText: displayText || [], + displayText, + baseDisplayText, isActive: selected, + finding, + findingSites, }; } diff --git a/extensions/default/src/Panels/PanelStudyBrowser.tsx b/extensions/default/src/Panels/PanelStudyBrowser.tsx index 05f32fefd..3e7a072cd 100644 --- a/extensions/default/src/Panels/PanelStudyBrowser.tsx +++ b/extensions/default/src/Panels/PanelStudyBrowser.tsx @@ -51,7 +51,7 @@ function PanelStudyBrowser({ uiNotificationService.show({ title: 'Thumbnail Double Click', message: - 'The selected display sets could not be added to the viewport due to a mismatch in the Hanging Protocol rules.', + 'The selected display sets could not be added to the viewport.', type: 'info', duration: 3000, }); @@ -303,6 +303,7 @@ function _mapDisplaySets(displaySets, thumbnailImageSrcMap) { seriesDate: ds.SeriesDate, seriesTime: ds.SeriesTime, numInstances: ds.numImageFrames, + countIcon: ds.countIcon, StudyInstanceUID: ds.StudyInstanceUID, componentType, imageSrc, diff --git a/extensions/default/src/Toolbar/ToolbarLayoutSelector.tsx b/extensions/default/src/Toolbar/ToolbarLayoutSelector.tsx index 6080de195..b8e3723c9 100644 --- a/extensions/default/src/Toolbar/ToolbarLayoutSelector.tsx +++ b/extensions/default/src/Toolbar/ToolbarLayoutSelector.tsx @@ -1,10 +1,6 @@ import React, { useEffect, useState } from 'react'; import PropTypes from 'prop-types'; -import { - LayoutSelector as OHIFLayoutSelector, - ToolbarButton, - useViewportGrid, -} from '@ohif/ui'; +import { LayoutSelector as OHIFLayoutSelector, ToolbarButton } from '@ohif/ui'; import { ServicesManager } from '@ohif/core'; @@ -16,8 +12,6 @@ function LayoutSelector({ ...rest }) { const [isOpen, setIsOpen] = useState(false); - const [disableSelector, setDisableSelector] = useState(false); - const [viewportGridState, viewportGridService] = useViewportGrid(); const { hangingProtocolService, @@ -50,43 +44,19 @@ function LayoutSelector({ }; }, [isOpen]); - useEffect(() => { - /* Reset to default layout when component unmounts */ - return () => { - viewportGridService.setLayout({ numCols: 1, numRows: 1 }); - }; - }, []); - const onInteractionHandler = () => setIsOpen(!isOpen); const DropdownContent = isOpen ? OHIFLayoutSelector : null; - const onSelectionHandler = ({ numRows, numCols }) => { - // TODO Introduce a service to persist the state of the current hanging protocol/app. - - // TODO Here the layout change will amount to a change of hanging protocol as specified by the extension for this layout selector tool - // followed by the change of the grid itself. - if (hangingProtocolService.getActiveProtocol().protocol.id === 'mpr') { - toolbarService.recordInteraction({ - groupId: 'MPR', - itemId: 'MPR', - interactionType: 'toggle', - commands: [ - { - commandName: 'toggleMPR', - commandOptions: {}, - context: 'CORNERSTONE', - }, - ], - }); - } - - // When a new layout is selected, keep any extra/offscreen viewports - // so that if any of those viewports were populated via the UI then they - // will be maintained in case those viewports are redisplayed later. - viewportGridService.setLayout({ - numRows, - numCols, - keepExtraViewports: true, + const onSelectionHandler = props => { + toolbarService.recordInteraction({ + interactionType: 'action', + commands: [ + { + commandName: 'setViewportGridLayout', + commandOptions: { ...props }, + context: 'DEFAULT', + }, + ], }); }; @@ -107,7 +77,7 @@ function LayoutSelector({ /> ) } - isActive={disableSelector ? false : isOpen} + isActive={isOpen} type="toggle" /> ); diff --git a/extensions/default/src/ViewerLayout/index.tsx b/extensions/default/src/ViewerLayout/index.tsx index 04776be4c..30b8932a5 100644 --- a/extensions/default/src/ViewerLayout/index.tsx +++ b/extensions/default/src/ViewerLayout/index.tsx @@ -14,7 +14,12 @@ import { LoadingIndicatorProgress, } from '@ohif/ui'; import i18n from '@ohif/i18n'; -import { hotkeys } from '@ohif/core'; +import { + ServicesManager, + HangingProtocolService, + hotkeys, + CommandsManager, +} from '@ohif/core'; import { useAppConfig } from '@state'; import Toolbar from '../Toolbar/Toolbar'; @@ -33,7 +38,7 @@ function ViewerLayout({ rightPanels = [], leftPanelDefaultClosed = false, rightPanelDefaultClosed = false, -}) { +}): React.FunctionComponent { const [appConfig] = useAppConfig(); const navigate = useNavigate(); const location = useLocation(); @@ -169,15 +174,13 @@ function ViewerLayout({ useEffect(() => { const { unsubscribe } = hangingProtocolService.subscribe( - hangingProtocolService.EVENTS.HANGING_PROTOCOL_APPLIED_FOR_VIEWPORT, + HangingProtocolService.EVENTS.PROTOCOL_CHANGED, // Todo: right now to set the loading indicator to false, we need to wait for the // hangingProtocolService to finish applying the viewport matching to each viewport, // however, this might not be the only approach to set the loading indicator to false. we need to explore this further. - ({ progress }) => { - if (progress === 100) { - setShowLoadingIndicator(false); - } + () => { + setShowLoadingIndicator(false); } ); @@ -265,7 +268,8 @@ ViewerLayout.propTypes = { extensionManager: PropTypes.shape({ getModuleEntry: PropTypes.func.isRequired, }).isRequired, - commandsManager: PropTypes.object, + commandsManager: PropTypes.instanceOf(CommandsManager), + servicesManager: PropTypes.instanceOf(ServicesManager), // From modes leftPanels: PropTypes.array, rightPanels: PropTypes.array, diff --git a/extensions/default/src/commandsModule.js b/extensions/default/src/commandsModule.js deleted file mode 100644 index a39b78670..000000000 --- a/extensions/default/src/commandsModule.js +++ /dev/null @@ -1,97 +0,0 @@ -import DicomTagBrowser from './DicomTagBrowser/DicomTagBrowser'; -import React from 'react'; - -const commandsModule = ({ servicesManager, commandsManager }) => { - const { - measurementService, - hangingProtocolService, - uiNotificationService, - viewportGridService, - displaySetService, - } = servicesManager.services; - - const actions = { - displayNotification: ({ text, title, type }) => { - uiNotificationService.show({ - title: title, - message: text, - type: type, - }); - }, - clearMeasurements: () => { - measurementService.clear(); - }, - nextStage: () => { - // next stage in hanging protocols - hangingProtocolService.nextProtocolStage(); - }, - previousStage: () => { - hangingProtocolService.previousProtocolStage(); - }, - openDICOMTagViewer() { - const { activeViewportIndex, viewports } = viewportGridService.getState(); - const activeViewportSpecificData = viewports[activeViewportIndex]; - const { displaySetInstanceUIDs } = activeViewportSpecificData; - - const displaySets = displaySetService.activeDisplaySets; - const { uiModalService } = servicesManager.services; - - const displaySetInstanceUID = displaySetInstanceUIDs[0]; - uiModalService.show({ - content: DicomTagBrowser, - contentProps: { - displaySets, - displaySetInstanceUID, - onClose: uiModalService.hide, - }, - title: 'DICOM Tag Browser', - }); - }, - - /** - * Toggle viewport overlay (the information panel shown on the four corners - * of the viewport) - * @see ViewportOverlay and CustomizableViewportOverlay components - */ - toggleOverlays: () => { - const overlays = document.getElementsByClassName('viewport-overlay'); - for (let i = 0; i < overlays.length; i++) { - overlays.item(i).classList.toggle('hidden'); - } - }, - }; - - const definitions = { - clearMeasurements: { - commandFn: actions.clearMeasurements, - storeContexts: [], - options: {}, - }, - displayNotification: { - commandFn: actions.displayNotification, - storeContexts: [], - options: {}, - }, - nextStage: { - commandFn: actions.nextStage, - storeContexts: [], - options: {}, - }, - previousStage: { - commandFn: actions.previousStage, - storeContexts: [], - options: {}, - }, - openDICOMTagViewer: { - commandFn: actions.openDICOMTagViewer, - }, - }; - - return { - actions, - definitions, - defaultContext: 'DEFAULT', - }; -}; - -export default commandsModule; diff --git a/extensions/default/src/commandsModule.ts b/extensions/default/src/commandsModule.ts new file mode 100644 index 000000000..a14563e93 --- /dev/null +++ b/extensions/default/src/commandsModule.ts @@ -0,0 +1,575 @@ +import { ServicesManager, utils } from '@ohif/core'; + +import { + ContextMenuController, + defaultContextMenu, +} from './CustomizeableContextMenu'; +import DicomTagBrowser from './DicomTagBrowser/DicomTagBrowser'; +import reuseCachedLayouts from './utils/reuseCachedLayouts'; +import findViewportsByPosition, { + findOrCreateViewport as layoutFindOrCreate, +} from './findViewportsByPosition'; + +import { ContextMenuProps } from './CustomizeableContextMenu/types'; + +const { subscribeToNextViewportGridChange } = utils; + +export type HangingProtocolParams = { + protocolId?: string; + stageIndex?: number; + activeStudyUID?: string; + stageId?: string; +}; + +/** + * Determine if a command is a hanging protocol one. + * For now, just use the two hanging protocol commands that are in this + * commands module, but if others get added elsewhere this may need enhancing. + */ +const isHangingProtocolCommand = command => + command && + (command.commandName === 'setHangingProtocol' || + command.commandName === 'toggleHangingProtocol'); + +const commandsModule = ({ + servicesManager, + commandsManager, +}: Types.Extensions.ExtensionParams): Types.Extensions.CommandsModule => { + const { + customizationService, + measurementService, + hangingProtocolService, + uiNotificationService, + viewportGridService, + displaySetService, + stateSyncService, + toolbarService, + } = (servicesManager as ServicesManager).services; + + // Define a context menu controller for use with any context menus + const contextMenuController = new ContextMenuController( + servicesManager, + commandsManager + ); + + const actions = { + /** + * Show the context menu. + * @param options.menuId defines the menu name to lookup, from customizationService + * @param options.defaultMenu contains the default menu set to use + * @param options.element is the element to show the menu within + * @param options.event is the event that caused the context menu + * @param options.selectorProps is the set of selection properties to use + */ + showContextMenu: (options: ContextMenuProps) => { + const { + menuCustomizationId, + element, + event, + selectorProps, + defaultPointsPosition = [], + } = options; + + const optionsToUse = { ...options }; + + if (menuCustomizationId) { + Object.assign( + optionsToUse, + customizationService.get(menuCustomizationId, defaultContextMenu) + ); + } + + // TODO - make the selectorProps richer by including the study metadata and display set. + const { protocol, stage } = hangingProtocolService.getActiveProtocol(); + optionsToUse.selectorProps = { + event, + protocol, + stage, + ...selectorProps, + }; + + contextMenuController.showContextMenu( + optionsToUse, + element, + defaultPointsPosition + ); + }, + + /** Close a context menu currently displayed */ + closeContextMenu: () => { + contextMenuController.closeContextMenu(); + }, + + displayNotification: ({ text, title, type }) => { + uiNotificationService.show({ + title: title, + message: text, + type: type, + }); + }, + clearMeasurements: () => { + measurementService.clear(); + }, + + /** + * Toggles off all tools which contain a commandName of setHangingProtocol + * or toggleHangingProtocol, and which match/don't match the protocol id/stage + */ + toggleHpTools: () => { + const { + protocol, + stageIndex: toggleStageIndex, + stage, + } = hangingProtocolService.getActiveProtocol(); + const enableListener = button => { + if (!button.id) return; + const { commands, items } = button.props || button; + if (items) { + items.forEach(enableListener); + } + const hpCommand = commands?.find?.(isHangingProtocolCommand); + if (!hpCommand) return; + const { protocolId, stageIndex, stageId } = hpCommand.commandOptions; + const isActive = + (!protocolId || protocolId === protocol.id) && + (stageIndex === undefined || stageIndex === toggleStageIndex) && + (!stageId || stageId === stage.id); + toolbarService.setActive(button.id, isActive); + }; + Object.values(toolbarService.getButtons()).forEach(enableListener); + }, + + /** + * Sets the specified protocol + * 1. Records any existing state using the viewport grid service + * 2. Finds the destination state - this can be one of: + * a. The specified protocol stage + * b. An alternate (toggled or restored) protocol stage + * c. A restored custom layout + * 3. Finds the parameters for the specified state + * a. Gets the displaySetSelectorMap + * b. Gets the map by position + * c. Gets any toggle mapping to map position to/from current view + * 4. If restore, then sets layout + * a. Maps viewport position by currently displayed viewport map id + * b. Uses toggle information to map display set id + * 5. Else applies the hanging protocol + * a. HP Service is provided displaySetSelectorMap + * b. HP Service will throw an exception if it isn't applicable + * @param options - contains information on the HP to apply + * @param options.activeStudyUID - the updated study to apply the HP to + * @param options.protocolId - the protocol ID to change to + * @param options.stageId - the stageId to apply + * @param options.stageIndex - the index of the stage to go to. + * @param options.reset - flag to indicate if the HP should be reset to its original and not restored to a previous state + */ + setHangingProtocol: ({ + activeStudyUID = '', + protocolId, + stageId, + stageIndex, + reset = false, + }: HangingProtocolParams): boolean => { + try { + // Stores in the state the reuseID to displaySetUID mapping + // Pass in viewportId for the active viewport. This item will get set as + // the activeViewportId + const state = viewportGridService.getState(); + const hpInfo = hangingProtocolService.getState(); + const { + protocol: oldProtocol, + } = hangingProtocolService.getActiveProtocol(); + const stateSyncReduce = reuseCachedLayouts( + state, + hangingProtocolService, + stateSyncService + ); + const { + hangingProtocolStageIndexMap, + viewportGridStore, + displaySetSelectorMap, + } = stateSyncReduce; + + if (!protocolId) { + // Re-use the previous protocol id, and optionally stage + protocolId = hpInfo.protocolId; + if (stageId === undefined && stageIndex === undefined) { + stageIndex = hpInfo.stageIndex; + } + } else if (stageIndex === undefined && stageId === undefined) { + // Re-set the same stage as was previously used + const hangingId = `${activeStudyUID || + hpInfo.activeStudyUID}:${protocolId}`; + stageIndex = hangingProtocolStageIndexMap[hangingId]?.stageIndex; + } + + const useStageIdx = + stageIndex ?? + hangingProtocolService.getStageIndex(protocolId, { + stageId, + stageIndex, + }); + + if (activeStudyUID) { + hangingProtocolService.setActiveStudyUID(activeStudyUID); + } + + const storedHanging = `${ + hangingProtocolService.getState().activeStudyUID + }:${protocolId}:${useStageIdx || 0}`; + + const restoreProtocol = !reset && viewportGridStore[storedHanging]; + + if ( + protocolId === hpInfo.protocolId && + useStageIdx === hpInfo.stageIndex && + !activeStudyUID + ) { + // Clear the HP setting to reset them + hangingProtocolService.setProtocol(protocolId, { + stageId, + stageIndex: useStageIdx, + }); + } else { + hangingProtocolService.setProtocol(protocolId, { + displaySetSelectorMap, + stageId, + stageIndex: useStageIdx, + restoreProtocol, + }); + if (restoreProtocol) { + viewportGridService.set(viewportGridStore[storedHanging]); + } + } + // Do this after successfully applying the update + stateSyncService.store(stateSyncReduce); + // This is a default action applied + actions.toggleHpTools(hangingProtocolService.getActiveProtocol()); + // Send the notification about updating the state + if (protocolId !== hpInfo.protocolId) { + const { protocol } = hangingProtocolService.getActiveProtocol(); + // The old protocol callbacks are used for turning off things + // like crosshairs when moving to the new HP + commandsManager.run(oldProtocol.callbacks?.onProtocolExit); + // The new protocol callback is used for things like + // activating modes etc. + commandsManager.run(protocol.callbacks?.onProtocolEnter); + } + return true; + } catch (e) { + actions.toggleHpTools(hangingProtocolService.getActiveProtocol()); + uiNotificationService.show({ + title: 'Apply Hanging Protocol', + message: 'The hanging protocol could not be applied.', + type: 'error', + duration: 3000, + }); + return false; + } + }, + + toggleHangingProtocol: ({ + protocolId, + stageIndex, + }: HangingProtocolParams): boolean => { + const { + protocol, + stageIndex: desiredStageIndex, + activeStudy, + } = hangingProtocolService.getActiveProtocol(); + const { toggleHangingProtocol } = stateSyncService.getState(); + const storedHanging = `${ + activeStudy.StudyInstanceUID + }:${protocolId}:${stageIndex | 0}`; + if ( + protocol.id === protocolId && + (stageIndex === undefined || stageIndex === desiredStageIndex) + ) { + // Toggling off - restore to previous state + const previousState = toggleHangingProtocol[storedHanging] || { + protocolId: 'default', + }; + return actions.setHangingProtocol(previousState); + } else { + stateSyncService.store({ + toggleHangingProtocol: { + ...toggleHangingProtocol, + [storedHanging]: { + protocolId: protocol.id, + stageIndex: desiredStageIndex, + }, + }, + }); + return actions.setHangingProtocol({ + protocolId, + stageIndex, + reset: true, + }); + } + }, + + deltaStage: ({ direction }) => { + const { + protocolId, + stageIndex: oldStageIndex, + } = hangingProtocolService.getState(); + const { protocol } = hangingProtocolService.getActiveProtocol(); + for ( + let stageIndex = oldStageIndex + direction; + stageIndex >= 0 && stageIndex < protocol.stages.length; + stageIndex += direction + ) { + if (protocol.stages[stageIndex].status !== 'disabled') { + return actions.setHangingProtocol({ + protocolId, + stageIndex, + }); + } + } + uiNotificationService.show({ + title: 'Change Stage', + message: 'The hanging protocol has no more applicable stages', + type: 'info', + duration: 3000, + }); + }, + + /** + * Changes the viewport grid layout in terms of the MxN layout. + */ + setViewportGridLayout: ({ numRows, numCols }) => { + const { protocol } = hangingProtocolService.getActiveProtocol(); + const onLayoutChange = protocol.callbacks?.onLayoutChange; + if (commandsManager.run(onLayoutChange, { numRows, numCols }) === false) { + console.log( + 'setViewportGridLayout running', + onLayoutChange, + numRows, + numCols + ); + // Don't apply the layout if the run command returns false + return; + } + + const completeLayout = () => { + const state = viewportGridService.getState(); + const stateReduce = findViewportsByPosition( + state, + { numRows, numCols }, + stateSyncService + ); + const findOrCreateViewport = layoutFindOrCreate.bind( + null, + hangingProtocolService, + stateReduce.viewportsByPosition + ); + + viewportGridService.setLayout({ + numRows, + numCols, + findOrCreateViewport, + }); + stateSyncService.store(stateReduce); + }; + // Need to finish any work in the callback + window.setTimeout(completeLayout, 0); + }, + + toggleOneUp() { + const viewportGridState = viewportGridService.getState(); + const { activeViewportIndex, viewports, layout } = viewportGridState; + const { + displaySetInstanceUIDs, + displaySetOptions, + viewportOptions, + } = viewports[activeViewportIndex]; + + if (layout.numCols === 1 && layout.numRows === 1) { + // The viewer is in one-up. Check if there is a state to restore/toggle back to. + const { toggleOneUpViewportGridStore } = stateSyncService.getState(); + + if (!toggleOneUpViewportGridStore.layout) { + return; + } + // There is a state to toggle back to. The viewport that was + // originally toggled to one up was the former active viewport. + const viewportIndexToUpdate = + toggleOneUpViewportGridStore.activeViewportIndex; + + // Determine which viewports need to be updated. This is particularly + // important when MPR is toggled to one up and a different reconstructable + // is swapped in. Note that currently HangingProtocolService.getViewportsRequireUpdate + // does not support viewport with multiple display sets. + const updatedViewports = + displaySetInstanceUIDs.length > 1 + ? [] + : displaySetInstanceUIDs + .map(displaySetInstanceUID => + hangingProtocolService.getViewportsRequireUpdate( + viewportIndexToUpdate, + displaySetInstanceUID + ) + ) + .flat(); + + // This findOrCreateViewport returns either one of the updatedViewports + // returned from the HP service OR if there is not one from the HP service then + // simply returns what was in the previous state. + const findOrCreateViewport = (viewportIndex: number) => { + const viewport = updatedViewports.find( + viewport => viewport.viewportIndex === viewportIndex + ); + + return viewport + ? { viewportOptions, displaySetOptions, ...viewport } + : toggleOneUpViewportGridStore.viewports[viewportIndex]; + }; + + const layoutOptions = viewportGridService.getLayoutOptionsFromState( + toggleOneUpViewportGridStore + ); + + // Restore the previous layout including the active viewport. + viewportGridService.setLayout({ + numRows: toggleOneUpViewportGridStore.layout.numRows, + numCols: toggleOneUpViewportGridStore.layout.numCols, + activeViewportIndex: viewportIndexToUpdate, + layoutOptions, + findOrCreateViewport, + }); + } else { + // We are not in one-up, so toggle to one up. + + // Store the current viewport grid state so we can toggle it back later. + stateSyncService.store({ + toggleOneUpViewportGridStore: viewportGridState, + }); + + // This findOrCreateViewport only return one viewport - the active + // one being toggled to one up. + const findOrCreateViewport = () => { + return { + displaySetInstanceUIDs, + displaySetOptions, + viewportOptions, + }; + }; + + // Set the layout to be 1x1/one-up. + viewportGridService.setLayout({ + numRows: 1, + numCols: 1, + findOrCreateViewport, + }); + + // Subscribe to ANY (i.e. manual and hanging protocol) layout changes so that + // any grid layout state to toggle to from one up is cleared. This is performed on + // a timeout to avoid clearing the state for the actual to one up change. + // Whenever the next layout change event is fired, the subscriptions are unsubscribed. + const clearToggleOneUpViewportGridStore = () => { + const toggleOneUpViewportGridStore = {}; + stateSyncService.store({ + toggleOneUpViewportGridStore, + }); + }; + + subscribeToNextViewportGridChange( + viewportGridService, + clearToggleOneUpViewportGridStore + ); + } + }, + + openDICOMTagViewer() { + const { activeViewportIndex, viewports } = viewportGridService.getState(); + const activeViewportSpecificData = viewports[activeViewportIndex]; + const { displaySetInstanceUIDs } = activeViewportSpecificData; + + const displaySets = displaySetService.activeDisplaySets; + const { UIModalService } = servicesManager.services; + + const displaySetInstanceUID = displaySetInstanceUIDs[0]; + UIModalService.show({ + content: DicomTagBrowser, + contentProps: { + displaySets, + displaySetInstanceUID, + onClose: UIModalService.hide, + }, + title: 'DICOM Tag Browser', + }); + }, + + /** + * Toggle viewport overlay (the information panel shown on the four corners + * of the viewport) + * @see ViewportOverlay and CustomizableViewportOverlay components + */ + toggleOverlays: () => { + const overlays = document.getElementsByClassName('viewport-overlay'); + for (let i = 0; i < overlays.length; i++) { + overlays.item(i).classList.toggle('hidden'); + } + }, + }; + + const definitions = { + showContextMenu: { + commandFn: actions.showContextMenu, + }, + closeContextMenu: { + commandFn: actions.closeContextMenu, + }, + clearMeasurements: { + commandFn: actions.clearMeasurements, + storeContexts: [], + options: {}, + }, + displayNotification: { + commandFn: actions.displayNotification, + storeContexts: [], + options: {}, + }, + setHangingProtocol: { + commandFn: actions.setHangingProtocol, + storeContexts: [], + options: {}, + }, + toggleHangingProtocol: { + commandFn: actions.toggleHangingProtocol, + storeContexts: [], + options: {}, + }, + nextStage: { + commandFn: actions.deltaStage, + storeContexts: [], + options: { direction: 1 }, + }, + previousStage: { + commandFn: actions.deltaStage, + storeContexts: [], + options: { direction: -1 }, + }, + setViewportGridLayout: { + commandFn: actions.setViewportGridLayout, + storeContexts: [], + options: {}, + }, + toggleOneUp: { + commandFn: actions.toggleOneUp, + storeContexts: [], + options: {}, + }, + openDICOMTagViewer: { + commandFn: actions.openDICOMTagViewer, + }, + }; + + return { + actions, + definitions, + defaultContext: 'DEFAULT', + }; +}; + +export default commandsModule; diff --git a/extensions/default/src/findViewportsByPosition.ts b/extensions/default/src/findViewportsByPosition.ts new file mode 100644 index 000000000..76c488146 --- /dev/null +++ b/extensions/default/src/findViewportsByPosition.ts @@ -0,0 +1,106 @@ +import { StateSyncService, Types } from '@ohif/core'; + +/** + * This find or create viewport is paired with the reduce results from + * below, and the action of this viewport is to look for previously filled + * viewports, and to re-use by position id. If there is no filled viewport, + * then one can be re-used from the display set if it isn't going to be displayed. + * @param hangingProtocolService - bound parameter supplied before using this + * @param viewportsByPosition - bound parameter supplied before using this + * @param viewportIndex - the index to retrieve + * @param positionId - the current position on screen to retrieve + * @param options - the set of options used, so that subsequent calls can + * store state that is reset by the setLayout. + * This class uses the options to store the already viewed + * display sets, filling it initially with the pre-existing viewports. + */ +export const findOrCreateViewport = ( + hangingProtocolService, + viewportsByPosition, + viewportIndex: number, + positionId: string, + options: Record +) => { + const byPositionViewport = viewportsByPosition?.[positionId]; + if (byPositionViewport) return { ...byPositionViewport }; + const { protocolId, stageIndex } = hangingProtocolService.getState(); + + // Setup the initial in display correctly for initial view/select + if (!options.inDisplay) { + options.inDisplay = [...viewportsByPosition.initialInDisplay]; + } + // See if there is a default viewport for new views. + const missing = hangingProtocolService.getMissingViewport( + protocolId, + stageIndex, + options + ); + if (missing) { + const displaySetInstanceUIDs = missing.displaySetsInfo.map( + it => it.displaySetInstanceUID + ); + options.inDisplay.push(...displaySetInstanceUIDs); + return { + displaySetInstanceUIDs, + displaySetOptions: missing.displaySetsInfo.map( + it => it.displaySetOptions + ), + viewportOptions: { + ...missing.viewportOptions, + }, + }; + } + return {}; +}; + +/** + * Records the information on what viewports are displayed in which position. + * Also records what instances from the existing positions are going to be in + * view initially. + * @param state is the viewport grid state + * @param syncService is the state sync service to use for getting existing state + * @returns Set of states that can be applied to the state sync to remember + * the current view state. + */ +const findViewportsByPosition = ( + state, + { numRows, numCols }, + syncService: StateSyncService +): Record> => { + const { viewports } = state; + const syncState = syncService.getState(); + const viewportsByPosition = { ...syncState.viewportsByPosition }; + const initialInDisplay = []; + + for (const viewport of viewports) { + if (viewport.positionId) { + const storedViewport = { + ...viewport, + viewportOptions: { ...viewport.viewportOptions }, + }; + viewportsByPosition[viewport.positionId] = storedViewport; + // The cache doesn't store the viewport options - it is only useful + // for remembering the type of viewport and UIDs + delete storedViewport.viewportId; + delete storedViewport.viewportOptions.viewportId; + } + } + + for (let row = 0; row < numRows; row++) { + for (let col = 0; col < numCols; col++) { + const pos = col + row * numCols; + const positionId = viewports?.[pos]?.positionId || `${col}-${row}`; + const viewport = viewportsByPosition[positionId]; + if (viewport?.displaySetInstanceUIDs) { + initialInDisplay.push(...viewport.displaySetInstanceUIDs); + } + } + } + + // Store the initially displayed elements + viewportsByPosition.initialInDisplay = initialInDisplay; + + return { viewportsByPosition }; +}; + +export default findViewportsByPosition; diff --git a/extensions/default/src/getCustomizationModule.tsx b/extensions/default/src/getCustomizationModule.tsx index 47d5d1718..dee0b530f 100644 --- a/extensions/default/src/getCustomizationModule.tsx +++ b/extensions/default/src/getCustomizationModule.tsx @@ -1,3 +1,4 @@ +import { CustomizationService } from '@ohif/core'; import React from 'react'; import DataSourceSelector from './Panels/DataSourceSelector'; @@ -82,7 +83,6 @@ export default function getCustomizationModule() { */ { id: 'ohif.overlayItem', - uiType: 'uiType', content: function (props) { if (this.condition && !this.condition(props)) return null; @@ -91,8 +91,8 @@ export default function getCustomizationModule() { instance && this.attribute ? instance[this.attribute] : this.contentF && typeof this.contentF === 'function' - ? this.contentF(props) - : null; + ? this.contentF(props) + : null; if (!value) return null; return ( @@ -109,6 +109,29 @@ export default function getCustomizationModule() { ); }, }, + + { + id: 'ohif.contextMenu', + + /** Applies the customizationType to all the menu items. + * This function clones the object and child objects to prevent + * changes to the original customization object. + */ + transform: function (customizationService: CustomizationService) { + // Don't modify the children, as those are copied by reference + const clonedObject = { ...this }; + clonedObject.menus = this.menus.map(menu => ({ ...menu })); + + for (const menu of clonedObject.menus) { + const { items: originalItems } = menu; + menu.items = []; + for (const item of originalItems) { + menu.items.push(customizationService.transform(item)); + } + } + return clonedObject; + }, + }, ], }, ]; diff --git a/extensions/default/src/getHangingProtocolModule.js b/extensions/default/src/getHangingProtocolModule.js index cdcf242c3..a975a8968 100644 --- a/extensions/default/src/getHangingProtocolModule.js +++ b/extensions/default/src/getHangingProtocolModule.js @@ -1,6 +1,9 @@ const defaultProtocol = { id: 'default', locked: true, + // Don't store this hanging protocol as it applies to the currently active + // display set by default + // cacheId: null, hasUpdatedPriorsInformation: false, name: 'Default', createdDate: '2021-02-23T19:22:08.894Z', @@ -9,6 +12,25 @@ const defaultProtocol = { editableBy: {}, protocolMatchingRules: [], toolGroupIds: ['default'], + // -1 would be used to indicate active only, whereas other values are + // the number of required priors referenced - so 0 means active with + // 0 or more priors. + numberOfPriorsReferenced: 0, + // Default viewport is used to define the viewport when + // additional viewports are added using the layout tool + defaultViewport: { + viewportOptions: { + viewportType: 'stack', + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: -1, + }, + ], + }, displaySetSelectors: { defaultDisplaySetId: { // Unused currently @@ -24,12 +46,12 @@ const defaultProtocol = { }, }, ], - studyMatchingRules: [], + // Can be used to select matching studies + // studyMatchingRules: [], }, }, stages: [ { - id: 'hYbmMy3b7pz7GLiaT', name: 'default', viewportStructure: { layoutType: 'grid', @@ -41,6 +63,7 @@ const defaultProtocol = { viewports: [ { viewportOptions: { + viewportType: 'stack', toolGroupId: 'default', // initialImageOptions: { // index: 180, @@ -56,14 +79,218 @@ const defaultProtocol = { ], createdDate: '2021-02-23T18:32:42.850Z', }, + + // This is an example of a 2x2 layout that requires at least 2 viewports + // filled to be navigatable to + { + name: '2x2', + // Indicate that the number of viewports needed is 2 filled viewports, + // but that 4 viewports are preferred. + stageActivation: { + enabled: { + minViewportsMatched: 4, + }, + passive: { + minViewportsMatched: 2, + }, + }, + + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 2, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 3, + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 2, + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 1, + }, + ], + }, + { + viewportOptions: {}, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 0, + }, + ], + }, + ], + }, + + { + name: '3x1', + // Indicate that the number of viewports needed is 2 filled viewports, + // but that 4 viewports are preferred. + stageActivation: { + enabled: { + minViewportsMatched: 3, + }, + }, + + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 1, + columns: 3, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 2, + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: 1, + }, + ], + }, + { + viewportOptions: {}, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, + + // This is an example of a layout with more than one element in it + // It can be navigated to using , and . (prev/next stage) + { + name: '2x1', + // Indicate that the number of viewports needed is 1 filled viewport, + // but that 2 viewports are preferred. + stageActivation: { + enabled: { + minViewportsMatched: 3, + }, + }, + + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 1, + columns: 2, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + // initialImageOptions: { + // index: 180, + // preset: 'middle', // 'first', 'last', 'middle' + // }, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + // Shows the second index of this image set + matchedDisplaySetsIndex: 1, + }, + ], + }, + { + viewportOptions: {}, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, + + { + name: '2x1', + // Indicate that the number of viewports needed is 1 filled viewport, + // but that 2 viewports are preferred. + stageActivation: { + enabled: { + minViewportsMatched: 3, + }, + }, + + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 1, + }, + }, + viewports: [ + { + viewportOptions: {}, + displaySets: [ + { + id: 'defaultDisplaySetId', + // Shows the second index of this image set + matchedDisplaySetsIndex: 1, + }, + ], + }, + { + viewportOptions: {}, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, ], - numberOfPriorsReferenced: -1, }; function getHangingProtocolModule() { return [ { - id: defaultProtocol.id, + name: defaultProtocol.id, protocol: defaultProtocol, }, ]; diff --git a/extensions/default/src/getSopClassHandlerModule.js b/extensions/default/src/getSopClassHandlerModule.js index 317ffdd64..f00018187 100644 --- a/extensions/default/src/getSopClassHandlerModule.js +++ b/extensions/default/src/getSopClassHandlerModule.js @@ -29,6 +29,7 @@ const makeDisplaySet = instances => { SeriesDescription: instance.SeriesDescription || '', Modality: instance.Modality, isMultiFrame: isMultiFrame(instance), + countIcon: displayReconstructableInfo.value ? 'icon-mpr' : undefined, numImageFrames: instances.length, SOPClassHandlerId: `${id}.sopClassHandlerModule.${sopClassHandlerName}`, isReconstructable: displayReconstructableInfo.value, diff --git a/extensions/default/src/index.js b/extensions/default/src/index.ts similarity index 73% rename from extensions/default/src/index.js rename to extensions/default/src/index.ts index bb76b0afc..bb4a63c52 100644 --- a/extensions/default/src/index.js +++ b/extensions/default/src/index.ts @@ -1,32 +1,34 @@ +import { Types } from '@ohif/core'; + import getDataSourcesModule from './getDataSourcesModule.js'; import getLayoutTemplateModule from './getLayoutTemplateModule.js'; import getPanelModule from './getPanelModule'; import getSopClassHandlerModule from './getSopClassHandlerModule.js'; import getToolbarModule from './getToolbarModule'; -import commandsModule from './commandsModule'; +import getCommandsModule from './commandsModule'; import getHangingProtocolModule from './getHangingProtocolModule'; import getStudiesForPatientByStudyInstanceUID from './Panels/getStudiesForPatientByStudyInstanceUID'; import getCustomizationModule from './getCustomizationModule'; import { id } from './id.js'; -import init from './init'; +import preRegistration from './init'; +import { + ContextMenuController, + CustomizeableContextMenuTypes, +} from './CustomizeableContextMenu'; -const defaultExtension = { +const defaultExtension: Types.Extensions.Extension = { /** * Only required property. Should be a unique value across all extensions. */ id, - preRegistration: ({ servicesManager, configuration = {} }) => { - init({ servicesManager, configuration }); - }, + preRegistration, getDataSourcesModule, getLayoutTemplateModule, getPanelModule, getHangingProtocolModule, getSopClassHandlerModule, getToolbarModule, - getCommandsModule({ servicesManager, commandsManager }) { - return commandsModule({ servicesManager, commandsManager }); - }, + getCommandsModule, getUtilityModule({ servicesManager }) { return [ { @@ -42,3 +44,5 @@ const defaultExtension = { }; export default defaultExtension; + +export { ContextMenuController, CustomizeableContextMenuTypes }; diff --git a/extensions/default/src/init.js b/extensions/default/src/init.ts similarity index 52% rename from extensions/default/src/init.js rename to extensions/default/src/init.ts index 1bfc3aa8e..b979bb4f6 100644 --- a/extensions/default/src/init.js +++ b/extensions/default/src/init.ts @@ -10,7 +10,8 @@ const metadataProvider = classes.MetadataProvider; * @param {Object} servicesManager * @param {Object} configuration */ -export default function init({ servicesManager, configuration }) { +export default function init({ servicesManager, configuration = {} }): void { + const { stateSyncService } = servicesManager.services; // Add DicomMetadataStore.subscribe( DicomMetadataStore.EVENTS.INSTANCES_ADDED, @@ -23,6 +24,34 @@ export default function init({ servicesManager, configuration }) { DicomMetadataStore.EVENTS.SERIES_UPDATED, handlePETImageMetadata ); + + // viewportGridStore is a sync state which stores the entire + // ViewportGridService getState, by the keys `::` + // Used to recover manual changes to the layout of a stage. + stateSyncService.register('viewportGridStore', { clearOnModeExit: true }); + + // displaySetSelectorMap stores a map from + // `::` to + // a displaySetInstanceUID, used to display named display sets in + // specific spots within a hanging protocol and be able to remember what the + // user did with those named spots between stages and protocols. + stateSyncService.register('displaySetSelectorMap', { clearOnModeExit: true }); + + // Stores a map from `:${protocolId}` to the getHPInfo results + // in order to recover the correct stage when returning to a Hanging Protocol. + stateSyncService.register('hangingProtocolStageIndexMap', { + clearOnModeExit: true, + }); + + // Stores a map from the to be applied hanging protocols `:` + // to the previously applied hanging protolStageIndexMap key, in order to toggle + // off the applied protocol and remember the old state. + stateSyncService.register('toggleHangingProtocol', { clearOnModeExit: true }); + + // Stores the viewports by `rows-cols` position so that when the layout + // changes numRows and numCols, the viewports can be remembers and then replaced + // afterwards. + stateSyncService.register('viewportsByPosition', { clearOnModeExit: true }); } const handlePETImageMetadata = ({ SeriesInstanceUID, StudyInstanceUID }) => { diff --git a/extensions/default/src/utils/reuseCachedLayouts.ts b/extensions/default/src/utils/reuseCachedLayouts.ts new file mode 100644 index 000000000..38ecf8298 --- /dev/null +++ b/extensions/default/src/utils/reuseCachedLayouts.ts @@ -0,0 +1,75 @@ +import { HangingProtocolService, StateSyncService, Types } from '@ohif/core'; + +export type ReturnType = { + hangingProtocolStageIndexMap: Record; + viewportGridStore: Record; + displaySetSelectorMap: Record; +}; + +/** + * Calculates a set of state information for hanging protocols and viewport grid + * which defines the currently applied hanging protocol state. + * @param state is the viewport grid state + * @param syncService is the state sync service to use for getting existing state + * @returns Set of states that can be applied to the state sync to remember + * the current view state. + */ +const reuseCachedLayout = ( + state, + hangingProtocolService: HangingProtocolService, + syncService: StateSyncService +): ReturnType => { + const { activeViewportIndex, viewports, layout } = state; + const hpInfo = hangingProtocolService.getState(); + const { protocolId, stageIndex, activeStudyUID } = hpInfo; + const { protocol } = hangingProtocolService.getActiveProtocol(); + const stage = protocol.stages[stageIndex]; + const storeId = `${activeStudyUID}:${protocolId}:${stageIndex}`; + const syncState = syncService.getState(); + const cacheId = `${activeStudyUID}:${protocolId}`; + const viewportGridStore = { ...syncState.viewportGridStore }; + const hangingProtocolStageIndexMap = { + ...syncState.hangingProtocolStageIndexMap, + }; + const displaySetSelectorMap = { ...syncState.displaySetSelectorMap }; + const { rows, columns } = stage.viewportStructure.properties; + const custom = + stage.viewports.length !== state.viewports.length || + state.layout.numRows !== rows || + state.layout.numCols !== columns; + + hangingProtocolStageIndexMap[cacheId] = hpInfo; + + if (storeId && custom) { + viewportGridStore[storeId] = { ...state }; + } + + for (let idx = 0; idx < state.viewports.length; idx++) { + const viewport = state.viewports[idx]; + const { displaySetOptions, displaySetInstanceUIDs } = viewport; + if (!displaySetOptions) continue; + for (let i = 0; i < displaySetOptions.length; i++) { + const displaySetUID = displaySetInstanceUIDs[i]; + if (!displaySetUID) continue; + if (idx === activeViewportIndex && i === 0) { + displaySetSelectorMap[ + `${activeStudyUID}:activeDisplaySet:0` + ] = displaySetUID; + } + if (displaySetOptions[i]?.id) { + displaySetSelectorMap[ + `${activeStudyUID}:${displaySetOptions[i].id}:${displaySetOptions[i] + .matchedDisplaySetsIndex || 0}` + ] = displaySetUID; + } + } + } + + return { + hangingProtocolStageIndexMap, + viewportGridStore, + displaySetSelectorMap, + }; +}; + +export default reuseCachedLayout; diff --git a/extensions/measurement-tracking/package.json b/extensions/measurement-tracking/package.json index 01c45ccdc..332d84253 100644 --- a/extensions/measurement-tracking/package.json +++ b/extensions/measurement-tracking/package.json @@ -32,10 +32,11 @@ "peerDependencies": { "@ohif/core": "^3.0.0", "classnames": "^2.3.2", - "@cornerstonejs/core": "^0.33.2", - "@cornerstonejs/tools": "^0.50.2", + "@cornerstonejs/core": "^0.40.0", + "@cornerstonejs/tools": "^0.60.1", "@ohif/extension-cornerstone-dicom-sr": "^3.0.0", "dcmjs": "^0.29.4", + "lodash.debounce": "^4.17.21", "prop-types": "^15.6.2", "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptBeginTracking.js b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptBeginTracking.js index 81419827c..75d7db2d7 100644 --- a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptBeginTracking.js +++ b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptBeginTracking.js @@ -7,12 +7,12 @@ const RESPONSE = { }; function promptBeginTracking({ servicesManager, extensionManager }, ctx, evt) { - const { UIViewportDialogService } = servicesManager.services; + const { uiViewportDialogService } = servicesManager.services; const { viewportIndex, StudyInstanceUID, SeriesInstanceUID } = evt; return new Promise(async function(resolve, reject) { let promptResult = await _askTrackMeasurements( - UIViewportDialogService, + uiViewportDialogService, viewportIndex ); @@ -25,7 +25,7 @@ function promptBeginTracking({ servicesManager, extensionManager }, ctx, evt) { }); } -function _askTrackMeasurements(UIViewportDialogService, viewportIndex) { +function _askTrackMeasurements(uiViewportDialogService, viewportIndex) { return new Promise(function(resolve, reject) { const message = 'Track measurements for this series?'; const actions = [ @@ -49,11 +49,11 @@ function _askTrackMeasurements(UIViewportDialogService, viewportIndex) { }, ]; const onSubmit = result => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(result); }; - UIViewportDialogService.show({ + uiViewportDialogService.show({ viewportIndex, id: 'measurement-tracking-prompt-begin-tracking', type: 'info', @@ -61,7 +61,7 @@ function _askTrackMeasurements(UIViewportDialogService, viewportIndex) { actions, onSubmit, onOutsideClick: () => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(RESPONSE.CANCEL); }, }); diff --git a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptHydrateStructuredReport.js b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptHydrateStructuredReport.js index bc889bfc7..52d139c55 100644 --- a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptHydrateStructuredReport.js +++ b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptHydrateStructuredReport.js @@ -16,7 +16,7 @@ function promptHydrateStructuredReport( evt ) { const { - UIViewportDialogService, + uiViewportDialogService, displaySetService, } = servicesManager.services; const { viewportIndex, displaySetInstanceUID } = evt; @@ -26,7 +26,7 @@ function promptHydrateStructuredReport( return new Promise(async function(resolve, reject) { const promptResult = await _askTrackMeasurements( - UIViewportDialogService, + uiViewportDialogService, viewportIndex ); @@ -55,7 +55,7 @@ function promptHydrateStructuredReport( }); } -function _askTrackMeasurements(UIViewportDialogService, viewportIndex) { +function _askTrackMeasurements(uiViewportDialogService, viewportIndex) { return new Promise(function(resolve, reject) { const message = 'Do you want to continue tracking measurements for this study?'; @@ -72,18 +72,18 @@ function _askTrackMeasurements(UIViewportDialogService, viewportIndex) { }, ]; const onSubmit = result => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(result); }; - UIViewportDialogService.show({ + uiViewportDialogService.show({ viewportIndex, type: 'info', message, actions, onSubmit, onOutsideClick: () => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(RESPONSE.CANCEL); }, }); diff --git a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptTrackNewSeries.js b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptTrackNewSeries.js index af4662821..1016212a9 100644 --- a/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptTrackNewSeries.js +++ b/extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/promptTrackNewSeries.js @@ -33,7 +33,7 @@ function promptTrackNewSeries({ servicesManager, extensionManager }, ctx, evt) { }); } -function _askShouldAddMeasurements(UIViewportDialogService, viewportIndex) { +function _askShouldAddMeasurements(uiViewportDialogService, viewportIndex) { return new Promise(function(resolve, reject) { const message = 'Do you want to add this measurement to the existing report?'; @@ -51,18 +51,18 @@ function _askShouldAddMeasurements(UIViewportDialogService, viewportIndex) { }, ]; const onSubmit = result => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(result); }; - UIViewportDialogService.show({ + uiViewportDialogService.show({ viewportIndex, type: 'info', message, actions, onSubmit, onOutsideClick: () => { - UIViewportDialogService.hide(); + uiViewportDialogService.hide(); resolve(RESPONSE.CANCEL); }, }); diff --git a/extensions/measurement-tracking/src/panels/PanelMeasurementTableTracking/index.tsx b/extensions/measurement-tracking/src/panels/PanelMeasurementTableTracking/index.tsx index ced5c7450..4006e016d 100644 --- a/extensions/measurement-tracking/src/panels/PanelMeasurementTableTracking/index.tsx +++ b/extensions/measurement-tracking/src/panels/PanelMeasurementTableTracking/index.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from 'react'; +import React, { useEffect, useState, useRef } from 'react'; import PropTypes from 'prop-types'; import { StudySummary, @@ -11,6 +11,7 @@ import { DicomMetadataStore, utils } from '@ohif/core'; import { useDebounce } from '@hooks'; import ActionButtons from './ActionButtons'; import { useTrackedMeasurements } from '../../getContextModule'; +import debounce from 'lodash.debounce'; const { downloadCSVReport } = utils; const { formatDate } = utils; @@ -45,6 +46,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) { DISPLAY_STUDY_SUMMARY_INITIAL_VALUE ); const [displayMeasurements, setDisplayMeasurements] = useState([]); + const measurementsPanelRef = useRef(null); useEffect(() => { const measurements = measurementService.getMeasurements(); @@ -125,6 +127,12 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) { subscriptions.push( measurementService.subscribe(evt, () => { setMeasurementsUpdated(Date.now().toString()); + if (evt === added) { + debounce(() => { + measurementsPanelRef.current.scrollTop = + measurementsPanelRef.current.scrollHeight; + }, 300)(); + } }).unsubscribe ); }); @@ -241,6 +249,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) { <>
{displayStudySummary.key && ( @@ -253,6 +262,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) { @@ -260,6 +270,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) { @@ -318,13 +329,40 @@ function _mapMeasurementToDisplay(measurement, types, displaySetService) { ); } - const { displayText } = measurement; + const { + displayText: baseDisplayText, + uid, + label: baseLabel, + type, + selected, + findingSites, + finding, + } = measurement; + + const firstSite = findingSites?.[0]; + const label = baseLabel || finding?.text || firstSite?.text || '(empty)'; + let displayText = baseDisplayText || []; + if (findingSites) { + const siteText = []; + findingSites.forEach(site => { + if (site?.text !== label) siteText.push(site.text); + }); + displayText = [...siteText, ...displayText]; + } + if (finding && finding?.text !== label) { + displayText = [finding.text, ...displayText]; + } + return { - uid: measurement.uid, - label: measurement.label || '(empty)', - measurementType: measurement.type, - displayText: displayText || [], - isActive: measurement.selected, + uid, + label, + baseLabel, + measurementType: type, + displayText, + baseDisplayText, + isActive: selected, + finding, + findingSites, }; } diff --git a/extensions/measurement-tracking/src/panels/PanelStudyBrowserTracking/PanelStudyBrowserTracking.tsx b/extensions/measurement-tracking/src/panels/PanelStudyBrowserTracking/PanelStudyBrowserTracking.tsx index a04989f0b..ec92ce6a3 100644 --- a/extensions/measurement-tracking/src/panels/PanelStudyBrowserTracking/PanelStudyBrowserTracking.tsx +++ b/extensions/measurement-tracking/src/panels/PanelStudyBrowserTracking/PanelStudyBrowserTracking.tsx @@ -453,6 +453,7 @@ function _mapDisplaySets( modality: ds.Modality, seriesDate: formatDate(ds.SeriesDate), numInstances: ds.numImageFrames, + countIcon: ds.countIcon, StudyInstanceUID: ds.StudyInstanceUID, componentType, imageSrc, diff --git a/extensions/measurement-tracking/src/viewports/TrackedCornerstoneViewport.tsx b/extensions/measurement-tracking/src/viewports/TrackedCornerstoneViewport.tsx index 97ac7affc..5e5393f53 100644 --- a/extensions/measurement-tracking/src/viewports/TrackedCornerstoneViewport.tsx +++ b/extensions/measurement-tracking/src/viewports/TrackedCornerstoneViewport.tsx @@ -80,7 +80,7 @@ function TrackedCornerstoneViewport(props) { return; } - annotation.config.style.setViewportToolStyles(`viewport-${viewportIndex}`, { + annotation.config.style.setViewportToolStyles(viewportId, { global: { lineDash: '4,4', }, diff --git a/extensions/test-extension/src/custom-attribute/maxNumImageFrames.ts b/extensions/test-extension/src/custom-attribute/maxNumImageFrames.ts new file mode 100644 index 000000000..13293f3d0 --- /dev/null +++ b/extensions/test-extension/src/custom-attribute/maxNumImageFrames.ts @@ -0,0 +1 @@ +export default (study, extraData) => Math.max(...(extraData?.displaySets?.map?.(ds => (ds.numImageFrames ?? 0))) || [0]); \ No newline at end of file diff --git a/extensions/test-extension/src/custom-attribute/numberOfDisplaySets.ts b/extensions/test-extension/src/custom-attribute/numberOfDisplaySets.ts new file mode 100644 index 000000000..1fdbc17e4 --- /dev/null +++ b/extensions/test-extension/src/custom-attribute/numberOfDisplaySets.ts @@ -0,0 +1 @@ +export default (study, extraData) => extraData?.displaySets?.length; \ No newline at end of file diff --git a/extensions/test-extension/src/custom-attribute/numberOfDisplaySetsWithImages.ts b/extensions/test-extension/src/custom-attribute/numberOfDisplaySetsWithImages.ts new file mode 100644 index 000000000..75c3d969c --- /dev/null +++ b/extensions/test-extension/src/custom-attribute/numberOfDisplaySetsWithImages.ts @@ -0,0 +1,5 @@ +export default (study, extraData) => { + const ret = extraData?.displaySets?.filter(ds => ds.numImageFrames>0)?.length; + console.log("number of display sets with images", ret); + return ret; +}; \ No newline at end of file diff --git a/extensions/test-extension/src/custom-attribute/sameAs.ts b/extensions/test-extension/src/custom-attribute/sameAs.ts new file mode 100644 index 000000000..da836c635 --- /dev/null +++ b/extensions/test-extension/src/custom-attribute/sameAs.ts @@ -0,0 +1,33 @@ +/** + * This function extracts an attribute from the already matched display sets, and + * compares it to the attribute in the current display set, and indicates if they match. + * From 'this', it uses: + * `sameAttribute` as the attribute name to look for + * `sameDisplaySetId` as the display set id to look for + * From `options`, it looks for + */ +export default function (displaySet, options) { + const { sameAttribute, sameDisplaySetId } = this; + if( !sameAttribute ) { + console.log("sameAttribute not defined in", this); + return `sameAttribute not defined in ${this.id}`; + } + if( !sameDisplaySetId ) { + console.log("sameDisplaySetId not defined in", this); + return `sameDisplaySetId not defined in ${this.id}`; + } + const { displaySetMatchDetails, displaySets } = options; + const match = displaySetMatchDetails.get(sameDisplaySetId); + if( !match ) { + console.log("No match for display set", sameDisplaySetId); + return false; + } + const { displaySetInstanceUID } = match; + const altDisplaySet = displaySets.find(it => it.displaySetInstanceUID==displaySetInstanceUID); + if( !altDisplaySet ) { + console.log("No display set found with", displaySetInstanceUID, "in", displaySets); + return false; + } + const testValue = altDisplaySet[sameAttribute]; + return testValue===displaySet[sameAttribute]; +} \ No newline at end of file diff --git a/extensions/test-extension/src/custom-attribute/seriesDescriptionsFromDisplaySets.ts b/extensions/test-extension/src/custom-attribute/seriesDescriptionsFromDisplaySets.ts new file mode 100644 index 000000000..445fb6dd2 --- /dev/null +++ b/extensions/test-extension/src/custom-attribute/seriesDescriptionsFromDisplaySets.ts @@ -0,0 +1 @@ +export default (study, extraData) => extraData?.displaySets?.map(ds => ds.SeriesDescription); \ No newline at end of file diff --git a/extensions/test-extension/src/custom-context-menu/codingValues.ts b/extensions/test-extension/src/custom-context-menu/codingValues.ts new file mode 100644 index 000000000..d5c4743c1 --- /dev/null +++ b/extensions/test-extension/src/custom-context-menu/codingValues.ts @@ -0,0 +1,80 @@ +/** + * Coding values is a map of simple string coding values to a set of + * attributes associated with the coding value. + * + * The simple string is in the format `:` + * That allows extracting the DICOM attributes from the designator/value, and + * allows for passing around the simple string. + * The additional attributes contained in the object include: + * * text - this is the coding scheme text display value, and may be language specific + * * type - this defines a named type, typically 'site'. Different names can be used + * to allow setting different findingSites values in order to define a hierarchy. + * * color - used to apply annotation color + * It is also possible to define additional attributes here, used by custom + * extensions. + * + * See https://dicom.nema.org/medical/dicom/current/output/html/part16.html + * for definitions of SCT and other code values. + */ +const codingValues = { + id: 'codingValues', + + // Sites + 'SCT:69536005': { + text: 'Head', + type: 'site', + }, + 'SCT:45048000': { + text: 'Neck', + type: 'site', + }, + 'SCT:818981001': { + text: 'Abdomen', + type: 'site', + }, + 'SCT:816092008': { + text: 'Pelvis', + type: 'site', + }, + + // Findings + 'SCT:371861004': { + text: 'Mild intimal coronary irregularities', + color: 'green', + }, + 'SCT:194983005': { + text: 'Aortic insufficiency', + color: 'darkred', + }, + 'SCT:399232001': { + text: '2-chamber', + }, + 'SCT:103340004': { + text: 'SAX', + }, + 'SCT:91134007': { + text: 'MV', + }, + 'SCT:122972007': { + text: 'PV', + }, + + // Orientations + 'SCT:24422004': { + text: 'Axial', + color: '#000000', + type: 'orientation', + }, + 'SCT:81654009': { + text: 'Coronal', + color: '#000000', + type: 'orientation', + }, + 'SCT:30730003': { + text: 'Sagittal', + color: '#000000', + type: 'orientation', + }, +}; + +export default codingValues; diff --git a/extensions/test-extension/src/custom-context-menu/contextMenuCodeItem.ts b/extensions/test-extension/src/custom-context-menu/contextMenuCodeItem.ts new file mode 100644 index 000000000..aa13c27ee --- /dev/null +++ b/extensions/test-extension/src/custom-context-menu/contextMenuCodeItem.ts @@ -0,0 +1,24 @@ +const codeMenuItem = { + id: '@ohif/contextMenuAnnotationCode', + + /** Applies the code value setup for this item */ + transform: function (customizationService) { + const { code: codeRef } = this; + if (!codeRef) throw new Error(`item ${this} has no code ref`); + const codingValues = customizationService.get('codingValues'); + const code = codingValues[codeRef]; + return { + ...this, + codeRef, + code: { ref: codeRef, ...code }, + label: code.text, + commands: [ + { + commandName: 'updateMeasurement', + }, + ], + }; + }, +}; + +export default codeMenuItem; diff --git a/extensions/test-extension/src/custom-context-menu/findingsContextMenu.ts b/extensions/test-extension/src/custom-context-menu/findingsContextMenu.ts new file mode 100644 index 000000000..ebdd32eef --- /dev/null +++ b/extensions/test-extension/src/custom-context-menu/findingsContextMenu.ts @@ -0,0 +1,100 @@ +const findingsContextMenu = { + id: 'measurementsContextMenu', + customizationType: 'ohif.contextMenu', + menus: [ + { + id: 'forExistingMeasurement', + // selector restricts context menu to when there is nearbyToolData + selector: ({ nearbyToolData }) => !!nearbyToolData, + items: [ + { + customizationType: 'ohif.contextSubMenu', + label: 'Site', + actionType: 'ShowSubMenu', + subMenu: 'siteSelectionSubMenu', + }, + { + customizationType: 'ohif.contextSubMenu', + label: 'Finding', + actionType: 'ShowSubMenu', + subMenu: 'findingSelectionSubMenu', + }, + { + // customizationType is implicit here in the configuration setup + label: 'Delete Measurement', + commands: [ + { + commandName: 'deleteMeasurement', + }, + ], + }, + { + label: 'Add Label', + commands: [ + { + commandName: 'setMeasurementLabel', + }, + ], + }, + + // The example below shows how to include a delegating sub-menu, + // Only available on the @ohif/hp-extension.mn hanging protocol + // To demonstrate, select the 3x1 layout from the protocol menu + // and right click on a measurement. + { + label: 'IncludeSubMenu', + selector: ({ protocol }) => protocol?.id === '@ohif/hp-extension.mn', + delegating: true, + subMenu: 'orientationSelectionSubMenu', + }, + ], + }, + + { + id: 'orientationSelectionSubMenu', + selector: ({ nearbyToolData }) => false, + items: [ + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:24422004', + }, + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:81654009', + }, + ], + }, + + { + id: 'findingSelectionSubMenu', + selector: ({ nearbyToolData }) => false, + items: [ + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:371861004', + }, + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:194983005', + }, + ], + }, + + { + id: 'siteSelectionSubMenu', + selector: ({ nearbyToolData }) => !!nearbyToolData, + items: [ + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:69536005', + }, + { + customizationType: '@ohif/contextMenuAnnotationCode', + code: 'SCT:45048000', + }, + ], + }, + ], +}; + +export default findingsContextMenu; diff --git a/extensions/test-extension/src/custom-context-menu/index.ts b/extensions/test-extension/src/custom-context-menu/index.ts new file mode 100644 index 000000000..800e31f06 --- /dev/null +++ b/extensions/test-extension/src/custom-context-menu/index.ts @@ -0,0 +1,5 @@ +import codingValues from './codingValues'; +import contextMenuCodeItem from './contextMenuCodeItem'; +import findingsContextMenu from './findingsContextMenu'; + +export { codingValues, contextMenuCodeItem, findingsContextMenu }; diff --git a/extensions/test-extension/src/getCustomizationModule.ts b/extensions/test-extension/src/getCustomizationModule.ts new file mode 100644 index 000000000..03df13ed0 --- /dev/null +++ b/extensions/test-extension/src/getCustomizationModule.ts @@ -0,0 +1,14 @@ +import { + codingValues, + contextMenuCodeItem, + findingsContextMenu, +} from './custom-context-menu'; + +export default function getCustomizationModule() { + return [ + { + name: 'custom-context-menu', + value: [codingValues, contextMenuCodeItem, findingsContextMenu], + }, + ]; +} diff --git a/extensions/test-extension/src/hp/hpMN.ts b/extensions/test-extension/src/hp/hpMN.ts new file mode 100644 index 000000000..fc8fe4538 --- /dev/null +++ b/extensions/test-extension/src/hp/hpMN.ts @@ -0,0 +1,257 @@ +import { Types } from '@ohif/core'; + +/** + * This hanging protocol has multiple stages, which are enabled when + * there are enough display sets with images to fill the stage, and + * are passive when there is at least one display set. + * Enabled display sets are navigated to by default, while passive ones + * are navigated to manually using the ctrl+end keyboard shortcut. + */ +const hpMN: Types.HangingProtocol.Protocol = { + hasUpdatedPriorsInformation: false, + id: '@ohif/hp-extension.mn', + description: 'Has various hanging protocol layouts for use in testing', + name: '2x2', + protocolMatchingRules: [ + { + id: 'OneOrMoreSeries', + weight: 1, + attribute: 'numberOfDisplaySetsWithImages', + constraint: { + greaterThan: 1, + }, + }, + ], + toolGroupIds: ['default'], + displaySetSelectors: { + defaultDisplaySetId: { + seriesMatchingRules: [ + { + attribute: 'numImageFrames', + constraint: { + greaterThan: { value: 0 }, + }, + }, + ], + }, + }, + defaultViewport: { + viewportOptions: { + viewportType: 'stack', + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: -1, + }, + ], + }, + stages: [ + { + id: '2x2', + stageActivation: { + enabled: { + minViewportsMatched: 4, + }, + }, + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 2, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 1, + id: 'defaultDisplaySetId', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 2, + id: 'defaultDisplaySetId', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 3, + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, + + // 3x1 stage + { + id: '3x1', + // Obsolete settings: + requiredViewports: 1, + preferredViewports: 3, + // New equivalent: + stageActivation: { + enabled: { + minViewportsMatched: 3, + }, + }, + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 1, + columns: 3, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + reuseId: '0-0', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 1, + id: 'defaultDisplaySetId', + reuseId: '1-0', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 2, + id: 'defaultDisplaySetId', + reuseId: '0-1', + }, + ], + }, + ], + }, + + // A 2x1 stage + { + id: '2x1', + requiredViewports: 1, + preferredViewports: 2, + stageActivation: { + enabled: { + minViewportsMatched: 2, + }, + }, + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 1, + columns: 2, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + matchedDisplaySetsIndex: 1, + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, + + // A 1x1 stage - should be automatically activated if there is only 1 viewable instance + { + id: '1x1', + requiredViewports: 1, + preferredViewports: 1, + stageActivation: { + enabled: { + minViewportsMatched: 1, + }, + }, + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 1, + columns: 1, + }, + }, + viewports: [ + { + viewportOptions: { + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + }, + ], + }, + ], + }, + ], + numberOfPriorsReferenced: -1, +}; + +export default hpMN; diff --git a/extensions/test-extension/src/hp/index.ts b/extensions/test-extension/src/hp/index.ts new file mode 100644 index 000000000..a1b0c22c2 --- /dev/null +++ b/extensions/test-extension/src/hp/index.ts @@ -0,0 +1,17 @@ +import hpMN from './hpMN'; + +const hangingProtocols = [ + { + name: '@ohif/hp-extension.mn', + protocol: hpMN, + }, +]; + +/** + * Registers a single study hanging protocol which can be referenced as + * `@ohif/hp-exgtension.mn`, that has initial layouts which show images + * only display sets, up to a 2x2 view. + */ +export default function getHangingProtocolModule() { + return hangingProtocols; +} diff --git a/extensions/test-extension/src/index.tsx b/extensions/test-extension/src/index.tsx index 5c07074c3..589d87ca5 100644 --- a/extensions/test-extension/src/index.tsx +++ b/extensions/test-extension/src/index.tsx @@ -1,17 +1,68 @@ -import { id } from './id'; import { Types } from '@ohif/core'; +import { id } from './id'; + +import getHangingProtocolModule from './hp'; +import getCustomizationModule from './getCustomizationModule'; +// import {setViewportZoomPan, storeViewportZoomPan } from './custom-viewport/setViewportZoomPan'; +import sameAs from './custom-attribute/sameAs'; +import numberOfDisplaySets from './custom-attribute/numberOfDisplaySets'; +import numberOfDisplaySetsWithImages from './custom-attribute/numberOfDisplaySetsWithImages'; +import maxNumImageFrames from './custom-attribute/maxNumImageFrames'; +import seriesDescriptionsFromDisplaySets from './custom-attribute/seriesDescriptionsFromDisplaySets'; + /** - * + * The test extension provides additional behaviour for testing various + * customizations and settings for OHIF. */ const testExtension: Types.Extensions.Extension = { /** * Only required property. Should be a unique value across all extensions. */ id, - preRegistration() { - console.debug('hello from test-extension init.js'); + + /** Register additional behaviour: + * * HP custom attribute seriesDescriptions to retrieve an array of all series descriptions + * * HP custom attribute numberOfDisplaySets to retrieve the number of display sets + * * HP custom attribute numberOfDisplaySetsWithImages to retrieve the number of display sets containing images + * * HP custom attribute to return a boolean true, when the attribute sameAttribute has the same + * value as another series description in an already matched display set selector named with the value + * in `sameDisplaySetId` + */ + preRegistration: ({ servicesManager }: Types.Extensions.ExtensionParams) => { + const { hangingProtocolService } = servicesManager.services; + hangingProtocolService.addCustomAttribute( + 'seriesDescriptions', + 'Series Descriptions', + seriesDescriptionsFromDisplaySets + ); + hangingProtocolService.addCustomAttribute( + 'numberOfDisplaySets', + 'Number of displays sets', + numberOfDisplaySets + ); + hangingProtocolService.addCustomAttribute( + 'numberOfDisplaySetsWithImages', + 'Number of displays sets with images', + numberOfDisplaySetsWithImages + ); + hangingProtocolService.addCustomAttribute( + 'maxNumImageFrames', + 'Maximum of number of image frames', + maxNumImageFrames + ); + hangingProtocolService.addCustomAttribute( + 'sameAs', + 'Match an attribute in an existing display set', + sameAs + ); }, + + /** Registers some additional hanging protocols. See hp/index.tsx for more details */ + getHangingProtocolModule, + + /** Registers some customizations */ + getCustomizationModule, }; export default testExtension; diff --git a/extensions/tmtv/src/getHangingProtocolModule.js b/extensions/tmtv/src/getHangingProtocolModule.js index 34a28489e..45720c10d 100644 --- a/extensions/tmtv/src/getHangingProtocolModule.js +++ b/extensions/tmtv/src/getHangingProtocolModule.js @@ -1,3 +1,219 @@ +import { + ctAXIAL, + ctCORONAL, + ctSAGITTAL, + fusionAXIAL, + fusionCORONAL, + fusionSAGITTAL, + mipSAGITTAL, + ptAXIAL, + ptCORONAL, + ptSAGITTAL, +} from './utils/hpViewports'; + +/** + * represents a 3x4 viewport layout configuration. The layout displays CT axial, sagittal, and coronal + * images in the first row, PT axial, sagittal, and coronal images in the second row, and fusion axial, + * sagittal, and coronal images in the third row. The fourth column is fully spanned by a MIP sagittal + * image, covering all three rows. It has synchronizers for windowLevel for all CT and PT images, and + * also camera synchronizer for each orientation + */ +const stage1 = { + name: 'default', + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 3, + columns: 4, + layoutOptions: [ + { + x: 0, + y: 0, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 1 / 4, + y: 0, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 2 / 4, + y: 0, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 0, + y: 1 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 1 / 4, + y: 1 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 2 / 4, + y: 1 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 0, + y: 2 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 1 / 4, + y: 2 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 2 / 4, + y: 2 / 3, + width: 1 / 4, + height: 1 / 3, + }, + { + x: 3 / 4, + y: 0, + width: 1 / 4, + height: 1, + }, + ], + }, + }, + viewports: [ + ctAXIAL, + ctSAGITTAL, + ctCORONAL, + ptAXIAL, + ptSAGITTAL, + ptCORONAL, + fusionAXIAL, + fusionSAGITTAL, + fusionCORONAL, + mipSAGITTAL, + ], + createdDate: '2021-02-23T18:32:42.850Z', +}; + +/** + * The layout displays CT axial image in the top-left viewport, fusion axial image + * in the top-right viewport, PT axial image in the bottom-left viewport, and MIP + * sagittal image in the bottom-right viewport. The layout follows a simple grid + * pattern with 2 rows and 2 columns. It includes synchronizers as well. + */ +const stage2 = { + name: 'Fusion 2x2', + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 2, + }, + }, + viewports: [ctAXIAL, fusionAXIAL, ptAXIAL, mipSAGITTAL], +}; + +/** + * The top row displays CT images in axial, sagittal, and coronal orientations from + * left to right, respectively. The bottom row displays PT images in axial, sagittal, + * and coronal orientations from left to right, respectively. + * The layout follows a simple grid pattern with 2 rows and 3 columns. + * It includes synchronizers as well. + */ +const stage3 = { + name: '2x3-layout', + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 3, + }, + }, + viewports: [ctAXIAL, ctSAGITTAL, ctCORONAL, ptAXIAL, ptSAGITTAL, ptCORONAL], +}; + +/** + * In this layout, the top row displays PT images in coronal, sagittal, and axial + * orientations from left to right, respectively, followed by a MIP sagittal image + * that spans both rows on the rightmost side. The bottom row displays fusion images + * in coronal, sagittal, and axial orientations from left to right, respectively. + * There is no viewport in the bottom row's rightmost position, as the MIP sagittal viewport + * from the top row spans the full height of both rows. + * It includes synchronizers as well. + */ +const stage4 = { + name: '2x4-layout', + viewportStructure: { + layoutType: 'grid', + properties: { + rows: 2, + columns: 4, + layoutOptions: [ + { + x: 0, + y: 0, + width: 1 / 4, + height: 1 / 2, + }, + { + x: 1 / 4, + y: 0, + width: 1 / 4, + height: 1 / 2, + }, + { + x: 2 / 4, + y: 0, + width: 1 / 4, + height: 1 / 2, + }, + { + x: 3 / 4, + y: 0, + width: 1 / 4, + height: 1, + }, + { + x: 0, + y: 1 / 2, + width: 1 / 4, + height: 1 / 2, + }, + { + x: 1 / 4, + y: 1 / 2, + width: 1 / 4, + height: 1 / 2, + }, + { + x: 2 / 4, + y: 1 / 2, + width: 1 / 4, + height: 1 / 2, + }, + ], + }, + }, + viewports: [ + ptCORONAL, + ptSAGITTAL, + ptAXIAL, + mipSAGITTAL, + fusionCORONAL, + fusionSAGITTAL, + fusionAXIAL, + ], +}; + const ptCT = { id: '@ohif/extension-tmtv.hangingProtocolModule.ptCT', locked: true, @@ -32,7 +248,6 @@ const ptCT = { ctDisplaySet: { seriesMatchingRules: [ { - weight: 1, attribute: 'Modality', constraint: { equals: { @@ -42,7 +257,6 @@ const ptCT = { required: true, }, { - weight: 1, attribute: 'isReconstructable', constraint: { equals: { @@ -75,7 +289,6 @@ const ptCT = { required: true, }, { - weight: 1, attribute: 'isReconstructable', constraint: { equals: { @@ -103,508 +316,14 @@ const ptCT = { }, }, - stages: [ - { - id: 'hYbmMy3b7pz7GLiaT', - name: 'default', - viewportStructure: { - layoutType: 'grid', - properties: { - rows: 3, - columns: 4, - layoutOptions: [ - { - x: 0, - y: 0, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 1 / 4, - y: 0, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 2 / 4, - y: 0, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 0, - y: 1 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 1 / 4, - y: 1 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 2 / 4, - y: 1 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 0, - y: 2 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 1 / 4, - y: 2 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 2 / 4, - y: 2 / 3, - width: 1 / 4, - height: 1 / 3, - }, - { - x: 3 / 4, - y: 0, - width: 1 / 4, - height: 1, - }, - ], - }, - }, - viewports: [ - { - viewportOptions: { - viewportId: 'ctAXIAL', - viewportType: 'volume', - orientation: 'axial', - toolGroupId: 'ctToolGroup', - initialImageOptions: { - // index: 5, - preset: 'first', // 'first', 'last', 'middle' - }, - syncGroups: [ - { - type: 'cameraPosition', - id: 'axialSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: true, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'ctSAGITTAL', - viewportType: 'volume', - orientation: 'sagittal', - toolGroupId: 'ctToolGroup', - syncGroups: [ - { - type: 'cameraPosition', - id: 'sagittalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: true, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'ctCORONAL', - viewportType: 'volume', - orientation: 'coronal', - toolGroupId: 'ctToolGroup', - syncGroups: [ - { - type: 'cameraPosition', - id: 'coronalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: true, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'ptAXIAL', - viewportType: 'volume', - background: [1, 1, 1], - orientation: 'axial', - toolGroupId: 'ptToolGroup', - initialImageOptions: { - // index: 5, - preset: 'first', // 'first', 'last', 'middle' - }, - syncGroups: [ - { - type: 'cameraPosition', - id: 'axialSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: true, - target: false, - }, - ], - }, - displaySets: [ - { - options: { - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - voiInverted: true, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'ptSAGITTAL', - viewportType: 'volume', - orientation: 'sagittal', - background: [1, 1, 1], - toolGroupId: 'ptToolGroup', - syncGroups: [ - { - type: 'cameraPosition', - id: 'sagittalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: true, - target: false, - }, - ], - }, - displaySets: [ - { - options: { - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - voiInverted: true, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'ptCORONAL', - viewportType: 'volume', - orientation: 'coronal', - background: [1, 1, 1], - toolGroupId: 'ptToolGroup', - syncGroups: [ - { - type: 'cameraPosition', - id: 'coronalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: true, - target: false, - }, - ], - }, - displaySets: [ - { - options: { - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - voiInverted: true, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'fusionAXIAL', - viewportType: 'volume', - orientation: 'axial', - toolGroupId: 'fusionToolGroup', - initialImageOptions: { - // index: 5, - preset: 'first', // 'first', 'last', 'middle' - }, - syncGroups: [ - { - type: 'cameraPosition', - id: 'axialSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: false, - target: true, - }, - { - type: 'voi', - id: 'fusionWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: false, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - { - options: { - colormap: 'hsv', - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'fusionSAGITTAL', - viewportType: 'volume', - orientation: 'sagittal', - toolGroupId: 'fusionToolGroup', - // initialImageOptions: { - // index: 180, - // preset: 'middle', // 'first', 'last', 'middle' - // }, - syncGroups: [ - { - type: 'cameraPosition', - id: 'sagittalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: false, - target: true, - }, - { - type: 'voi', - id: 'fusionWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: false, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - { - options: { - colormap: 'hsv', - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'fusionCoronal', - viewportType: 'volume', - orientation: 'coronal', - toolGroupId: 'fusionToolGroup', - // initialImageOptions: { - // index: 180, - // preset: 'middle', // 'first', 'last', 'middle' - // }, - syncGroups: [ - { - type: 'cameraPosition', - id: 'coronalSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ctWLSync', - source: false, - target: true, - }, - { - type: 'voi', - id: 'fusionWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: false, - target: true, - }, - ], - }, - displaySets: [ - { - id: 'ctDisplaySet', - }, - { - options: { - colormap: 'hsv', - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - }, - id: 'ptDisplaySet', - }, - ], - }, - { - viewportOptions: { - viewportId: 'mipSagittal', - viewportType: 'volume', - orientation: 'sagittal', - background: [1, 1, 1], - toolGroupId: 'mipToolGroup', - syncGroups: [ - { - type: 'voi', - id: 'ptWLSync', - source: true, - target: true, - }, - { - type: 'voi', - id: 'ptFusionWLSync', - source: true, - target: false, - }, - ], - - // Custom props can be used to set custom properties which extensions - // can react on. - customViewportProps: { - // We use viewportDisplay to filter the viewports which are displayed - // in mip and we set the scrollbar according to their rotation index - // in the cornerstone extension. - hideOverlays: true, - }, - }, - displaySets: [ - { - options: { - blendMode: 'MIP', - slabThickness: 'fullVolume', - voi: { - windowWidth: 5, - windowCenter: 2.5, - }, - voiInverted: true, - }, - id: 'ptDisplaySet', - }, - ], - }, - ], - createdDate: '2021-02-23T18:32:42.850Z', - }, - ], + stages: [stage1, stage2, stage3, stage4], numberOfPriorsReferenced: -1, }; function getHangingProtocolModule() { return [ { - id: ptCT.id, + name: ptCT.id, protocol: ptCT, }, ]; diff --git a/extensions/tmtv/src/utils/hpViewports.ts b/extensions/tmtv/src/utils/hpViewports.ts new file mode 100644 index 000000000..0efc354ec --- /dev/null +++ b/extensions/tmtv/src/utils/hpViewports.ts @@ -0,0 +1,438 @@ +const ctAXIAL = { + viewportOptions: { + viewportId: 'ctAXIAL', + viewportType: 'volume', + orientation: 'axial', + toolGroupId: 'ctToolGroup', + initialImageOptions: { + // index: 5, + preset: 'first', // 'first', 'last', 'middle' + }, + syncGroups: [ + { + type: 'cameraPosition', + id: 'axialSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + ], +}; + +const ctSAGITTAL = { + viewportOptions: { + viewportId: 'ctSAGITTAL', + viewportType: 'volume', + orientation: 'sagittal', + toolGroupId: 'ctToolGroup', + syncGroups: [ + { + type: 'cameraPosition', + id: 'sagittalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + ], +}; +const ctCORONAL = { + viewportOptions: { + viewportId: 'ctCORONAL', + viewportType: 'volume', + orientation: 'coronal', + toolGroupId: 'ctToolGroup', + syncGroups: [ + { + type: 'cameraPosition', + id: 'coronalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: true, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + ], +}; + +const ptAXIAL = { + viewportOptions: { + viewportId: 'ptAXIAL', + viewportType: 'volume', + background: [1, 1, 1], + orientation: 'axial', + toolGroupId: 'ptToolGroup', + initialImageOptions: { + // index: 5, + preset: 'first', // 'first', 'last', 'middle' + }, + syncGroups: [ + { + type: 'cameraPosition', + id: 'axialSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: true, + target: false, + }, + ], + }, + displaySets: [ + { + options: { + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + voiInverted: true, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const ptSAGITTAL = { + viewportOptions: { + viewportId: 'ptSAGITTAL', + viewportType: 'volume', + orientation: 'sagittal', + background: [1, 1, 1], + toolGroupId: 'ptToolGroup', + syncGroups: [ + { + type: 'cameraPosition', + id: 'sagittalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: true, + target: false, + }, + ], + }, + displaySets: [ + { + options: { + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + voiInverted: true, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const ptCORONAL = { + viewportOptions: { + viewportId: 'ptCORONAL', + viewportType: 'volume', + orientation: 'coronal', + background: [1, 1, 1], + toolGroupId: 'ptToolGroup', + syncGroups: [ + { + type: 'cameraPosition', + id: 'coronalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: true, + target: false, + }, + ], + }, + displaySets: [ + { + options: { + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + voiInverted: true, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const fusionAXIAL = { + viewportOptions: { + viewportId: 'fusionAXIAL', + viewportType: 'volume', + orientation: 'axial', + toolGroupId: 'fusionToolGroup', + initialImageOptions: { + // index: 5, + preset: 'first', // 'first', 'last', 'middle' + }, + syncGroups: [ + { + type: 'cameraPosition', + id: 'axialSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: false, + target: true, + }, + { + type: 'voi', + id: 'fusionWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: false, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + { + options: { + colormap: 'hsv', + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const fusionSAGITTAL = { + viewportOptions: { + viewportId: 'fusionSAGITTAL', + viewportType: 'volume', + orientation: 'sagittal', + toolGroupId: 'fusionToolGroup', + // initialImageOptions: { + // index: 180, + // preset: 'middle', // 'first', 'last', 'middle' + // }, + syncGroups: [ + { + type: 'cameraPosition', + id: 'sagittalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: false, + target: true, + }, + { + type: 'voi', + id: 'fusionWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: false, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + { + options: { + colormap: 'hsv', + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const fusionCORONAL = { + viewportOptions: { + viewportId: 'fusionCoronal', + viewportType: 'volume', + orientation: 'coronal', + toolGroupId: 'fusionToolGroup', + // initialImageOptions: { + // index: 180, + // preset: 'middle', // 'first', 'last', 'middle' + // }, + syncGroups: [ + { + type: 'cameraPosition', + id: 'coronalSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ctWLSync', + source: false, + target: true, + }, + { + type: 'voi', + id: 'fusionWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: false, + target: true, + }, + ], + }, + displaySets: [ + { + id: 'ctDisplaySet', + }, + { + options: { + colormap: 'hsv', + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + }, + id: 'ptDisplaySet', + }, + ], +}; + +const mipSAGITTAL = { + viewportOptions: { + viewportId: 'mipSagittal', + viewportType: 'volume', + orientation: 'sagittal', + background: [1, 1, 1], + toolGroupId: 'mipToolGroup', + syncGroups: [ + { + type: 'voi', + id: 'ptWLSync', + source: true, + target: true, + }, + { + type: 'voi', + id: 'ptFusionWLSync', + source: true, + target: false, + }, + ], + + // Custom props can be used to set custom properties which extensions + // can react on. + customViewportProps: { + // We use viewportDisplay to filter the viewports which are displayed + // in mip and we set the scrollbar according to their rotation index + // in the cornerstone extension. + hideOverlays: true, + }, + }, + displaySets: [ + { + options: { + blendMode: 'MIP', + slabThickness: 'fullVolume', + voi: { + windowWidth: 5, + windowCenter: 2.5, + }, + voiInverted: true, + }, + id: 'ptDisplaySet', + }, + ], +}; + +export { + ctAXIAL, + ctSAGITTAL, + ctCORONAL, + ptAXIAL, + ptSAGITTAL, + ptCORONAL, + fusionAXIAL, + fusionSAGITTAL, + fusionCORONAL, + mipSAGITTAL, +}; diff --git a/modes/basic-dev-mode/src/index.js b/modes/basic-dev-mode/src/index.js index f3368e412..d74ee60a4 100644 --- a/modes/basic-dev-mode/src/index.js +++ b/modes/basic-dev-mode/src/index.js @@ -140,7 +140,6 @@ function modeFactory({ modeConfiguration }) { toolbarService, } = servicesManager.services; - toolbarService.reset(); toolGroupService.destroy(); }, validationTags: { diff --git a/modes/basic-test-mode/src/index.js b/modes/basic-test-mode/src/index.js index 129aa6834..11e06ec24 100644 --- a/modes/basic-test-mode/src/index.js +++ b/modes/basic-test-mode/src/index.js @@ -72,6 +72,7 @@ function modeFactory() { measurementService, toolbarService, toolGroupService, + customizationService, } = servicesManager.services; measurementService.clearMeasurements(); @@ -79,6 +80,11 @@ function modeFactory() { // Init Default and SR ToolGroups initToolGroups(extensionManager, toolGroupService, commandsManager); + // init customizations + customizationService.addModeCustomizations([ + '@ohif/extension-test.customizationModule.custom-context-menu', + ]); + let unsubscribe; const activateTool = () => { @@ -132,7 +138,6 @@ function modeFactory() { cornerstoneViewportService, } = servicesManager.services; - toolbarService.reset(); toolGroupService.destroy(); syncGroupService.destroy(); segmentationService.destroy(); @@ -205,7 +210,12 @@ function modeFactory() { dicompdf.sopClassHandler, dicomsr.sopClassHandler, ], - hotkeys: [...hotkeys.defaults.hotkeyBindings], + hotkeys: { + // Don't store the hotkeys for basic-test-mode under the same key + // because they get customized by tests + name: 'basic-test-hotkeys', + hotkeys: [...hotkeys.defaults.hotkeyBindings], + }, }; } diff --git a/modes/basic-test-mode/src/toolbarButtons.js b/modes/basic-test-mode/src/toolbarButtons.js index a8c8a8535..9a04581c5 100644 --- a/modes/basic-test-mode/src/toolbarButtons.js +++ b/modes/basic-test-mode/src/toolbarButtons.js @@ -297,10 +297,96 @@ const toolbarButtons = [ }, { id: 'Layout', - type: 'ohif.layoutSelector', + type: 'ohif.splitButton', props: { - rows: 3, - columns: 3, + groupId: 'LayoutTools', + isRadio: false, + primary: { + id: 'Layout', + type: 'action', + uiType: 'ohif.layoutSelector', + icon: 'tool-layout', + label: 'Grid Layout', + props: { + rows: 4, + columns: 4, + commands: [ + { + commandName: 'setLayout', + commandOptions: {}, + context: 'CORNERSTONE', + }, + ], + }, + }, + secondary: { + icon: 'chevron-down', + label: '', + isActive: true, + tooltip: 'Hanging Protocols', + }, + items: [ + { + id: '2x2', + type: 'action', + label: '2x2', + commands: [ + { + commandName: 'setHangingProtocol', + commandOptions: { + protocolId: '@ohif/hp-extension.mn', + stageId: '2x2', + }, + context: 'DEFAULT', + }, + ], + }, + { + id: '3x1', + type: 'action', + label: '3x1', + commands: [ + { + commandName: 'setHangingProtocol', + commandOptions: { + protocolId: '@ohif/hp-extension.mn', + stageId: '3x1', + }, + context: 'DEFAULT', + }, + ], + }, + { + id: '2x1', + type: 'action', + label: '2x1', + commands: [ + { + commandName: 'setHangingProtocol', + commandOptions: { + protocolId: '@ohif/hp-extension.mn', + stageId: '2x1', + }, + context: 'DEFAULT', + }, + ], + }, + { + id: '1x1', + type: 'action', + label: '1x1', + commands: [ + { + commandName: 'setHangingProtocol', + commandOptions: { + protocolId: '@ohif/hp-extension.mn', + stageId: '1x1', + }, + context: 'DEFAULT', + }, + ], + }, + ], }, }, { @@ -312,9 +398,11 @@ const toolbarButtons = [ label: 'MPR', commands: [ { - commandName: 'toggleMPR', - commandOptions: {}, - context: 'CORNERSTONE', + commandName: 'toggleHangingProtocol', + commandOptions: { + protocolId: 'mpr', + }, + context: 'DEFAULT', }, ], }, diff --git a/modes/longitudinal/src/index.js b/modes/longitudinal/src/index.js index ab6887420..6e2d8a2da 100644 --- a/modes/longitudinal/src/index.js +++ b/modes/longitudinal/src/index.js @@ -159,7 +159,6 @@ function modeFactory() { _activatePanelTriggersSubscriptions.forEach(sub => sub.unsubscribe()); _activatePanelTriggersSubscriptions = []; - toolbarService.reset(); toolGroupService.destroy(); syncGroupService.destroy(); segmentationService.destroy(); diff --git a/modes/longitudinal/src/initToolGroups.js b/modes/longitudinal/src/initToolGroups.js index fe77aa52f..6bbe668d2 100644 --- a/modes/longitudinal/src/initToolGroups.js +++ b/modes/longitudinal/src/initToolGroups.js @@ -215,6 +215,32 @@ function initMPRToolGroup(extensionManager, toolGroupService, commandsManager) { toolGroupService.createToolGroupAndAddTools('mpr', tools, toolsConfig); } +function initVolume3DToolGroup(extensionManager, toolGroupService) { + const utilityModule = extensionManager.getModuleEntry( + '@ohif/extension-cornerstone.utilityModule.tools' + ); + + const { toolNames, Enums } = utilityModule.exports; + + const tools = { + active: [ + { + toolName: toolNames.TrackballRotateTool, + bindings: [{ mouseButton: Enums.MouseBindings.Primary }], + }, + { + toolName: toolNames.Zoom, + bindings: [{ mouseButton: Enums.MouseBindings.Secondary }], + }, + { + toolName: toolNames.Pan, + bindings: [{ mouseButton: Enums.MouseBindings.Auxiliary }], + }, + ], + }; + + toolGroupService.createToolGroupAndAddTools('volume3d', tools); +} function initToolGroups(extensionManager, toolGroupService, commandsManager) { initDefaultToolGroup( @@ -225,6 +251,7 @@ function initToolGroups(extensionManager, toolGroupService, commandsManager) { ); initSRToolGroup(extensionManager, toolGroupService, commandsManager); initMPRToolGroup(extensionManager, toolGroupService, commandsManager); + initVolume3DToolGroup(extensionManager, toolGroupService); } export default initToolGroups; diff --git a/modes/longitudinal/src/toolbarButtons.js b/modes/longitudinal/src/toolbarButtons.js index 3addb750b..a2b72cbf1 100644 --- a/modes/longitudinal/src/toolbarButtons.js +++ b/modes/longitudinal/src/toolbarButtons.js @@ -27,18 +27,6 @@ function _createButton(type, id, icon, label, commands, tooltip, uiType) { }; } -function _createCommands(commandName, toolName, toolGroupIds) { - return toolGroupIds.map(toolGroupId => ({ - /* It's a command that is being run when the button is clicked. */ - commandName, - commandOptions: { - toolName, - toolGroupId, - }, - context: 'CORNERSTONE', - })); -} - const _createActionButton = _createButton.bind(null, 'action'); const _createToggleButton = _createButton.bind(null, 'toggle'); const _createToolButton = _createButton.bind(null, 'tool'); @@ -67,6 +55,26 @@ function _createWwwcPreset(preset, title, subtitle) { }; } +const toolGroupIds = ['default', 'mpr', 'SRToolGroup']; + +/** + * Creates an array of 'setToolActive' commands for the given toolName - one for + * each toolGroupId specified in toolGroupIds. + * @param {string} toolName + * @returns {Array} an array of 'setToolActive' commands + */ +function _createSetToolActiveCommands(toolName) { + const temp = toolGroupIds.map(toolGroupId => ({ + commandName: 'setToolActive', + commandOptions: { + toolGroupId, + toolName, + }, + context: 'CORNERSTONE', + })); + return temp; +} + const toolbarButtons = [ // Measurement { @@ -211,15 +219,7 @@ const toolbarButtons = [ type: 'tool', icon: 'tool-zoom', label: 'Zoom', - commands: [ - { - commandName: 'setToolActive', - commandOptions: { - toolName: 'Zoom', - }, - context: 'CORNERSTONE', - }, - ], + commands: _createSetToolActiveCommands('Zoom'), }, }, // Window Level + Presets... @@ -268,15 +268,7 @@ const toolbarButtons = [ type: 'tool', icon: 'tool-move', label: 'Pan', - commands: [ - { - commandName: 'setToolActive', - commandOptions: { - toolName: 'Pan', - }, - context: 'CORNERSTONE', - }, - ], + commands: _createSetToolActiveCommands('Pan'), }, }, { @@ -312,9 +304,11 @@ const toolbarButtons = [ label: 'MPR', commands: [ { - commandName: 'toggleMPR', - commandOptions: {}, - context: 'CORNERSTONE', + commandName: 'toggleHangingProtocol', + commandOptions: { + protocolId: 'mpr', + }, + context: 'DEFAULT', }, ], }, @@ -330,8 +324,8 @@ const toolbarButtons = [ { commandName: 'setToolActive', commandOptions: { - toolGroupId: 'mpr', toolName: 'Crosshairs', + toolGroupId: 'mpr', }, context: 'CORNERSTONE', }, diff --git a/modes/tmtv/src/index.js b/modes/tmtv/src/index.js index d9a4e885a..c0f8659ae 100644 --- a/modes/tmtv/src/index.js +++ b/modes/tmtv/src/index.js @@ -136,13 +136,11 @@ function modeFactory({ modeConfiguration }) { const { toolGroupService, syncGroupService, - toolbarService, segmentationService, cornerstoneViewportService, } = servicesManager.services; unsubscriptions.forEach(unsubscribe => unsubscribe()); - toolbarService.reset(); toolGroupService.destroy(); syncGroupService.destroy(); segmentationService.destroy(); diff --git a/modes/tmtv/src/toolbarButtons.js b/modes/tmtv/src/toolbarButtons.js index 890ff0416..8fd347737 100644 --- a/modes/tmtv/src/toolbarButtons.js +++ b/modes/tmtv/src/toolbarButtons.js @@ -203,9 +203,11 @@ const toolbarButtons = [ label: 'MPR', commands: [ { - commandName: 'toggleMPR', - commandOptions: {}, - context: 'CORNERSTONE', + commandName: 'toggleHangingProtocol', + commandOptions: { + protocolId: 'mpr', + }, + context: 'DEFAULT', }, ], }, diff --git a/package.json b/package.json index 3b5918b6f..c5287de03 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ "@types/jest": "^27.5.0", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.19.0", - "autoprefixer": "10.4.4", + "autoprefixer": "^10.4.4", "babel-eslint": "9.x", "babel-loader": "^8.2.4", "babel-plugin-inline-react-svg": "1.1.0", diff --git a/platform/core/package.json b/platform/core/package.json index f2b11412d..42c973065 100644 --- a/platform/core/package.json +++ b/platform/core/package.json @@ -31,7 +31,7 @@ }, "peerDependencies": { "cornerstone-math": "0.1.9", - "cornerstone-wado-image-loader": "^4.2.1", + "cornerstone-wado-image-loader": "^4.13.0", "dicom-parser": "^1.8.9", "@ohif/ui": "^2.0.0" }, diff --git a/platform/core/src/classes/CommandsManager.ts b/platform/core/src/classes/CommandsManager.ts index 2ff961230..34a825c4d 100644 --- a/platform/core/src/classes/CommandsManager.ts +++ b/platform/core/src/classes/CommandsManager.ts @@ -1,4 +1,5 @@ import log from '../log.js'; +import { Command, Commands } from '../types/Command'; /** * The definition of a command @@ -105,8 +106,8 @@ export class CommandsManager { * @param {String} commandName - Command to find * @param {String} [contextName] - Specific command to look in. Defaults to current activeContexts */ - getCommand = (commandName, contextName) => { - let contexts = []; + getCommand = (commandName: string, contextName?: string) => { + const contexts = []; if (contextName) { const context = this.getContext(contextName); @@ -140,7 +141,7 @@ export class CommandsManager { * @param {Object} [options={}] - Extra options to pass the command. Like a mousedown event * @param {String} [contextName] */ - runCommand(commandName, options = {}, contextName) { + public runCommand(commandName: string, options = {}, contextName?: string) { const definition = this.getCommand(commandName, contextName); if (!definition) { log.warn(`Command "${commandName}" not found in current context`); @@ -161,6 +162,50 @@ export class CommandsManager { return commandFn(commandParams); } } + + /** + * Run one or more commands with specified extra options. + * Returns the result of the last command run. + * + * @param toRun - A specification of one or more commands + * @param options - to include in the commands run beyond + * the commandOptions specified in the base. + */ + public run( + toRun: Command | Commands | Command[] | undefined, + options?: Record + ): unknown { + if (!toRun) return; + const commands = + (Array.isArray(toRun) && toRun) || + ((toRun as Command).commandName && [toRun]) || + (Array.isArray((toRun as Commands).commands) && + (toRun as Commands).commands); + if (!commands) { + console.log("Command isn't runnable", toRun); + return; + } + + let result; + (commands as Command[]).forEach( + ({ commandName, commandOptions, context }) => { + if (commandName) { + result = this.runCommand( + commandName, + { + ...commandOptions, + ...options, + }, + context + ); + } else { + console.warn('No command name supplied in', toRun); + } + } + ); + + return result; + } } export default CommandsManager; diff --git a/platform/core/src/classes/HotkeysManager.ts b/platform/core/src/classes/HotkeysManager.ts index ddb2757ec..50ccc0fe5 100644 --- a/platform/core/src/classes/HotkeysManager.ts +++ b/platform/core/src/classes/HotkeysManager.ts @@ -64,19 +64,17 @@ export class HotkeysManager { * * @param {HotkeyDefinition[] | Object} [hotkeyDefinitions=[]] Contains hotkeys definitions */ - setHotkeys(hotkeyDefinitions = [], key = 'hotkey-definitions') { + setHotkeys(hotkeyDefinitions = [], name = 'hotkey-definitions') { try { const definitions = this.getValidDefinitions(hotkeyDefinitions); if (isequal(definitions, this.hotkeyDefaults)) { - console.log('hotkeys REMOVING unused definition', key); - localStorage.removeItem(key); + localStorage.removeItem(name); } else { - console.log('hotkeys setting local storage', key); - localStorage.setItem(key, JSON.stringify(definitions)); + localStorage.setItem(name, JSON.stringify(definitions)); } definitions.forEach(definition => this.registerHotkeys(definition)); } catch (error) { - const { uiNotificationService, } = this._servicesManager.services; + const { uiNotificationService } = this._servicesManager.services; uiNotificationService.show({ title: 'Hotkeys Manager', message: 'Error while setting hotkeys', diff --git a/platform/core/src/classes/MetadataProvider.js b/platform/core/src/classes/MetadataProvider.js index fc17ac294..32f482e74 100644 --- a/platform/core/src/classes/MetadataProvider.js +++ b/platform/core/src/classes/MetadataProvider.js @@ -412,6 +412,34 @@ class MetadataProvider { return metadata; } + /** + * Retrieves the frameNumber information, depending on the url style + * wadors /frames/1 + * wadouri &frame=1 + * @param {*} imageId + * @returns + */ + getFrameInformationFromURL(imageId) { + function getInformationFromURL(informationString, separator) { + let result = ''; + const splittedStr = imageId.split(informationString)[1]; + if (splittedStr.includes(separator)) { + result = splittedStr.split(separator)[0]; + } else { + result = splittedStr; + } + return result; + } + + if (imageId.includes('/frames')) { + return getInformationFromURL('/frames', '/'); + } + if (imageId.includes('&frame=')) { + return getInformationFromURL('&frame=', '&'); + } + return; + } + getUIDsFromImageID(imageId) { // TODO: adding csiv here is not really correct. Probably need to use // metadataProvider.addImageIdToUIDs(imageId, { @@ -445,7 +473,7 @@ class MetadataProvider { // check if the imageId starts with http:// or https:// using regex // Todo: handle non http imageIds let imageURI; - const urlRegex = /^(http|https):\/\//; + const urlRegex = /^(http|https|dicomfile):\/\//; if (urlRegex.test(imageId)) { imageURI = imageId; } else { @@ -453,7 +481,7 @@ class MetadataProvider { } const uids = this.imageURIToUIDs.get(imageURI); - const frameNumber = imageId.split(/\/frames\//)[1]; + let frameNumber = this.getFrameInformationFromURL(imageId) || '1'; if (uids && frameNumber !== undefined) { return { ...uids, frameNumber }; diff --git a/platform/core/src/defaults/hotkeyBindings.js b/platform/core/src/defaults/hotkeyBindings.js index cd38c43c5..75023247c 100644 --- a/platform/core/src/defaults/hotkeyBindings.js +++ b/platform/core/src/defaults/hotkeyBindings.js @@ -88,6 +88,20 @@ const bindings = [ // keys: ['pagedown'], // isEditable: true, // }, + { + commandName: 'nextStage', + context: 'DEFAULT', + label: 'Next Stage', + keys: ['.'], + isEditable: true, + }, + { + commandName: 'previousStage', + context: 'DEFAULT', + label: 'Previous Stage', + keys: [','], + isEditable: true, + }, { commandName: 'nextImage', label: 'Next Image', diff --git a/platform/core/src/extensions/ExtensionManager.test.js b/platform/core/src/extensions/ExtensionManager.test.js index 4177deab7..2af3ce52a 100644 --- a/platform/core/src/extensions/ExtensionManager.test.js +++ b/platform/core/src/extensions/ExtensionManager.test.js @@ -206,40 +206,40 @@ describe('ExtensionManager.ts', () => { const extension = { id: 'hello-world', getViewportModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getSopClassHandlerModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getPanelModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getToolbarModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getCommandsModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getLayoutTemplateModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getDataSourcesModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getHangingProtocolModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getContextModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getUtilityModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getCustomizationModule: () => { - return [{}]; + return [{ name: 'test' }]; }, getStateSyncModule: () => { - return [{}]; + return [{ name: 'test' }]; }, }; diff --git a/platform/core/src/extensions/ExtensionManager.ts b/platform/core/src/extensions/ExtensionManager.ts index ca05871af..188da5add 100644 --- a/platform/core/src/extensions/ExtensionManager.ts +++ b/platform/core/src/extensions/ExtensionManager.ts @@ -36,7 +36,10 @@ export interface ExtensionParams extends ExtensionConstructor { */ export interface Extension { id: string; - preRegistration?: (p: ExtensionParams) => void; + preRegistration?: (p: ExtensionParams) => Promise | void; + onModeExit?: () => void; + getHangingProtocolModule?: (p: ExtensionParams) => unknown; + getCommandsModule?: (p: ExtensionParams) => CommandsModule; } export type ExtensionRegister = { @@ -44,6 +47,12 @@ export type ExtensionRegister = { create: (p: ExtensionParams) => Extension; }; +export type CommandsModule = { + actions: Record; + definitions: Record; + defaultContext?: string; +}; + export default class ExtensionManager { private _commandsManager: CommandsManager; private _servicesManager: ServicesManager; @@ -274,6 +283,11 @@ export default class ExtensionManager { // Default for most extension points, // Just adds each entry ready for consumption by mode. extensionModule.forEach(element => { + if (!element.name) { + throw new Error( + `Extension ID ${extensionId} module ${moduleType} element has no name` + ); + } const id = `${extensionId}.${moduleType}.${element.name}`; element.id = id; this.modulesMap[id] = element; @@ -331,7 +345,7 @@ export default class ExtensionManager { } try { - const extensionModule = getModuleFn({ + const extensionModule = extension[getModuleFnName]({ appConfig: this._appConfig, commandsManager: this._commandsManager, servicesManager: this._servicesManager, @@ -348,6 +362,7 @@ export default class ExtensionManager { return extensionModule; } catch (ex) { + console.log(ex); throw new Error( `Exception thrown while trying to call ${getModuleFnName} for the ${extensionId} extension` ); @@ -356,10 +371,10 @@ export default class ExtensionManager { _initHangingProtocolsModule = (extensionModule, extensionId) => { const { hangingProtocolService } = this._servicesManager.services; - extensionModule.forEach(({ id, protocol }) => { + extensionModule.forEach(({ name, protocol }) => { if (protocol) { // Only auto-register if protocol specified, otherwise let mode register - hangingProtocolService.addProtocol(id, protocol); + hangingProtocolService.addProtocol(name, protocol); } }); }; diff --git a/platform/core/src/extensions/MODULE_TYPES.js b/platform/core/src/extensions/MODULE_TYPES.js index c96c3f1fb..8260f77a1 100644 --- a/platform/core/src/extensions/MODULE_TYPES.js +++ b/platform/core/src/extensions/MODULE_TYPES.js @@ -1,6 +1,7 @@ export default { COMMANDS: 'commandsModule', CUSTOMIZATION: 'customizationModule', + STATE_SYNC: 'stateSyncModule', DATA_SOURCE: 'dataSourcesModule', PANEL: 'panelModule', SOP_CLASS_HANDLER: 'sopClassHandlerModule', diff --git a/platform/core/src/index.test.js b/platform/core/src/index.test.js index 3c058f961..3a62a5141 100644 --- a/platform/core/src/index.test.js +++ b/platform/core/src/index.test.js @@ -25,6 +25,7 @@ describe('Top level exports', () => { // 'CineService', 'CustomizationService', + 'StateSyncService', 'UIDialogService', 'UIModalService', 'UINotificationService', diff --git a/platform/core/src/index.ts b/platform/core/src/index.ts index 5732d33f3..458c7a3ab 100644 --- a/platform/core/src/index.ts +++ b/platform/core/src/index.ts @@ -29,6 +29,7 @@ import { PubSubService, UserAuthenticationService, CustomizationService, + StateSyncService, PanelService, } from './services'; @@ -61,6 +62,7 @@ const OHIF = { // CineService, CustomizationService, + StateSyncService, UIDialogService, UIModalService, UINotificationService, @@ -99,6 +101,7 @@ export { // CineService, CustomizationService, + StateSyncService, UIDialogService, UIModalService, UINotificationService, diff --git a/platform/core/src/services/CustomizationService/CustomizationService.ts b/platform/core/src/services/CustomizationService/CustomizationService.ts index a133cfdb5..91353a59c 100644 --- a/platform/core/src/services/CustomizationService/CustomizationService.ts +++ b/platform/core/src/services/CustomizationService/CustomizationService.ts @@ -63,7 +63,7 @@ export default class CustomizationService extends PubSubService { modeCustomizations: Record = {}; globalCustomizations: Record = {}; - configuration: UICustomizationConfiguration; + configuration: CustomizationConfiguration; constructor({ configuration, commandsManager }) { super(EVENTS); @@ -97,36 +97,6 @@ export default class CustomizationService extends PubSubService { this.modeCustomizations = {}; } - /** - * - * @param {*} interaction - can be undefined to run nothing - * @param {*} extraOptions to include in the commands run - */ - recordInteraction( - interaction: Customization | void, - extraOptions?: Record - ): void { - if (!interaction) return; - const commandsManager = this.commandsManager; - const { commands = [] } = interaction; - - commands.forEach(({ commandName, commandOptions, context }) => { - if (commandName) { - commandsManager.runCommand( - commandName, - { - interaction, - ...commandOptions, - ...extraOptions, - }, - context - ); - } else { - console.warn('No command name supplied in', interaction); - } - }); - } - public getModeCustomizations(): Record { return this.modeCustomizations; } @@ -145,6 +115,23 @@ export default class CustomizationService extends PubSubService { }); } + /** This is the preferred getter for all customizations, + * getting mode customizations first and otherwise global customizations. + * + * @param customizationId - the customization id to look for + * @param defaultValue - is the default value to return. Note this value + * may have been extended with any customizationType extensions provided, + * so you cannot just use `|| defaultValue` + * @return A customization to use if one is found, or the default customization, + * both enhanced with any customizationType inheritance (see transform) + */ + public getCustomization( + customizationId: string, + defaultValue?: Customization + ): Customization | void { + return this.getModeCustomization(customizationId, defaultValue); + } + /** Mode customizations are changes to the behaviour of the extensions * when running in a given mode. Reset clears mode customizations. * Note that global customizations over-ride mode customizations. @@ -158,7 +145,7 @@ export default class CustomizationService extends PubSubService { this.globalCustomizations[customizationId] ?? this.modeCustomizations[customizationId] ?? defaultValue; - return this.applyType(customization); + return this.transform(customization); } public hasModeCustomization(customizationId: string) { @@ -167,16 +154,33 @@ export default class CustomizationService extends PubSubService { this.modeCustomizations[customizationId] ); } + /** + * get is an alias for getModeCustomization, as it is the generic getter + * which will return both mode and global customizations, and should be + * used generally. + * Note that the second parameter, defaultValue, will be expanded to include + * any customizationType values defined in it, so it is not the same as doing: + * `customizationService.get('key') || defaultValue` + * unless the defaultValue does not contain any customizationType definitions. + */ + public get = this.getModeCustomization; - /** Applies any inheritance due to UI Type customization */ - public applyType(customization: Customization): Customization { + /** + * Applies any inheritance due to UI Type customization. + * This will look for customizationType in the customization object + * and if that is found, will assign all iterable values from that + * type into the new type, allowing default behaviour to be configured. + */ + public transform(customization: Customization): Customization { if (!customization) return customization; const { customizationType } = customization; if (!customizationType) return customization; - const parent = this.getModeCustomization(customizationType); - return parent + const parent = this.getCustomization(customizationType); + const result = parent ? Object.assign(Object.create(parent), customization) : customization; + // Execute an nested type information + return result.transform?.(this) || result; } public addModeCustomizations(modeCustomizations): void { @@ -203,7 +207,7 @@ export default class CustomizationService extends PubSubService { id: string, defaultValue?: Customization ): Customization | void { - return this.applyType(this.globalCustomizations[id] ?? defaultValue); + return this.transform(this.globalCustomizations[id] ?? defaultValue); } setGlobalCustomization(id: string, value: Customization): void { @@ -243,7 +247,7 @@ export default class CustomizationService extends PubSubService { const extensionValue = this.findExtensionValue(value); // The child of a reference is only a set of references when an array, // so call the addReference direct. It could be a secondary reference perhaps - this.addReference(extensionValue); + this.addReference(extensionValue.value, isGlobal, extensionValue.name); } else if (Array.isArray(value)) { this.addReferences(value, isGlobal); } else { diff --git a/platform/core/src/services/DicomMetadataStore/DicomMetadataStore.ts b/platform/core/src/services/DicomMetadataStore/DicomMetadataStore.ts index bf1aab1b6..f90dd2039 100644 --- a/platform/core/src/services/DicomMetadataStore/DicomMetadataStore.ts +++ b/platform/core/src/services/DicomMetadataStore/DicomMetadataStore.ts @@ -84,9 +84,9 @@ function _getInstance(StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID) { } function _getInstanceByImageId(imageId) { - for (let study of _model.studies) { - for (let series of study.series) { - for (let instance of series.instances) { + for (const study of _model.studies) { + for (const series of study.series) { + for (const instance of series.instances) { if (instance.imageId === imageId) { return instance; } @@ -236,7 +236,7 @@ const BaseImplementation = { addStudy(study) { const { StudyInstanceUID } = study; - let existingStudy = _model.studies.find( + const existingStudy = _model.studies.find( study => study.StudyInstanceUID === StudyInstanceUID ); diff --git a/platform/core/src/services/HangingProtocolService/HPMatcher.js b/platform/core/src/services/HangingProtocolService/HPMatcher.js index 854dab807..a369f2460 100644 --- a/platform/core/src/services/HangingProtocolService/HPMatcher.js +++ b/platform/core/src/services/HangingProtocolService/HPMatcher.js @@ -29,27 +29,31 @@ const match = ( let requiredFailed = false; let score = 0; + // Allow for matching against current or prior specifically + const prior = options?.studies?.[1]; + const current = options?.studies?.[0]; + const instance = (metadataInstance.images || metadataInstance.others)?.[0]; + const fromSrc = { + prior, + current, + instance, + ...options, + options, + metadataInstance, + }; + rules.forEach(rule => { - const { attribute } = rule; + const { attribute, from = 'metadataInstance' } = rule; // Do not use the custom attribute from the metadataInstance since it is subject to change if (customAttributeRetrievalCallbacks.hasOwnProperty(attribute)) { readValues[attribute] = customAttributeRetrievalCallbacks[ attribute - ].callback(metadataInstance, options); + ].callback.call(rule, metadataInstance, options); } else { readValues[attribute] = - metadataInstance[attribute] ?? - ((metadataInstance.images || metadataInstance.others || [])[0] || {})[ - attribute - ]; + fromSrc[from]?.[attribute] ?? instance?.[attribute]; } - console.log( - 'Test', - attribute, - readValues[attribute], - JSON.stringify(rule.constraint) - ); // Format the constraint as required by Validate.js const testConstraint = { [attribute]: rule.constraint, @@ -70,6 +74,14 @@ const match = ( errorMessages = ['Something went wrong during validation.', e]; } + console.log( + 'Test', + `${from}.${attribute}`, + readValues[attribute], + JSON.stringify(rule.constraint), + !errorMessages + ); + if (!errorMessages) { // If no errorMessages were returned, then validation passed. diff --git a/platform/core/src/services/HangingProtocolService/HangingProtocolService.test.js b/platform/core/src/services/HangingProtocolService/HangingProtocolService.test.js index 19fbf8906..1af19950b 100644 --- a/platform/core/src/services/HangingProtocolService/HangingProtocolService.test.js +++ b/platform/core/src/services/HangingProtocolService/HangingProtocolService.test.js @@ -117,8 +117,7 @@ const studyMatchDisplaySets = [displaySet3, displaySet2, displaySet1]; function checkHpsBestMatch(hps) { hps.run({ studies: [studyMatch], displaySets: studyMatchDisplaySets }); - const { hpAlreadyApplied, viewportMatchDetails } = hps.getMatchDetails(); - expect(hpAlreadyApplied).toMatchObject(new Map([[0, false]])); + const { viewportMatchDetails } = hps.getMatchDetails(); expect(viewportMatchDetails.size).toBe(1); expect(viewportMatchDetails.get(0)).toMatchObject({ viewportOptions: { @@ -131,9 +130,11 @@ function checkHpsBestMatch(hps) { // ds2 fails to match required and ds3 fails to match an optional. displaySetsInfo: [ { - SeriesInstanceUID: 'ds1', displaySetInstanceUID: 'displaySet1', - displaySetOptions: {}, + displaySetOptions: { + id: 'displaySetSelector', + options: {}, + }, }, ], }); @@ -191,14 +192,6 @@ describe('HangingProtocolService', () => { it('matches best image match', () => { checkHpsBestMatch(hangingProtocolService); }); - - it('uses services manager', () => { - hangingProtocolService.run({ - studies: [studyMatch], - displaySets: studyMatchDisplaySets, - }); - expect(mockedFunction).toHaveBeenCalledTimes(1); }); }); }); -}); diff --git a/platform/core/src/services/HangingProtocolService/HangingProtocolService.ts b/platform/core/src/services/HangingProtocolService/HangingProtocolService.ts index f85ea5905..b366450d9 100644 --- a/platform/core/src/services/HangingProtocolService/HangingProtocolService.ts +++ b/platform/core/src/services/HangingProtocolService/HangingProtocolService.ts @@ -1,24 +1,37 @@ -import uuidv4 from '../../utils/uuidv4'; -import pubSubServiceInterface from '../_shared/pubSubServiceInterface'; +import { PubSubService } from '../_shared/pubSubServiceInterface'; import sortBy from '../../utils/sortBy'; import ProtocolEngine from './ProtocolEngine'; -import StudyMetadata from '../../types/StudyMetadata'; +import { StudyMetadata } from '../../types/StudyMetadata'; import IDisplaySet from '../DisplaySetService/IDisplaySet'; -import { HangingProtocol } from '../../types'; - -const EVENTS = { - STAGE_CHANGE: 'event::hanging_protocol_stage_change', - PROTOCOL_CHANGED: 'event::hanging_protocol_changed', - NEW_LAYOUT: 'event::hanging_protocol_new_layout', - CUSTOM_IMAGE_LOAD_PERFORMED: - 'event::hanging_protocol_custom_image_load_performed', - HANGING_PROTOCOL_APPLIED_FOR_VIEWPORT: - 'event::hanging_protocol_applied_for_viewport', -}; +import { CommandsManager } from '../../classes'; +import ServicesManager from '../ServicesManager'; +import * as HangingProtocol from '../../types/HangingProtocol'; type Protocol = HangingProtocol.Protocol | HangingProtocol.ProtocolGenerator; -class HangingProtocolService { +const DEFAULT_VIEWPORT_OPTIONS: HangingProtocol.ViewportOptions = { + toolGroupId: 'default', + viewportType: 'stack', +}; + +export default class HangingProtocolService extends PubSubService { + static EVENTS = { + // The PROTOCOL_CHANGED event is fired when the protocol changes + // and should be immediately applied + PROTOCOL_CHANGED: 'event::hanging_protocol_changed', + // The PROTOCOL_RESTORED event is fired instead of a changed event to indicate + // that an earlier state has been restored as part of a state update, but + // is not being directly re-applied, but just restored. + PROTOCOL_RESTORED: 'event::hanging_protocol_restore', + // The layout has been decided for the hanging protocol - deprecated + NEW_LAYOUT: 'event::hanging_protocol_new_layout', + // Fired when the stages within the current protocol are known to have + // the status set - that is, they are activated (or deactivated). + STAGE_ACTIVATION: 'event::hanging_protocol_stage_activation', + CUSTOM_IMAGE_LOAD_PERFORMED: + 'event::hanging_protocol_custom_image_load_performed', + }; + public static REGISTRATION = { name: 'hangingProtocolService', altName: 'HangingProtocolService', @@ -34,15 +47,14 @@ class HangingProtocolService { activeProtocolIds: string[]; // the current protocol that is being applied to the viewports in object format protocol: HangingProtocol.Protocol; - stage: number; - _commandsManager: Record; - _servicesManager: Record; + stageIndex = 0; + _commandsManager: CommandsManager; + _servicesManager: ServicesManager; protocolEngine: ProtocolEngine; customViewportSettings = []; displaySets: IDisplaySet[] = []; - activeStudy: Record; + activeStudy: StudyMetadata; debugLogging: false; - EVENTS: { [key: string]: string }; customAttributeRetrievalCallbacks = { NumberOfStudyRelatedSeries: { @@ -75,12 +87,6 @@ class HangingProtocolService { activeImageLoadStrategyName = null; customImageLoadPerformed = false; - /** - * Whether the hanging protocol is applied for the given viewport index, - * applying means that the displayset(s) is set for the viewport to be shown - */ - hpAlreadyApplied: Map = new Map(); - /** * displaySetMatchDetails = * DisplaySetId is the id defined in the hangingProtocol object itself @@ -100,57 +106,90 @@ class HangingProtocolService { HangingProtocol.ViewportMatchDetails > = new Map(); - constructor(commandsManager, servicesManager) { + constructor(commandsManager: CommandsManager, servicesManager) { + super(HangingProtocolService.EVENTS); this._commandsManager = commandsManager; this._servicesManager = servicesManager; this.protocols = new Map(); this.protocolEngine = undefined; this.protocol = undefined; - this.stage = undefined; + this.stageIndex = undefined; this.studies = []; - Object.defineProperty(this, 'EVENTS', { - value: EVENTS, - writable: false, - enumerable: true, - configurable: false, - }); - Object.assign(this, pubSubServiceInterface); } - public destroy() { + public destroy(): void { this.reset(); this.protocols = new Map(); } - public reset() { + public reset(): void { this.studies = []; - this.hpAlreadyApplied = new Map(); this.viewportMatchDetails = new Map(); this.displaySetMatchDetails = new Map(); } /** Leave the hanging protocol in the initialized state */ - public onModeExit() { + public onModeEnter(): void { this.reset(); } + /** + * Gets the active protocol information directly, including the direct + * protocol, stage and active study objects. + * Should NOT be stored longer term as the protocol + * object can change internally or be regenerated. + * Can be used to store the state to recover from exceptions. + * + * @returns protocol, stage, activeStudy + */ public getActiveProtocol(): { protocol: HangingProtocol.Protocol; - stage: number; + stage: HangingProtocol.ProtocolStage; + stageIndex: number; + activeStudy?: StudyMetadata; + viewportMatchDetails: Map; + displaySetMatchDetails: Map; + activeImageLoadStrategyName: string; } { - return { protocol: this.protocol, stage: this.stage }; + return { + protocol: this.protocol, + stage: this.protocol?.stages?.[this.stageIndex], + stageIndex: this.stageIndex, + activeStudy: this.activeStudy, + viewportMatchDetails: this.viewportMatchDetails, + displaySetMatchDetails: this.displaySetMatchDetails, + activeImageLoadStrategyName: this.activeImageLoadStrategyName, + }; } + /** Gets the hanging protocol state information, which is a storable + * state information for the hanging protocol consisting of the: + * protocolId, stageIndex, stageId and activeStudyUID + */ + public getState(): HangingProtocol.HPInfo { + if (!this.protocol) return; + return { + protocolId: this.protocol.id, + stageIndex: this.stageIndex, + stageId: this.protocol.stages[this.stageIndex].id, + activeStudyUID: this.activeStudy?.StudyInstanceUID, + }; + } + + /** Gets the protocol with id 'default' */ public getDefaultProtocol(): HangingProtocol.Protocol { return this.getProtocolById('default'); } + /** Gets the viewport match details. + * @deprecated because this method is expected to go away as the HP service + * becomes more stateless. + */ public getMatchDetails(): HangingProtocol.HangingProtocolMatchDetails { return { viewportMatchDetails: this.viewportMatchDetails, displaySetMatchDetails: this.displaySetMatchDetails, - hpAlreadyApplied: this.hpAlreadyApplied, }; } @@ -185,13 +224,14 @@ class HangingProtocolService { * @param protocolId - the id of the protocol * @returns protocol - the protocol with the given id */ - public getProtocolById(id: string): HangingProtocol.Protocol | undefined { - if (!id) { - return; + public getProtocolById(protocolId: string): HangingProtocol.Protocol { + if (!protocolId) return; + if (protocolId === this.protocol?.id) return this.protocol; + const protocol = this.protocols.get(protocolId); + if (!protocol) { + throw new Error(`No protocol ${protocolId} found`); } - const protocol = this.protocols.get(id); - if (protocol instanceof Function) { try { const { protocol: generatedProtocol } = this._getProtocolFromGenerator( @@ -201,7 +241,7 @@ class HangingProtocolService { return generatedProtocol; } catch (error) { console.warn( - `Error while executing protocol generator for protocol ${id}: ${error}` + `Error while executing protocol generator for protocol ${protocolId}: ${error}` ); } } else { @@ -264,23 +304,40 @@ class HangingProtocolService { this.activeProtocolIds = [...protocolId]; } + /** + * Sets the active study. + * This is the study that the hanging protocol will consider active and + * may or may not be the study that is being shown by the protocol currently, + * for example, a prior view hanging protocol will NOT show the active study + * specifically, but will show another study instead. + */ + public setActiveStudyUID(activeStudyUID: string): void { + this.activeStudy = this.studies.find( + it => it.StudyInstanceUID === activeStudyUID + ); + } + /** * Run the hanging protocol decisions tree on the active study, - * studies list and display sets, firing a hanging protocol event when - * complete to indicate the hanging protocol is ready. + * studies list and display sets, firing a PROTOCOL_CHANGED event when + * complete to indicate the hanging protocol is ready, and which stage + * got applied/activated. + * + * Also fires a STAGES_ACTIVE event to indicate which stages are able to be + * activated. * * @param params is the dataset to run the hanging protocol on. * @param params.activeStudy is the "primary" study to hang This may or may * not be displayed by the actual viewports. - * @param params.studies is the list of studies to hang + * @param params.studies is the list of studies to hang. If absent, will re-use the previous set. * @param params.displaySets is the list of display sets associated with * the studies to display in viewports. * @param protocol is a specific protocol to apply. */ public run({ studies, displaySets, activeStudy }, protocolId) { - this.studies = [...studies]; + this.studies = [...(studies || this.studies)]; this.displaySets = displaySets; - this.activeStudy = activeStudy || studies[0]; + this.setActiveStudyUID((activeStudy || studies[0])?.StudyInstanceUID); this.protocolEngine = new ProtocolEngine( this.getProtocols(), @@ -330,23 +387,6 @@ class HangingProtocolService { } } - setHangingProtocolAppliedForViewport(i, status, suppressEvent = false) { - this.hpAlreadyApplied.set(i, status); - - const numberOfViewports = this.viewportMatchDetails.size; - const numberOfViewportsApplied = Array.from( - this.hpAlreadyApplied.values() - ).filter(applied => applied).length; - - const progress = Math.round( - (numberOfViewportsApplied / numberOfViewports) * 100 - ); - - this._broadcastChange(this.EVENTS.HANGING_PROTOCOL_APPLIED_FOR_VIEWPORT, { - progress: progress, - }); - } - /** * Adds a custom attribute to be used in the HangingProtocol UI and matching rules, including a * callback that will be used to calculate the attribute value. @@ -359,8 +399,11 @@ class HangingProtocolService { public addCustomAttribute( attributeId: string, attributeName: string, - callback: (metadata: any) => any, - options: Record = {} + callback: ( + metadata: Record, + extraData?: Record + ) => unknown, + options: Record = {} ): void { this.customAttributeRetrievalCallbacks[attributeId] = { ...options, @@ -370,33 +413,11 @@ class HangingProtocolService { }; } - /** - * Switches to the next protocol stage in the display set sequence - */ - public nextProtocolStage(): void { - console.log('ProtocolEngine::nextProtocolStage'); - - if (!this._setCurrentProtocolStage(1)) { - console.log('ProtocolEngine::nextProtocolStage failed'); - } - } - - /** - * Switches to the previous protocol stage in the display set sequence - */ - public previousProtocolStage(): void { - console.log('ProtocolEngine::previousProtocolStage'); - - if (!this._setCurrentProtocolStage(-1)) { - console.log('ProtocolEngine::previousProtocolStage failed'); - } - } - /** * Executes the callback function for the custom loading strategy for the images * if no strategy is set, the default strategy is used */ - runImageLoadStrategy(data): void { + runImageLoadStrategy(data): boolean { const loader = this.registeredImageLoadStrategies[ this.activeImageLoadStrategyName ]; @@ -409,11 +430,13 @@ class HangingProtocolService { // if loader successfully re-arranged the data with the custom strategy // and returned the new props, then broadcast them if (!loadedData) { - return; + console.warn('Not able to load data with custom strategy'); + return false; } this.customImageLoadPerformed = true; - this._broadcastChange(this.EVENTS.CUSTOM_IMAGE_LOAD_PERFORMED, loadedData); + this._broadcastEvent(this.EVENTS.CUSTOM_IMAGE_LOAD_PERFORMED, loadedData); + return true; } _validateProtocol( @@ -429,9 +452,25 @@ class HangingProtocolService { protocol.name = protocol.name || protocol.id; const { stages } = protocol; + if (!stages) { + console.warn('Protocol has not stages:', protocol.id, protocol); + return; + } + + for (const id of Object.keys(protocol.displaySetSelectors)) { + const selector = protocol.displaySetSelectors[id]; + selector.id = id; + const { seriesMatchingRules } = selector; + if (!seriesMatchingRules) { + console.warn('Selector has no series matching rules', protocol.id, id); + return; + } + } + // Generate viewports automatically as required. stages.forEach(stage => { if (!stage.viewports) { + stage.name = stage.name || stage.id; stage.viewports = []; const { rows, columns } = stage.viewportStructure.properties; @@ -479,7 +518,7 @@ class HangingProtocolService { getViewportsRequireUpdate(viewportIndex, displaySetInstanceUID) { const newDisplaySetInstanceUID = displaySetInstanceUID; const protocol = this.protocol; - const protocolStage = protocol.stages[this.stage]; + const protocolStage = protocol.stages[this.stageIndex]; const protocolViewports = protocolStage.viewports; const protocolViewport = protocolViewports[viewportIndex]; @@ -518,7 +557,10 @@ class HangingProtocolService { // if the viewport is not empty, then we check the displaySets it is showing // currently, which means we need to check if the requested updated displaySet // follow the same rules as the current displaySets - const displaySetSelectorId = protocolViewport.displaySets[0].id; + const { + id: displaySetSelectorId, + matchedDisplaySetsIndex = 0, + } = protocolViewport.displaySets[0]; const displaySetSelector = protocol.displaySetSelectors[displaySetSelectorId]; @@ -558,7 +600,10 @@ class HangingProtocolService { protocolViewports.forEach((viewport, index) => { let viewportNeedsUpdate; for (const displaySet of viewport.displaySets) { - if (displaySet.id === displaySetSelectorId) { + if ( + displaySet.id === displaySetSelectorId && + (displaySet.matchedDisplaySetsIndex || 0) === matchedDisplaySetsIndex + ) { viewportNeedsUpdate = true; break; } @@ -573,7 +618,7 @@ class HangingProtocolService { displaySetOptions, } = viewport.displaySets.reduce( (acc, displaySet) => { - const { id, options } = displaySet; + const { id } = displaySet; let { displaySetInstanceUID: displaySetInstanceUIDToUse, @@ -584,7 +629,7 @@ class HangingProtocolService { } acc.displaySetInstanceUIDs.push(displaySetInstanceUIDToUse); - acc.displaySetOptions.push(options); + acc.displaySetOptions.push(displaySet); return acc; }, @@ -630,16 +675,16 @@ class HangingProtocolService { return; } - const protocol = this._validateProtocol(foundProtocol); - - if (options) { - this._validateOptions(options); - } - try { + const protocol = this._validateProtocol(foundProtocol); + + if (options) { + this._validateOptions(options); + } + this._setProtocol(protocol, options); } catch (error) { - console.error(error); + console.log(error); if (errorCallback) { errorCallback(error); @@ -649,38 +694,171 @@ class HangingProtocolService { } } + protected matchActivation( + matchedViewports: number, + activation: HangingProtocol.StageActivation = {}, + minViewportsMatched: number + ): boolean { + const { displaySetSelectors } = this.protocol; + + const { displaySetSelectorsMatched = [] } = activation; + for (const dsName of displaySetSelectorsMatched) { + const displaySetSelector = displaySetSelectors[dsName]; + if (!displaySetSelector) { + console.warn('No display set selector for', dsName); + return false; + } + const { bestMatch } = this._matchImages(displaySetSelector); + if (!bestMatch) { + return false; + } + } + const min = activation.minViewportsMatched ?? minViewportsMatched; + + return matchedViewports >= min; + } + /** + * Updates the stage activation, setting the stageActivation values to + * 'disabled', 'active', 'passive' where: + * * disabled means there are insufficient viewports filled to show this + * * passive means there aren't enough preferred viewports filled to show + * this stage by default, but it can be manually selected + * * enabled means there are enough viewports to select this viewport by default + * + * The logic is currently simple, just count how many viewports would be + * filled, and compare to the required/preferred count, but the intent is + * to allow more complex rules in the future as required. + * + * @returns the stage number to apply initially, given the options. + */ + private _updateStageStatus( + options = null as HangingProtocol.SetProtocolOptions + ) { + const stages = this.protocol.stages; + for (let i = 0; i < stages.length; i++) { + const stage = stages[i]; + + const { matchedViewports } = this._matchAllViewports( + stage, + options, + new Map() + ); + const activation = stage.stageActivation || {}; + if (this.matchActivation(matchedViewports, activation.passive, 0)) { + if (this.matchActivation(matchedViewports, activation.enabled, 1)) { + stage.status = 'enabled'; + } else { + stage.status = 'passive'; + } + } else { + stage.status = 'disabled'; + } + } + + this._broadcastEvent(this.EVENTS.STAGE_ACTIVATION, { + protocol: this.protocol, + stages: this.protocol.stages, + }); + } + + private _findStageIndex( + options = null as HangingProtocol.SetProtocolOptions + ): number | void { + const stageId = options?.stageId; + const protocol = this.protocol; + const stages = protocol.stages; + + if (stageId) { + for (let i = 0; i < stages.length; i++) { + const stage = stages[i]; + if (stage.id === stageId && stage.status !== 'disabled') return i; + } + return; + } + + const stageIndex = options?.stageIndex; + if (stageIndex !== undefined) { + return stages[stageIndex]?.status !== 'disabled' ? stageIndex : undefined; + } + + let firstNotDisabled: number; + + for (let i = 0; i < stages.length; i++) { + if (stages[i].status === 'enabled') return i; + if (firstNotDisabled === undefined && stages[i].status !== 'disabled') { + firstNotDisabled = i; + } + } + + return firstNotDisabled; + } + private _setProtocol( protocol: HangingProtocol.Protocol, options = null as HangingProtocol.SetProtocolOptions ): void { - this.stage = 0; - const oldProtocol = this.protocol; - this.protocol = this._copyProtocol(protocol); - - const { imageLoadStrategy } = protocol; - if (imageLoadStrategy) { - // check if the imageLoadStrategy is a valid strategy - if ( - this.registeredImageLoadStrategies[imageLoadStrategy] instanceof - Function - ) { - this.activeImageLoadStrategyName = imageLoadStrategy; - } - } + const old = this.getActiveProtocol(); try { + if (!this.protocol || this.protocol.id !== protocol.id) { + this.stageIndex = options?.stageIndex || 0; + this.protocol = this._copyProtocol(protocol); + + const { imageLoadStrategy } = protocol; + if (imageLoadStrategy) { + // check if the imageLoadStrategy is a valid strategy + if ( + this.registeredImageLoadStrategies[imageLoadStrategy] instanceof + Function + ) { + this.activeImageLoadStrategyName = imageLoadStrategy; + } + } + + this._updateStageStatus(options); + } + + const stage = this._findStageIndex(options); + if (stage === undefined) { + throw new Error( + `Can't find applicable stage ${protocol.id} ${options?.stageIndex}` + ); + } + this.stageIndex = stage as number; this._updateViewports(options); } catch (error) { - this.protocol = oldProtocol; + console.log(error); + Object.assign(this, old); throw new Error(error); } - this._broadcastChange(this.EVENTS.PROTOCOL_CHANGED, { - viewportMatchDetails: this.viewportMatchDetails, - displaySetMatchDetails: this.displaySetMatchDetails, - hpAlreadyApplied: this.hpAlreadyApplied, - protocol: this.protocol, - }); + if (options?.restoreProtocol !== true) { + this._broadcastEvent(HangingProtocolService.EVENTS.PROTOCOL_CHANGED, { + viewportMatchDetails: this.viewportMatchDetails, + displaySetMatchDetails: this.displaySetMatchDetails, + protocol: this.protocol, + stageIdx: this.stageIndex, + stage: this.protocol.stages[this.stageIndex], + activeStudyUID: this.activeStudy?.StudyInstanceUID, + }); + } else { + this._broadcastEvent(HangingProtocolService.EVENTS.PROTOCOL_RESTORED, { + protocol: this.protocol, + stageIdx: this.stageIndex, + stage: this.protocol.stages[this.stageIndex], + activeStudyUID: this.activeStudy?.StudyInstanceUID, + }); + } + } + + public getStageIndex(protocolId: string, options): number { + const protocol = this.getProtocolById(protocolId); + const { stageId, stageIndex } = options; + if (stageId !== undefined) { + return protocol.stages.findIndex(it => it.id === stageId); + } + if (stageIndex !== undefined) return stageIndex; + return 0; } /** @@ -705,7 +883,35 @@ class HangingProtocolService { * @returns {*} The Stage model for the currently displayed Stage */ _getCurrentStageModel() { - return this.protocol.stages[this.stage]; + return this.protocol.stages[this.stageIndex]; + } + + /** + * Gets a new viewport object for missing viewports. Used to fill + * new viewports. + * Looks first for the stage, to see if there is a missingViewport defined, + * and secondly looks to the overall protocol. + * + * Returns a matchInfo object, which can be used to create the actual + * viewport object (which this class knows nothing about). + */ + public getMissingViewport( + protocolId: string, + stageIdx: number, + options + ): HangingProtocol.ViewportMatchDetails { + if (this.protocol.id !== protocolId) { + throw new Error( + `Currently applied protocol ${this.protocol.id} is different from ${protocolId}` + ); + } + const protocol = this.protocol; + const stage = protocol.stages[stageIdx]; + const defaultViewport = stage.defaultViewport || protocol.defaultViewport; + if (!defaultViewport) return; + + const useViewport = { ...defaultViewport }; + return this._matchViewport(useViewport, options); } /** @@ -719,35 +925,10 @@ class HangingProtocolService { // each time we are updating the viewports, we need to reset the // matching applied - // Todo: we can have more intelligent invalidation of the hpAlreadyApplied - // since sometimes we are just updating some viewports and the rest are - // already applied (e.g. when we are using the drag and drop) - this.hpAlreadyApplied = new Map(); this.viewportMatchDetails = new Map(); this.displaySetMatchDetails = new Map(); this.customImageLoadPerformed = false; - if (options) { - // if the options are defined, we can fill in the displaySetMatchDetails - // but we need to also check that any displaySetInstanceUIDs that are - // provided either at viewport level or at the protocol level SATISFIES - // the required seriesMatching criteria species in the protocol. Otherwise - // we need to throw an error. This way protocols become more strict and - // for instance don't allow drag and drop of displaySets that don't match - // (in MPR protocol we specify in the displaysetSelector that the displaySet - // to be used should be reconstructable. Or you can specify that the displaySet - // should be a localizer only for a protocol) - - // options can be either an object with { displaySetInstanceUIDs, viewportOptions, displaySetOptions } - // options (global options), or an object of objects with viewportIndex - // as the key and the { displaySetInstanceUIDs, viewportOptions, displaySetOptions } as the value - - // The following function will update the displaySetMatchDetails in place - this._updateMatchByOptions(this.protocol, options); - } - - const { displaySetSelectors = {} } = this.protocol; - // Retrieve the current stage const stageModel = this._getCurrentStageModel(); @@ -774,234 +955,200 @@ class HangingProtocolService { const { columns: numCols, rows: numRows, layoutOptions = [] } = layoutProps; - this._broadcastChange(this.EVENTS.NEW_LAYOUT, { + this._broadcastEvent(this.EVENTS.NEW_LAYOUT, { layoutType, numRows, numCols, layoutOptions, }); - // Matching the displaySets - for ( - let viewportIndex = 0; - viewportIndex < numCols * numRows; - viewportIndex++ - ) { - if (viewportIndex >= stageModel.viewports.length) { - // If we have more viewports than display sets, stop here. - break; + // Loop through each viewport + this._matchAllViewports(this.protocol.stages[this.stageIndex], options); + } + + private _matchAllViewports( + stageModel: HangingProtocol.ProtocolStage, + options?: HangingProtocol.SetProtocolOptions, + viewportMatchDetails = this.viewportMatchDetails, + displaySetMatchDetails = this.displaySetMatchDetails + ): { + matchedViewports: number; + viewportMatchDetails: Map; + displaySetMatchDetails: Map; + } { + let matchedViewports = 0; + stageModel.viewports.forEach((viewport, viewportIndex) => { + const matchDetails = this._matchViewport( + viewport, + options, + viewportMatchDetails, + displaySetMatchDetails + ); + if (matchDetails) { + if ( + matchDetails.displaySetsInfo?.length && + matchDetails.displaySetsInfo[0].displaySetInstanceUID + ) { + matchedViewports++; + } else { + console.log( + 'Adding an empty set of display sets for mapping purposes' + ); + matchDetails.displaySetsInfo = viewport.displaySets.map(it => ({ + displaySetOptions: it, + })); + } + viewportMatchDetails.set(viewportIndex, matchDetails); } + }); + return { matchedViewports, viewportMatchDetails, displaySetMatchDetails }; + } - const viewport = stageModel.viewports[viewportIndex]; - - for (const displaySet of viewport.displaySets) { - const { id: displaySetId } = displaySet; - // skip matching if already matched (e.g. by options above) - if (this.displaySetMatchDetails.has(displaySetId)) { - continue; + protected findDeduplicatedMatchDetails( + matchDetails: HangingProtocol.DisplaySetMatchDetails, + offset: number, + options: HangingProtocol.SetProtocolOptions = {} + ): HangingProtocol.DisplaySetMatchDetails { + if (!matchDetails) return; + if (offset === 0) return matchDetails; + const { matchingScores = [] } = matchDetails; + if (offset === -1) { + const { inDisplay } = options; + if (!inDisplay) return matchDetails; + for (let i = 0; i < matchDetails.matchingScores.length; i++) { + if ( + inDisplay.indexOf( + matchDetails.matchingScores[i].displaySetInstanceUID + ) === -1 + ) { + const match = matchDetails.matchingScores[i]; + return match.matchingScore > 0 + ? { matchingScores, ...matchDetails.matchingScores[i] } + : null; } - const displaySetSelector = displaySetSelectors[displaySetId]; + } + return; + } + const matchFound = matchingScores[offset]; + return matchFound ? { ...matchFound, matchingScores } : undefined; + } - if (!displaySetSelector) { - console.warn('No display set selector for', displaySetId); - continue; - } - const { bestMatch, matchingScores } = this._matchImages( - displaySetSelector - ); - this.displaySetMatchDetails.set(displaySetId, bestMatch); + protected validateDisplaySetSelectMatch( + match: HangingProtocol.DisplaySetMatchDetails, + id: string, + displaySetUID: string + ): void { + if (match.displaySetInstanceUID === displaySetUID) return; + if (!match.matchingScores) { + throw new Error('No matchingScores found in ' + match); + } + for (const subMatch of match.matchingScores) { + if (subMatch.displaySetInstanceUID === displaySetUID) return; + } + throw new Error( + `Reused viewport details ${id} with ds ${displaySetUID} not valid` + ); + } - if (bestMatch) { - bestMatch.matchingScores = matchingScores; - } + protected _matchViewport( + viewport: HangingProtocol.Viewport, + options: HangingProtocol.SetProtocolOptions, + viewportMatchDetails = this.viewportMatchDetails, + displaySetMatchDetails = this.displaySetMatchDetails + ): HangingProtocol.ViewportMatchDetails { + const displaySetSelectorMap = options?.displaySetSelectorMap || {}; + const { displaySetSelectors = {} } = this.protocol; + + // Matching the displaySets + for (const displaySet of viewport.displaySets) { + const { id: displaySetId } = displaySet; + + const displaySetSelector = displaySetSelectors[displaySetId]; + + if (!displaySetSelector) { + console.warn('No display set selector for', displaySetId); + continue; + } + const { bestMatch, matchingScores } = this._matchImages( + displaySetSelector + ); + displaySetMatchDetails.set(displaySetId, bestMatch); + + if (bestMatch) { + bestMatch.matchingScores = matchingScores; } } // Loop through each viewport - stageModel.viewports.forEach((viewport, viewportIndex) => { - const { viewportOptions = {} } = viewport; - this.hpAlreadyApplied.set(viewportIndex, false); - // DisplaySets for the viewport, Note: this is not the actual displaySet, - // but it is a info to locate the displaySet from the displaySetService - const displaySetsInfo = []; - viewport.displaySets.forEach( - ({ id, displaySetIndex = 0, options: displaySetOptions }) => { - const viewportDisplaySetMain = this.displaySetMatchDetails.get(id); - // Use the display set index to allow getting the "next" match, eg - // matching all display sets, and get the displaySetIndex'th item - const viewportDisplaySet = - !viewportDisplaySetMain || displaySetIndex === 0 - ? viewportDisplaySetMain - : viewportDisplaySetMain.matchingScores[displaySetIndex]; + const { viewportOptions = DEFAULT_VIEWPORT_OPTIONS } = viewport; + // DisplaySets for the viewport, Note: this is not the actual displaySet, + // but it is a info to locate the displaySet from the displaySetService + const displaySetsInfo = []; + const { StudyInstanceUID: activeStudyUID } = this.activeStudy; + viewport.displaySets.forEach(displaySetOptions => { + const { id, matchedDisplaySetsIndex = 0 } = displaySetOptions; + const reuseDisplaySetUID = + id && + displaySetSelectorMap[ + `${activeStudyUID}:${id}:${matchedDisplaySetsIndex || 0}` + ]; + const viewportDisplaySetMain = this.displaySetMatchDetails.get(id); - if (viewportDisplaySet) { - const { - SeriesInstanceUID, - displaySetInstanceUID, - } = viewportDisplaySet; + const viewportDisplaySet = this.findDeduplicatedMatchDetails( + viewportDisplaySetMain, + matchedDisplaySetsIndex, + options + ); - const displaySetInfo: HangingProtocol.DisplaySetInfo = { - SeriesInstanceUID, - displaySetInstanceUID, - displaySetOptions, - }; + // Use the display set provided instead + if (reuseDisplaySetUID) { + if (viewportOptions.allowUnmatchedView !== true) { + this.validateDisplaySetSelectMatch( + viewportDisplaySet, + id, + reuseDisplaySetUID + ); + } + const displaySetInfo: HangingProtocol.DisplaySetInfo = { + displaySetInstanceUID: reuseDisplaySetUID, + displaySetOptions, + }; - displaySetsInfo.push(displaySetInfo); - } else { - console.warn( - ` + displaySetsInfo.push(displaySetInfo); + return; + } + + // Use the display set index to allow getting the "next" match, eg + // matching all display sets, and get the matchedDisplaySetsIndex'th item + if (viewportDisplaySet) { + const { displaySetInstanceUID } = viewportDisplaySet; + + const displaySetInfo: HangingProtocol.DisplaySetInfo = { + displaySetInstanceUID, + displaySetOptions, + }; + + displaySetsInfo.push(displaySetInfo); + } else { + console.warn( + ` The hanging protocol viewport is requesting to display ${id} displaySet that is not matched based on the provided criteria (e.g. matching rules). ` - ); - } - } - ); - - this.viewportMatchDetails.set(viewportIndex, { - viewportOptions, - displaySetsInfo, - }); - }); - } - - _updateMatchByOptions( - protocol: Protocol, - options: HangingProtocol.SetProtocolOptions - ) { - const { displaySetService } = this._servicesManager.services; - - if (options.displaySetInstanceUIDs) { - this._updateGlobalMatchByOptions( - options as HangingProtocol.GlobalProtocolOptions, - protocol, - displaySetService - ); - return; - } - - // Todo: I don't think we need the following anymore, since the drag and - // drop has been reworked to ask HangingProtocolService to check - // which viewports need to be updated. I don't think there is other use cases - // other than drag and drop and thumbnails double click that will specify - // options at viewport level. if there are the following code will need to be - // uncommented and tested. - this._updateViewportSpecificMatchByOptions( - options as HangingProtocol.ViewportSpecificProtocolOptions, - protocol - ); - } - - private _updateViewportSpecificMatchByOptions( - options: HangingProtocol.ViewportSpecificProtocolOptions, - protocol: HangingProtocol.Protocol - ) { - const { displaySetService } = this._servicesManager.services; - const { displaySetSelectors = {} } = protocol; - const protocolViewports = protocol.stages[this.stage].viewports; - - // if we get here, we can fill in the displaySetMatchDetails - for (const viewportIndex in options) { - const displaySetAndViewportOptions = options[viewportIndex]; - - const protocolViewport = protocolViewports[viewportIndex]; - // if the protocol already has the viewport - if (protocolViewport) { - // if the protocol has a viewport with specific displaySets, we need to check if the - // displaySetInstanceUIDs are allowed by the protocol - this._validateViewportSpecificMatch( - displaySetAndViewportOptions, - protocolViewport, - displaySetSelectors ); - - displaySetAndViewportOptions.displaySetInstanceUIDs.forEach( - (displaySetInstanceUID, index) => { - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - const displaySetId = protocolViewport.displaySets[index].id; - - // since we are setting the displaySetMatchDetails for each viewport - // directly, a side effect is that any other viewport that is referencing - // the same displaySetId will also be updated with the new - // displaySetMatchDetails, but sometimes this is not a desired behavior - // which is why we are using the syncDataForViewports to determine if - // we should update the displaySetMatchDetails for all the viewports - // that are affected by the syncDataForViewports - if (protocol.syncDataForViewports) { - this.displaySetMatchDetails.set(displaySetId, { - SeriesInstanceUID: displaySet.SeriesInstanceUID, - StudyInstanceUID: displaySet.StudyInstanceUID, - displaySetInstanceUID: displaySet.displaySetInstanceUID, - matchDetails: {}, - matchingScores: [], - sortingInfo: {}, - }); - } else { - // if the protocol does not have the syncDataForViewports, we need to - // update the displaySetMatchDetails by introducing the displaySetIndex - // to the displaySetMatchDetails. This way we can match the displaySetInstanceUIDs - // for the viewportIndex, but also for the other viewports that are affected - // by the syncDataForViewports - - const displaySetSelectorId = `${displaySetId}_${uuidv4()}`; - - // update the displaySetId at the viewport - protocolViewport.displaySets[index].id = displaySetSelectorId; - - this.displaySetMatchDetails.set(displaySetSelectorId, { - SeriesInstanceUID: displaySet.SeriesInstanceUID, - StudyInstanceUID: displaySet.StudyInstanceUID, - displaySetInstanceUID: displaySet.displaySetInstanceUID, - matchDetails: {}, - matchingScores: [], - sortingInfo: {}, - }); - } - } - ); - } else { - // if the protocol does not have the viewport, we need to create it - const newViewport = { - displaySets: [], - viewportOptions: {}, - }; - - displaySetAndViewportOptions?.displaySetInstanceUIDs?.forEach( - (displaySetInstanceUID, index) => { - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - const displaySetId = `viewport_${viewportIndex}_displaySet_${index}`; - - newViewport.displaySets.push({ - id: displaySetId, - }); - - this.displaySetMatchDetails.set(displaySetId, { - SeriesInstanceUID: displaySet.SeriesInstanceUID, - StudyInstanceUID: displaySet.StudyInstanceUID, - displaySetInstanceUID: displaySet.displaySetInstanceUID, - matchDetails: {}, - matchingScores: [], - sortingInfo: {}, - }); - } - ); - - protocolViewports[viewportIndex] = newViewport; } - } + }); + return { + viewportOptions, + displaySetsInfo, + }; } private _validateViewportSpecificMatch( displaySetAndViewportOptions: HangingProtocol.DisplaySetAndViewportOptions, protocolViewport: HangingProtocol.Viewport, displaySetSelectors: Record - ) { + ): void { const { displaySetService } = this._servicesManager.services; const protocolViewportDisplaySets = protocolViewport.displaySets; const numDisplaySetsToSet = @@ -1036,110 +1183,6 @@ class HangingProtocolService { ); } - private _updateGlobalMatchByOptions( - options: HangingProtocol.GlobalProtocolOptions, - protocol: Protocol, - displaySetService: any - ) { - const { displaySetSelectors = {} } = protocol; - const protocolViewports = protocol.stages[this.stage].viewports; - - options = options as HangingProtocol.GlobalProtocolOptions; - // we need to check each displaySetInstanceUIDs to see if it satisfies the - // seriesMatching criteria - options.displaySetInstanceUIDs.forEach(displaySetInstanceUID => { - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - // match against all the displaySetSelectors defined in the protocol - for (const displaySetId in displaySetSelectors) { - const displaySetSelector = displaySetSelectors[displaySetId]; - this._validateRequiredSelectors(displaySetSelector, displaySet); - } - }); - - // if we get here, we can fill in the displaySetMatchDetails - // however, there might be a case where we are asked to - // render multiple displaySets for a single viewport - // so we need to go back to viewports and start from there - const newDisplaySetIds: Set = new Set(); - - // Todo: this currently work for current stage only - protocolViewports.forEach(viewport => { - viewport.displaySets.forEach(displaySetInfo => { - const { id: displaySetId } = displaySetInfo; - if (!this.displaySetMatchDetails.has(displaySetId)) { - newDisplaySetIds.add(displaySetId); - } - }); - }); - - // Todo: handle override of the viewport and displaySet options - Array.from(newDisplaySetIds).forEach((displaySetId, index) => { - const displaySetInstanceUID = options.displaySetInstanceUIDs[index]; - - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - this.displaySetMatchDetails.set(displaySetId, { - SeriesInstanceUID: displaySet.SeriesInstanceUID, - StudyInstanceUID: displaySet.StudyInstanceUID, - displaySetInstanceUID: displaySet.displaySetInstanceUID, - matchDetails: {}, - matchingScores: [], - sortingInfo: {}, - }); - }); - - /* - Todo: make it work for the case where the number of displaySets - to set is not equal to the number of displaySets in the protocol, we can modify - the protocol to have the same number of displaySets for each viewport - - if (newDisplaySetIds.size !== numberOfDisplaySetsToSet) { - // the remaining ones to set - const remainingDisplaySetMatches = options.slice( - newDisplaySetIds.size, - numberOfDisplaySetsToSet - ); - - protocol[this.stage].viewports.forEach(viewport => { - const { displaySets } = viewport; - - // push the displaySetsToSet to the end of the displaySets array - - remainingDisplaySetMatches.forEach(({ displaySetInstanceUID }) => { - displaySets.push({ - id: displaySetInstanceUID, - }); - }); - }); - - remainingDisplaySetMatches.forEach(({ displaySetInstanceUID }) => { - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - this.displaySetMatchDetails.set(displaySetInstanceUID, { - SeriesInstanceUID: displaySet.SeriesInstanceUID, - StudyInstanceUID: displaySet.StudyInstanceUID, - displaySetInstanceUID: displaySet.displaySetInstanceUID, - matchDetails: {}, - matchingScores: [], - sortingInfo: {}, - }); - }); - } - - // Todo: this has a bug where if the protocol defines only one displaySet, - // but renders a fusion, it cannot go back to one displaySet since its - // viewport.displaySets.length is 2 and it should remove the second one - // later - */ - } - private _validateRequiredSelectors( displaySetSelector: HangingProtocol.DisplaySetSelector, displaySet: any @@ -1159,36 +1202,39 @@ class HangingProtocolService { } } - _validateOptions(options: HangingProtocol.SetProtocolOptions) { + _validateOptions(options: HangingProtocol.SetProtocolOptions): void { const { displaySetService } = this._servicesManager.services; - - if (options.displaySetInstanceUIDs) { - options = options as HangingProtocol.GlobalProtocolOptions; - - options.displaySetInstanceUIDs.forEach(displaySetInstanceUID => { - const displaySet = displaySetService.getDisplaySetByUID( - displaySetInstanceUID - ); - - if (!displaySet) { - throw new Error( - `The displaySetInstanceUID ${displaySetInstanceUID} is not found in the displaySetService` + const { displaySetSelectorMap } = options; + if (displaySetSelectorMap) { + Object.entries(displaySetSelectorMap).forEach( + ([key, displaySetInstanceUID]) => { + const displaySet = displaySetService.getDisplaySetByUID( + displaySetInstanceUID ); + + if (!displaySet) { + throw new Error( + `The displaySetInstanceUID ${displaySetInstanceUID} is not found in the displaySetService` + ); + } } - }); + ); } } // Match images given a list of Studies and a Viewport's image matching reqs - _matchImages(displaySetRules) { + protected _matchImages(displaySetRules) { // TODO: matching is applied on study and series level, instance // level matching needs to be added in future // Todo: handle fusion viewports by not taking the first displaySet rule for the viewport - const { studyMatchingRules = [], seriesMatchingRules } = displaySetRules; + const { + id, + studyMatchingRules = [], + seriesMatchingRules, + } = displaySetRules; const matchingScores = []; - let highestStudyMatchingScore = 0; let highestSeriesMatchingScore = 0; console.log( @@ -1196,7 +1242,10 @@ class HangingProtocolService { studyMatchingRules, seriesMatchingRules ); + const matchActiveOnly = this.protocol.numberOfPriorsReferenced === -1; this.studies.forEach(study => { + // Skip non-active if active only + if (matchActiveOnly && this.activeStudy !== study) return; const studyDisplaySets = this.displaySets.filter( it => it.StudyInstanceUID === study.StudyInstanceUID ); @@ -1211,21 +1260,18 @@ class HangingProtocolService { return; } - highestStudyMatchingScore = studyMatchDetails.score; - this.debug( 'study', study.StudyInstanceUID, 'display sets #', - this.displaySets.length + studyDisplaySets.length ); - this.displaySets.forEach(displaySet => { + studyDisplaySets.forEach(displaySet => { const { StudyInstanceUID, SeriesInstanceUID, displaySetInstanceUID, } = displaySet; - if (StudyInstanceUID !== study.StudyInstanceUID) return; const seriesMatchDetails = this.protocolEngine.findMatch( displaySet, seriesMatchingRules, @@ -1290,7 +1336,7 @@ class HangingProtocolService { }); if (matchingScores.length === 0) { - console.log('No match found'); + console.log('No match found', id); } // Sort the matchingScores @@ -1332,7 +1378,7 @@ class HangingProtocolService { _isNextStageAvailable() { const numberOfStages = this._getNumProtocolStages(); - return this.stage + 1 < numberOfStages; + return this.stageIndex + 1 < numberOfStages; } /** @@ -1340,7 +1386,7 @@ class HangingProtocolService { * @return {Boolean} True if previous stage is available or false otherwise */ _isPreviousStageAvailable(): boolean { - return this.stage - 1 >= 0; + return this.stageIndex - 1 >= 0; } /** @@ -1350,31 +1396,45 @@ class HangingProtocolService { * @param {Integer} stageAction An integer value specifying whether next (1) or previous (-1) stage * @return {Boolean} True if new stage has set or false, otherwise */ - _setCurrentProtocolStage(stageAction): boolean { - //resetting the applied protocols - this.hpAlreadyApplied = new Map(); + _setCurrentProtocolStage( + stageAction: number, + options: HangingProtocol.SetProtocolOptions + ): boolean { // Check if previous or next stage is available - if (stageAction === -1 && !this._isPreviousStageAvailable()) { - return false; - } else if (stageAction === 1 && !this._isNextStageAvailable()) { + let i; + for ( + i = this.stageIndex + stageAction; + i >= 0 && i < this.protocol.stages.length; + i += stageAction + ) { + if (this.protocol.stages[i].status !== 'disabled') { + break; + } + } + if (i < 0 || i >= this.protocol.stages.length) { return false; } // Sets the new stage - this.stage += stageAction; + this.stageIndex = i; // Log the new stage - this.debug(`ProtocolEngine::setCurrentProtocolStage stage = ${this.stage}`); + this.debug( + `ProtocolEngine::setCurrentProtocolStage stage = ${this.stageIndex}` + ); // Since stage has changed, we need to update the viewports // and redo matchings - this._updateViewports(); + this._updateViewports(options); - // Everything went well - this._broadcastChange(this.EVENTS.STAGE_CHANGE, { + // Everything went well, broadcast the update, exactly identical to + // HP applied + this._broadcastEvent(this.EVENTS.PROTOCOL_CHANGED, { viewportMatchDetails: this.viewportMatchDetails, - hpAlreadyApplied: this.hpAlreadyApplied, displaySetMatchDetails: this.displaySetMatchDetails, + protocol: this.protocol, + stageIdx: this.stageIndex, + stage: this.protocol.stages[this.stageIndex], }); return true; } @@ -1388,164 +1448,7 @@ class HangingProtocolService { } } - /** - * Broadcasts hanging protocols changes. - * - * @param {string} eventName The event name.add - * @param {object} eventData.source The measurement source. - * @param {object} eventData.measurement The measurement. - * @param {boolean} eventData.notYetUpdatedAtSource True if the measurement was edited - * within the measurement service and the source needs to update. - * @return void - */ - // Todo: why do we have a separate broadcastChange function here? - _broadcastChange(eventName, eventData) { - const hasListeners = Object.keys(this.listeners).length > 0; - const hasCallbacks = Array.isArray(this.listeners[eventName]); - - if (hasListeners && hasCallbacks) { - this.listeners[eventName].forEach(listener => { - listener.callback(eventData); - }); - } - } - _copyProtocol(protocol: Protocol) { return JSON.parse(JSON.stringify(protocol)); } - - /** - _setProtocolLayoutOptions(protocol: Protocol, { numRows, numCols }) { - const layoutOptions = []; - const protocolStage = protocol.stages[this.stage]; - const numViewports = protocolStage.viewports.length; - - for (let i = 0; i < numViewports; i++) { - const { row, col } = unravelIndex(i, numRows, numCols); - const w = 1 / numCols; - const h = 1 / numRows; - const xPos = col * w; - const yPos = row * h; - - layoutOptions[i] = { - width: w, - height: h, - x: xPos, - y: yPos, - }; - } - - // Todo: handle the case where the viewportStructure is not a grid - protocolStage.viewportStructure.properties.rows = numRows; - protocolStage.viewportStructure.properties.columns = numCols; - protocolStage.viewportStructure.properties.layoutOptions = { - ...layoutOptions, - }; - } - - _getUpdatedProtocol({ - numRows, - numCols, - protocol: oldProtocol, - }: { - numRows: number; - numCols: number; - protocol: Protocol; - }): Protocol { - let newProtocol = this._copyProtocol(oldProtocol); - - const protocolStage = newProtocol.stages[this.stage]; - - // The following commented code is a potential improvements to the - // hanging protocols to intelligently switch between number of rows - // and columns based on the old state of the protocol. For instance, - // changing from 2x2 to 2x3 (adding a column) right now reorders the viewports - // as well, however, it should just add one empty column to the right - // and leave the rest of the viewports in place. This sounds amazing, - // but comes at a cost (which we need to tackle later). The cost is that - // the viewportIndex will change during this smart change of layout. In - // the example above the viewport at index (2) bottom left, will now be - // at index (3) bottom left, and since react will re-render the viewport - // it will reset the viewport's state such as (zoom, pan, windowLevel, imageIndex) - // and the user will lose their current state. In addition, all our viewportIds - // are dependent on the viewportIndex, so we will need to update all the viewportIds - // as well, and you can see how this can get out of hand. Later, we should - // tackle this problem and make the smart change of layout work. - - // const { rows: oldNumRows, columns: oldNumCols } = newProtocol.stages[ - // this.stage - // ].viewportStructure.properties; - - // const oldToNewViewportIndices = getGridMapping( - // { - // numRows: oldNumRows, - // numCols: oldNumCols, - // }, - // { - // numRows, - // numCols, - // } - // ); - - const protocolViewports = protocolStage.viewports; - - if (protocolViewports.length < numRows * numCols) { - const newViewports = []; - - for (let i = protocolViewports.length; i < numRows * numCols; i++) { - newViewports.push({ - viewportOptions: { - toolGroupId: 'default', - viewportType: 'stack', - }, - displaySets: [ - { - id: `viewport-${i}`, - }, - ], - }); - } - - protocolStage.viewports = [...protocolViewports, ...newViewports]; - } else if (protocolViewports.length > numRows * numCols) { - // remove viewports that are not needed - protocolStage.viewports = protocolViewports.slice(0, numRows * numCols); - } - - // update the displaySetMatchDetails to reflect the new viewports - const toRemove = []; - this.displaySetMatchDetails.forEach( - (displaySetMatchDetail, displaySetId) => { - // if the displaySetId is not referenced in the protocolStage viewports - // we can remove it - const found = protocolStage.viewports.find(viewport => { - return viewport.displaySets.find(displaySet => { - return displaySet.id === displaySetId; - }); - }); - - if (!found) { - toRemove.push(displaySetId); - } - } - ); - - toRemove.forEach(displaySetId => { - this.displaySetMatchDetails.delete(displaySetId); - }); - - this._setProtocolLayoutOptions(newProtocol, { numRows, numCols }); - newProtocol = this._validateProtocol(newProtocol); - - // Todo: not sure if we need to reset here, or we can smartly update the - // viewportMatchDetails and hpAlreadyApplied maps - this.hpAlreadyApplied = new Map(); - this.viewportMatchDetails = new Map(); - - return newProtocol; - } - */ } - -export default HangingProtocolService; -export { EVENTS }; diff --git a/platform/core/src/services/HangingProtocolService/ProtocolEngine.js b/platform/core/src/services/HangingProtocolService/ProtocolEngine.js index 5cfdf1264..b3c18ab40 100644 --- a/platform/core/src/services/HangingProtocolService/ProtocolEngine.js +++ b/platform/core/src/services/HangingProtocolService/ProtocolEngine.js @@ -81,6 +81,16 @@ export default class ProtocolEngine { }); } + /** + * finds the match results against the given display set or + * study instance by testing the given rules against this, and using + * the provided options for testing. + * + * @param {*} metaData to match against as primary value + * @param {*} rules to apply + * @param {*} options are additional values that can be used for matching + * @returns + */ findMatch(metaData, rules, options) { return HPMatcher.match( metaData, @@ -109,7 +119,7 @@ export default class ProtocolEngine { let rules = protocol.protocolMatchingRules.slice(); if (!rules || !rules.length) { console.warn( - 'ProtocolEngine::findMatchByStudy no matching rules - specify protocolMatchingRules', + 'ProtocolEngine::findMatchByStudy no matching rules - specify protocolMatchingRules for', protocol.id ); return; diff --git a/platform/core/src/services/HangingProtocolService/lib/validator.js b/platform/core/src/services/HangingProtocolService/lib/validator.js index 711ff01b9..498ae3201 100644 --- a/platform/core/src/services/HangingProtocolService/lib/validator.js +++ b/platform/core/src/services/HangingProtocolService/lib/validator.js @@ -14,6 +14,41 @@ validate.validators.doesNotEqual = function(value, options, key) { } }; +// Ignore case contains. +// options testValue MUST be in lower case already, otherwise it won't match +validate.validators.containsI = function (value, options, key) { + const testValue = options?.value ?? options; + if (Array.isArray(value)) { + if ( + value.some( + item => !validate.validators.containsI(item.toLowerCase(), options, key) + ) + ) { + return undefined; + } + return `No item of ${value.join(',')} contains ${JSON.stringify( + testValue + )}`; + } + if (Array.isArray(testValue)) { + if ( + testValue.some( + subTest => !validate.validators.containsI(value, subTest, key) + ) + ) { + return; + } + return `${key} must contain at least one of ${testValue.join(',')}`; + } + if ( + testValue && + value.indexOf && + value.toLowerCase().indexOf(testValue) === -1 + ) { + return key + 'must contain any case of' + testValue; + } +}; + validate.validators.contains = function(value, options, key) { const testValue = options?.value ?? options; if (Array.isArray(value)) { diff --git a/platform/core/src/services/HangingProtocolService/lib/validator.test.js b/platform/core/src/services/HangingProtocolService/lib/validator.test.js index 5566e97a7..67b7ac52e 100644 --- a/platform/core/src/services/HangingProtocolService/lib/validator.test.js +++ b/platform/core/src/services/HangingProtocolService/lib/validator.test.js @@ -3,9 +3,10 @@ import validate from './validator.js'; describe('validator', () => { const attributeMap = { str: 'string', + upper: 'UPPER', num: 3, nullValue: null, - list: ['abc', 'def'], + list: ['abc', 'def', 'GHI'], }; const options = { @@ -35,6 +36,37 @@ describe('validator', () => { }); }); + describe('containsI', () => { + it('returns match any list contains case insensitive', () => { + expect( + validate(attributeMap, { upper: { containsI: ['bye', 'pre'] } }, [ + options, + ]) + ).not.toBeUndefined(); + expect( + validate(attributeMap, { list: { containsI: 'hi' } }, [options]) + ).toBeUndefined(); + expect( + validate(attributeMap, { list: { containsI: ['hi', 'bye'] } }, [ + options, + ]) + ).toBeUndefined(); + expect( + validate(attributeMap, { list: { containsI: ['bye', 'hi'] } }, [ + options, + ]) + ).toBeUndefined(); + expect( + validate(attributeMap, { list: { containsI: ['ig', 'hi'] } }, [options]) + ).toBeUndefined(); + expect( + validate(attributeMap, { upper: { containsI: ['bye', 'per'] } }, [ + options, + ]) + ).toBeUndefined(); + }); + }); + describe('equals', () => { it('returned undefined on equals', () => { expect( diff --git a/platform/core/src/services/MeasurementService/MeasurementService.ts b/platform/core/src/services/MeasurementService/MeasurementService.ts index 1fb9550f2..3a89d2094 100644 --- a/platform/core/src/services/MeasurementService/MeasurementService.ts +++ b/platform/core/src/services/MeasurementService/MeasurementService.ts @@ -459,7 +459,12 @@ class MeasurementService extends PubSubService { log.warn(`Measurement ID not found. Generating UID: ${internalUID}`); } + const annotationData = data.annotation.data; + const newMeasurement = { + finding: annotationData.finding, + findingSites: annotationData.findingSites, + site: annotationData.findingSites?.[0], ...measurement, modifiedTimestamp: Math.floor(Date.now() / 1000), uid: internalUID, @@ -472,7 +477,7 @@ class MeasurementService extends PubSubService { measurement: newMeasurement, }); } else { - log.info(`Measurement added.`, newMeasurement); + log.info('Measurement added', newMeasurement); this.measurements[internalUID] = newMeasurement; this._broadcastEvent(this.EVENTS.RAW_MEASUREMENT_ADDED, { source, @@ -519,9 +524,14 @@ class MeasurementService extends PubSubService { let measurement = {}; try { const sourceMappings = this.mappings[source.uid]; - const { toMeasurementSchema } = sourceMappings.find( + const sourceMapping = sourceMappings.find( mapping => mapping.annotationType === annotationType ); + if (!sourceMapping) { + console.log('No source mapping', source); + return; + } + const { toMeasurementSchema } = sourceMapping; /* Convert measurement */ measurement = toMeasurementSchema(sourceAnnotationDetail); @@ -548,26 +558,27 @@ class MeasurementService extends PubSubService { ); } + const oldMeasurement = this.measurements[internalUID]; + const newMeasurement = { + ...oldMeasurement, ...measurement, modifiedTimestamp: Math.floor(Date.now() / 1000), uid: internalUID, }; - if (this.measurements[internalUID]) { + if (oldMeasurement) { // TODO: Ultimately, each annotation should have a selected flag right from the soure. // For now, it is just added in OHIF here and in setMeasurementSelected. - newMeasurement.selected = this.measurements[internalUID].selected; this.measurements[internalUID] = newMeasurement; if (isUpdate) { - this._broadcastEvent(this.EVENTS.MEASUREMENT_UPDATED, { + this._broadcastEvent(this.EVENTS.MEASUREMENT_UPDATED, { source, measurement: newMeasurement, notYetUpdatedAtSource: false, }); } else { log.info('Measurement added.', newMeasurement); - this.measurements[internalUID] = newMeasurement; this._broadcastEvent(this.EVENTS.MEASUREMENT_ADDED, { source, measurement: newMeasurement, diff --git a/platform/core/src/services/ServicesManager.ts b/platform/core/src/services/ServicesManager.ts index ab6b34728..3d2843dbf 100644 --- a/platform/core/src/services/ServicesManager.ts +++ b/platform/core/src/services/ServicesManager.ts @@ -1,10 +1,11 @@ import log from './../log.js'; import Services from '../types/Services'; +import CommandsManager from '../classes/CommandsManager'; export default class ServicesManager { public services: Services = {}; - constructor(commandsManager) { + constructor(commandsManager: CommandsManager) { this._commandsManager = commandsManager; this.services = {}; this.registeredServiceNames = []; diff --git a/platform/core/src/services/StateSyncService/StateSyncService.test.js b/platform/core/src/services/StateSyncService/StateSyncService.test.js new file mode 100644 index 000000000..77c23069a --- /dev/null +++ b/platform/core/src/services/StateSyncService/StateSyncService.test.js @@ -0,0 +1,31 @@ +import StateSyncService from './StateSyncService'; +import log from '../../log'; + +jest.mock('../../log.js', () => ({ + info: jest.fn(), + warn: jest.fn(), + error: jest.fn(), +})); + +const extensionManager = {}; + +describe('StateSyncService.ts', () => { + let stateSyncService; + + let configuration; + + beforeEach(() => { + log.warn.mockClear(); + jest.clearAllMocks(); + configuration = {}; + stateSyncService = new StateSyncService({ + configuration, + }); + }); + + describe('init', () => { + it('init succeeds', () => { + stateSyncService.init(extensionManager); + }); + }); +}); diff --git a/platform/core/src/services/StateSyncService/StateSyncService.ts b/platform/core/src/services/StateSyncService/StateSyncService.ts new file mode 100644 index 000000000..5a28bc041 --- /dev/null +++ b/platform/core/src/services/StateSyncService/StateSyncService.ts @@ -0,0 +1,86 @@ +import { PubSubService } from '../_shared/pubSubServiceInterface'; +import { ExtensionManager } from '../../extensions'; + +const EVENTS = {}; + +type Obj = Record; + +type StateConfig = { + /** clearOnModeExit defines state configuraion that is cleared automatically on + * exiting a mode. This clearing occurs after the mode onModeExit, + * so it is possible to preserve desired state during exit to be restored + * later. + */ + clearOnModeExit?: boolean; +}; + +type States = { + [key: string]: Obj; +}; + +/** + */ +export default class StateSyncService extends PubSubService { + public static REGISTRATION = { + name: 'stateSyncService', + create: ({ configuration = {}, commandsManager }) => { + return new StateSyncService({ configuration, commandsManager }); + }, + }; + + extensionManager: ExtensionManager; + configuration: Obj; + registeredStateSets: { + [id: string]: StateConfig; + } = {}; + state: States = {}; + + constructor({ configuration }) { + super(EVENTS); + this.configuration = configuration || {}; + } + + public init(extensionManager: ExtensionManager): void { } + + /** Registers a new sync store called `id`. The state + * defines how the state is stored, and any default clearing of the + * state. + * A default store has the lifetime of the application. + * The other available store is cleared `onModeExit` + */ + public register(id: string, config: StateConfig): void { + this.registeredStateSets[id] = config; + this.store({ [id]: {} }); + } + + public getState(): Record { + // TODO - return a proxy to this which is not writable in dev mode + return this.state; + } + + /** + * Stores all the new state values contained in states. + * + * @param states - is an object containing replacement values to store + * @returns + */ + public store(states: States): States { + Object.keys(states).forEach(stateKey => { + if (!this.registeredStateSets[stateKey]) { + throw new Error(`No state ${stateKey} registered`); + } + }); + this.state = { ...this.state, ...states }; + return states; + } + + public onModeExit(): void { + const toReduce = {}; + for (const [key, value] of Object.entries(this.registeredStateSets)) { + if (value.clearOnModeExit) { + toReduce[key] = {}; + } + } + this.store(toReduce); + } +} diff --git a/platform/core/src/services/StateSyncService/index.ts b/platform/core/src/services/StateSyncService/index.ts new file mode 100644 index 000000000..91cc430e5 --- /dev/null +++ b/platform/core/src/services/StateSyncService/index.ts @@ -0,0 +1,3 @@ +import StateSyncService from './StateSyncService'; + +export default StateSyncService; diff --git a/platform/core/src/services/ToolBarService/ToolbarService.ts b/platform/core/src/services/ToolBarService/ToolbarService.ts index e9df3ccfa..4a3cf2429 100644 --- a/platform/core/src/services/ToolBarService/ToolbarService.ts +++ b/platform/core/src/services/ToolBarService/ToolbarService.ts @@ -1,4 +1,6 @@ import merge from 'lodash.merge'; +import { CommandsManager } from '../../classes'; +import { ExtensionManager } from '../../extensions'; import { PubSubService } from '../_shared/pubSubServiceInterface'; const EVENTS = { @@ -16,37 +18,31 @@ export default class ToolbarService extends PubSubService { }, }; - constructor(commandsManager) { + buttons: Record = {}; + state: { + primaryToolId: string; + toggles: Record; + groups: Record; + } = { primaryToolId: 'WindowLevel', toggles: {}, groups: {} }; + buttonSections: Record = { + /** + * primary: ['Zoom', 'Wwwc'], + * secondary: ['Length', 'RectangleRoi'] + */ + }; + _commandsManager: CommandsManager; + extensionManager: ExtensionManager; + + constructor(commandsManager: CommandsManager) { super(EVENTS); this._commandsManager = commandsManager; - // - this.buttons = {}; - this.unsubscriptions = []; // if tools need to unsubscribe from events - this.buttonSections = { - /** - * primary: ['Zoom', 'Wwwc'], - * secondary: ['Length', 'RectangleRoi'] - */ - }; - - // TODO: Do we need to track per context? Or do we allow for a mixed - // definition that adapts based on context? - this.state = { - primaryToolId: 'WindowLevel', - toggles: { - /* id: true/false */ - }, - groups: { - /* track most recent click per group...? */ - }, - }; } - init(extensionManager) { + public init(extensionManager: ExtensionManager): void { this.extensionManager = extensionManager; } - reset() { + public reset(): void { this.unsubscriptions.forEach(unsub => unsub()); this.state = { primaryToolId: 'WindowLevel', @@ -69,7 +65,7 @@ export default class ToolbarService extends PubSubService { * used for calling the specified interaction. That is, the command is * called with {...commandOptions,...options} */ - recordInteraction(interaction, options) { + recordInteraction(interaction, options?: Record) { if (!interaction) return; const commandsManager = this._commandsManager; const { groupId, itemId, interactionType, commands } = interaction; @@ -181,6 +177,15 @@ export default class ToolbarService extends PubSubService { return [this.state.primaryToolId, ...Object.keys(this.state.toggles)]; } + /** Sets the toggle state of a button to the isActive state */ + public setActive(id: string, isActive: boolean): void { + if (isActive) { + this.state.toggles[id] = true; + } else { + delete this.state.toggles[id]; + } + } + setButton(id, button) { if (this.buttons[id]) { this.buttons[id] = merge(this.buttons[id], button); diff --git a/platform/core/src/services/ViewportGridService/ViewportGridService.ts b/platform/core/src/services/ViewportGridService/ViewportGridService.ts index c35cc34c3..239db4f88 100644 --- a/platform/core/src/services/ViewportGridService/ViewportGridService.ts +++ b/platform/core/src/services/ViewportGridService/ViewportGridService.ts @@ -2,6 +2,8 @@ import { PubSubService } from '../_shared/pubSubServiceInterface'; const EVENTS = { ACTIVE_VIEWPORT_INDEX_CHANGED: 'event::activeviewportindexchanged', + LAYOUT_CHANGED: 'event::layoutChanged', + GRID_STATE_CHANGED: 'event::gridStateChanged', }; class ViewportGridService extends PubSubService { @@ -12,6 +14,7 @@ class ViewportGridService extends PubSubService { return new ViewportGridService(); }, }; + public static EVENTS = EVENTS; serviceImplementation = {}; @@ -23,10 +26,7 @@ class ViewportGridService extends PubSubService { public setServiceImplementation({ getState: getStateImplementation, setActiveViewportIndex: setActiveViewportIndexImplementation, - setDisplaySetsForViewport: setDisplaySetsForViewportImplementation, setDisplaySetsForViewports: setDisplaySetsForViewportsImplementation, - setCachedLayout: setCachedLayoutImplementation, - restoreCachedLayout: restoreCachedLayoutImplementation, setLayout: setLayoutImplementation, reset: resetImplementation, onModeExit: onModeExitImplementation, @@ -39,9 +39,6 @@ class ViewportGridService extends PubSubService { if (setActiveViewportIndexImplementation) { this.serviceImplementation._setActiveViewportIndex = setActiveViewportIndexImplementation; } - if (setDisplaySetsForViewportImplementation) { - this.serviceImplementation._setDisplaySetsForViewport = setDisplaySetsForViewportImplementation; - } if (setDisplaySetsForViewportsImplementation) { this.serviceImplementation._setDisplaySetsForViewports = setDisplaySetsForViewportsImplementation; } @@ -51,12 +48,6 @@ class ViewportGridService extends PubSubService { if (resetImplementation) { this.serviceImplementation._reset = resetImplementation; } - if (setCachedLayoutImplementation) { - this.serviceImplementation._setCachedLayout = setCachedLayoutImplementation; - } - if (restoreCachedLayoutImplementation) { - this.serviceImplementation._restoreCachedLayout = restoreCachedLayoutImplementation; - } if (onModeExitImplementation) { this.serviceImplementation._onModeExit = onModeExitImplementation; } @@ -70,8 +61,11 @@ class ViewportGridService extends PubSubService { public setActiveViewportIndex(index) { this.serviceImplementation._setActiveViewportIndex(index); + const state = this.getState(); + const viewportId = state.viewports[index]?.viewportOptions?.viewportId; this._broadcastEvent(this.EVENTS.ACTIVE_VIEWPORT_INDEX_CHANGED, { viewportIndex: index, + viewportId, }); } @@ -79,26 +73,43 @@ class ViewportGridService extends PubSubService { return this.serviceImplementation._getState(); } - public setDisplaySetsForViewport({ - viewportIndex, - displaySetInstanceUIDs, - viewportOptions, - displaySetOptions, + public setDisplaySetsForViewport(props) { + // Just update a single viewport, but use the multi-viewport update for it. + this.serviceImplementation._setDisplaySetsForViewports([props]); + } + + public setDisplaySetsForViewports(props) { + this.serviceImplementation._setDisplaySetsForViewports(props); + } + + /** + * + * @param numCols, numRows - the number of columns and rows to apply + * @param findOrCreateViewport is a function which takes the + * index position of the viewport, the position id, and a set of + * options that is initially provided as {} (eg to store intermediate state) + * The function returns a viewport object to use at the given position. + */ + public setLayout({ + numCols, + numRows, + layoutOptions, + layoutType = 'grid', + activeViewportIndex = undefined, + findOrCreateViewport = undefined, }) { - this.serviceImplementation._setDisplaySetsForViewport({ - viewportIndex, - displaySetInstanceUIDs, - viewportOptions, - displaySetOptions, + this.serviceImplementation._setLayout({ + numCols, + numRows, + layoutOptions, + layoutType, + activeViewportIndex, + findOrCreateViewport, + }); + this._broadcastEvent(this.EVENTS.LAYOUT_CHANGED, { + numCols, + numRows, }); - } - - public setDisplaySetsForViewports(viewports) { - this.serviceImplementation._setDisplaySetsForViewports(viewports); - } - - public setLayout({ numCols, numRows }) { - this.serviceImplementation._setLayout({ numCols, numRows }); } public reset() { @@ -115,21 +126,27 @@ class ViewportGridService extends PubSubService { this.serviceImplementation._onModeExit(); } - public setCachedLayout({ cacheId, cachedLayout }) { - this.serviceImplementation._setCachedLayout({ cacheId, cachedLayout }); - } - - public restoreCachedLayout(cacheId) { - this.serviceImplementation._restoreCachedLayout(cacheId); - } - public set(state) { this.serviceImplementation._set(state); + this._broadcastEvent(this.EVENTS.GRID_STATE_CHANGED, { + state, + }); } public getNumViewportPanes() { return this.serviceImplementation._getNumViewportPanes(); } + + public getLayoutOptionsFromState(state) { + return state.viewports.map(viewport => { + return { + x: viewport.x, + y: viewport.y, + width: viewport.width, + height: viewport.height, + }; + }); + } } export default ViewportGridService; diff --git a/platform/core/src/services/index.ts b/platform/core/src/services/index.ts index 6a3507992..b34e028d8 100644 --- a/platform/core/src/services/index.ts +++ b/platform/core/src/services/index.ts @@ -17,6 +17,7 @@ import UserAuthenticationService from './UserAuthenticationService'; import CustomizationService from './CustomizationService'; import Services from '../types/Services'; +import StateSyncService from './StateSyncService'; import PanelService from './PanelService'; export { @@ -24,6 +25,7 @@ export { MeasurementService, ServicesManager, CustomizationService, + StateSyncService, UIDialogService, UIModalService, UINotificationService, diff --git a/platform/core/src/types/Command.ts b/platform/core/src/types/Command.ts index 83c774379..837c83590 100644 --- a/platform/core/src/types/Command.ts +++ b/platform/core/src/types/Command.ts @@ -3,3 +3,8 @@ export interface Command { commandOptions?: Record; context?: string; } + +/** A set of commands, typically contained in a tool item or other configuration */ +export interface Commands { + commands: Command[]; +} diff --git a/platform/core/src/types/HangingProtocol.ts b/platform/core/src/types/HangingProtocol.ts index a513e308e..5cb26e20c 100644 --- a/platform/core/src/types/HangingProtocol.ts +++ b/platform/core/src/types/HangingProtocol.ts @@ -1,68 +1,112 @@ -type DisplaySetInfo = { - SeriesInstanceUID: string; - displaySetInstanceUID: string; - displaySetOptions: Record; +import { Command } from './Command'; + +export type DisplaySetInfo = { + displaySetInstanceUID?: string; + displaySetOptions: DisplaySetOptions; }; -type ViewportMatchDetails = { +export type ViewportMatchDetails = { viewportOptions: ViewportOptions; displaySetsInfo: DisplaySetInfo[]; }; -type DisplaySetMatchDetails = { - SeriesInstanceUID: string; - StudyInstanceUID: string; +export type DisplaySetMatchDetails = { + StudyInstanceUID?: string; displaySetInstanceUID: string; matchDetails?: any; - matchingScores?: any[]; + matchingScores?: DisplaySetMatchDetails[]; sortingInfo?: any; }; - -type DisplaySetAndViewportOptions = { +export type DisplaySetAndViewportOptions = { displaySetInstanceUIDs: string[]; viewportOptions: ViewportOptions; displaySetOptions: DisplaySetOptions; -} +}; -type ViewportSpecificProtocolOptions = { - [viewportIndex: string]: DisplaySetAndViewportOptions -} +export type SetProtocolOptions = { + /** Used to provide a mapping of what keys are provided for which viewport. + * For example, a Chest XRay might use have the display set selector id of + * "ChestXRay", then the user might drag an alternate chest xray from the initially chosen one, + * and then navigate to another stage or protocol. If that new stage/protocol + * uses the name "ChestXRay", then that selection will be used instead of + * matching the display set selectors. That allows remembering the + * user selected views by name. + * Note the keys are not simple display set selector values, but are: + * `${activeStudyUID}:${displaySetSelectorId}:${matchingDisplaySetIndex || 0}` + * This is normally transparent to the user of this, but in order to specify + * specific instances, they can be added like that. + */ + displaySetSelectorMap?: Record; -type GlobalProtocolOptions = DisplaySetAndViewportOptions + /** Used to define the display sets already in view, in order to allow + * filling empty viewports with other instances. + * Only used when the -1 value for matchedDisplaySetsIndex is provided. + * List of display set instance UID's already displayed. + */ + inDisplay?: string[]; + /** Select the given stage, either by ID or position. + * Don't forget that name is used as the ID if ID not provided. + */ + stageId?: string; + stageIndex?: number; -type SetProtocolOptions = - ViewportSpecificProtocolOptions | GlobalProtocolOptions; + /** Indicates to setup the protocol and fire the PROTOCOL_RESTORED event + * but don't fire the protocol changed event. Used to restore the + * HP service to a previous state. + */ + restoreProtocol?: boolean; +}; - -type HangingProtocolMatchDetails = { +export type HangingProtocolMatchDetails = { displaySetMatchDetails: Map; viewportMatchDetails: Map; - hpAlreadyApplied: Map; }; -type MatchingRule = { - id: string; - weight: number; +export type ConstraintValue = + | string + | number + | boolean + | [] + | { + value: string | number | boolean | []; + }; + +export type Constraint = { + // This value exactly + equals?: ConstraintValue; + notEquals?: ConstraintValue; + // A caseless contains + containsI?: string; + contains?: ConstraintValue; + greaterThan?: ConstraintValue; +}; + +export type MatchingRule = { + // No real use for the id + id?: string; + // Defaults to 1 + weight?: number; attribute: string; - constraint: Record; - required: boolean; + constraint: Constraint; + // Not required by default + required?: boolean; }; -type ViewportLayoutOptions = { +export type ViewportLayoutOptions = { x: number; y: number; width: number; height: number; }; -type ViewportStructure = { +export type ViewportStructure = { layoutType: string; properties: { rows: number; columns: number; - layoutOptions: ViewportLayoutOptions[]; + layoutOptions?: ViewportLayoutOptions[]; }; }; @@ -74,7 +118,8 @@ type ViewportStructure = { * The matches are done lazily, so if a stage doesn't need a given match, * it won't be selected. */ -type DisplaySetSelector = { +export type DisplaySetSelector = { + id?: string; // The image matching rule (not currently implemented) selects which image to // display initially, only for stack views. imageMatchingRules?: MatchingRule[]; @@ -83,58 +128,137 @@ type DisplaySetSelector = { studyMatchingRules?: MatchingRule[]; }; -type SyncGroup = { +export type SyncGroup = { type: string; id: string; - source?: boolean - target?: boolean -} + source?: boolean; + target?: boolean; +}; -type initialImageOptions = { +export type initialImageOptions = { index?: number; - preset? : string; // todo: type more -} + preset?: string; // todo: type more +}; -type ViewportOptions = { - toolGroupId: string; - viewportType: string; +export type ViewportOptions = { + toolGroupId?: string; + viewportType?: string; id?: string; orientation?: string; viewportId?: string; initialImageOptions?: initialImageOptions; syncGroups?: SyncGroup[]; customViewportProps?: Record; + // Set to true to allow non-matching drag and drop or options provided + // from options.displaySetSelectorsMap + allowUnmatchedView?: boolean; }; -type DisplaySetOptions = { +// The options here includes both the display set selector and matching index +// as well as actual options to apply to the individual viewports. +export type DisplaySetOptions = { // The id is used to choose which display set selector to apply here id: string; - // An offset to allow display secondary series, for example - // to display the second matching series (displaySetIndex==1) - // This cannot easily be done with the matching rules directly. - displaySetIndex?: number; + /** The offset to allow display secondary series, for example + * to display the second matching series, use `matchedDisplaySetsIndex==1` */ + matchedDisplaySetsIndex?: number; + // The options to apply to the display set. options?: Record; }; -type Viewport = { +export type Viewport = { viewportOptions: ViewportOptions; displaySets: DisplaySetOptions[]; }; -type ProtocolStage = { - id: string; +/** + * disabled stages are missing display sets required in order to view them. + * enabled stages have all the requiredDisplaySets and at least preferredViewports + * filled. + * passive stages have the requiredDisplaySets and at least requiredViewports filled. + */ +export type StageStatus = 'disabled' | 'enabled' | 'passive'; + +/** Controls whether a stage is activated or not, at the given level, by + * controlling the status of the stage. + */ +export type StageActivation = { + // The minimum number of viewports to be NON-blank to activate this level of the stage + minViewportsMatched?: number; + // The required set of display set selectors to have at least 1 match to activate + displaySetSelectorsMatched?: string[]; +}; + +/** + * Protocol stages are a set of different views which can be applied, for + * example, a 2x1 and a 1x1 view might be both applied (see default extension + * for this example). + */ +export type ProtocolStage = { + /** The id defaults to the name of the protocol if not otherwise specified */ + id?: string; + /** + * The display name used for this stage when shown to the user. This can + * differ from the id, for example, to use the same name for different + * stages, only one of which ends up being active. + */ name: string; + /** Indicate if the stage can be applied or not */ + status?: StageStatus; + viewportStructure: ViewportStructure; + stageActivation?: { + // The enabled activation is provided for fully active stages, + // participating in automatic stage selection and navigation + enabled?: StageActivation; + // The passive activation is provided to allow stages to manually + // be activated, but not navigated to by default, or used on initial view + passive?: StageActivation; + }; + + /** A viewport definition used for to fill in manually selected viewports. + * This allows changing the layout definition for additional viewports without + * needing to define layouts for each of the 1x1, 2x2 etc modes. + */ + defaultViewport?: Viewport; + viewports: Viewport[]; + + // Unused. createdDate?: string; }; -type Protocol = { +// Add notifications for various types of events. +export type ProtocolNotifications = { + // This set of commands is executed after the protocol is exited and the new one applied + onProtocolExit?: Command[]; + + // This set of commands is executed after the protocol is entered and applied + onProtocolEnter?: Command[]; + + // This set of commands is executed before the layout change is started. + // If it returns false, the layout change will be aborted. + // The numRows and numCols is included in the command params, so it is possible + // to apply a specific hanging protocol + onLayoutChange?: Command[]; +}; + +/** + * A protocol is the top level definition for a hanging protocol. + * It is a set of rules about when the protocol can be applied at all, + * as well as a set of stages that represent indivividual views. + * Additionally, the display set selectors are used to choose from the existing + * display sets. The hanging protcol definition here does NOT allow + * redefining the display sets to use, but only selects the views to show. + */ +export type Protocol = { // Mandatory id: string; - // Selects which display sets are given a specific name. + /** Maps ids to display set selectors to choose display sets */ displaySetSelectors: Record; + /** A default viewport to use for any stage to select new viewport layouts. */ + defaultViewport?: Viewport; stages: ProtocolStage[]; // Optional locked?: boolean; @@ -145,35 +269,34 @@ type Protocol = { availableTo?: Record; editableBy?: Record; toolGroupIds?: string[]; + // A set of callbacks relevant to entering and exiting the protocol + callbacks?: ProtocolNotifications; imageLoadStrategy?: string; // Todo: this should be types specifically protocolMatchingRules?: MatchingRule[]; + /* The number of priors required for this hanging protocol. + * -1 means that NO priors are referenced, and thus this HP matches + * only the active study, whereas 0 means that an unknown number of + * priors is matched. + */ numberOfPriorsReferenced?: number; syncDataForViewports?: boolean; }; -type ProtocolGenerator = ({ servicesManager: any, commandsManager: any }) => { +/** Used to dynamically generate protocols. + * Try to avoid this as it is difficult to provide active/disabled settings + * to the GUI when this is used, and it can be expensive to apply. + * Alternatives include using the custom attributes where possible. + */ +export type ProtocolGenerator = ({ + servicesManager: any, + commandsManager: any, +}) => { protocol: Protocol; }; -export type { - SetProtocolOptions, - ViewportOptions, - ViewportMatchDetails, - DisplaySetMatchDetails, - HangingProtocolMatchDetails, - Protocol, - ProtocolStage, - Viewport, - DisplaySetSelector, - ViewportStructure, - ViewportLayoutOptions, - DisplaySetOptions, - MatchingRule, - SyncGroup, - initialImageOptions, - DisplaySetInfo, - GlobalProtocolOptions, - ViewportSpecificProtocolOptions, - DisplaySetAndViewportOptions, - ProtocolGenerator, +export type HPInfo = { + protocolId: string; + stageId: string; + stageIndex: number; + activeStudyUID: string; }; diff --git a/platform/core/src/types/Services.ts b/platform/core/src/types/Services.ts index ab58b0ddd..ca73361ca 100644 --- a/platform/core/src/types/Services.ts +++ b/platform/core/src/types/Services.ts @@ -5,6 +5,7 @@ import { ViewportGridService, ToolbarService, DisplaySetService, + StateSyncService, } from '../services'; /** @@ -28,5 +29,6 @@ export default interface Services { syncGroupService?: Record; cornerstoneCacheService?: Record; segmentationService?: Record; + stateSyncService?: StateSyncService; panelService?: Record; } diff --git a/platform/core/src/utils/combineFrameInstance.ts b/platform/core/src/utils/combineFrameInstance.ts index b5678a2d6..933437a24 100644 --- a/platform/core/src/utils/combineFrameInstance.ts +++ b/platform/core/src/utils/combineFrameInstance.ts @@ -30,12 +30,35 @@ const combineFrameInstance = (frame, instance) => { .map(it => it[0]) .filter(it => it !== undefined && typeof it === 'object'); - return Object.assign( - { frameNumber: frameNumber }, - instance, - ...Object.values(shared), - ...Object.values(perFrame) - ); + // this is to fix NM multiframe datasets with position and orientation + // information inside DetectorInformationSequence + if ( + !instance.ImageOrientationPatient && + instance.DetectorInformationSequence + ) { + instance.ImageOrientationPatient = + instance.DetectorInformationSequence[0].ImageOrientationPatient; + } + if ( + !instance.ImagePositionPatient && + instance.DetectorInformationSequence + ) { + instance.ImagePositionPatient = + instance.DetectorInformationSequence[0].ImagePositionPatient; + } + + const newInstance = Object.assign(instance, { frameNumber: frameNumber }); + + // merge the shared first then the per frame to override + [...shared, ...perFrame].forEach(item => { + Object.entries(item).forEach(([key, value]) => { + newInstance[key] = value; + }); + }); + + // Todo: we should cache this combined instance somewhere, maybe add it + // back to the dicomMetaStore so we don't have to do this again. + return newInstance; } else { return instance; } diff --git a/platform/core/src/utils/index.js b/platform/core/src/utils/index.js index d428a6648..4c54c32ef 100644 --- a/platform/core/src/utils/index.js +++ b/platform/core/src/utils/index.js @@ -32,6 +32,7 @@ import { sortingCriteria, seriesSortCriteria, } from './sortStudy'; +import { subscribeToNextViewportGridChange } from './subscribeToNextViewportGridChange'; // Commented out unused functionality. // Need to implement new mechanism for derived displaySets using the displaySetManager. @@ -69,6 +70,7 @@ const utils = { debounce, roundNumber, downloadCSVReport, + subscribeToNextViewportGridChange, }; export { diff --git a/platform/core/src/utils/index.test.js b/platform/core/src/utils/index.test.js index 9b83f8db5..cae769191 100644 --- a/platform/core/src/utils/index.test.js +++ b/platform/core/src/utils/index.test.js @@ -35,6 +35,7 @@ describe('Top level exports', () => { 'resolveObjectPath', 'hierarchicalListUtils', 'progressTrackingUtils', + 'subscribeToNextViewportGridChange', ].sort(); const exports = Object.keys(utils.default).sort(); diff --git a/platform/core/src/utils/isDisplaySetReconstructable.js b/platform/core/src/utils/isDisplaySetReconstructable.js index 6ab7bf2fd..373da994a 100644 --- a/platform/core/src/utils/isDisplaySetReconstructable.js +++ b/platform/core/src/utils/isDisplaySetReconstructable.js @@ -30,62 +30,98 @@ export default function isDisplaySetReconstructable(instances) { } // Can't reconstruct if all instances don't have the ImagePositionPatient. - if (!instances.every(instance => !!instance.ImagePositionPatient)) { + if ( + !isMultiframe && + !instances.every(instance => instance.ImagePositionPatient) + ) { return { value: false }; } const sortedInstances = sortInstancesByPosition(instances); - if (isMultiframe) { - return processMultiframe(sortedInstances[0]); - } else { - return processSingleframe(sortedInstances); - } + return isMultiframe + ? processMultiframe(sortedInstances[0]) + : processSingleframe(sortedInstances); +} + +function hasPixelMeasurements(multiFrameInstance) { + const perFrameSequence = + multiFrameInstance.PerFrameFunctionalGroupsSequence?.[0]; + const sharedSequence = multiFrameInstance.SharedFunctionalGroupsSequence; + + return ( + Boolean(perFrameSequence?.PixelMeasuresSequence) || + Boolean(sharedSequence?.PixelMeasuresSequence) || + Boolean( + multiFrameInstance.PixelSpacing && + (multiFrameInstance.SliceThickness || + multiFrameInstance.SpacingBetweenFrames) + ) + ); +} + +function hasOrientation(multiFrameInstance) { + const sharedSequence = multiFrameInstance.SharedFunctionalGroupsSequence; + const perFrameSequence = + multiFrameInstance.PerFrameFunctionalGroupsSequence?.[0]; + + return ( + Boolean(sharedSequence?.PlaneOrientationSequence) || + Boolean(perFrameSequence?.PlaneOrientationSequence) || + Boolean( + multiFrameInstance.ImageOrientationPatient || + multiFrameInstance.DetectorInformationSequence?.[0] + ?.ImageOrientationPatient + ) + ); +} + +function hasPosition(multiFrameInstance) { + const perFrameSequence = + multiFrameInstance.PerFrameFunctionalGroupsSequence?.[0]; + + return ( + Boolean(perFrameSequence?.PlanePositionSequence) || + Boolean(perFrameSequence?.CTPositionSequence) || + Boolean( + multiFrameInstance.ImagePositionPatient || + multiFrameInstance.DetectorInformationSequence?.[0] + ?.ImagePositionPatient + ) + ); +} + +function isNMReconstructable(multiFrameInstance) { + const imageSubType = multiFrameInstance.ImageType?.[2]; + return imageSubType === 'RECON TOMO' || imageSubType === 'RECON GATED TOMO'; } function processMultiframe(multiFrameInstance) { - const { - PerFrameFunctionalGroupsSequence, - SharedFunctionalGroupsSequence, - } = multiFrameInstance; - // If we don't have the PixelMeasuresSequence, then the pixel spacing and // slice thickness isn't specified or is changing and we can't reconstruct // the dataset. + if (!hasPixelMeasurements(multiFrameInstance)) { + return { value: false }; + } + + if (!hasOrientation(multiFrameInstance)) { + console.log('No image orientation information, not reconstructable'); + return { value: false }; + } + + if (!hasPosition(multiFrameInstance)) { + console.log('No image position information, not reconstructable'); + return { value: false }; + } + if ( - !SharedFunctionalGroupsSequence || - !SharedFunctionalGroupsSequence[0].PixelMeasuresSequence + multiFrameInstance.Modality.includes('NM') && + !isNMReconstructable(multiFrameInstance) ) { return { value: false }; } - // Check that the orientation is either shared or with the allowed - // difference amount - const { - PlaneOrientationSequence: sharedOrientation, - } = SharedFunctionalGroupsSequence; - - if (!sharedOrientation) { - const { - PlaneOrientationSequence: firstOrientation, - } = PerFrameFunctionalGroupsSequence[0]; - - if (!firstOrientation) { - console.log('No orientation information'); - return { value: false }; - } - // TODO - check orientation consistency - } - - const frame0 = PerFrameFunctionalGroupsSequence[0]; - const firstPosition = - frame0.PlanePositionSequence || frame0.CTPositionSequence; - if (!firstPosition) { - console.log('No image position information, not reconstructable'); - return { value: false }; - } // TODO - check spacing consistency - return { value: true }; } diff --git a/platform/core/src/utils/subscribeToNextViewportGridChange.ts b/platform/core/src/utils/subscribeToNextViewportGridChange.ts new file mode 100644 index 000000000..e6c72d048 --- /dev/null +++ b/platform/core/src/utils/subscribeToNextViewportGridChange.ts @@ -0,0 +1,37 @@ +import { ViewportGridService } from '../services'; + +/** + * Subscribes to the very next LAYOUT_CHANGED or GRID_STATE_CHANGED event that + * is not currently on the event queue. The subscriptions are made on a 'zero' + * timeout so as to avoid responding to any of those events currently on the event queue. + * The subscription persists only for a single invocation of either event. + * Once either event is fired, the subscriptions are unsubscribed. + * @param viewportGridService the viewport grid service to subscribe to + * @param gridChangeCallback the callback + */ +function subscribeToNextViewportGridChange( + viewportGridService: ViewportGridService, + gridChangeCallback: (arg: unknown) => void +): void { + const subscriber = () => { + const callback = (callbackProps: unknown) => { + subscriptions.forEach(subscription => subscription.unsubscribe()); + gridChangeCallback(callbackProps); + }; + + const subscriptions = [ + viewportGridService.subscribe( + viewportGridService.EVENTS.LAYOUT_CHANGED, + callback + ), + viewportGridService.subscribe( + viewportGridService.EVENTS.GRID_STATE_CHANGED, + callback + ), + ]; + }; + + window.setTimeout(subscriber, 0); +} + +export { subscribeToNextViewportGridChange }; diff --git a/platform/docs/docs/platform/extensions/modules/sop-class-handler.md b/platform/docs/docs/platform/extensions/modules/sop-class-handler.md index eb1b7a464..607ac00e2 100644 --- a/platform/docs/docs/platform/extensions/modules/sop-class-handler.md +++ b/platform/docs/docs/platform/extensions/modules/sop-class-handler.md @@ -53,7 +53,7 @@ const sopClassDictionary = { const sopClassUids = [ sopClassDictionary.CTImageStorage, sopClassDictionary.MRImageStorage, -; +]; const makeDisplaySet = (instances) => { const instance = instances[0]; diff --git a/platform/docs/docs/platform/modes/index.md b/platform/docs/docs/platform/modes/index.md index 44a58fde1..aa3f0cb0d 100644 --- a/platform/docs/docs/platform/modes/index.md +++ b/platform/docs/docs/platform/modes/index.md @@ -315,7 +315,9 @@ handles creation of the displaySets. ### Hotkeys `hotkeys` is another property in the configuration of a mode that can be defined -to add the specific hotkeys to the viewer at all routes. +to add the specific hotkeys to the viewer on the mode route. Additionally, the +name under which the hotkeys are stored can be configured as `hotkeyName`. +This allows user customization of the mode specific hotkeys. ```js // default hotkeys @@ -347,7 +349,13 @@ function modeFactory() { /* ... */ - hotkeys: [..hotkeys.defaults.hotkeyBindings, ...myHotkeys], + hotkeys: { + // The name in preferences to use for this set of hotkeys + // Allows defining different sets for different modes + name: 'custom-hotkey-name', + // And the actual custom values here. + hotkeys:[..hotkeys.defaults.hotkeyBindings, ...myHotkeys] + }, } } diff --git a/platform/docs/docs/platform/services/data/HangingProtocolService.md b/platform/docs/docs/platform/services/data/HangingProtocolService.md index c43fd6fd8..71dc86f49 100644 --- a/platform/docs/docs/platform/services/data/HangingProtocolService.md +++ b/platform/docs/docs/platform/services/data/HangingProtocolService.md @@ -27,6 +27,27 @@ registered automatically to the HangingProtocolService. All protocols are stored in the `HangingProtocolService` using their `id` as the key, and the protocol itself as the value. +## Protocol Definition +Protocols are defined in a getHangingProtocolModule inside an extension. As such, +they are defined with a module structure that starts with an id, and has field protocol +that is the actual protocol definition. This setup allows defining more than +one protocol within a module, each one needing it's own definition file. + +```javascript +import MyProtocol from './MyProtocol'; +export default function getHangingProtocolModule() { + return [ + { + id: MyProtocol.id, + protocol: MyProtocol, + }, + ]; +} +``` + +Within the protocol itself, the structure is layed out as described in the HangingProtocol.ts +type definition, starting with `Protocol`. See the type definition for more details. + ## Events There are two events that get publish in `HangingProtocolService`: @@ -34,31 +55,101 @@ There are two events that get publish in `HangingProtocolService`: | Event | Description | | ------------ | -------------------------------------------------------------------- | | NEW_LAYOUT | Fires when a new layout is requested by the `HangingProtocolService` | -| STAGE_CHANGE | Fires when the the stage is changed in the hanging protocols | -| PROTOCOL_CHANGED | Fires when the the protocol is changed in the hanging protocols | -| HANGING_PROTOCOL_APPLIED_FOR_VIEWPORT | Fires when the hanging protocol applies for a viewport (sets its displaySets) | +| PROTOCOL_CHANGED | Fires when the the protocol is changed in the hanging protocols, or when the applied stage is changed. | +| RESTORE_PROTOCOL | Fires when the protocol or stage is restored, for example, after turning off MPR mode | +| STAGE_ACTIVATION | Fires when the stages are known to have stage.status set. | +## Stage Activation and Status +Sometimes a hanging protocol can be applicable generally, but not all stages +should be shown by default, or should be shown at all. This can be handled by +using the stage activation to control whether the stage is shown by default (`enabled`), +whether it can be navigated to (`passive`) or whether it should not be shown +at all (`disabled`). +The `stage.status` is used to control this, and the status is controlled by +the stage activate. The status values are: + +* enabled - meaning that the stage is fully applicable +* passive - meaning that the stage can be applied, but might be missing details +* disabled - meaning that the study has insuffient information for this stage + +The default values for no `stageActivation` are to assume that `enabled` has `minViewports` of 1, +and `passive` has `minViewports=0`. That is, enable the stage if at least one +viewport is filled, and make it passive if no viewports are filled. + +The setting for these are controlled by the stageActivation property, for example +the following: + +```javascript +stageActivation: { + // The enabled activation specifies requirements to enable the stage, that is, + // make it preferred. + enabled: { + // The default value here is 1, and indicates how many non-blank viewports + // are required. + minViewportsMatched: 3, + // This enables specifying cross cutting concerns, such as having a stage + // only apply to males or females, and is a list of display set selector ids + displaySetSelectorsMatched: ['dsMale'], + }, + // The passive check is performed first. If it fails, the enabled is NOT + // checked, but the status set to disabled. The default passive check + // should always be passed, so it is fine to just define enabled if desired. + passive: { + // The default is 0, which means allow the stage even if no viewports are + // filled. This allows dragging and dropping into the viewports to + // make matches manually, which can then be re-used for other stages. + minViewportsMatched: 0, + displaySetSelectorsMatched: [...], + }, +} +``` ## API +- `destroy`: Destroys the HP service + +- `reset` and `onModeEnter`: Resets the HP service to not have any active + hanging protocols + +- `getActiveProtocol`: Returns an object of the internal state of the HP service, + useful for storing said state, as well as for getting direct access to the + protocol and stage objects. Users of this should count on it being not completely + stable as to exactly what this returns, as internal details can change. + +- `getState`: Returns the currently applied protocol ID, stage index and active study UID. + This information is storable/useable as state information to be used elsewhere. + +- `getDefaultProtocol`: Returns the default protocol to apply. + - `getMatchDetails`: returns an object which contains the details of the matching for the viewports, displaySets and whether the protocol is - applied to the viewport or not yet. + applied to the viewport or not yet. This is deprecated as it is expected + to be communicated by events instead. + +- `getProtocols`: Returns a list of the currently active protocols. + +- `getProtocolById`: Gets the protocol with the given id. - `addProtocol`: adds provided protocol to the list of registered protocols - for matching + for matching. Will replacing any protocol with the same id, allowing, for example, + to replace the default protocol. - `setActiveProtocols`: Choose the protocols which are active. Can take a single protocol id or a list. When a single one is provided, that one will be applied whether or not the required rules match. Called automatically on mode init. +- `setActiveStudyUID`: Sets the given study UID as active, which has significance + in terms of the matching rules being able to match against the active study. + - `run({studies, activeStudy, displaySets }, protocolId)`: runs the HPService with the provided studyMetaData and optional protocolId. If protocol is not given, HP Matching engine will search all the registered protocols for the best matching one based on the constraints. +- `registerImageLoadStrategy`: Adds a custom image load strategy. + - `addCustomAttribute`: adding a custom attribute for matching. (see below) - `setProtocol`: applies a protocol to the current studies, it can be used for instance to apply a @@ -68,6 +159,12 @@ init. used for the protocol. If no options are provided, all displaySets will be used to match the protocol. +- `getStageIndex`: Finds the stage index for a given set of match keys. Currently + only works on the currently active protocol, but is supposed to be able to work + with other protocols as well. + +- `getMissingViewport`: Returns a viewport object to be used as the missing + viewport instance. This is used to fill out new viewports. Default initialization of the modes handles running the `HangingProtocolService` @@ -78,7 +175,7 @@ do not overlap, with the suggested id being `${moduleId}.${simpleName}`. The 'default' name is used as the hanging protocol id when no other protocol applies, and can be set as the last module listed containing 'default'. -A hanging protocol can also be defined with a generator. +A hanging protocol can also be defined with a generator. A generator is a function we can write this way: ```ts @@ -93,6 +190,33 @@ function protocolGenerator({ servicesManager, commandsManager }) { See the typescript definitions for more details on the structure of protocols. +## Additional viewports for layout - `defaultViewport` +Sometimes the user manually selects a layout of a given size, say `2x3`. The +hanging protocol can define what viewport options to use for this viewport by +defining an extra viewport option in `defaultViewport`. For example: + +```javascript + defaultViewport: { + viewportOptions: { + viewportType: 'stack', + toolGroupId: 'default', + allowUnmatchedView: true, + }, + displaySets: [ + { + id: 'defaultDisplaySetId', + matchedDisplaySetsIndex: -1, + }, + ], + }, +``` + +This allows defining the type of additional viewports, what tool group etc they +are allowed in, and which display set is used to fill them. In the above case, +the display set is the same as the other viewports, but the +`matchedDisplaySetsIndex=-1`, so that means find the next matching display set +from the display set selector which isn't already filling a view. + ## Custom Attribute In some situations, you might want to match based on a custom attribute and not the DICOM tags. For instance, if you have assigned a `timepointId` to each study, and you want to match based on it. @@ -102,7 +226,7 @@ There are various ways that you can let `HangingProtocolService` know of you custom attribute. We will show how to add it inside the mode configuration. ```js -const deafultProtocol = { +const defaultProtocol = { id: 'defaultProtocol', /** ... **/ protocolMatchingRules: [ diff --git a/platform/docs/docs/platform/services/data/StateSyncService.md b/platform/docs/docs/platform/services/data/StateSyncService.md new file mode 100644 index 000000000..4e6964d17 --- /dev/null +++ b/platform/docs/docs/platform/services/data/StateSyncService.md @@ -0,0 +1,77 @@ +--- +sidebar_position: 8 +sidebar_label: State Sync Service +--- + +# State Sync Service + +## Overview +The state sync service is designed to allow short and long term memory of things such as +annotations applied, last annotation state, hanging protocol viewport state, +window level etc. This allows for better interaction with things like navigation +between hanging protocols, ensuring that the previously displayed layouts +can be redisplayed after returning to a given hanging protocol. + +Currently, all the state sync service configurations have one of the following two +lifetimes. See the mode description for general information on the mode lifetime. + +* Application load - when the application is restarted, the state is lost +* `clearOnModeExit` - which stores state until the mode onModeExit is called, and then throws away the remaining state. This is useful for mode specific information. + +### TODO work - add more storage locations +It is expected to add a few more storage locations, which will store to various +locations on updates: + +* User specific server store - to store things between application restarts at the user level +* Browser state store - to store things in the browser local state, to recover after crashing. +* Study specific server store - to store things relevant to a given study between application restarts, on the server. + +## Events + +Currently the service does not fire events. + +## API + +- `register`: to create a new named state storage +- `reduce`: to apply a set of changes to several states at once +- `getState`: to retrieve the current state +- `onModeExit`: clears the states configured as clearOnModeExit states + +### register +The register call is typically added to an extension to create a new +syncable state. A typical call is shown below, registering the viewport +grid store state as a modal state. + +```javascript + stateSyncService.register('viewportGridStore', { clearOnModeExit: true }); +``` + +### getState +The `getState` call returns an object containing all of the reigstered states, +by id. The values can be read directly, but should not be modified. + +### reduce +The `reduce` call is used to apply a set of updates to various states. The +updates are performed for every state as a simply "set" call. + +### onModeExit +When the Mode is exited, the onModeExit is called on the sync state, and this +clears all states registered with `clearOnModeExit: true`. +To avoid clearing the state, the mode definition should store any transient +state in the mode onModeExit and recover it in the `mode.onModeEnter`. + +## OHIF Registered State Sync Stores +There are a number of defined stores here. It is recommended to update this +list as state stores are added: + +### Default Extension Stores + +* `viewportGridStore` has viewport grid restore information for returning to an earlier grid layout. +* `reuseIdMap` has a map of names to display sets for preserving user changes to hp display set selections. +* `hanging` has a map of the hanging protocol stage information applied (HPInfo) +* `toggleHangingProtocol` has the previously applied hanging protocol, to toggle an HP off. + +### Cornerstone Extension Stores + +* `lutPresentationStore` has the cornerstone LUT (window level) presentation state information +* `positionPresentationStore` has the cornerstone viewport position (camera, initial image) information diff --git a/platform/docs/docs/platform/services/data/ToolbarService.md b/platform/docs/docs/platform/services/data/ToolbarService.md index 18e7b7afb..f92cc385f 100644 --- a/platform/docs/docs/platform/services/data/ToolbarService.md +++ b/platform/docs/docs/platform/services/data/ToolbarService.md @@ -33,6 +33,7 @@ button is clicked by the user. presets. - `commandName`: if tool has a command attached to run - `commandOptions`: arguments for the command. + - `setActive`: Sets a given tool active (not as primary but as secondary) - `reset`: reset the state of the toolbarService, set the primary tool to be `Wwwc` and unsubscribe tools that have registered their functions. diff --git a/platform/docs/docs/platform/services/data/index.md b/platform/docs/docs/platform/services/data/index.md index ee3ac507e..cdeb44c77 100644 --- a/platform/docs/docs/platform/services/data/index.md +++ b/platform/docs/docs/platform/services/data/index.md @@ -19,7 +19,8 @@ We maintain the following non-ui Services: - [Hanging Protocol Service](../data/HangingProtocolService.md) - [Toolbar Service](../data/ToolBarService.md) - [Measurement Service](../data/MeasurementService.md) -- [Customization Service](customization-service.md) +- [Customization Service](../data/customization-service.md) +- [State Sync Service](../data/StateSyncService.md) - [Panel Service](../data/PanelService.md) ## Service Architecture diff --git a/platform/docs/docs/platform/services/ui/customization-service.md b/platform/docs/docs/platform/services/ui/customization-service.md index 996f11b93..b59bf10d9 100644 --- a/platform/docs/docs/platform/services/ui/customization-service.md +++ b/platform/docs/docs/platform/services/ui/customization-service.md @@ -210,8 +210,8 @@ example (this example comes from the context menu customizations as that one uses commands lists): ```ts - cornerstoneContextMenu = uiConfigurationService.getModeCustomization("cornerstoneContextMenu", defaultMenu); - uiConfigurationService.recordInteraction(cornerstoneContextMenu, extraProps); + cornerstoneContextMenu = uiConfigurationService.get("cornerstoneContextMenu", defaultMenu); + commandsManager.run(cornerstoneContextMenu, extraProps); ``` ### Global Customizations @@ -229,7 +229,7 @@ This allows for having strong typing when declaring customizations, for example: ```ts import { Types } from '@ohif/ui'; -const customContextMenu: Types.UIContextMenu = +const customContextMenu: Types.ContextMenu.Menu = { id: 'cornerstoneContextMenu', customizationType: 'ohif.contextMenu', @@ -260,7 +260,7 @@ getCustomizationModule = () => ([ ``` defines an overlay item which has a React content object as the render value. -This can then be used by specifying a customizationType of `ohif.overlayItem`, for example: +This can then be used by specifying a `customizationType` of `ohif.overlayItem`, for example: ```js const overlayItem: Types.UIOverlayItem = { @@ -275,7 +275,6 @@ const overlayItem: Types.UIOverlayItem = { This section can be used to specify various customization capabilities. - ## Text color for StudyBrowser tabs This is the recommended pattern for deep customization of class attributes, @@ -478,6 +477,29 @@ window.config = { +## Context Menus + +Context menus can be created by defining the menu structure and click +interaction, as defined in the `ContextMenu/types`. There are examples +below specific to the cornerstone context, because the actual click +handler and attributes used to decide when and how to display the menu +are specific to the context used for where the menu is displayed. + +## Cornerstone Context Menu + +The default cornerstone context menu can be customized by setting the +`cornerstoneContextMenu`. For a full example, see `findingsContextMenu`. + +## Customizeable Cornerstone Viewport Click Behaviour + +The behaviour on clicking on the cornerstone viewport can be customized +by setting the `cornerstoneViewportClickCommands`. This is intended to +support both the cornerstone 3D internal commands as well as things like +context menus. Currently it supports buttons 1-3, as well as modifier keys +by associating a commands list with the button to click. See `initContextMenu` +for more details. + +## Please add additional customizations above this section > 3rd Party implementers may be added to this table via pull requests.