Fix bugs preventing OHIF Viewer usage

This commit is contained in:
Erik Ziegler 2016-02-17 15:54:24 +01:00
parent 1b3280c04b
commit 95ec18f279
3 changed files with 18 additions and 11 deletions

View File

@ -1,4 +1,5 @@
<template name="viewer">
{{#if Template.subscriptionsReady}}
<div id="viewer">
{{> studyBrowser }}
<div class='viewerMain'>
@ -6,4 +7,7 @@
{{ > imageViewerViewports }}
</div>
</div>
{{else}}
{{>loadingText}}
{{/if}}
</template>

View File

@ -68,7 +68,8 @@ Template.viewer.onCreated(function() {
Session.set('activeViewport', ViewerData[contentId].activeViewport || 0);
// Update the ViewerStudies collection with the loaded studies
ViewerStudies = new Meteor.Collection(null);
ViewerStudies.remove({});
this.data.studies.forEach(function(study) {
study.selected = true;
ViewerStudies.insert(study);

View File

@ -24,16 +24,18 @@ getStudyMetadata = function(studyInstanceUid, doneCallback, failCallback) {
// If no study metadata is in the cache variable, we need to retrieve it from
// the server with a call.
Meteor.call('GetStudyMetadata', studyInstanceUid, function(error, study) {
var hipaaEvent = {
eventType: "viewed",
userId: Meteor.userId(),
userName: Meteor.user().profile.fullName,
collectionName: "Study",
recordId: studyInstanceUid,
patientId: study.patientId,
patientName: study.patientName
};
HipaaLogger.logEvent(hipaaEvent);
if (Meteor.user()) {
var hipaaEvent = {
eventType: "viewed",
userId: Meteor.userId(),
userName: Meteor.user().profile.fullName,
collectionName: "Study",
recordId: studyInstanceUid,
patientId: study.patientId,
patientName: study.patientName
};
HipaaLogger.logEvent(hipaaEvent);
}
log.info('worklistStudy getStudyMetadata: ' + studyInstanceUid);