63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
Template.lesionTable.helpers({
|
|
timepoints: function() {
|
|
return Timepoints.find({}, {
|
|
sort: {
|
|
latestDate: 1
|
|
}
|
|
});
|
|
},
|
|
|
|
buttonGroupData() {
|
|
const instance = Template.instance();
|
|
return {
|
|
value: instance.lesionTableLayout,
|
|
options: [{
|
|
value: 'comparison',
|
|
text: 'Comparison'
|
|
}, {
|
|
value: 'key',
|
|
text: 'Key Timepoints'
|
|
}]
|
|
};
|
|
}
|
|
});
|
|
|
|
Template.lesionTable.events({
|
|
/**
|
|
* Retrieve the lesion id from the DOM data for this row
|
|
*/
|
|
/*'click table#tblLesion tbody tr': function(e, template) {
|
|
var measurementId = $(e.currentTarget).data('measurementid');
|
|
activateLesion(measurementId, template.data);
|
|
},*/
|
|
});
|
|
|
|
// Temporary until we have a real window manager with events for series/study changed
|
|
Session.setDefault('NewSeriesLoaded', false);
|
|
|
|
Template.lesionTable.onCreated(function() {
|
|
var instance = this;
|
|
|
|
instance.lesionTableLayout = new ReactiveVar();
|
|
instance.lesionTableLayout.set('comparison');
|
|
});
|
|
|
|
Template.lesionTable.onRendered(function() {
|
|
// Find the first measurement by Lesion Number
|
|
var firstLesion = Measurements.findOne({}, {
|
|
sort: {
|
|
lesionNumber: 1
|
|
}
|
|
});
|
|
|
|
// Create an object to store the ContentId inside
|
|
var templateData = {
|
|
contentId: Session.get('activeContentId')
|
|
};
|
|
|
|
// Activate the first lesion
|
|
if (firstLesion) {
|
|
activateLesion(firstLesion._id, templateData);
|
|
}
|
|
});
|