50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import { Template } from 'meteor/templating';
|
|
import { Blaze } from 'meteor/blaze';
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
const toolMap = {
|
|
bidirectional: 'targets'
|
|
};
|
|
|
|
OHIF.measurements.toggleLabelButton = options => {
|
|
const removeButtonView = () => {
|
|
if (!options.instance.buttonView) {
|
|
return;
|
|
}
|
|
|
|
Blaze.remove(options.instance.buttonView);
|
|
options.instance.buttonView = null;
|
|
};
|
|
|
|
if (options.instance.buttonView) {
|
|
removeButtonView();
|
|
}
|
|
|
|
const tool = toolMap[options.toolData.toolType];
|
|
const toolCollection = options.measurementApi[tool];
|
|
const measurement = toolCollection.findOne(options.toolData._id);
|
|
|
|
const data = {
|
|
measurement,
|
|
tool,
|
|
position: options.position,
|
|
threeColumns: true,
|
|
hideCommon: true,
|
|
toolType: options.toolData.toolType,
|
|
doneCallback(location, description) {
|
|
options.callback(options, location, description);
|
|
|
|
toolCollection.update(measurement._id, {
|
|
$set: {
|
|
location,
|
|
description
|
|
}
|
|
});
|
|
|
|
removeButtonView();
|
|
}
|
|
};
|
|
const view = Blaze.renderWithData(Template.measureFlow, data, options.element);
|
|
options.instance.buttonView = view;
|
|
};
|