mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 09:04:00 +08:00
785ebb674d
This allows us to compile without Ember being present
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import { get } from "@ember/object";
|
|
|
|
export function registerRawHelpers(hbs, handlebarsClass) {
|
|
hbs.helper = function() {};
|
|
hbs.helpers = Object.create(handlebarsClass.helpers);
|
|
|
|
hbs.helpers["get"] = function(context, options) {
|
|
var firstContext = options.contexts[0];
|
|
var val = firstContext[context];
|
|
|
|
if (context.indexOf("controller.") === 0) {
|
|
context = context.slice(context.indexOf(".") + 1);
|
|
}
|
|
|
|
return val === undefined ? get(firstContext, context) : val;
|
|
};
|
|
|
|
// #each .. in support (as format is transformed to this)
|
|
hbs.registerHelper("each", function(
|
|
localName,
|
|
inKeyword,
|
|
contextName,
|
|
options
|
|
) {
|
|
var list = get(this, contextName);
|
|
var output = [];
|
|
var innerContext = Object.create(this);
|
|
for (var i = 0; i < list.length; i++) {
|
|
innerContext[localName] = list[i];
|
|
output.push(options.fn(innerContext));
|
|
}
|
|
return output.join("");
|
|
});
|
|
|
|
function stringCompatHelper(fn) {
|
|
const old = hbs.helpers[fn];
|
|
hbs.helpers[fn] = function(context, options) {
|
|
return old.apply(this, [hbs.helpers.get(context, options), options]);
|
|
};
|
|
}
|
|
stringCompatHelper("if");
|
|
stringCompatHelper("unless");
|
|
stringCompatHelper("with");
|
|
}
|