2018-06-15 12:42:20 -04:00
|
|
|
import { createWidget } from "discourse/widgets/widget";
|
|
|
|
import { h } from "virtual-dom";
|
|
|
|
import { iconNode } from "discourse-common/lib/icon-library";
|
|
|
|
import RawHtml from "discourse/widgets/raw-html";
|
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
2016-12-07 15:48:47 -05:00
|
|
|
import evenRound from "discourse/plugins/poll/lib/even-round";
|
2018-06-15 12:42:20 -04:00
|
|
|
import { avatarFor } from "discourse/widgets/post";
|
2016-12-07 15:48:47 -05:00
|
|
|
import round from "discourse/lib/round";
|
2018-06-15 12:42:20 -04:00
|
|
|
import { relativeAge } from "discourse/lib/formatter";
|
2018-12-31 04:48:30 -05:00
|
|
|
import { userPath } from "discourse/lib/url";
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
function optionHtml(option) {
|
|
|
|
return new RawHtml({ html: `<span>${option.html}</span>` });
|
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
function infoTextHtml(text) {
|
|
|
|
return new RawHtml({
|
|
|
|
html: `<span class="info-text">${text}</span>`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function _fetchVoters(data) {
|
|
|
|
return ajax("/polls/voters.json", { data }).catch(error => {
|
2017-11-17 06:12:13 -05:00
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
2018-06-15 12:42:20 -04:00
|
|
|
bootbox.alert(I18n.t("poll.error_while_fetching_voters"));
|
2017-11-17 06:12:13 -05:00
|
|
|
}
|
2017-01-27 04:09:33 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-option", {
|
|
|
|
tagName: "li",
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
buildAttributes(attrs) {
|
2018-06-15 12:42:20 -04:00
|
|
|
return { "data-poll-option-id": attrs.option.id };
|
2016-12-07 15:48:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs) {
|
2018-11-19 08:50:00 -05:00
|
|
|
const contents = [];
|
2016-12-07 15:48:47 -05:00
|
|
|
const { option, vote } = attrs;
|
2018-11-19 08:50:00 -05:00
|
|
|
const chosen = vote.includes(option.id);
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
if (attrs.isMultiple) {
|
2018-11-26 16:49:57 -05:00
|
|
|
contents.push(iconNode(chosen ? "far-check-square" : "far-square"));
|
2016-12-07 15:48:47 -05:00
|
|
|
} else {
|
2018-11-26 16:49:57 -05:00
|
|
|
contents.push(iconNode(chosen ? "far-dot-circle" : "far-circle"));
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(" ");
|
|
|
|
contents.push(optionHtml(option));
|
|
|
|
|
|
|
|
return contents;
|
2016-12-07 15:48:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
click(e) {
|
|
|
|
if ($(e.target).closest("a").length === 0) {
|
2018-06-15 12:42:20 -04:00
|
|
|
this.sendWidgetAction("toggleOption", this.attrs.option);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-load-more", {
|
|
|
|
tagName: "div.poll-voters-toggle-expand",
|
2018-11-19 08:50:00 -05:00
|
|
|
buildKey: attrs => `load-more-${attrs.optionId}`,
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
defaultState() {
|
|
|
|
return { loading: false };
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2018-06-15 12:42:20 -04:00
|
|
|
return state.loading
|
|
|
|
? h("div.spinner.small")
|
|
|
|
: h("a", iconNode("chevron-down"));
|
2016-12-07 15:48:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
click() {
|
|
|
|
const { state } = this;
|
2018-11-19 08:50:00 -05:00
|
|
|
|
|
|
|
if (state.loading) return;
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
state.loading = true;
|
2018-06-15 12:42:20 -04:00
|
|
|
return this.sendWidgetAction("loadMore").finally(
|
2018-11-19 10:29:15 -05:00
|
|
|
() => (state.loading = false)
|
2018-06-15 12:42:20 -04:00
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-voters", {
|
|
|
|
tagName: "ul.poll-voters-list",
|
2018-11-19 08:50:00 -05:00
|
|
|
buildKey: attrs => `poll-voters-${attrs.optionId}`,
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
defaultState() {
|
|
|
|
return {
|
2018-06-15 12:42:20 -04:00
|
|
|
loaded: "new",
|
2018-11-19 08:50:00 -05:00
|
|
|
voters: [],
|
|
|
|
page: 1
|
2016-12-07 15:48:47 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (state.loaded === "loading") return;
|
2018-06-15 12:42:20 -04:00
|
|
|
state.loaded = "loading";
|
2017-01-27 04:09:33 -05:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return _fetchVoters({
|
2017-01-27 04:09:33 -05:00
|
|
|
post_id: attrs.postId,
|
|
|
|
poll_name: attrs.pollName,
|
|
|
|
option_id: attrs.optionId,
|
2018-11-19 08:50:00 -05:00
|
|
|
page: state.page
|
2016-12-07 15:48:47 -05:00
|
|
|
}).then(result => {
|
2018-06-15 12:42:20 -04:00
|
|
|
state.loaded = "loaded";
|
2018-11-19 08:50:00 -05:00
|
|
|
state.page += 1;
|
2017-01-27 04:09:33 -05:00
|
|
|
|
2018-11-19 10:29:15 -05:00
|
|
|
const newVoters =
|
|
|
|
attrs.pollType === "number"
|
|
|
|
? result.voters
|
|
|
|
: result.voters[attrs.optionId];
|
2018-12-11 08:00:28 -05:00
|
|
|
|
|
|
|
const existingVoters = new Set(state.voters.map(voter => voter.username));
|
|
|
|
newVoters.forEach(voter => {
|
|
|
|
if (!existingVoters.has(voter.username)) {
|
|
|
|
existingVoters.add(voter.username);
|
|
|
|
state.voters.push(voter);
|
|
|
|
}
|
|
|
|
});
|
2017-01-27 04:09:33 -05:00
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
this.scheduleRerender();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
loadMore() {
|
|
|
|
return this.fetchVoters();
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2018-11-19 08:50:00 -05:00
|
|
|
if (attrs.voters && state.loaded === "new") {
|
|
|
|
state.voters = attrs.voters;
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
const contents = state.voters.map(user => {
|
2018-06-15 12:42:20 -04:00
|
|
|
return h("li", [
|
|
|
|
avatarFor("tiny", {
|
|
|
|
username: user.username,
|
2018-12-31 04:48:30 -05:00
|
|
|
url: userPath(user.username),
|
2018-06-15 12:42:20 -04:00
|
|
|
template: user.avatar_template
|
|
|
|
}),
|
|
|
|
" "
|
|
|
|
]);
|
2016-12-07 15:48:47 -05:00
|
|
|
});
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (state.voters.length < attrs.totalVotes) {
|
|
|
|
contents.push(this.attach("discourse-poll-load-more", attrs));
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
return h("div.poll-voters", contents);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-standard-results", {
|
|
|
|
tagName: "ul.results",
|
2018-11-19 08:50:00 -05:00
|
|
|
buildKey: attrs => `poll-standard-results-${attrs.id}`,
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2017-01-27 04:09:33 -05:00
|
|
|
defaultState() {
|
2018-11-19 08:50:00 -05:00
|
|
|
return { loaded: false };
|
2017-01-27 04:09:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return _fetchVoters({
|
|
|
|
post_id: attrs.post.id,
|
|
|
|
poll_name: attrs.poll.get("name")
|
|
|
|
}).then(result => {
|
|
|
|
state.voters = result.voters;
|
|
|
|
this.scheduleRerender();
|
|
|
|
});
|
2017-01-27 04:09:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2016-12-07 15:48:47 -05:00
|
|
|
const { poll } = attrs;
|
2018-06-15 12:42:20 -04:00
|
|
|
const options = poll.get("options");
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2017-01-16 10:41:41 -05:00
|
|
|
if (options) {
|
2018-06-15 12:42:20 -04:00
|
|
|
const voters = poll.get("voters");
|
|
|
|
const isPublic = poll.get("public");
|
2017-01-27 04:09:33 -05:00
|
|
|
|
2017-01-16 10:41:41 -05:00
|
|
|
const ordered = _.clone(options).sort((a, b) => {
|
2016-12-21 22:45:41 -05:00
|
|
|
if (a.votes < b.votes) {
|
|
|
|
return 1;
|
2016-12-21 22:46:15 -05:00
|
|
|
} else if (a.votes === b.votes) {
|
2016-12-21 22:45:41 -05:00
|
|
|
if (a.html < b.html) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
});
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (isPublic && !state.loaded) {
|
|
|
|
state.loaded = true;
|
|
|
|
this.fetchVoters();
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
const percentages =
|
|
|
|
voters === 0
|
|
|
|
? Array(ordered.length).fill(0)
|
|
|
|
: ordered.map(o => (100 * o.votes) / voters);
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
const rounded = attrs.isMultiple
|
|
|
|
? percentages.map(Math.floor)
|
|
|
|
: evenRound(percentages);
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
return ordered.map((option, idx) => {
|
|
|
|
const contents = [];
|
|
|
|
const per = rounded[idx].toString();
|
2017-02-02 23:09:30 -05:00
|
|
|
const chosen = (attrs.vote || []).includes(option.id);
|
2017-01-24 22:56:39 -05:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"div.option",
|
|
|
|
h("p", [h("span.percentage", `${per}%`), optionHtml(option)])
|
|
|
|
)
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"div.bar-back",
|
|
|
|
h("div.bar", { attributes: { style: `width:${per}%` } })
|
|
|
|
)
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2017-01-27 04:09:33 -05:00
|
|
|
if (isPublic) {
|
2018-06-15 12:42:20 -04:00
|
|
|
contents.push(
|
|
|
|
this.attach("discourse-poll-voters", {
|
|
|
|
postId: attrs.post.id,
|
|
|
|
optionId: option.id,
|
|
|
|
pollName: poll.get("name"),
|
|
|
|
totalVotes: option.votes,
|
2018-11-19 08:50:00 -05:00
|
|
|
voters: (state.voters && state.voters[option.id]) || []
|
2018-06-15 12:42:20 -04:00
|
|
|
})
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
return h("li", { className: `${chosen ? "chosen" : ""}` }, contents);
|
2016-12-07 15:48:47 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-number-results", {
|
2018-11-19 08:50:00 -05:00
|
|
|
buildKey: attrs => `poll-number-results-${attrs.id}`,
|
2017-01-27 04:09:33 -05:00
|
|
|
|
|
|
|
defaultState() {
|
2018-11-19 08:50:00 -05:00
|
|
|
return { loaded: false };
|
2017-01-27 04:09:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return _fetchVoters({
|
|
|
|
post_id: attrs.post.id,
|
|
|
|
poll_name: attrs.poll.get("name")
|
|
|
|
}).then(result => {
|
|
|
|
state.voters = result.voters;
|
|
|
|
this.scheduleRerender();
|
|
|
|
});
|
2017-01-27 04:09:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2016-12-07 15:48:47 -05:00
|
|
|
const { poll } = attrs;
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
const totalScore = poll.get("options").reduce((total, o) => {
|
2016-12-07 15:48:47 -05:00
|
|
|
return total + parseInt(o.html, 10) * parseInt(o.votes, 10);
|
|
|
|
}, 0);
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
const voters = poll.get("voters");
|
2016-12-07 15:48:47 -05:00
|
|
|
const average = voters === 0 ? 0 : round(totalScore / voters, -2);
|
|
|
|
const averageRating = I18n.t("poll.average_rating", { average });
|
2018-11-19 08:50:00 -05:00
|
|
|
const contents = [
|
2018-06-15 12:42:20 -04:00
|
|
|
h(
|
|
|
|
"div.poll-results-number-rating",
|
|
|
|
new RawHtml({ html: `<span>${averageRating}</span>` })
|
|
|
|
)
|
|
|
|
];
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (poll.get("public")) {
|
|
|
|
if (!state.loaded) {
|
|
|
|
state.loaded = true;
|
|
|
|
this.fetchVoters();
|
|
|
|
}
|
2017-01-27 04:09:33 -05:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
this.attach("discourse-poll-voters", {
|
|
|
|
totalVotes: poll.get("voters"),
|
2018-11-19 08:50:00 -05:00
|
|
|
voters: state.voters || [],
|
2018-06-15 12:42:20 -04:00
|
|
|
postId: attrs.post.id,
|
|
|
|
pollName: poll.get("name"),
|
|
|
|
pollType: poll.get("type")
|
|
|
|
})
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return contents;
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-container", {
|
|
|
|
tagName: "div.poll-container",
|
2018-11-19 08:50:00 -05:00
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
html(attrs) {
|
|
|
|
const { poll } = attrs;
|
2018-11-19 08:50:00 -05:00
|
|
|
const options = poll.get("options");
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (attrs.showResults) {
|
2018-06-15 12:42:20 -04:00
|
|
|
const type = poll.get("type") === "number" ? "number" : "standard";
|
2016-12-07 15:48:47 -05:00
|
|
|
return this.attach(`discourse-poll-${type}-results`, attrs);
|
2018-11-19 08:50:00 -05:00
|
|
|
} else if (options) {
|
2018-06-15 12:42:20 -04:00
|
|
|
return h(
|
|
|
|
"ul",
|
|
|
|
options.map(option => {
|
|
|
|
return this.attach("discourse-poll-option", {
|
|
|
|
option,
|
|
|
|
isMultiple: attrs.isMultiple,
|
|
|
|
vote: attrs.vote
|
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-info", {
|
|
|
|
tagName: "div.poll-info",
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
multipleHelpText(min, max, options) {
|
|
|
|
if (max > 0) {
|
|
|
|
if (min === max) {
|
|
|
|
if (min > 1) {
|
|
|
|
return I18n.t("poll.multiple.help.x_options", { count: min });
|
|
|
|
}
|
|
|
|
} else if (min > 1) {
|
|
|
|
if (max < options) {
|
2018-06-15 12:42:20 -04:00
|
|
|
return I18n.t("poll.multiple.help.between_min_and_max_options", {
|
|
|
|
min,
|
|
|
|
max
|
|
|
|
});
|
2016-12-07 15:48:47 -05:00
|
|
|
} else {
|
2018-06-15 12:42:20 -04:00
|
|
|
return I18n.t("poll.multiple.help.at_least_min_options", {
|
|
|
|
count: min
|
|
|
|
});
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
} else if (max <= options) {
|
|
|
|
return I18n.t("poll.multiple.help.up_to_max_options", { count: max });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs) {
|
|
|
|
const { poll } = attrs;
|
2018-06-15 12:42:20 -04:00
|
|
|
const count = poll.get("voters");
|
2018-11-19 08:50:00 -05:00
|
|
|
const contents = [
|
2018-06-15 12:42:20 -04:00
|
|
|
h("p", [
|
|
|
|
h("span.info-number", count.toString()),
|
|
|
|
h("span.info-label", I18n.t("poll.voters", { count }))
|
|
|
|
])
|
|
|
|
];
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
if (attrs.isMultiple) {
|
2018-05-02 20:12:19 -04:00
|
|
|
if (attrs.showResults || attrs.isClosed) {
|
2018-06-15 12:42:20 -04:00
|
|
|
const totalVotes = poll.get("options").reduce((total, o) => {
|
2016-12-07 15:48:47 -05:00
|
|
|
return total + parseInt(o.votes, 10);
|
|
|
|
}, 0);
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
h("p", [
|
|
|
|
h("span.info-number", totalVotes.toString()),
|
|
|
|
h(
|
|
|
|
"span.info-label",
|
|
|
|
I18n.t("poll.total_votes", { count: totalVotes })
|
|
|
|
)
|
|
|
|
])
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
} else {
|
2018-06-15 12:42:20 -04:00
|
|
|
const help = this.multipleHelpText(
|
|
|
|
attrs.min,
|
|
|
|
attrs.max,
|
|
|
|
poll.get("options.length")
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
if (help) {
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(infoTextHtml(help));
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (!attrs.isClosed && !attrs.showResults && poll.get("public")) {
|
|
|
|
contents.push(infoTextHtml(I18n.t("poll.public.title")));
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return contents;
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
createWidget("discourse-poll-buttons", {
|
|
|
|
tagName: "div.poll-buttons",
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
html(attrs) {
|
2018-11-19 08:50:00 -05:00
|
|
|
const contents = [];
|
2016-12-07 15:48:47 -05:00
|
|
|
const { poll, post } = attrs;
|
2018-06-15 12:42:20 -04:00
|
|
|
const topicArchived = post.get("topic.archived");
|
2018-05-02 20:12:19 -04:00
|
|
|
const closed = attrs.isClosed;
|
|
|
|
const hideResultsDisabled = closed || topicArchived;
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
if (attrs.isMultiple && !hideResultsDisabled) {
|
|
|
|
const castVotesDisabled = !attrs.canCastVotes;
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
this.attach("button", {
|
|
|
|
className: `btn cast-votes ${castVotesDisabled ? "" : "btn-primary"}`,
|
|
|
|
label: "poll.cast-votes.label",
|
|
|
|
title: "poll.cast-votes.title",
|
|
|
|
disabled: castVotesDisabled,
|
|
|
|
action: "castVotes"
|
|
|
|
})
|
|
|
|
);
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(" ");
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
|
2018-05-02 20:12:19 -04:00
|
|
|
if (attrs.showResults || hideResultsDisabled) {
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
this.attach("button", {
|
|
|
|
className: "btn toggle-results",
|
|
|
|
label: "poll.hide-results.label",
|
|
|
|
title: "poll.hide-results.title",
|
2019-01-22 06:02:02 -05:00
|
|
|
icon: "far-eye-slash",
|
2018-06-15 12:42:20 -04:00
|
|
|
disabled: hideResultsDisabled,
|
|
|
|
action: "toggleResults"
|
|
|
|
})
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
} else {
|
2018-11-19 08:50:00 -05:00
|
|
|
if (poll.get("results") === "on_vote" && !attrs.hasVoted) {
|
|
|
|
contents.push(infoTextHtml(I18n.t("poll.results.vote.title")));
|
|
|
|
} else if (poll.get("results") === "on_close" && !closed) {
|
|
|
|
contents.push(infoTextHtml(I18n.t("poll.results.closed.title")));
|
|
|
|
} else {
|
|
|
|
contents.push(
|
|
|
|
this.attach("button", {
|
|
|
|
className: "btn toggle-results",
|
|
|
|
label: "poll.show-results.label",
|
|
|
|
title: "poll.show-results.title",
|
2019-01-22 06:02:02 -05:00
|
|
|
icon: "far-eye",
|
2018-11-19 08:50:00 -05:00
|
|
|
disabled: poll.get("voters") === 0,
|
|
|
|
action: "toggleResults"
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
2018-05-11 20:14:58 -04:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (poll.get("close")) {
|
2018-05-11 20:14:58 -04:00
|
|
|
const closeDate = moment.utc(poll.get("close"));
|
2018-11-19 08:50:00 -05:00
|
|
|
if (closeDate.isValid()) {
|
|
|
|
const title = closeDate.format("LLL");
|
|
|
|
let label;
|
|
|
|
|
|
|
|
if (attrs.isAutomaticallyClosed) {
|
|
|
|
const age = relativeAge(closeDate.toDate(), { addAgo: true });
|
|
|
|
label = I18n.t("poll.automatic_close.age", { age });
|
|
|
|
} else {
|
|
|
|
const timeLeft = moment().to(closeDate.local(), true);
|
|
|
|
label = I18n.t("poll.automatic_close.closes_in", { timeLeft });
|
|
|
|
}
|
|
|
|
|
|
|
|
contents.push(
|
|
|
|
new RawHtml({
|
|
|
|
html: `<span class="info-text" title="${title}">${label}</span>`
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2018-05-11 20:14:58 -04:00
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
if (
|
|
|
|
this.currentUser &&
|
|
|
|
(this.currentUser.get("id") === post.get("user_id") ||
|
|
|
|
this.currentUser.get("staff")) &&
|
|
|
|
!topicArchived
|
|
|
|
) {
|
2018-05-02 20:12:19 -04:00
|
|
|
if (closed) {
|
|
|
|
if (!attrs.isAutomaticallyClosed) {
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
this.attach("button", {
|
|
|
|
className: "btn toggle-status",
|
|
|
|
label: "poll.open.label",
|
|
|
|
title: "poll.open.title",
|
|
|
|
icon: "unlock-alt",
|
|
|
|
action: "toggleStatus"
|
|
|
|
})
|
|
|
|
);
|
2018-05-02 20:12:19 -04:00
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
} else {
|
2018-11-19 08:50:00 -05:00
|
|
|
contents.push(
|
2018-06-15 12:42:20 -04:00
|
|
|
this.attach("button", {
|
|
|
|
className: "btn toggle-status btn-danger",
|
|
|
|
label: "poll.close.label",
|
|
|
|
title: "poll.close.title",
|
|
|
|
icon: "lock",
|
|
|
|
action: "toggleStatus"
|
|
|
|
})
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
return contents;
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
export default createWidget("discourse-poll", {
|
|
|
|
tagName: "div.poll",
|
2018-11-19 08:50:00 -05:00
|
|
|
buildKey: attrs => `poll-${attrs.id}`,
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
buildAttributes(attrs) {
|
|
|
|
return {
|
2018-11-19 08:50:00 -05:00
|
|
|
"data-poll-name": attrs.poll.get("name"),
|
|
|
|
"data-poll-type": attrs.poll.get("type")
|
2016-12-07 15:48:47 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
defaultState(attrs) {
|
2018-11-19 08:50:00 -05:00
|
|
|
const { post, poll } = attrs;
|
|
|
|
|
2018-11-19 10:29:15 -05:00
|
|
|
const showResults =
|
2018-11-19 08:50:00 -05:00
|
|
|
post.get("topic.archived") ||
|
|
|
|
this.isClosed() ||
|
2018-11-19 10:29:15 -05:00
|
|
|
(poll.get("results") !== "on_close" && this.hasVoted());
|
2018-11-19 08:50:00 -05:00
|
|
|
|
2018-05-02 20:12:19 -04:00
|
|
|
return { loading: false, showResults };
|
2016-12-07 15:48:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2018-11-19 10:29:15 -05:00
|
|
|
const showResults =
|
|
|
|
state.showResults || attrs.post.get("topic.archived") || this.isClosed();
|
2018-11-19 08:50:00 -05:00
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
const newAttrs = jQuery.extend({}, attrs, {
|
|
|
|
canCastVotes: this.canCastVotes(),
|
2018-11-19 08:50:00 -05:00
|
|
|
hasVoted: this.hasVoted(),
|
2018-05-02 20:12:19 -04:00
|
|
|
isAutomaticallyClosed: this.isAutomaticallyClosed(),
|
2018-11-19 08:50:00 -05:00
|
|
|
isClosed: this.isClosed(),
|
|
|
|
isMultiple: this.isMultiple(),
|
|
|
|
max: this.max(),
|
2016-12-07 15:48:47 -05:00
|
|
|
min: this.min(),
|
2018-11-19 10:29:15 -05:00
|
|
|
showResults
|
2016-12-07 15:48:47 -05:00
|
|
|
});
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
return h("div", [
|
|
|
|
this.attach("discourse-poll-container", newAttrs),
|
|
|
|
this.attach("discourse-poll-info", newAttrs),
|
|
|
|
this.attach("discourse-poll-buttons", newAttrs)
|
2016-12-07 15:48:47 -05:00
|
|
|
]);
|
|
|
|
},
|
|
|
|
|
|
|
|
min() {
|
2018-11-19 08:50:00 -05:00
|
|
|
let min = parseInt(this.attrs.poll.get("min"), 10);
|
2018-12-31 04:48:30 -05:00
|
|
|
if (isNaN(min) || min < 0) {
|
|
|
|
min = 0;
|
2018-06-15 12:42:20 -04:00
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
return min;
|
|
|
|
},
|
|
|
|
|
|
|
|
max() {
|
2018-11-19 08:50:00 -05:00
|
|
|
let max = parseInt(this.attrs.poll.get("max"), 10);
|
|
|
|
const numOptions = this.attrs.poll.get("options.length");
|
2018-06-15 12:42:20 -04:00
|
|
|
if (isNaN(max) || max > numOptions) {
|
|
|
|
max = numOptions;
|
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
return max;
|
|
|
|
},
|
|
|
|
|
2018-05-02 20:12:19 -04:00
|
|
|
isAutomaticallyClosed() {
|
|
|
|
const { poll } = this.attrs;
|
|
|
|
return poll.get("close") && moment.utc(poll.get("close")) <= moment();
|
|
|
|
},
|
|
|
|
|
|
|
|
isClosed() {
|
|
|
|
const { poll } = this.attrs;
|
|
|
|
return poll.get("status") === "closed" || this.isAutomaticallyClosed();
|
|
|
|
},
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
isMultiple() {
|
|
|
|
const { poll } = this.attrs;
|
|
|
|
return poll.get("type") === "multiple";
|
|
|
|
},
|
|
|
|
|
|
|
|
hasVoted() {
|
|
|
|
const { vote } = this.attrs;
|
|
|
|
return vote && vote.length > 0;
|
|
|
|
},
|
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
canCastVotes() {
|
|
|
|
const { state, attrs } = this;
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
if (this.isClosed() || state.showResults || state.loading) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const selectedOptionCount = attrs.vote.length;
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (this.isMultiple()) {
|
2018-06-15 12:42:20 -04:00
|
|
|
return (
|
|
|
|
selectedOptionCount >= this.min() && selectedOptionCount <= this.max()
|
|
|
|
);
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2016-12-07 15:48:47 -05:00
|
|
|
return selectedOptionCount > 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleStatus() {
|
|
|
|
const { state, attrs } = this;
|
2018-05-02 20:12:19 -04:00
|
|
|
const { post, poll } = attrs;
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
if (this.isAutomaticallyClosed()) {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
bootbox.confirm(
|
2018-05-02 20:12:19 -04:00
|
|
|
I18n.t(this.isClosed() ? "poll.open.confirm" : "poll.close.confirm"),
|
2016-12-07 15:48:47 -05:00
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
confirmed => {
|
|
|
|
if (confirmed) {
|
|
|
|
state.loading = true;
|
2018-05-02 20:12:19 -04:00
|
|
|
const status = this.isClosed() ? "open" : "closed";
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
ajax("/polls/toggle_status", {
|
|
|
|
type: "PUT",
|
|
|
|
data: {
|
2018-06-15 12:42:20 -04:00
|
|
|
post_id: post.get("id"),
|
|
|
|
poll_name: poll.get("name"),
|
|
|
|
status
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
2018-11-19 10:29:15 -05:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
poll.set("status", status);
|
|
|
|
if (poll.get("results") === "on_close") {
|
|
|
|
state.showResults = status === "closed";
|
|
|
|
}
|
|
|
|
this.scheduleRerender();
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("poll.error_while_toggling_status"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
state.loading = false;
|
|
|
|
});
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleResults() {
|
|
|
|
this.state.showResults = !this.state.showResults;
|
|
|
|
},
|
|
|
|
|
|
|
|
showLogin() {
|
2018-06-15 12:42:20 -04:00
|
|
|
this.register.lookup("route:application").send("showLogin");
|
2016-12-07 15:48:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
toggleOption(option) {
|
2018-05-02 20:12:19 -04:00
|
|
|
const { attrs } = this;
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (this.isClosed()) return;
|
|
|
|
if (!this.currentUser) return this.showLogin();
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
const { vote } = attrs;
|
|
|
|
const chosenIdx = vote.indexOf(option.id);
|
2018-11-19 08:50:00 -05:00
|
|
|
|
|
|
|
if (!this.isMultiple()) {
|
2016-12-07 15:48:47 -05:00
|
|
|
vote.length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chosenIdx !== -1) {
|
|
|
|
vote.splice(chosenIdx, 1);
|
|
|
|
} else {
|
|
|
|
vote.push(option.id);
|
|
|
|
}
|
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
if (!this.isMultiple()) {
|
2016-12-07 15:48:47 -05:00
|
|
|
return this.castVotes();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
castVotes() {
|
2018-11-19 08:50:00 -05:00
|
|
|
if (!this.canCastVotes()) return;
|
|
|
|
if (!this.currentUser) return this.showLogin();
|
2016-12-07 15:48:47 -05:00
|
|
|
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
|
|
|
state.loading = true;
|
|
|
|
|
|
|
|
return ajax("/polls/vote", {
|
|
|
|
type: "PUT",
|
|
|
|
data: {
|
|
|
|
post_id: attrs.post.id,
|
2018-11-19 08:50:00 -05:00
|
|
|
poll_name: attrs.poll.get("name"),
|
2016-12-07 15:48:47 -05:00
|
|
|
options: attrs.vote
|
|
|
|
}
|
2018-11-19 10:29:15 -05:00
|
|
|
})
|
|
|
|
.then(({ poll }) => {
|
|
|
|
attrs.poll.setProperties(poll);
|
|
|
|
if (attrs.poll.get("results") !== "on_close") {
|
|
|
|
state.showResults = true;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("poll.error_while_casting_votes"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
state.loading = false;
|
|
|
|
});
|
2016-12-07 15:48:47 -05:00
|
|
|
}
|
|
|
|
});
|