2016-08-31 23:30:51 +08:00
|
|
|
import { get } from 'discourse-common/lib/raw-handlebars';
|
2016-07-01 05:10:08 +08:00
|
|
|
|
2016-05-11 01:45:58 +08:00
|
|
|
// `Ember.Helper` is only available in versions after 1.12
|
|
|
|
export function htmlHelper(fn) {
|
|
|
|
if (Ember.Helper) {
|
|
|
|
return Ember.Helper.helper(function() {
|
2016-05-12 04:25:43 +08:00
|
|
|
return new Handlebars.SafeString(fn.apply(this, Array.prototype.slice.call(arguments)) || '');
|
2016-05-11 01:45:58 +08:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return Ember.Handlebars.makeBoundHelper(function() {
|
2016-05-12 04:25:43 +08:00
|
|
|
return new Handlebars.SafeString(fn.apply(this, Array.prototype.slice.call(arguments)) || '');
|
2016-05-11 01:45:58 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function registerHelper(name, fn) {
|
|
|
|
Ember.HTMLBars._registerHelper(name, fn);
|
|
|
|
}
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
function resolveParams(ctx, options) {
|
|
|
|
let params = {};
|
|
|
|
const hash = options.hash;
|
2015-01-08 03:20:17 +08:00
|
|
|
|
|
|
|
if (hash) {
|
|
|
|
if (options.hashTypes) {
|
2016-04-29 04:37:20 +08:00
|
|
|
Object.keys(hash).forEach(function(k) {
|
2015-02-11 06:20:16 +08:00
|
|
|
const type = options.hashTypes[k];
|
2016-01-16 00:40:30 +08:00
|
|
|
if (type === "STRING" || type === "StringLiteral") {
|
2015-01-08 03:20:17 +08:00
|
|
|
params[k] = hash[k];
|
2016-01-16 00:40:30 +08:00
|
|
|
} else if (type === "ID" || type === "PathExpression") {
|
2015-02-11 06:20:16 +08:00
|
|
|
params[k] = get(ctx, hash[k], options);
|
2015-01-08 03:20:17 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
params = hash;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2016-05-11 01:45:58 +08:00
|
|
|
export function registerUnbound(name, fn) {
|
2015-04-29 05:05:06 +08:00
|
|
|
const func = function(property, options) {
|
2016-01-16 00:40:30 +08:00
|
|
|
if (options.types && (options.types[0] === "ID" || options.types[0] === "PathExpression")) {
|
2014-12-12 02:33:07 +08:00
|
|
|
property = get(this, property, options);
|
|
|
|
}
|
2014-12-11 00:34:00 +08:00
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
return fn.call(this, property, resolveParams(this, options));
|
2015-04-29 05:05:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Handlebars.registerHelper(name, func);
|
|
|
|
Ember.Handlebars.registerHelper(name, func);
|
2014-12-11 00:34:00 +08:00
|
|
|
}
|