mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
25 lines
762 B
JavaScript
25 lines
762 B
JavaScript
export default Em.Component.extend({
|
|
tagName: "table",
|
|
classNames: ["results"],
|
|
|
|
options: function() {
|
|
const voters = this.get("poll.voters"),
|
|
backgroundColor = this.get("poll.background");
|
|
|
|
this.get("poll.options").forEach(option => {
|
|
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters),
|
|
styles = ["width: " + percentage + "%"];
|
|
|
|
if (backgroundColor) { styles.push("background: " + backgroundColor); }
|
|
|
|
option.setProperties({
|
|
percentage: percentage,
|
|
title: I18n.t("poll.option_title", { count: option.get("votes") }),
|
|
style: styles.join(";")
|
|
});
|
|
});
|
|
|
|
return this.get("poll.options");
|
|
}.property("poll.voters", "poll.options.[]")
|
|
|
|
});
|