export default Ember.Controller.extend({ needs: ['modal'], sample: Em.computed.alias('model.sample'), errors: Em.computed.alias('model.errors'), count: Em.computed.alias('model.grant_count'), count_warning: function() { if (this.get('count') <= 10) { return this.get('sample.length') !== this.get('count'); } else { return this.get('sample.length') !== 10; } }.property('count', 'sample.length'), has_query_plan: function() { return !!this.get('model.query_plan'); }.property('model.query_plan'), query_plan_html: function() { var raw = this.get('model.query_plan'), returned = "
";
_.each(raw, function(linehash) {
returned += Discourse.Utilities.escapeExpression(linehash["QUERY PLAN"]);
returned += "
";
});
returned += "";
return returned;
}.property('model.query_plan'),
processed_sample: Ember.computed.map('model.sample', function(grant) {
var i18nKey = 'admin.badges.preview.grant.with',
i18nParams = { username: Discourse.Utilities.escapeExpression(grant.username) };
if (grant.post_id) {
i18nKey += "_post";
i18nParams.link = "" + Handlebars.Utils.escapeExpression(grant.title) + "";
}
if (grant.granted_at) {
i18nKey += "_time";
i18nParams.time = Discourse.Utilities.escapeExpression(moment(grant.granted_at).format(I18n.t('dates.long_with_year')));
}
return I18n.t(i18nKey, i18nParams);
})
});