Checking if helpers are not registered before register to avoid overriding

This commit is contained in:
Eloízio Salgado 2017-01-20 10:54:22 -02:00 committed by Emanuel F. Oliveira
parent 66df591166
commit a8ee17dc71
3 changed files with 13 additions and 3 deletions

View File

@ -17,6 +17,9 @@ const formatDA = (context, format, options) => {
return dateAsMoment.format(strFormat);
};
Blaze.registerHelper('formatDA', formatDA);
// Check if global helper already exists to not override it
if (!Blaze._getGlobalHelper('formatDA')) {
Blaze.registerHelper('formatDA', formatDA);
}
export { formatDA };

View File

@ -12,6 +12,10 @@ const formatPN = context => {
/**
* A global Blaze UI helper to format a patient name for display purposes
*/
Blaze.registerHelper('formatPN', formatPN);
// Check if global helper already exists to not override it
if (!Blaze._getGlobalHelper('formatPN')) {
Blaze.registerHelper('formatPN', formatPN);
}
export { formatPN };

View File

@ -27,6 +27,9 @@ const formatTM = (context, options) => {
return dateTime.format(format);
};
Blaze.registerHelper('formatTM', formatTM);
// Check if global helper already exists to not override it
if (!Blaze._getGlobalHelper('formatTM')) {
Blaze.registerHelper('formatTM', formatTM);
}
export { formatTM };