33 lines
838 B
JavaScript
33 lines
838 B
JavaScript
import { Template } from 'meteor/templating';
|
|
import { Session } from 'meteor/session';
|
|
import { ReactiveVar } from 'meteor/reactive-var';
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
/**
|
|
* Global Blaze UI helpers to work with Blaze
|
|
*/
|
|
|
|
// Return the absolute url
|
|
Template.registerHelper('absoluteUrl', path => {
|
|
return OHIF.utils.absoluteUrl(path);
|
|
});
|
|
|
|
// Return the current template instance
|
|
Template.registerHelper('instance', () => {
|
|
return Template.instance();
|
|
});
|
|
|
|
// Return the session value for the given key
|
|
Template.registerHelper('session', key => {
|
|
return Session.get(key);
|
|
});
|
|
|
|
// Return the value for given parameter regardless if it's reactive or not
|
|
Template.registerHelper('reactive', parameter => {
|
|
if (parameter instanceof ReactiveVar) {
|
|
return parameter.get();
|
|
}
|
|
|
|
return parameter;
|
|
});
|