59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
import { $ } from 'meteor/jquery';
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
OHIF.measurements.syncMeasurementAndToolData = measurement => {
|
|
OHIF.log.info('syncMeasurementAndToolData');
|
|
|
|
const toolState = cornerstoneTools.globalImageIdSpecificToolStateManager.toolState;
|
|
const imageId = measurement.imageId;
|
|
const toolType = measurement.toolType;
|
|
|
|
// If no tool state exists for this imageId, create an empty object to store it
|
|
if (!toolState[imageId]) {
|
|
toolState[imageId] = {};
|
|
}
|
|
|
|
const currentToolState = toolState[imageId][toolType];
|
|
const toolData = currentToolState && currentToolState.data;
|
|
|
|
// Check if we already have toolData for this imageId and toolType
|
|
if (toolData && toolData.length) {
|
|
// If we have toolData, we should search it for any data related to the current Measurement
|
|
const toolData = toolState[imageId][toolType].data;
|
|
|
|
// Create a flag so we know if we've successfully updated the Measurement in the toolData
|
|
let alreadyExists = false;
|
|
|
|
// Loop through the toolData to search for this Measurement
|
|
toolData.forEach(tool => {
|
|
// Break the loop if this isn't the Measurement we are looking for
|
|
if (tool._id !== measurement._id) {
|
|
return;
|
|
}
|
|
|
|
// If we have found the Measurement, set the flag to True
|
|
alreadyExists = true;
|
|
|
|
// Update the toolData from the Measurement data
|
|
$.extend(tool, measurement);
|
|
return false;
|
|
});
|
|
|
|
// If we have found the Measurement we intended to update, we can stop this function here
|
|
if (alreadyExists === true) {
|
|
return;
|
|
}
|
|
} else {
|
|
// If no toolData exists for this toolType, create an empty array to hold some
|
|
toolState[imageId][toolType] = {
|
|
data: []
|
|
};
|
|
}
|
|
|
|
// If we have reached this point, it means we haven't found the Measurement we are looking for
|
|
// in the current toolData. This means we need to add it.
|
|
|
|
// Add the MeasurementData into the toolData for this imageId
|
|
toolState[imageId][toolType].data.push(measurement);
|
|
};
|