-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhandlebars.js
84 lines (67 loc) · 2.49 KB
/
handlebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import handlebars from 'handlebars';
import HandlebarsRuntime from 'handlebars/runtime';
import { convertMapKeysToLowerCase } from './objects';
export function defaultCategorySelectionFunction(hit, categoryAliases) {
const categories = hit.categories || [];
let category = '';
let position = 1;
categoryAliases = convertMapKeysToLowerCase(categoryAliases);
do {
// categories[0] is the domain
category = categories.length > position ? categories[position] : '';
// Remove the index prefix (e.g. 2x)
category = category.replace(/^[0-9]+[x]{1}/, '').toLowerCase();
position++;
} while (category.length < 3 && categories.length > position);
// Possible alias
if (categoryAliases && categoryAliases[category]) {
return categoryAliases[category];
}
return category.replace(/[-_]+/g, ' ');
}
let currencyFormatter = null;
export function registerDefaultHelpers() {
registerHelper('equals', (arg1, arg2, options) => {
return arg1 + '' === arg2 + '' ? options.fn(this) : options.inverse(this);
});
registerHelper('not', (arg1, arg2, options) => {
return arg1 + '' !== arg2 + '' ? options.fn(this) : options.inverse(this);
});
registerHelper('gt', (arg1, arg2, options) => {
return arg1 > arg2 ? options.fn(this) : options.inverse(this);
});
registerHelper('lt', (arg1, arg2, options) => {
return arg1 < arg2 ? options.fn(this) : options.inverse(this);
});
registerHelper('or', (arg1, arg2, options) => {
return arg1 || arg2 ? options.fn(this) : options.inverse(this);
});
registerHelper('formatPrice', (price, locale, currency) => {
if (typeof price == 'undefined' || typeof price != 'number' || !locale || !currency) {
return '';
}
// Create formatter
try {
if (window.Intl && !currencyFormatter) {
currencyFormatter = new Intl.NumberFormat(locale, {
style: 'currency',
currency: currency,
minimumFractionDigits: 2
});
}
// Return price
if (currencyFormatter) {
return currencyFormatter.format(price);
}
} catch (err) {}
return price / 100 + ' ' + currency;
});
}
export function registerHelper(helperName, helperFunction) {
handlebars.registerHelper(helperName, helperFunction);
HandlebarsRuntime.registerHelper(helperName, helperFunction);
}
export function registerPartial(partialName, partialTemplate) {
handlebars.registerPartial(partialName, partialTemplate);
HandlebarsRuntime.registerPartial(partialName, partialTemplate);
}