discourse/app/assets/javascripts/discourse-common/lib/helpers.js.es6

74 lines
1.8 KiB
Plaintext
Raw Normal View History

2019-10-31 16:28:10 -04:00
import { rawGet } from "discourse-common/lib/raw-handlebars";
2016-06-30 17:10:08 -04:00
export function htmlHelper(fn) {
2016-11-25 15:38:45 -05:00
return Ember.Helper.helper(function(...args) {
2018-06-15 11:03:24 -04:00
args =
args.length > 1 ? args[0].concat({ hash: args[args.length - 1] }) : args;
return new Handlebars.SafeString(fn.apply(this, args) || "");
2016-11-25 15:38:45 -05:00
});
}
const _helpers = {};
export function registerHelper(name, fn) {
2016-11-25 15:38:45 -05:00
_helpers[name] = Ember.Helper.helper(fn);
}
export function findHelper(name) {
2016-10-28 16:35:32 -04:00
return _helpers[name] || _helpers[name.dasherize()];
}
export function registerHelpers(registry) {
Object.keys(_helpers).forEach(name => {
registry.register(`helper:${name}`, _helpers[name], { singleton: false });
});
}
function resolveParams(ctx, options) {
let params = {};
const hash = options.hash;
if (hash) {
if (options.hashTypes) {
Object.keys(hash).forEach(function(k) {
const type = options.hashTypes[k];
if (
type === "STRING" ||
type === "StringLiteral" ||
type === "SubExpression"
) {
params[k] = hash[k];
} else if (type === "ID" || type === "PathExpression") {
2019-10-31 16:28:10 -04:00
params[k] = rawGet(ctx, hash[k], options);
}
});
} else {
params = hash;
}
}
return params;
}
export function registerUnbound(name, fn) {
const func = function(...args) {
const options = args.pop();
const properties = args;
for (let i = 0; i < properties.length; i++) {
if (
options.types &&
(options.types[i] === "ID" || options.types[i] === "PathExpression")
) {
2019-10-31 16:28:10 -04:00
properties[i] = rawGet(this, properties[i], options);
}
2014-12-11 13:33:07 -05:00
}
2014-12-10 11:34:00 -05:00
return fn.call(this, ...properties, resolveParams(this, options));
2015-04-28 17:05:06 -04:00
};
2016-11-25 15:38:45 -05:00
_helpers[name] = Ember.Helper.extend({
compute: (params, args) => fn(...params, args)
2016-11-25 15:38:45 -05:00
});
2015-04-28 17:05:06 -04:00
Handlebars.registerHelper(name, func);
2014-12-10 11:34:00 -05:00
}