Complete rehydration.

This commit is contained in:
James A. Petts 2020-06-30 16:08:44 +01:00
commit eaeae515a3
46 changed files with 896 additions and 276 deletions

View File

@ -10,7 +10,10 @@ import { DicomMetadataStore, IWebApiDataSource, utils } from '@ohif/core';
import getImageId from './utils/getImageId'; import getImageId from './utils/getImageId';
import * as dcmjs from 'dcmjs'; import * as dcmjs from 'dcmjs';
import { retrieveStudyMetadata } from './retrieveStudyMetadata.js'; import {
retrieveStudyMetadata,
deleteStudyMetadataPromise,
} from './retrieveStudyMetadata.js';
const { DicomMetaDictionary, DicomDict } = dcmjs.data; const { DicomMetaDictionary, DicomDict } = dcmjs.data;
@ -187,6 +190,7 @@ function createDicomWebApi(dicomWebConfig) {
storeInstances(instances); storeInstances(instances);
}); });
}, },
deleteStudyMetadataPromise,
getImageIdsForDisplaySet(displaySet) { getImageIdsForDisplaySet(displaySet) {
const images = displaySet.images; const images = displaySet.images;
const imageIds = []; const imageIds = [];

View File

@ -1,6 +1,9 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { StudyBrowser, useImageViewer } from '@ohif/ui'; import { StudyBrowser, useImageViewer } from '@ohif/ui';
import { utils } from '@ohif/core';
const { formatDate } = utils;
/** /**
* *
@ -37,7 +40,7 @@ function PanelStudyBrowser({
const actuallyMappedStudies = mappedStudies.map(qidoStudy => { const actuallyMappedStudies = mappedStudies.map(qidoStudy => {
return { return {
studyInstanceUid: qidoStudy.StudyInstanceUID, studyInstanceUid: qidoStudy.StudyInstanceUID,
date: qidoStudy.StudyDate, date: formatDate(qidoStudy.StudyDate),
description: qidoStudy.StudyDescription, description: qidoStudy.StudyDescription,
modalities: qidoStudy.ModalitiesInStudy, modalities: qidoStudy.ModalitiesInStudy,
numInstances: qidoStudy.NumInstances, numInstances: qidoStudy.NumInstances,
@ -151,11 +154,11 @@ function PanelStudyBrowser({
); );
const updatedExpandedStudyInstanceUIDs = shouldCollapseStudy const updatedExpandedStudyInstanceUIDs = shouldCollapseStudy
? // eslint-disable-next-line prettier/prettier ? // eslint-disable-next-line prettier/prettier
[ [
...expandedStudyInstanceUIDs.filter( ...expandedStudyInstanceUIDs.filter(
stdyUid => stdyUid !== StudyInstanceUID stdyUid => stdyUid !== StudyInstanceUID
), ),
] ]
: [...expandedStudyInstanceUIDs, StudyInstanceUID]; : [...expandedStudyInstanceUIDs, StudyInstanceUID];
setExpandedStudyInstanceUIDs(updatedExpandedStudyInstanceUIDs); setExpandedStudyInstanceUIDs(updatedExpandedStudyInstanceUIDs);

View File

@ -5,14 +5,6 @@ import {
useViewportGrid, useViewportGrid,
} from '@ohif/ui'; } from '@ohif/ui';
const DEFAULT_LAYOUT = {
type: 'SET_LAYOUT',
payload: {
numCols: 1,
numRows: 1,
},
};
function LayoutSelector() { function LayoutSelector() {
const [isOpen, setIsOpen] = useState(false); const [isOpen, setIsOpen] = useState(false);
const [viewportGridState, viewportGridService] = useViewportGrid(); const [viewportGridState, viewportGridService] = useViewportGrid();
@ -33,7 +25,7 @@ function LayoutSelector() {
useEffect(() => { useEffect(() => {
/* Reset to default layout when component unmounts */ /* Reset to default layout when component unmounts */
return () => { return () => {
dispatch(DEFAULT_LAYOUT); viewportGridService.setLayout({ numCols: 1, numRows: 1 });
}; };
}, []); }, []);

View File

@ -3,13 +3,14 @@ import PropTypes from 'prop-types';
import cornerstoneTools from 'cornerstone-tools'; import cornerstoneTools from 'cornerstone-tools';
import cornerstone from 'cornerstone-core'; import cornerstone from 'cornerstone-core';
import CornerstoneViewport from 'react-cornerstone-viewport'; import CornerstoneViewport from 'react-cornerstone-viewport';
import OHIF, { DicomMetadataStore } from '@ohif/core'; import OHIF, { DicomMetadataStore, utils } from '@ohif/core';
import { ViewportActionBar, useViewportGrid } from '@ohif/ui'; import { ViewportActionBar, useViewportGrid } from '@ohif/ui';
import TOOL_NAMES from './constants/toolNames'; import TOOL_NAMES from './constants/toolNames';
import { adapters } from 'dcmjs'; import { adapters } from 'dcmjs';
import getToolStateToCornerstoneMeasurementSchema from './utils/getToolStateToCornerstoneMeasurementSchema'; import getToolStateToCornerstoneMeasurementSchema from './utils/getToolStateToCornerstoneMeasurementSchema';
import id from './id'; import id from './id';
const { formatDate } = utils;
const scrollToIndex = cornerstoneTools.importInternal('util/scrollToIndex'); const scrollToIndex = cornerstoneTools.importInternal('util/scrollToIndex');
const globalImageIdSpecificToolStateManager = const globalImageIdSpecificToolStateManager =
cornerstoneTools.globalImageIdSpecificToolStateManager; cornerstoneTools.globalImageIdSpecificToolStateManager;
@ -298,7 +299,59 @@ function OHIFCornerstoneSRViewport({
} }
}); });
const imageIds = []; if (
extensionManager.registeredExtensionIds.includes(
MEASUREMENT_TRACKING_EXTENSION_ID
)
) {
// Set the series touched as tracked.
const imageIds = [];
Object.keys(hydratableMeasurementsInSR).forEach(toolType => {
const toolDataForToolType = hydratableMeasurementsInSR[toolType];
toolDataForToolType.forEach(data => {
// Add the measurement to toolState
const imageId = sopInstanceUIDToImageId[data.sopInstanceUid];
if (!imageIds.includes(imageId)) {
imageIds.push(imageId);
}
});
});
let targetStudyInstanceUID;
const SeriesInstanceUIDs = [];
for (let i = 0; i < imageIds.length; i++) {
const imageId = imageIds[0];
const {
SeriesInstanceUID,
StudyInstanceUID,
} = cornerstone.metaData.get('instance', imageId);
if (!SeriesInstanceUIDs.includes(SeriesInstanceUID)) {
SeriesInstanceUIDs.push(SeriesInstanceUID);
}
if (!targetStudyInstanceUID) {
targetStudyInstanceUID = StudyInstanceUID;
} else if (targetStudyInstanceUID !== StudyInstanceUID) {
console.warn(
'NO SUPPORT FOR SRs THAT HAVE MEASUREMENTS FROM MULTIPLE STUDIES.'
);
}
}
debugger;
sendTrackedMeasurementsEvent('SET_TRACKED_SERIES', {
StudyInstanceUID: targetStudyInstanceUID,
SeriesInstanceUIDs,
});
debugger;
}
Object.keys(hydratableMeasurementsInSR).forEach(toolType => { Object.keys(hydratableMeasurementsInSR).forEach(toolType => {
const toolDataForToolType = hydratableMeasurementsInSR[toolType]; const toolDataForToolType = hydratableMeasurementsInSR[toolType];
@ -342,44 +395,6 @@ function OHIFCornerstoneSRViewport({
// Deal with optional extensions // Deal with optional extensions
if (
extensionManager.registeredExtensionIds.includes(
MEASUREMENT_TRACKING_EXTENSION_ID
)
) {
// Set the series touched as tracked.
let targetStudyInstanceUID;
const SeriesInstanceUIDs = [];
for (let i = 0; i < imageIds.length; i++) {
const imageId = imageIds[0];
const {
SeriesInstanceUID,
StudyInstanceUID,
} = cornerstone.metaData.get('instance', imageId);
if (!SeriesInstanceUIDs.includes(SeriesInstanceUID)) {
SeriesInstanceUIDs.push(SeriesInstanceUID);
}
if (!targetStudyInstanceUID) {
targetStudyInstanceUID = StudyInstanceUID;
} else if (targetStudyInstanceUID !== StudyInstanceUID) {
console.warn(
'NO SUPPORT FOR SRs THAT HAVE MEASUREMENTS FROM MULTIPLE STUDIES.'
);
}
}
debugger;
sendTrackedMeasurementsEvent('SET_TRACKED_SERIES', {
StudyInstanceUID: targetStudyInstanceUID,
SeriesInstanceUID: SeriesInstanceUIDs[0],
});
}
debugger; debugger;
viewportGridService.setDisplaysetForViewport({ viewportGridService.setDisplaysetForViewport({
@ -399,7 +414,7 @@ function OHIFCornerstoneSRViewport({
isTracked: false, isTracked: false,
isLocked: displaySet.isLocked, isLocked: displaySet.isLocked,
isHydrated, isHydrated,
studyDate: StudyDate, studyDate: formatDate(StudyDate),
currentSeries: SeriesNumber, currentSeries: SeriesNumber,
seriesDescription: SeriesDescription, seriesDescription: SeriesDescription,
modality: Modality, modality: Modality,
@ -410,7 +425,7 @@ function OHIFCornerstoneSRViewport({
patientSex: PatientSex || '', patientSex: PatientSex || '',
patientAge: PatientAge || '', patientAge: PatientAge || '',
MRN: PatientID || '', MRN: PatientID || '',
thickness: `${SliceThickness}mm`, thickness: SliceThickness ? `${SliceThickness.toFixed(2)}mm` : '',
spacing: spacing:
PixelSpacing && PixelSpacing.length PixelSpacing && PixelSpacing.length
? `${PixelSpacing[0].toFixed(2)}mm x ${PixelSpacing[1].toFixed( ? `${PixelSpacing[0].toFixed(2)}mm x ${PixelSpacing[1].toFixed(

View File

@ -6,6 +6,9 @@ import {
machineConfiguration, machineConfiguration,
defaultOptions, defaultOptions,
} from './measurementTrackingMachine'; } from './measurementTrackingMachine';
import promptBeginTracking from './promptBeginTracking';
import promptTrackNewSeries from './promptTrackNewSeries';
import promptTrackNewStudy from './promptTrackNewStudy';
const TrackedMeasurementsContext = React.createContext(); const TrackedMeasurementsContext = React.createContext();
TrackedMeasurementsContext.displayName = 'TrackedMeasurementsContext'; TrackedMeasurementsContext.displayName = 'TrackedMeasurementsContext';
@ -19,41 +22,20 @@ function TrackedMeasurementsContextProvider(
UIViewportDialogService, UIViewportDialogService,
{ children } { children }
) { ) {
function promptUser(message, ctx, evt) {
const { viewportIndex, StudyInstanceUID, SeriesInstanceUID } = evt;
return new Promise(function(resolve, reject) {
/**
* TODO: Will have issues if "SeriesInstanceUID" exists in multiple displaySets?
*
* @param {number} result - -1 | 0 | 1 --> deny | cancel | accept
* @return resolve { userResponse: number, StudyInstanceUID: string, SeriesInstanceUID: string }
*/
const handleSubmit = result => {
UIViewportDialogService.hide();
resolve({ userResponse: result, StudyInstanceUID, SeriesInstanceUID });
};
UIViewportDialogService.show({
viewportIndex,
type: 'info',
message,
actions: [
{ type: 'cancel', text: 'No', value: 0 },
{ type: 'secondary', text: 'No, do not ask again', value: -1 },
{ type: 'primary', text: 'Yes', value: 1 },
],
onSubmit: handleSubmit,
});
});
}
// Set StateMachine behavior for prompts (invoked services)
const machineOptions = Object.assign({}, defaultOptions); const machineOptions = Object.assign({}, defaultOptions);
machineOptions.services = Object.assign({}, machineOptions.services, { machineOptions.services = Object.assign({}, machineOptions.services, {
promptBeginTracking: promptUser.bind(null, 'Start tracking?'), promptBeginTracking: promptBeginTracking.bind(
promptTrackNewStudy: promptUser.bind(null, 'New study?'), null,
promptTrackNewSeries: promptUser.bind(null, 'New series?'), UIViewportDialogService
),
promptTrackNewSeries: promptTrackNewSeries.bind(
null,
UIViewportDialogService
),
promptTrackNewStudy: promptTrackNewStudy.bind(
null,
UIViewportDialogService
),
}); });

View File

@ -1,5 +1,13 @@
import { assign } from 'xstate'; import { assign } from 'xstate';
const RESPONSE = {
NO_NEVER: -1,
CANCEL: 0,
CREATE_REPORT: 1,
ADD_SERIES: 2,
SET_STUDY_AND_SERIES: 3,
};
const machineConfiguration = { const machineConfiguration = {
id: 'measurementTracking', id: 'measurementTracking',
initial: 'idle', initial: 'idle',
@ -18,13 +26,7 @@ const machineConfiguration = {
SET_TRACKED_SERIES: [ SET_TRACKED_SERIES: [
{ {
target: 'tracking', target: 'tracking',
actions: ['setTrackedStudyAndSeries'], actions: ['setTrackedStudyAndMultipleSeries'],
cond: 'isNewStudy',
},
{
target: 'tracking',
actions: ['addTrackedSeries'],
cond: 'isNewSeries',
}, },
], ],
}, },
@ -36,11 +38,11 @@ const machineConfiguration = {
{ {
target: 'tracking', target: 'tracking',
actions: ['setTrackedStudyAndSeries'], actions: ['setTrackedStudyAndSeries'],
cond: 'promptAccepted', cond: 'shouldSetStudyAndSeries',
}, },
{ {
target: 'off', target: 'off',
cond: 'promptDeclined', cond: 'shouldKillMachine',
}, },
{ {
target: 'idle', target: 'idle',
@ -76,15 +78,21 @@ const machineConfiguration = {
], ],
}, },
}, },
promptTrackNewStudy: { promptTrackNewSeries: {
invoke: { invoke: {
src: 'promptTrackNewStudy', src: 'promptTrackNewSeries',
onDone: [ onDone: [
{ {
target: 'tracking', target: 'tracking',
actions: ['setTrackedStudyAndSeries'], actions: ['addTrackedSeries'],
cond: 'promptAccepted', cond: 'shouldAddSeries',
}, },
{
target: 'tracking',
actions: ['setTrackedStudyAndSeries'],
cond: 'shouldSetStudyAndSeries',
},
// CREATE_REPORT && CANCEL
{ {
target: 'tracking', target: 'tracking',
}, },
@ -94,14 +102,14 @@ const machineConfiguration = {
}, },
}, },
}, },
promptTrackNewSeries: { promptTrackNewStudy: {
invoke: { invoke: {
src: 'promptTrackNewSeries', src: 'promptTrackNewStudy',
onDone: [ onDone: [
{ {
target: 'tracking', target: 'tracking',
actions: ['addTrackedSeries'], actions: ['setTrackedStudyAndSeries'],
cond: 'promptAccepted', cond: 'shouldSetStudyAndSeries',
}, },
{ {
target: 'tracking', target: 'tracking',
@ -138,6 +146,10 @@ const defaultOptions = {
trackedStudy: evt.data.StudyInstanceUID, trackedStudy: evt.data.StudyInstanceUID,
trackedSeries: [evt.data.SeriesInstanceUID], trackedSeries: [evt.data.SeriesInstanceUID],
})), })),
setTrackedStudyAndMultipleSeries: assign((ctx, evt) => ({
trackedStudy: evt.StudyInstanceUID,
trackedSeries: [...ctx.trackedSeries, ...evt.SeriesInstanceUIDs],
})),
addTrackedSeries: assign((ctx, evt) => ({ addTrackedSeries: assign((ctx, evt) => ({
trackedSeries: [...ctx.trackedSeries, evt.data.SeriesInstanceUID], trackedSeries: [...ctx.trackedSeries, evt.data.SeriesInstanceUID],
})), })),
@ -148,9 +160,12 @@ const defaultOptions = {
})), })),
}, },
guards: { guards: {
promptAccepted: (ctx, evt) => evt.data && evt.data.userResponse === 1, shouldKillMachine: (ctx, evt) =>
promptCanceled: (ctx, evt) => evt.data && evt.data.userResponse === 0, evt.data && evt.data.userResponse === RESPONSE.NO_NEVER,
promptDeclined: (ctx, evt) => evt.data && evt.data.userResponse === -1, shouldAddSeries: (ctx, evt) =>
evt.data && evt.data.userResponse === RESPONSE.ADD_SERIES,
shouldSetStudyAndSeries: (ctx, evt) =>
evt.data && evt.data.userResponse === RESPONSE.SET_STUDY_AND_SERIES,
// Has more than 1, or SeriesInstanceUID is not in list // Has more than 1, or SeriesInstanceUID is not in list
// --> Post removal would have non-empty trackedSeries array // --> Post removal would have non-empty trackedSeries array
hasRemainingTrackedSeries: (ctx, evt) => hasRemainingTrackedSeries: (ctx, evt) =>
@ -162,13 +177,4 @@ const defaultOptions = {
}, },
}; };
// const measurementTrackingMachine = Machine(
// machineConfiguration,
// defaultOptions
// );
// .transition(state, eventArgument).value
// const service = interpret(measurementTrackingMachine).start();
// .send(event): nextState
// .state (getter)
// .onTransition(state => { state.vale })
export { defaultOptions, machineConfiguration }; export { defaultOptions, machineConfiguration };

View File

@ -0,0 +1,61 @@
const RESPONSE = {
NO_NEVER: -1,
CANCEL: 0,
CREATE_REPORT: 1,
ADD_SERIES: 2,
SET_STUDY_AND_SERIES: 3,
};
function promptUser(UIViewportDialogService, ctx, evt) {
const { viewportIndex, StudyInstanceUID, SeriesInstanceUID } = evt;
return new Promise(async function(resolve, reject) {
let promptResult = await _askTrackMeasurements(
UIViewportDialogService,
viewportIndex
);
resolve({
userResponse: promptResult,
StudyInstanceUID,
SeriesInstanceUID,
});
});
}
function _askTrackMeasurements(UIViewportDialogService, viewportIndex) {
return new Promise(function(resolve, reject) {
const message = 'Track measurements for this series?';
const actions = [
{ type: 'cancel', text: 'No', value: RESPONSE.CANCEL },
{
type: 'secondary',
text: 'No, do not ask again',
value: RESPONSE.NO_NEVER,
},
{
type: 'primary',
text: 'Yes',
value: RESPONSE.SET_STUDY_AND_SERIES,
},
];
const onSubmit = result => {
UIViewportDialogService.hide();
resolve(result);
};
UIViewportDialogService.show({
viewportIndex,
type: 'info',
message,
actions,
onSubmit,
onOutsideClick: () => {
UIViewportDialogService.hide();
resolve(RESPONSE.CANCEL);
},
});
});
}
export default promptUser;

View File

@ -0,0 +1,110 @@
const RESPONSE = {
NO_NEVER: -1,
CANCEL: 0,
CREATE_REPORT: 1,
ADD_SERIES: 2,
SET_STUDY_AND_SERIES: 3,
};
function promptUser(UIViewportDialogService, ctx, evt) {
const { viewportIndex, StudyInstanceUID, SeriesInstanceUID } = evt;
return new Promise(async function(resolve, reject) {
let promptResult = await _askShouldAddMeasurements(
UIViewportDialogService,
viewportIndex
);
if (promptResult === RESPONSE.CREATE_REPORT) {
promptResult = await _askSaveDiscardOrCancel(
UIViewportDialogService,
viewportIndex
);
}
// TODO: Hook into @JamesAPetts createReport
if (promptResult === RESPONSE.CREATE_REPORT) {
window.alert('CREATE REPORT');
}
resolve({
userResponse: promptResult,
StudyInstanceUID,
SeriesInstanceUID,
});
});
}
function _askShouldAddMeasurements(UIViewportDialogService, viewportIndex) {
return new Promise(function(resolve, reject) {
const message =
'Do you want to add this measurement to the existing report?';
const actions = [
{ type: 'cancel', text: 'Cancel', value: RESPONSE.CANCEL },
{
type: 'secondary',
text: 'Create new report',
value: RESPONSE.CREATE_REPORT,
},
{
type: 'primary',
text: 'Add to existing report',
value: RESPONSE.ADD_SERIES,
},
];
const onSubmit = result => {
UIViewportDialogService.hide();
resolve(result);
};
UIViewportDialogService.show({
viewportIndex,
type: 'info',
message,
actions,
onSubmit,
onOutsideClick: () => {
UIViewportDialogService.hide();
resolve(RESPONSE.CANCEL);
},
});
});
}
function _askSaveDiscardOrCancel(UIViewportDialogService, viewportIndex) {
return new Promise(function(resolve, reject) {
const message =
'You have existing tracked measurements. What would you like to do with your existing tracked measurements?';
const actions = [
{ type: 'cancel', text: 'Cancel', value: RESPONSE.CANCEL },
{
type: 'secondary',
text: 'Save in report',
value: RESPONSE.CREATE_REPORT,
},
{
type: 'primary',
text: 'Discard',
value: RESPONSE.SET_STUDY_AND_SERIES,
},
];
const onSubmit = result => {
UIViewportDialogService.hide();
resolve(result);
};
UIViewportDialogService.show({
viewportIndex,
type: 'warning',
message,
actions,
onSubmit,
onOutsideClick: () => {
UIViewportDialogService.hide();
resolve(RESPONSE.CANCEL);
},
});
});
}
export default promptUser;

View File

@ -0,0 +1,104 @@
const RESPONSE = {
NO_NEVER: -1,
CANCEL: 0,
CREATE_REPORT: 1,
ADD_SERIES: 2,
SET_STUDY_AND_SERIES: 3,
};
function promptUser(UIViewportDialogService, ctx, evt) {
const { viewportIndex, StudyInstanceUID, SeriesInstanceUID } = evt;
return new Promise(async function(resolve, reject) {
let promptResult = await _askTrackMeasurements(
UIViewportDialogService,
viewportIndex
);
if (promptResult === RESPONSE.SET_STUDY_AND_SERIES) {
promptResult = await _askSaveDiscardOrCancel(
UIViewportDialogService,
viewportIndex
);
}
// TODO: Hook into @JamesAPetts createReport
if (promptResult === RESPONSE.CREATE_REPORT) {
window.alert('CREATE REPORT');
}
resolve({
userResponse: promptResult,
StudyInstanceUID,
SeriesInstanceUID,
});
});
}
function _askTrackMeasurements(UIViewportDialogService, viewportIndex) {
return new Promise(function(resolve, reject) {
const message = 'Track measurements for this series?';
const actions = [
{ type: 'cancel', text: 'No', value: RESPONSE.CANCEL },
{
type: 'primary',
text: 'Yes',
value: RESPONSE.SET_STUDY_AND_SERIES,
},
];
const onSubmit = result => {
UIViewportDialogService.hide();
resolve(result);
};
UIViewportDialogService.show({
viewportIndex,
type: 'info',
message,
actions,
onSubmit,
onOutsideClick: () => {
UIViewportDialogService.hide();
resolve(RESPONSE.CANCEL);
},
});
});
}
function _askSaveDiscardOrCancel(UIViewportDialogService, viewportIndex) {
return new Promise(function(resolve, reject) {
const message =
'Measurements cannot span across multiple studies. Do you want to save your tracked measurements?';
const actions = [
{ type: 'cancel', text: 'Cancel', value: RESPONSE.CANCEL },
{
type: 'secondary',
text: 'No, discard previosuly tracked series & measurements',
value: RESPONSE.SET_STUDY_AND_SERIES,
},
{
type: 'primary',
text: 'Yes',
value: RESPONSE.CREATE_REPORT,
},
];
const onSubmit = result => {
UIViewportDialogService.hide();
resolve(result);
};
UIViewportDialogService.show({
viewportIndex,
type: 'warning',
message,
actions,
onSubmit,
onOutsideClick: () => {
UIViewportDialogService.hide();
resolve(RESPONSE.CANCEL);
},
});
});
}
export default promptUser;

View File

@ -12,8 +12,19 @@ const OHIFCornerstoneViewport = props => {
); );
}; };
function getViewportModule({ commandsManager }) { function getViewportModule({ servicesManager }) {
return [{ name: 'cornerstone-tracked', component: OHIFCornerstoneViewport }]; const ExtendedOHIFCornerstoneSRViewport = props => {
const { ToolBarService } = servicesManager.services;
return (
<OHIFCornerstoneViewport
ToolBarService={ToolBarService}
{...props}
/>
);
};
return [{ name: 'cornerstone-tracked', component: ExtendedOHIFCornerstoneSRViewport }];
} }
export default getViewportModule; export default getViewportModule;

View File

@ -24,7 +24,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) {
measurementChangeTimestamp, measurementChangeTimestamp,
200 200
); );
const { MeasurementService } = servicesManager.services; const { MeasurementService, DisplaySetService } = servicesManager.services;
const [ const [
trackedMeasurements, trackedMeasurements,
sendTrackedMeasurementsEvent, sendTrackedMeasurementsEvent,
@ -105,7 +105,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) {
const activeMeasurementItem = 0; const activeMeasurementItem = 0;
const onExportClick = () => { const exportReport = () => {
const measurements = MeasurementService.getMeasurements(); const measurements = MeasurementService.getMeasurements();
const trackedMeasurements = measurements.filter( const trackedMeasurements = measurements.filter(
m => m =>
@ -117,7 +117,7 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) {
DICOMSR.downloadReport(trackedMeasurements, dataSource); DICOMSR.downloadReport(trackedMeasurements, dataSource);
}; };
const onCreateReportClick = () => { const createReport = () => {
const measurements = MeasurementService.getMeasurements(); const measurements = MeasurementService.getMeasurements();
const trackedMeasurements = measurements.filter( const trackedMeasurements = measurements.filter(
m => m =>
@ -125,13 +125,18 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) {
trackedSeries.includes(m.referenceSeriesUID) trackedSeries.includes(m.referenceSeriesUID)
); );
const dataSources = extensionManager.getDataSources(); const dataSources = extensionManager.getDataSources();
// TODO -> Eventually deal with multiple dataSources. // TODO -> Eventually deal with multiple dataSources.
// Would need some way of saying which one is the "push" dataSource // Would need some way of saying which one is the "push" dataSource
const dataSource = dataSources[0]; const dataSource = dataSources[0];
DICOMSR.storeMeasurements(trackedMeasurements, dataSource); DICOMSR.storeMeasurements(
trackedMeasurements,
dataSource,
naturalizedReport => {
DisplaySetService.makeDisplaySets([naturalizedReport]);
}
);
}; };
return ( return (
@ -154,8 +159,8 @@ function PanelMeasurementTableTracking({ servicesManager, extensionManager }) {
</div> </div>
<div className="flex justify-center p-4"> <div className="flex justify-center p-4">
<ActionButtons <ActionButtons
onExportClick={onExportClick} onExportClick={exportReport}
onCreateReportClick={onCreateReportClick} onCreateReportClick={createReport}
/> />
</div> </div>
</> </>

View File

@ -1,8 +1,11 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { utils } from '@ohif/core';
import { StudyBrowser, useImageViewer, useViewportGrid } from '@ohif/ui'; import { StudyBrowser, useImageViewer, useViewportGrid } from '@ohif/ui';
import { useTrackedMeasurements } from '../../getContextModule'; import { useTrackedMeasurements } from '../../getContextModule';
const { formatDate } = utils;
/** /**
* *
* @param {*} param0 * @param {*} param0
@ -68,7 +71,7 @@ function PanelStudyBrowserTracking({
const actuallyMappedStudies = mappedStudies.map(qidoStudy => { const actuallyMappedStudies = mappedStudies.map(qidoStudy => {
return { return {
studyInstanceUid: qidoStudy.StudyInstanceUID, studyInstanceUid: qidoStudy.StudyInstanceUID,
date: qidoStudy.StudyDate, date: formatDate(qidoStudy.StudyDate),
description: qidoStudy.StudyDescription, description: qidoStudy.StudyDescription,
modalities: qidoStudy.ModalitiesInStudy, modalities: qidoStudy.ModalitiesInStudy,
numInstances: qidoStudy.NumInstances, numInstances: qidoStudy.NumInstances,
@ -198,10 +201,10 @@ function PanelStudyBrowserTracking({
); );
const updatedExpandedStudyInstanceUIDs = shouldCollapseStudy const updatedExpandedStudyInstanceUIDs = shouldCollapseStudy
? [ ? [
...expandedStudyInstanceUIDs.filter( ...expandedStudyInstanceUIDs.filter(
stdyUid => stdyUid !== StudyInstanceUID stdyUid => stdyUid !== StudyInstanceUID
), ),
] ]
: [...expandedStudyInstanceUIDs, StudyInstanceUID]; : [...expandedStudyInstanceUIDs, StudyInstanceUID];
setExpandedStudyInstanceUIDs(updatedExpandedStudyInstanceUIDs); setExpandedStudyInstanceUIDs(updatedExpandedStudyInstanceUIDs);
@ -288,8 +291,11 @@ function _mapDisplaySets(
const firstViewportIndexWithMatchingDisplaySetUid = viewports.findIndex( const firstViewportIndexWithMatchingDisplaySetUid = viewports.findIndex(
vp => vp.displaySetInstanceUID === ds.displaySetInstanceUID vp => vp.displaySetInstanceUID === ds.displaySetInstanceUID
); );
const viewportIdentificator = const viewportIdentificator =
_viewportLabels[firstViewportIndexWithMatchingDisplaySetUid] || ''; viewports.length > 1
? _viewportLabels[firstViewportIndexWithMatchingDisplaySetUid]
: '';
const array = const array =
componentType === 'thumbnailTracked' componentType === 'thumbnailTracked'

View File

@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import cornerstone from 'cornerstone-core'; import cornerstone from 'cornerstone-core';
import cornerstoneTools from 'cornerstone-tools'; import cornerstoneTools from 'cornerstone-tools';
import CornerstoneViewport from 'react-cornerstone-viewport'; import CornerstoneViewport from 'react-cornerstone-viewport';
import OHIF, { DicomMetadataStore } from '@ohif/core'; import OHIF, { DicomMetadataStore, utils } from '@ohif/core';
import { import {
Notification, Notification,
ViewportActionBar, ViewportActionBar,
@ -12,6 +12,10 @@ import {
} from '@ohif/ui'; } from '@ohif/ui';
import { useTrackedMeasurements } from './../getContextModule'; import { useTrackedMeasurements } from './../getContextModule';
import ViewportOverlay from './ViewportOverlay';
const { formatDate } = utils;
// TODO -> Get this list from the list of tracked measurements. // TODO -> Get this list from the list of tracked measurements.
// TODO -> We can now get a list of tool names from the measurement service. // TODO -> We can now get a list of tool names from the measurement service.
// Use the toolnames to check which tools we have instead, using the // Use the toolnames to check which tools we have instead, using the
@ -40,6 +44,7 @@ function TrackedCornerstoneViewport({
dataSource, dataSource,
displaySet, displaySet,
viewportIndex, viewportIndex,
ToolBarService,
}) { }) {
const [trackedMeasurements] = useTrackedMeasurements(); const [trackedMeasurements] = useTrackedMeasurements();
const [{ activeViewportIndex, viewports }] = useViewportGrid(); const [{ activeViewportIndex, viewports }] = useViewportGrid();
@ -234,16 +239,21 @@ function TrackedCornerstoneViewport({
setIsTracked(!isTracked); setIsTracked(!isTracked);
} }
const label =
viewports.length > 1
? _viewportLabels[firstViewportIndexWithMatchingDisplaySetUid]
: '';
return ( return (
<> <>
<ViewportActionBar <ViewportActionBar
onSeriesChange={direction => alert(`Series ${direction}`)} onSeriesChange={direction => alert(`Series ${direction}`)}
showNavArrows={viewportIndex === activeViewportIndex} showNavArrows={viewportIndex === activeViewportIndex}
studyData={{ studyData={{
label: _viewportLabels[firstViewportIndexWithMatchingDisplaySetUid], label,
isTracked: trackedSeries.includes(SeriesInstanceUID), isTracked: trackedSeries.includes(SeriesInstanceUID),
isLocked: false, isLocked: false,
studyDate: SeriesDate, // TODO: This is series date. Is that ok? studyDate: formatDate(SeriesDate), // TODO: This is series date. Is that ok?
currentSeries: SeriesNumber, currentSeries: SeriesNumber,
seriesDescription: SeriesDescription, seriesDescription: SeriesDescription,
modality: Modality, modality: Modality,
@ -254,7 +264,7 @@ function TrackedCornerstoneViewport({
patientSex: PatientSex || '', patientSex: PatientSex || '',
patientAge: PatientAge || '', patientAge: PatientAge || '',
MRN: PatientID || '', MRN: PatientID || '',
thickness: `${SliceThickness}mm`, thickness: SliceThickness ? `${SliceThickness.toFixed(2)}mm` : '',
spacing: spacing:
PixelSpacing && PixelSpacing.length PixelSpacing && PixelSpacing.length
? `${PixelSpacing[0].toFixed(2)}mm x ${PixelSpacing[1].toFixed( ? `${PixelSpacing[0].toFixed(2)}mm x ${PixelSpacing[1].toFixed(
@ -277,7 +287,15 @@ function TrackedCornerstoneViewport({
isStackPrefetchEnabled={true} // todo isStackPrefetchEnabled={true} // todo
isPlaying={false} isPlaying={false}
frameRate={24} frameRate={24}
isOverlayVisible={false} isOverlayVisible={true}
viewportOverlayComponent={props => {
return (
<ViewportOverlay
{...props}
activeTools={ToolBarService.getActiveTools()}
/>
);
}}
/> />
<div className="absolute w-full"> <div className="absolute w-full">
{viewportDialogState.viewportIndex === viewportIndex && ( {viewportDialogState.viewportIndex === viewportIndex && (
@ -286,6 +304,7 @@ function TrackedCornerstoneViewport({
type={viewportDialogState.type} type={viewportDialogState.type}
actions={viewportDialogState.actions} actions={viewportDialogState.actions}
onSubmit={viewportDialogState.onSubmit} onSubmit={viewportDialogState.onSubmit}
onOutsideClick={viewportDialogState.onOutsideClick}
/> />
)} )}
</div> </div>

View File

@ -0,0 +1,81 @@
import React from 'react';
import PropTypes from 'prop-types';
import cornerstone from 'cornerstone-core';
import classnames from 'classnames';
const ViewportOverlay = ({
imageId,
scale,
windowWidth,
windowCenter,
imageIndex,
stackSize,
activeTools
}) => {
const topLeft = 'top-viewport left-viewport';
const topRight = 'top-viewport right-viewport-scrollbar';
const bottomRight = 'bottom-viewport right-viewport-scrollbar';
const bottomLeft = 'bottom-viewport left-viewport';
const overlay = 'absolute pointer-events-none';
const isZoomActive = activeTools.includes('Zoom');
const isWwwcActive = activeTools.includes('Wwwc');
if (!imageId) {
return null;
}
const generalImageModule = cornerstone.metaData.get('generalImageModule', imageId) || {};
const { instanceNumber } = generalImageModule;
return (
<div className="text-primary-light">
<div className={classnames(overlay, topLeft)}>
{isZoomActive && (
<div className="flex flex-row">
<span className="mr-1">Zoom:</span>
<span className="font-thin">{scale.toFixed(2)}x</span>
</div>
)}
{isWwwcActive && (
<div className="flex flex-row">
<span className="mr-1">W:</span>
<span className="font-thin ml-1 mr-2">{windowWidth.toFixed(0)}</span>
<span className="mr-1">L:</span>
<span className="font-thin ml-1">{windowCenter.toFixed(0)}</span>
</div>
)}
</div>
<div className={classnames(overlay, topRight)}>
{stackSize > 1 && (
<div className="flex flex-row">
<span className="mr-1">I:</span>
<span className="font-thin">
{`${instanceNumber}/${stackSize}`}
</span>
</div>
)}
</div>
<div className={classnames(overlay, bottomRight)}>
</div>
<div className={classnames(overlay, bottomLeft)}>
</div>
</div>
);
};
ViewportOverlay.propTypes = {
scale: PropTypes.number.isRequired,
windowWidth: PropTypes.number.isRequired,
windowCenter: PropTypes.number.isRequired,
imageId: PropTypes.string.isRequired,
imageIndex: PropTypes.number.isRequired,
stackSize: PropTypes.number.isRequired,
activeTools: PropTypes.arrayOf(PropTypes.string)
};
ViewportOverlay.defaultProps = {
activeTools: []
};
export default ViewportOverlay;

View File

@ -1,4 +1,5 @@
import toolbarButtons from './toolbarButtons.js'; import toolbarButtons from './toolbarButtons.js';
import { hotkeys } from '@ohif/core';
export default function mode({ modeConfiguration }) { export default function mode({ modeConfiguration }) {
return { return {
@ -68,6 +69,9 @@ export default function mode({ modeConfiguration }) {
], ],
extensions: ['org.ohif.default', 'org.ohif.cornerstone'], extensions: ['org.ohif.default', 'org.ohif.cornerstone'],
sopClassHandlers: ['org.ohif.default.sopClassHandlerModule.stack'], sopClassHandlers: ['org.ohif.default.sopClassHandlerModule.stack'],
hotkeys: [
...hotkeys.defaults.hotkeyBindings
]
}; };
} }

View File

@ -1,4 +1,5 @@
import toolbarButtons from './toolbarButtons.js'; import toolbarButtons from './toolbarButtons.js';
import { hotkeys } from '@ohif/core';
const ohif = { const ohif = {
layout: 'org.ohif.default.layoutTemplateModule.viewerLayout', layout: 'org.ohif.default.layoutTemplateModule.viewerLayout',
@ -94,6 +95,9 @@ export default function mode({ modeConfiguration }) {
'org.ohif.dicom-sr', 'org.ohif.dicom-sr',
], ],
sopClassHandlers: [ohif.sopClassHandler, dicomsr.sopClassHandler], sopClassHandlers: [ohif.sopClassHandler, dicomsr.sopClassHandler],
hotkeys: [
...hotkeys.defaults.hotkeyBindings
]
}; };
} }

View File

@ -1,8 +1,11 @@
// TODO: torn, can either bake this here; or have to create a whole new button type // TODO: torn, can either bake this here; or have to create a whole new button type
// Only ways that you can pass in a custom React component for render :l // Only ways that you can pass in a custom React component for render :l
import { ExpandableToolbarButton, ListMenu } from '@ohif/ui';
import React from 'react'; import React from 'react';
import classnames from 'classnames'; import classnames from 'classnames';
import { ExpandableToolbarButton, ListMenu } from '@ohif/ui';
import { defaults } from '@ohif/core';
const { windowLevelPresets } = defaults;
export default [ export default [
// Divider // Divider
@ -39,36 +42,36 @@ export default [
commandName: 'setToolActive', commandName: 'setToolActive',
commandOptions: { toolName: 'Wwwc' }, commandOptions: { toolName: 'Wwwc' },
commands: { commands: {
'windowLevelPreset1': { 1: {
commandName: 'windowLevelPreset1', commandName: 'setWindowLevel',
commandOptions: {}, commandOptions: windowLevelPresets[1],
}, },
'windowLevelPreset2': { 2: {
commandName: 'windowLevelPreset2', commandName: 'setWindowLevel',
commandOptions: {}, commandOptions: windowLevelPresets[2],
}, },
'windowLevelPreset3': { 3: {
commandName: 'windowLevelPreset3', commandName: 'setWindowLevel',
commandOptions: {}, commandOptions: windowLevelPresets[3],
}, },
'windowLevelPreset4': { 4: {
commandName: 'windowLevelPreset4', commandName: 'setWindowLevel',
commandOptions: {}, commandOptions: windowLevelPresets[4],
}, },
'windowLevelPreset5': { 5: {
commandName: 'windowLevelPreset5', commandName: 'setWindowLevel',
commandOptions: {}, commandOptions: windowLevelPresets[5],
} }
}, },
type: 'primary', type: 'primary',
content: ListMenu, content: ListMenu,
contentProps: { contentProps: {
options: [ options: [
{ value: 'windowLevelPreset1', title: 'Soft tissue', subtitle: '400 / 40' }, { value: 1, title: 'Soft tissue', subtitle: '400 / 40' },
{ value: 'windowLevelPreset2', title: 'Lung', subtitle: '1500 / -600' }, { value: 2, title: 'Lung', subtitle: '1500 / -600' },
{ value: 'windowLevelPreset3', title: 'Liver', subtitle: '150 / 90' }, { value: 3, title: 'Liver', subtitle: '150 / 90' },
{ value: 'windowLevelPreset4', title: 'Bone', subtitle: '80 / 40' }, { value: 4, title: 'Bone', subtitle: '80 / 40' },
{ value: 'windowLevelPreset5', title: 'Brain', subtitle: '2500 / 480' }, { value: 5, title: 'Brain', subtitle: '2500 / 480' },
], ],
renderer: ({ title, subtitle, isActive, index }) => ( renderer: ({ title, subtitle, isActive, index }) => (
<> <>

View File

@ -44,6 +44,7 @@
"isomorphic-base64": "^1.0.2", "isomorphic-base64": "^1.0.2",
"lodash.clonedeep": "^4.5.0", "lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1", "lodash.merge": "^4.6.1",
"moment": "^2.24.0",
"mousetrap": "^1.6.3", "mousetrap": "^1.6.3",
"validate.js": "^0.12.0" "validate.js": "^0.12.0"
} }

View File

@ -43,45 +43,6 @@ const retrieveMeasurements = server => {
return retrieveMeasurementFromSR(latestSeries, studies, serverUrl); return retrieveMeasurementFromSR(latestSeries, studies, serverUrl);
}; };
/**
* Function to be registered into MeasurementAPI to store measurements into DICOM Structured Reports
*
* @param {Object} measurementData - OHIF measurementData object
* @param {Object} filter
* @param {serverType} server
* @returns {Object} With message to be displayed on success
*/
const storeMeasurementsOld = async (measurementData, filter, server) => {
log.info('[DICOMSR] storeMeasurements');
if (!server || server.type !== 'dicomWeb') {
log.error('[DICOMSR] DicomWeb server is required!');
return Promise.reject({});
}
const serverUrl = server.wadoRoot;
const firstMeasurementKey = Object.keys(measurementData)[0];
const firstMeasurement = measurementData[firstMeasurementKey][0];
const StudyInstanceUID =
firstMeasurement && firstMeasurement.StudyInstanceUID;
try {
await stowSRFromMeasurements(measurementData, serverUrl);
if (StudyInstanceUID) {
studies.deleteStudyMetadataPromise(StudyInstanceUID);
}
return {
message: 'Measurements saved successfully',
};
} catch (error) {
log.error(
`[DICOMSR] Error while saving the measurements: ${error.message}`
);
throw new Error('Error while saving the measurements.');
}
};
/** /**
* *
* @param {object[]} measurementData An array of measurements from the measurements service * @param {object[]} measurementData An array of measurements from the measurements service
@ -119,7 +80,7 @@ const generateReport = measurementData => {
* that you wish to serialize. * that you wish to serialize.
* @param {object} dataSource The dataSource that you wish to use to persist the data. * @param {object} dataSource The dataSource that you wish to use to persist the data.
*/ */
const storeMeasurements = async (measurementData, dataSource) => { const storeMeasurements = async (measurementData, dataSource, onSuccess) => {
// TODO -> Eventually use the measurements directly and not the dcmjs adapter, // TODO -> Eventually use the measurements directly and not the dcmjs adapter,
// But it is good enough for now whilst we only have cornerstone as a datasource. // But it is good enough for now whilst we only have cornerstone as a datasource.
log.info('[DICOMSR] storeMeasurements'); log.info('[DICOMSR] storeMeasurements');
@ -136,7 +97,11 @@ const storeMeasurements = async (measurementData, dataSource) => {
await dataSource.store.dicom(naturalizedReport); await dataSource.store.dicom(naturalizedReport);
if (StudyInstanceUID) { if (StudyInstanceUID) {
studies.deleteStudyMetadataPromise(StudyInstanceUID); dataSource.deleteStudyMetadataPromise(StudyInstanceUID);
}
if (onSuccess) {
onSuccess(naturalizedReport);
} }
return { return {

View File

@ -17,6 +17,7 @@ function create({
retrieve, retrieve,
store, store,
retrieveSeriesMetadata, retrieveSeriesMetadata,
deleteStudyMetadataPromise,
getImageIdsForDisplaySet, getImageIdsForDisplaySet,
}) { }) {
const defaultQuery = { const defaultQuery = {
@ -59,6 +60,7 @@ function create({
store: store || defaultStore, store: store || defaultStore,
getImageIdsForDisplaySet, getImageIdsForDisplaySet,
retrieveSeriesMetadata, retrieveSeriesMetadata,
deleteStudyMetadataPromise,
}; };
} }

View File

@ -1,3 +1,4 @@
import objectHash from 'object-hash';
import hotkeys from './../utils/hotkeys'; import hotkeys from './../utils/hotkeys';
import log from './../log.js'; import log from './../log.js';
@ -6,6 +7,7 @@ import log from './../log.js';
* *
* @typedef {Object} HotkeyDefinition * @typedef {Object} HotkeyDefinition
* @property {String} commandName - Command to call * @property {String} commandName - Command to call
* @property {Object} commandOptions - Command options
* @property {String} label - Display name for hotkey * @property {String} label - Display name for hotkey
* @property {String[]} keys - Keys to bind; Follows Mousetrap.js binding syntax * @property {String[]} keys - Keys to bind; Follows Mousetrap.js binding syntax
*/ */
@ -18,7 +20,7 @@ export class HotkeysManager {
if (!commandsManager) { if (!commandsManager) {
log.warn( log.warn(
'HotkeysManager instantiated without a commandsManager. Hotkeys will be unable to find and run commands.' '[hotkeys] HotkeysManager instantiated without a commandsManager. Hotkeys will be unable to find and run commands.'
); );
} }
@ -141,28 +143,30 @@ export class HotkeysManager {
* When a hotkey combination is triggered, the command name and active contexts * When a hotkey combination is triggered, the command name and active contexts
* are used to locate the correct command to call. * are used to locate the correct command to call.
* *
* @param {HotkeyDefinition} commandName * @param {HotkeyDefinition} command
* @param {String} extension * @param {String} extension
* @returns {undefined} * @returns {undefined}
*/ */
registerHotkeys({ commandName, keys, label } = {}, extension) { registerHotkeys({ commandName, commandOptions = {}, keys, label } = {}, extension) {
if (!commandName) { if (!commandName) {
log.warn(`No command was defined for hotkey "${keys}"`); log.warn(`[hotkeys] No command was defined for hotkey "${keys}"`);
return; return;
} }
const previouslyRegisteredDefinition = this.hotkeyDefinitions[commandName]; const commandHash = objectHash({ commandName, commandOptions });
const options = Object.keys(commandOptions).length ? JSON.stringify(commandOptions) : 'no';
const previouslyRegisteredDefinition = this.hotkeyDefinitions[commandHash];
if (previouslyRegisteredDefinition) { if (previouslyRegisteredDefinition) {
const previouslyRegisteredKeys = previouslyRegisteredDefinition.keys; const previouslyRegisteredKeys = previouslyRegisteredDefinition.keys;
this._unbindHotkeys(commandName, previouslyRegisteredKeys); this._unbindHotkeys(commandName, previouslyRegisteredKeys);
log.info(`Unbinding ${commandName} from ${previouslyRegisteredKeys}`); log.info(`[hotkeys] Unbinding ${commandName} with ${options} options from ${previouslyRegisteredKeys}`);
} }
// Set definition & bind // Set definition & bind
this.hotkeyDefinitions[commandName] = { keys, label }; this.hotkeyDefinitions[commandHash] = { keys, label };
this._bindHotkeys(commandName, keys); this._bindHotkeys(commandName, commandOptions, keys);
log.info(`Binding ${commandName} to ${keys}`); log.info(`[hotkeys] Binding ${commandName} with ${options} options to ${keys}`);
} }
/** /**
@ -191,7 +195,7 @@ export class HotkeysManager {
* @param {string[]} keys - One or more key combinations that should trigger command * @param {string[]} keys - One or more key combinations that should trigger command
* @returns {undefined} * @returns {undefined}
*/ */
_bindHotkeys(commandName, keys) { _bindHotkeys(commandName, commandOptions = {}, keys) {
const isKeyDefined = keys === '' || keys === undefined; const isKeyDefined = keys === '' || keys === undefined;
if (isKeyDefined) { if (isKeyDefined) {
return; return;
@ -203,7 +207,7 @@ export class HotkeysManager {
hotkeys.bind(combinedKeys, evt => { hotkeys.bind(combinedKeys, evt => {
evt.preventDefault(); evt.preventDefault();
evt.stopPropagation(); evt.stopPropagation();
this._commandsManager.runCommand(commandName, { evt }); this._commandsManager.runCommand(commandName, { evt, ...commandOptions });
}); });
} }

View File

@ -0,0 +1,103 @@
import windowLevelPresets from "./windowLevelPresets";
/*
* Supported Keys: https://craig.is/killing/mice
*/
export default [
/** Global */
{
commandName: 'incrementActiveViewport',
label: 'Next Viewport',
keys: ['right'],
},
{
commandName: 'decrementActiveViewport',
label: 'Previous Viewport',
keys: ['left'],
},
/** Viewport */
{ commandName: 'rotateViewportCW', label: 'Rotate Right', keys: ['r'] },
{ commandName: 'rotateViewportCCW', label: 'Rotate Left', keys: ['l'] },
{ commandName: 'invertViewport', label: 'Invert', keys: ['i'] },
{
commandName: 'flipViewportVertical',
label: 'Flip Horizontally',
keys: ['h'],
},
{
commandName: 'flipViewportHorizontal',
label: 'Flip Vertically',
keys: ['v'],
},
{ commandName: 'scaleUpViewport', label: 'Zoom In', keys: ['+'] },
{ commandName: 'scaleDownViewport', label: 'Zoom Out', keys: ['-'] },
{ commandName: 'fitViewportToWindow', label: 'Zoom to Fit', keys: ['='] },
{ commandName: 'resetViewport', label: 'Reset', keys: ['space'] },
{ commandName: 'nextImage', label: 'Next Image', keys: ['down'] },
{ commandName: 'previousImage', label: 'Previous Image', keys: ['up'] },
{
commandName: 'previousViewportDisplaySet',
label: 'Previous Series',
keys: ['pagedown'],
},
{
commandName: 'nextViewportDisplaySet',
label: 'Next Series',
keys: ['pageup'],
},
/** Window level presets */
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[1],
label: 'W/L Preset 1',
keys: ['1'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[2],
label: 'W/L Preset 2',
keys: ['2'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[3],
label: 'W/L Preset 3',
keys: ['3'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[4],
label: 'W/L Preset 4',
keys: ['4'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[5],
label: 'W/L Preset 5',
keys: ['5'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[6],
label: 'W/L Preset 6',
keys: ['6'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[7],
label: 'W/L Preset 7',
keys: ['7'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[8],
label: 'W/L Preset 8',
keys: ['8'],
},
{
commandName: 'setWindowLevel',
commandOptions: windowLevelPresets[9],
label: 'W/L Preset 9',
keys: ['9'],
},
];

View File

@ -0,0 +1,4 @@
import hotkeyBindings from './hotkeyBindings';
import windowLevelPresets from './windowLevelPresets';
export { hotkeyBindings, windowLevelPresets };
export default { hotkeyBindings, windowLevelPresets };

View File

@ -0,0 +1,12 @@
export default {
1: { description: 'Soft tissue', window: '400', level: '40' },
2: { description: 'Lung', window: '1500', level: '-600' },
3: { description: 'Liver', window: '150', level: '90' },
4: { description: 'Bone', window: '2500', level: '480' },
5: { description: 'Brain', window: '80', level: '40' },
6: { description: 'Trest', window: '1', level: '1' },
7: { description: '', window: '', level: '' },
8: { description: '', window: '', level: '' },
9: { description: '', window: '', level: '' },
10: { description: '', window: '', level: '' },
};

View File

@ -20,7 +20,8 @@ import studies from './studies/';
import ui from './ui'; import ui from './ui';
import user from './user.js'; import user from './user.js';
import { ViewModelProvider, useViewModel } from './ViewModelContext'; import { ViewModelProvider, useViewModel } from './ViewModelContext';
import utils, { hotkeys } from './utils/'; import utils from './utils/';
import defaults from './defaults';
import { import {
UIDialogService, UIDialogService,
@ -37,6 +38,11 @@ import {
import IWebApiDataSource from './DataSources/IWebApiDataSource'; import IWebApiDataSource from './DataSources/IWebApiDataSource';
const hotkeys = {
...utils.hotkeys,
defaults: { hotkeyBindings: defaults.hotkeyBindings }
};
const OHIF = { const OHIF = {
MODULE_TYPES, MODULE_TYPES,
// //
@ -45,6 +51,7 @@ const OHIF = {
HotkeysManager, HotkeysManager,
ServicesManager, ServicesManager,
// //
defaults,
utils, utils,
hotkeys, hotkeys,
studies, studies,
@ -88,6 +95,7 @@ export {
HotkeysManager, HotkeysManager,
ServicesManager, ServicesManager,
// //
defaults,
utils, utils,
hotkeys, hotkeys,
studies, studies,

View File

@ -15,6 +15,7 @@ describe('Top level exports', () => {
'UIDialogService', 'UIDialogService',
'MeasurementService', 'MeasurementService',
// //
'defaults',
'utils', 'utils',
'hotkeys', 'hotkeys',
'studies', 'studies',

View File

@ -1,16 +1,7 @@
import { windowLevelPresets } from '../../defaults';
const defaultState = { const defaultState = {
windowLevelData: { windowLevelData: windowLevelPresets,
1: { description: 'Soft tissue', window: '550', level: '40' },
2: { description: 'Lung', window: '150', level: '-600' },
3: { description: 'Liver', window: '150', level: '90' },
4: { description: 'Bone', window: '2500', level: '480' },
5: { description: 'Brain', window: '80', level: '40' },
6: { description: 'Trest', window: '1', level: '1' },
7: { description: '', window: '', level: '' },
8: { description: '', window: '', level: '' },
9: { description: '', window: '', level: '' },
10: { description: '', window: '', level: '' },
},
generalPreferences: { generalPreferences: {
// language: 'en-US' // language: 'en-US'
}, },

View File

@ -72,16 +72,16 @@ const BaseImplementation = {
study = _model.studies[_model.studies.length - 1]; study = _model.studies[_model.studies.length - 1];
} }
// TODO: Worth identifying why this is being called many times with series study.addSeries(instances);
// that are already "added"?
const didAddSeries = study.addSeries(instances);
if (didAddSeries) { // Broadcast an event even if we used cached data.
this._broadcastEvent(EVENTS.INSTANCES_ADDED, { // This is because the mode needs to listen to instances that are added to build up its active displaySets.
StudyInstanceUID, // It will see there are cached displaySets and end early if this Series has already been fired in this
SeriesInstanceUID, // Mode session for some reason.
}); this._broadcastEvent(EVENTS.INSTANCES_ADDED, {
} StudyInstanceUID,
SeriesInstanceUID,
});
}, },
addStudy(study) { addStudy(study) {
const { StudyInstanceUID } = study; const { StudyInstanceUID } = study;

View File

@ -27,6 +27,15 @@ export default class ToolBarService {
return this.buttons; return this.buttons;
} }
getActiveTools() {
return Object.keys(this.buttons).filter(key => {
const button = this.buttons[key];
if (button && button.props && button.props.isActive) {
return button;
}
});
}
setButtons(buttons) { setButtons(buttons) {
this.buttons = buttons; this.buttons = buttons;
this._broadcastChange(this.EVENTS.TOOL_BAR_MODIFIED, {}); this._broadcastChange(this.EVENTS.TOOL_BAR_MODIFIED, {});

View File

@ -26,13 +26,21 @@ const serviceImplementation = {
* *
* @param {ViewportDialogProps} props { content, contentProps, viewportIndex } * @param {ViewportDialogProps} props { content, contentProps, viewportIndex }
*/ */
function _show({ viewportIndex, type, message, actions, onSubmit }) { function _show({
viewportIndex,
type,
message,
actions,
onSubmit,
onOutsideClick,
}) {
return serviceImplementation._show({ return serviceImplementation._show({
viewportIndex, viewportIndex,
type, type,
message, message,
actions, actions,
onSubmit, onSubmit,
onOutsideClick,
}); });
} }

View File

@ -0,0 +1,12 @@
import moment from 'moment';
/**
* Format date
*
* @param {string} date Date to be formatted
* @param {string} format Desired date format
* @returns {string} Formatted date
*/
export default (date, format = 'DD-MMM-YYYY') => {
return moment(date).format(format);
};

View File

@ -15,6 +15,7 @@ import makeCancelable from './makeCancelable';
import hotkeys from './hotkeys'; import hotkeys from './hotkeys';
import Queue from './Queue'; import Queue from './Queue';
import isDicomUid from './isDicomUid'; import isDicomUid from './isDicomUid';
import formatDate from './formatDate';
import formatPN from './formatPN'; import formatPN from './formatPN';
import resolveObjectPath from './resolveObjectPath'; import resolveObjectPath from './resolveObjectPath';
import * as hierarchicalListUtils from './hierarchicalListUtils'; import * as hierarchicalListUtils from './hierarchicalListUtils';
@ -27,6 +28,7 @@ const utils = {
addServers, addServers,
sortBy, sortBy,
writeScript, writeScript,
formatDate,
formatPN, formatPN,
b64toBlob, b64toBlob,
StackManager, StackManager,
@ -50,6 +52,7 @@ export {
absoluteUrl, absoluteUrl,
addServers, addServers,
sortBy, sortBy,
formatDate,
writeScript, writeScript,
b64toBlob, b64toBlob,
StackManager, StackManager,

View File

@ -21,13 +21,21 @@ const InputLabelWrapper = ({
className, className,
children, children,
}) => { }) => {
const onClickHandler = e => {
if (!isSortable) {
return;
}
onLabelClick(e);
};
return ( return (
<label className={classnames(baseLabelClassName, className)}> <label className={classnames(baseLabelClassName, className)}>
<span <span
role="button" role="button"
className={spanClassName} className={spanClassName}
onClick={onLabelClick} onClick={onClickHandler}
onKeyDown={onLabelClick} onKeyDown={onClickHandler}
tabIndex="0" tabIndex="0"
> >
{label} {label}

View File

@ -1,16 +1,35 @@
import React from 'react'; import React, { useEffect, useRef } from 'react';
import classnames from 'classnames'; import classnames from 'classnames';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Button, Icon } from '@ohif/ui'; import { Button, Icon } from '@ohif/ui';
const Notification = ({ type, message, actions, onSubmit }) => { const Notification = ({ type, message, actions, onSubmit, onOutsideClick }) => {
const notificationRef = useRef(null);
useEffect(() => {
const notificationElement = notificationRef.current;
const handleClick = function(event) {
const isClickInside = notificationElement.contains(event.target);
if (!isClickInside) {
onOutsideClick();
}
};
document.addEventListener('mousedown', handleClick);
return () => {
document.removeEventListener('mousedown', handleClick);
};
}, [onOutsideClick]);
const iconsByType = { const iconsByType = {
error: { error: {
icon: 'info', icon: 'info',
color: 'text-red-700', color: 'text-red-700',
}, },
warning: { warning: {
icon: 'info', icon: 'notificationwarning-diamond',
color: 'text-yellow-500', color: 'text-yellow-500',
}, },
info: { info: {
@ -35,7 +54,10 @@ const Notification = ({ type, message, actions, onSubmit }) => {
const { icon, color } = getIconData(); const { icon, color } = getIconData();
return ( return (
<div className="flex flex-col p-2 mx-2 mt-2 rounded bg-common-bright"> <div
ref={notificationRef}
className="flex flex-col p-2 mx-2 mt-2 rounded bg-common-bright"
>
<div className="flex flex-grow"> <div className="flex flex-grow">
<Icon name={icon} className={classnames('w-5', color)} /> <Icon name={icon} className={classnames('w-5', color)} />
<span className="ml-2 text-base text-black">{message}</span> <span className="ml-2 text-base text-black">{message}</span>
@ -65,6 +87,7 @@ const Notification = ({ type, message, actions, onSubmit }) => {
Notification.defaultProps = { Notification.defaultProps = {
type: 'info', type: 'info',
onOutsideClick: () => {},
}; };
Notification.propTypes = { Notification.propTypes = {
@ -78,6 +101,8 @@ Notification.propTypes = {
}) })
).isRequired, ).isRequired,
onSubmit: PropTypes.func.isRequired, onSubmit: PropTypes.func.isRequired,
/** Can be used as a callback to dismiss the notification for clicks that occur outside of it */
onOutsideClick: PropTypes.func,
}; };
export default Notification; export default Notification;

View File

@ -250,7 +250,7 @@ function PatientInfo({
Thickness Thickness
</span> </span>
<span className={classnames(classes.infoText)}> <span className={classnames(classes.infoText)}>
{thickness} {thickness ? thickness : 'N/A'}
</span> </span>
</div> </div>
<div className={classnames(classes.row)}> <div className={classnames(classes.row)}>

View File

@ -14,6 +14,7 @@ function ViewportPane({
onInteraction, onInteraction,
acceptDropsFor, acceptDropsFor,
}) { }) {
let dropElement = null;
const [{ isHovered, isHighlighted }, drop] = useDrop({ const [{ isHovered, isHighlighted }, drop] = useDrop({
accept: acceptDropsFor, accept: acceptDropsFor,
// TODO: pass in as prop? // TODO: pass in as prop?
@ -22,7 +23,7 @@ function ViewportPane({
const isOver = monitor.isOver(); const isOver = monitor.isOver();
if (canDrop && isOver && onDrop) { if (canDrop && isOver && onDrop) {
onInteraction(); onInteractionHandler();
onDrop(droppedItem); onDrop(droppedItem);
} }
}, },
@ -33,16 +34,32 @@ function ViewportPane({
}), }),
}); });
const focus = () => {
if (dropElement) {
dropElement.focus();
}
};
const onInteractionHandler = () => {
onInteraction();
focus();
};
const refHandler = element => {
drop(element);
dropElement = element;
};
return ( return (
<div <div
ref={drop} ref={refHandler}
// onInteraction... // onInteractionHandler...
// https://reactjs.org/docs/events.html#mouse-events // https://reactjs.org/docs/events.html#mouse-events
// https://stackoverflow.com/questions/8378243/catch-scrolling-event-on-overflowhidden-element // https://stackoverflow.com/questions/8378243/catch-scrolling-event-on-overflowhidden-element
onMouseDown={onInteraction} onMouseDown={onInteractionHandler}
onClick={onInteraction} onClick={onInteractionHandler}
onScroll={onInteraction} onScroll={onInteractionHandler}
onWheel={onInteraction} onWheel={onInteractionHandler}
className={classnames( className={classnames(
'flex flex-col', 'flex flex-col',
'rounded-lg hover:border-primary-light transition duration-300 outline-none overflow-hidden', 'rounded-lg hover:border-primary-light transition duration-300 outline-none overflow-hidden',
@ -73,7 +90,7 @@ ViewportPane.propTypes = {
onInteraction: PropTypes.func.isRequired, onInteraction: PropTypes.func.isRequired,
}; };
const noop = () => {}; const noop = () => { };
ViewportPane.defaultProps = { ViewportPane.defaultProps = {
onInteraction: noop, onInteraction: noop,

View File

@ -18,6 +18,9 @@ const DEFAULT_STATE = {
onSubmit: () => { onSubmit: () => {
console.log('btn value?'); console.log('btn value?');
}, },
onOutsideClick: () => {
console.warn('default: onOutsideClick')
},
onDismiss: () => { onDismiss: () => {
console.log('dismiss? -1'); console.log('dismiss? -1');
}, },

View File

@ -328,6 +328,8 @@ module.exports = {
'0': '0', '0': '0',
auto: 'auto', auto: 'auto',
full: '100%', full: '100%',
viewport: '0.5rem',
'viewport-scrollbar': '1.3rem'
}, },
letterSpacing: { letterSpacing: {
tighter: '-0.05em', tighter: '-0.05em',

View File

@ -30,7 +30,7 @@ const Router = JSON.parse(process.env.USE_HASH_ROUTER)
? HashRouter ? HashRouter
: BrowserRouter; : BrowserRouter;
let commandsManager, extensionManager, servicesManager; let commandsManager, extensionManager, servicesManager, hotkeysManager;
function App({ config, defaultExtensions }) { function App({ config, defaultExtensions }) {
const init = appInit(config, defaultExtensions); const init = appInit(config, defaultExtensions);
@ -39,17 +39,19 @@ function App({ config, defaultExtensions }) {
commandsManager = init.commandsManager; commandsManager = init.commandsManager;
extensionManager = init.extensionManager; extensionManager = init.extensionManager;
servicesManager = init.servicesManager; servicesManager = init.servicesManager;
hotkeysManager = init.hotkeysManager;
// Set appConfig // Set appConfig
const appConfigState = init.appConfig; const appConfigState = init.appConfig;
const { routerBasename, modes, dataSources } = appConfigState; const { routerBasename, modes, dataSources } = appConfigState;
// Use config to create routes // Use config to create routes
const appRoutes = createRoutes( const appRoutes = createRoutes({
modes, modes,
dataSources, dataSources,
extensionManager, extensionManager,
servicesManager servicesManager,
); hotkeysManager
});
const { const {
UIDialogService, UIDialogService,
UIModalService, UIModalService,

View File

@ -2,7 +2,7 @@ import {
CommandsManager, CommandsManager,
ExtensionManager, ExtensionManager,
ServicesManager, ServicesManager,
// HotkeysManager, HotkeysManager,
UINotificationService, UINotificationService,
UIModalService, UIModalService,
UIDialogService, UIDialogService,
@ -31,13 +31,14 @@ function appInit(appConfigOrFunc, defaultExtensions) {
// TODO: Wire this up to Rodrigo's basic Context "ContextService" // TODO: Wire this up to Rodrigo's basic Context "ContextService"
const commandsManagerConfig = { const commandsManagerConfig = {
/** Used by commands to inject `viewports` from "redux" */ /** Used by commands to inject `viewports` from "redux" */
getAppState: () => {}, getAppState: () => { },
/** Used by commands to determine active context */ /** Used by commands to determine active context */
getActiveContexts: () => ['VIEWER', 'ACTIVE_VIEWPORT::CORNERSTONE'], getActiveContexts: () => ['VIEWER', 'ACTIVE_VIEWPORT::CORNERSTONE'],
}; };
const commandsManager = new CommandsManager(commandsManagerConfig);
const servicesManager = new ServicesManager(); const servicesManager = new ServicesManager();
// const hotkeysManager = new HotkeysManager(commandsManager, servicesManager); const commandsManager = new CommandsManager(commandsManagerConfig);
const hotkeysManager = new HotkeysManager(commandsManager, servicesManager);
const extensionManager = new ExtensionManager({ const extensionManager = new ExtensionManager({
commandsManager, commandsManager,
servicesManager, servicesManager,
@ -64,7 +65,6 @@ function appInit(appConfigOrFunc, defaultExtensions) {
appConfig.dataSources appConfig.dataSources
); );
// TODO: Init global hotkeys, or the hotkeys manager?
// TODO: We no longer use `utils.addServer` // TODO: We no longer use `utils.addServer`
// TODO: We no longer init webWorkers at app level // TODO: We no longer init webWorkers at app level
// TODO: We no longer init the user Manager // TODO: We no longer init the user Manager
@ -80,6 +80,7 @@ function appInit(appConfigOrFunc, defaultExtensions) {
commandsManager, commandsManager,
extensionManager, extensionManager,
servicesManager, servicesManager,
hotkeysManager
}; };
} }

View File

@ -115,15 +115,17 @@ function ViewerViewportGrid(props) {
viewportComponents viewportComponents
); );
const onInterationHandler = () => {
setActiveViewportIndex(viewportIndex);
};
viewportPanes[i] = ( viewportPanes[i] = (
<ViewportPane <ViewportPane
key={viewportIndex} key={viewportIndex}
className="m-1" className="m-1"
acceptDropsFor="displayset" acceptDropsFor="displayset"
onDrop={onDropHandler.bind(null, viewportIndex)} onDrop={onDropHandler.bind(null, viewportIndex)}
onInteraction={() => { onInteraction={onInterationHandler}
setActiveViewportIndex(viewportIndex);
}}
isActive={activeViewportIndex === viewportIndex} isActive={activeViewportIndex === viewportIndex}
> >
<ViewportComponent <ViewportComponent

View File

@ -6,6 +6,6 @@ import { useLocation } from 'react-router-dom';
* *
* @name useQuery * @name useQuery
*/ */
export default function() { export default function () {
return new URLSearchParams(useLocation().search); return new URLSearchParams(useLocation().search);
} }

View File

@ -15,6 +15,7 @@ export default function ModeRoute({
dataSourceName, dataSourceName,
extensionManager, extensionManager,
servicesManager, servicesManager,
hotkeysManager
}) { }) {
// Parse route params/querystring // Parse route params/querystring
const query = useQuery(); const query = useQuery();
@ -26,7 +27,7 @@ export default function ModeRoute({
? StudyInstanceUIDs ? StudyInstanceUIDs
: [StudyInstanceUIDs]; : [StudyInstanceUIDs];
const { extensions, sopClassHandlers } = mode; const { extensions, sopClassHandlers, hotkeys } = mode;
if (dataSourceName === undefined) { if (dataSourceName === undefined) {
dataSourceName = extensionManager.defaultDataSourceName; dataSourceName = extensionManager.defaultDataSourceName;
@ -74,6 +75,22 @@ export default function ModeRoute({
return ViewportGrid({ ...props, dataSource }); return ViewportGrid({ ...props, dataSource });
} }
useEffect(() => {
if (!hotkeys) {
console.warn('[hotkeys] No bindings defined for hotkeys hook!');
return;
}
console.debug('[hotkeys] Setting up hotkeys...');
hotkeysManager.setDefaultHotKeys(hotkeys);
hotkeysManager.setHotkeys(hotkeys);
return () => {
console.debug('[hotkeys] Removing hotkeys...');
hotkeysManager.destroy();
};
}, []);
useEffect(() => { useEffect(() => {
route.init({ servicesManager, extensionManager }); route.init({ servicesManager, extensionManager });
}, [ }, [
@ -83,6 +100,7 @@ export default function ModeRoute({
route, route,
servicesManager, servicesManager,
extensionManager, extensionManager,
hotkeysManager
]); ]);
// This queries for series, but... What does it do with them? // This queries for series, but... What does it do with them?

View File

@ -53,7 +53,7 @@ const filtersMeta = [
name: 'instances', name: 'instances',
displayName: 'Instances', displayName: 'Instances',
inputType: 'None', inputType: 'None',
isSortable: true, isSortable: false,
gridCol: 2, gridCol: 2,
}, },
]; ];

View File

@ -22,12 +22,13 @@ import { ViewModelProvider } from '@ohif/core';
/:modeId/:modeRoute/?queryParameters=example /:modeId/:modeRoute/?queryParameters=example
*/ */
export default function buildModeRoutes( export default function buildModeRoutes({
modes, modes,
dataSources, dataSources,
extensionManager, extensionManager,
servicesManager servicesManager,
) { hotkeysManager
}) {
const routes = []; const routes = [];
// const dataSources = Object.keys(extensionManager.dataSourceMap).map(a => // const dataSources = Object.keys(extensionManager.dataSourceMap).map(a =>
@ -58,6 +59,7 @@ export default function buildModeRoutes(
dataSourceName={dataSourceName} dataSourceName={dataSourceName}
extensionManager={extensionManager} extensionManager={extensionManager}
servicesManager={servicesManager} servicesManager={servicesManager}
hotkeysManager={hotkeysManager}
/> />
</ViewModelProvider> </ViewModelProvider>
); );
@ -83,6 +85,7 @@ export default function buildModeRoutes(
dataSourceName={defaultDataSourceName} dataSourceName={defaultDataSourceName}
extensionManager={extensionManager} extensionManager={extensionManager}
servicesManager={servicesManager} servicesManager={servicesManager}
hotkeysManager={hotkeysManager}
/> />
</ViewModelProvider> </ViewModelProvider>
); );

View File

@ -21,19 +21,25 @@ const bakedInRoutes = [
{ component: NotFound }, { component: NotFound },
]; ];
const createRoutes = ( const createRoutes = ({
modes, modes,
dataSources, dataSources,
extensionManager, extensionManager,
servicesManager servicesManager,
) => { hotkeysManager
const routes = }) => {
buildModeRoutes(modes, dataSources, extensionManager, servicesManager) || const routes = buildModeRoutes({
[]; modes,
dataSources,
extensionManager,
servicesManager,
hotkeysManager
}) || [];
const allRoutes = [...routes, ...bakedInRoutes]; const allRoutes = [...routes, ...bakedInRoutes];
console.log( console.log(
'Creating Routes: ', 'Creating Routes:',
modes, modes,
dataSources, dataSources,
routes, routes,