106 lines
3.5 KiB
JavaScript
106 lines
3.5 KiB
JavaScript
Template.hipaaRibbon.events({
|
|
'keyup #hipaaSearchFilter': function () {
|
|
Session.set("hipaaSearchFilter", $('#hipaaSearchFilter').val());
|
|
},
|
|
"change #beginDateInput": function (event, template) {
|
|
Session.set("beginDateFilter", $('#beginDateInput').val() + "T00:00:00.000Z");
|
|
},
|
|
"change #endDateInput": function (event, template) {
|
|
Session.set("endDateFilter", $('#endDateInput').val() + "T00:00:00.000Z");
|
|
},
|
|
'change #actionFilter': function(e) {
|
|
var actionType = e.currentTarget.value;
|
|
Session.set("hipaaTypeFilter", actionType);
|
|
},
|
|
'click #filterCreatedButton': function () {
|
|
Session.set("hipaaTypeFilter", 'create');
|
|
},
|
|
'click #filterModifiedButton': function () {
|
|
Session.set("hipaaTypeFilter", 'modify');
|
|
},
|
|
'click #filterViewedButton': function () {
|
|
Session.set("hipaaTypeFilter", 'viewed');
|
|
},
|
|
'click #filterAllButton': function () {
|
|
Session.set("hipaaTypeFilter", '');
|
|
},
|
|
'click #searchClear': function() {
|
|
Session.set("hipaaSearchFilter", '');
|
|
}
|
|
});
|
|
|
|
var ribbonBreakPoint = 760;
|
|
|
|
|
|
Meteor.startup(function(){
|
|
$(window).resize(function(evt) {
|
|
Session.set("ribbonWidth", $('#hipaaRibbon').width());
|
|
});
|
|
});
|
|
|
|
Template.hipaaRibbon.helpers({
|
|
getSearchFilterStyling: function () {
|
|
// spacing between inputs should be 20px each
|
|
// if the overall width of the audit log is less than N, show the fullwidth
|
|
if(Session.get('ribbonWidth') > ribbonBreakPoint){
|
|
var searchFilterWidth = Session.get('ribbonWidth') - 575;
|
|
return "margin-left: 10px; margin-right: 5px; width:" + searchFilterWidth + "px;";
|
|
}else{
|
|
var ribbonWidth = Session.get('ribbonWidth') - 40;
|
|
return "width: " + ribbonWidth + "px; margin-left: 10px; margin-right: 10px;";
|
|
}
|
|
},
|
|
getDateRangeStyling: function () {
|
|
// spacing between inputs should be 20px each
|
|
// date range inputs shouldn't be less than 170 px
|
|
// if the overall width of the audit log is less than N, dont even show them
|
|
if(Session.get('ribbonWidth') > ribbonBreakPoint){
|
|
return "visbility: visible; margin-left: 5px; margin-right: 5px; width: 170px;";
|
|
}else{
|
|
return "display: none; visibility: hidden";
|
|
}
|
|
},
|
|
getSelectStyling: function () {
|
|
// spacing between inputs should be 20px each
|
|
// select input should be the same as daterange
|
|
if(Session.get('ribbonWidth') > ribbonBreakPoint){
|
|
return "visbility: visible; margin-left: 5px; margin-right: 5px; width: 170px;";
|
|
}else{
|
|
return "display: none; visibility: hidden";
|
|
}
|
|
},
|
|
getRibbonClass: function () {
|
|
var hipaaAuditLog = Session.get('HipaaAuditLogConfig');
|
|
if (hipaaAuditLog && hipaaAuditLog.classes) {
|
|
return hipaaAuditLog.classes.ribbon;
|
|
} else {
|
|
return null;
|
|
}
|
|
},
|
|
getSelectClass: function () {
|
|
var hipaaAuditLog = Session.get('HipaaAuditLogConfig');
|
|
if (hipaaAuditLog && hipaaAuditLog.classes) {
|
|
return hipaaAuditLog.classes.select;
|
|
} else {
|
|
return null;
|
|
}
|
|
},
|
|
getInputClass: function () {
|
|
var hipaaAuditLog = Session.get('HipaaAuditLogConfig');
|
|
if (hipaaAuditLog && hipaaAuditLog.classes) {
|
|
return hipaaAuditLog.classes.input;
|
|
} else {
|
|
return null;
|
|
}
|
|
},
|
|
getHipaaSearchFilter: function () {
|
|
return Session.get('hipaaSearchFilter');
|
|
},
|
|
getBeginDate: function () {
|
|
return moment(Session.get("beginDateFilter")).format("YYYY-MM-DD");
|
|
},
|
|
getEndDate: function () {
|
|
return moment(Session.get("endDateFilter")).format("YYYY-MM-DD");
|
|
}
|
|
});
|