LT-290 Disable Lesion Tracker tool buttons if the opened study is not associated
- Fix the bug with temp lesion when the study is not associated
This commit is contained in:
parent
7fa242d0aa
commit
5cbf08ea4f
@ -28,7 +28,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="buttonLabel">HUD</div>
|
<div class="buttonLabel">HUD</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="toolbarSectionButton pull-right rp-x-1 m-t-1 rm-r-1" data-toggle="modal" data-target="#optionsModal">
|
<div id="toggleTrial" class="toolbarSectionButton pull-right rp-x-1 m-t-1 rm-r-1">
|
||||||
<div class="svgContainer">
|
<div class="svgContainer">
|
||||||
<svg>
|
<svg>
|
||||||
<use xlink:href="/packages/ohif_viewerbase/assets/icons.svg#icon-trial-info"></use>
|
<use xlink:href="/packages/ohif_viewerbase/assets/icons.svg#icon-trial-info"></use>
|
||||||
|
|||||||
@ -145,8 +145,25 @@ Template.toolbarSection.helpers({
|
|||||||
|
|
||||||
Template.toolbarSection.events({
|
Template.toolbarSection.events({
|
||||||
'click #toggleHUD'() {
|
'click #toggleHUD'() {
|
||||||
|
const $this = $(event.currentTarget).find('#toggleHUD');
|
||||||
|
|
||||||
|
// Stop here if the tool is disabled
|
||||||
|
if ($this.hasClass('disabled')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const state = Session.get('measurementTableHudOpen');
|
const state = Session.get('measurementTableHudOpen');
|
||||||
Session.set('measurementTableHudOpen', !state);
|
Session.set('measurementTableHudOpen', !state);
|
||||||
|
},
|
||||||
|
'click #toggleTrial'() {
|
||||||
|
const $this = $(event.currentTarget).find('#toggleHUD');
|
||||||
|
|
||||||
|
// Stop here if the tool is disabled
|
||||||
|
if ($this.hasClass('disabled')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#optionsModal').modal();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -154,15 +171,15 @@ Template.toolbarSection.onRendered(function() {
|
|||||||
// Set disabled/enabled tool buttons that are set in toolManager
|
// Set disabled/enabled tool buttons that are set in toolManager
|
||||||
const states = toolManager.getToolDefaultStates();
|
const states = toolManager.getToolDefaultStates();
|
||||||
const disabledToolButtons = states.disabledToolButtons;
|
const disabledToolButtons = states.disabledToolButtons;
|
||||||
const allToolbarButtons = $('#toolbar').find('button');
|
const allToolbarButtons = $('.toolbarSection').find('.toolbarSectionButton');
|
||||||
if (disabledToolButtons && disabledToolButtons.length > 0) {
|
if (disabledToolButtons && disabledToolButtons.length > 0) {
|
||||||
for (var i = 0; i < allToolbarButtons.length; i++) {
|
for (var i = 0; i < allToolbarButtons.length; i++) {
|
||||||
const toolbarButton = allToolbarButtons[i];
|
const toolbarButton = allToolbarButtons[i];
|
||||||
$(toolbarButton).prop('disabled', false);
|
$(toolbarButton).removeClass('disabled');
|
||||||
|
|
||||||
const index = disabledToolButtons.indexOf($(toolbarButton).attr('id'));
|
const index = disabledToolButtons.indexOf($(toolbarButton).attr('id'));
|
||||||
if (index !== -1) {
|
if (index !== -1) {
|
||||||
$(toolbarButton).prop('disabled', true);
|
$(toolbarButton).addClass('disabled');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -81,6 +81,14 @@ Template.viewer.onCreated(() => {
|
|||||||
if (prior) {
|
if (prior) {
|
||||||
instance.data.measurementApi.priorTimepointId = prior.timepointId;
|
instance.data.measurementApi.priorTimepointId = prior.timepointId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (instance.data.currentTimepointId) {
|
||||||
|
// Enable Lesion Tracker Tools if the opened study is associated
|
||||||
|
OHIF.lesiontracker.toggleLesionTrackerToolsButtons(true);
|
||||||
|
} else {
|
||||||
|
// Disable Lesion Tracker Tools if the opened study is not associated
|
||||||
|
OHIF.lesiontracker.toggleLesionTrackerToolsButtons(false);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Template.viewer.helpers({
|
Template.viewer.helpers({
|
||||||
|
|||||||
@ -41,3 +41,21 @@ OHIF.lesiontracker.toggleLesionTrackerTools = () => {
|
|||||||
toolsShown = true;
|
toolsShown = true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
OHIF.lesiontracker.toggleLesionTrackerToolsButtons = (isEnabled) => {
|
||||||
|
const toolStates = previousStates || toolManager.getToolDefaultStates();
|
||||||
|
|
||||||
|
if (isEnabled) {
|
||||||
|
toolStates.disabledToolButtons = [];
|
||||||
|
} else {
|
||||||
|
toolStates.disabledToolButtons = [ 'bidirectional', 'nonTarget', 'crTool', 'unTool', 'exTool', 'toggleHUD', 'toggleTrial', 'toolbarSectionEntry' ];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reload the updated previous or default states
|
||||||
|
toolManager.setToolDefaultStates(toolStates);
|
||||||
|
|
||||||
|
// Reset the active tool if disabled
|
||||||
|
if (!isEnabled) {
|
||||||
|
toolManager.setActiveTool();
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -53,12 +53,14 @@ class MeasurementHandlers {
|
|||||||
const timepointApi = instance.data.timepointApi;
|
const timepointApi = instance.data.timepointApi;
|
||||||
if (timepointApi) {
|
if (timepointApi) {
|
||||||
const timepoint = timepointApi.study(studyInstanceUid)[0];
|
const timepoint = timepointApi.study(studyInstanceUid)[0];
|
||||||
const timepointId = timepoint.timepointId;
|
if (timepoint) {
|
||||||
measurement.timepointId = timepointId;
|
const timepointId = timepoint.timepointId;
|
||||||
measurement.measurementNumber = OHIF.measurements.MeasurementManager.getNewMeasurementNumber(timepointId, Collection, timepointApi);
|
measurement.timepointId = timepointId;
|
||||||
|
measurement.measurementNumber = OHIF.measurements.MeasurementManager.getNewMeasurementNumber(timepointId, Collection, timepointApi);
|
||||||
|
|
||||||
// TODO: Fix this
|
// TODO: Fix this
|
||||||
measurement.measurementNumberAbsolute = measurement.measurementNumber;
|
measurement.measurementNumberAbsolute = measurement.measurementNumber;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
const numCurrentMeasurementsInStudy = Collection.find({
|
const numCurrentMeasurementsInStudy = Collection.find({
|
||||||
studyInstanceUid: study.studyInstanceUid
|
studyInstanceUid: study.studyInstanceUid
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user