discourse/plugins/poll/assets/javascripts/components/poll-results-standard.js.es6

36 lines
1.0 KiB
Plaintext
Raw Normal View History

import evenRound from "discourse/plugins/poll/lib/even-round";
import computed from "ember-addons/ember-computed-decorators";
export default Em.Component.extend({
tagName: "ul",
classNames: ["results"],
@computed("poll.voters", "poll.options.[]", "poll.isMultiple")
options() {
const options = this.get("poll.options");
const voters = this.get("poll.voters");
let percentages = voters === 0 ?
Array(options.length).fill(0) :
_.map(options, o => 100 * o.get("votes") / voters);
// fix percentages to add up to 100 when the poll is single choice only
if (!this.get("poll.isMultiple")) {
percentages = evenRound(percentages);
}
options.forEach((option, i) => {
const percentage = percentages[i];
const style = new Ember.Handlebars.SafeString(`width: ${percentage}%`);
option.setProperties({
2015-05-06 11:49:55 -04:00
percentage,
2015-05-15 05:51:10 -04:00
style,
title: I18n.t("poll.option_title", { count: option.get("votes") })
});
});
return this.get("poll.options");
}
});