2020-06-22 08:36:45 +08:00
|
|
|
import I18n from "I18n";
|
2018-06-16 00:42:20 +08:00
|
|
|
import { h } from "virtual-dom";
|
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
import { relativeAge } from "discourse/lib/formatter";
|
2019-11-26 01:51:01 +08:00
|
|
|
import loadScript from "discourse/lib/load-script";
|
2020-08-06 23:57:06 +08:00
|
|
|
import round from "discourse/lib/round";
|
|
|
|
import showModal from "discourse/lib/show-modal";
|
|
|
|
import { avatarFor } from "discourse/widgets/post";
|
|
|
|
import RawHtml from "discourse/widgets/raw-html";
|
|
|
|
import { createWidget } from "discourse/widgets/widget";
|
|
|
|
import { iconNode } from "discourse-common/lib/icon-library";
|
|
|
|
import { PIE_CHART_TYPE } from "discourse/plugins/poll/controllers/poll-ui-builder";
|
|
|
|
import { getColors } from "discourse/plugins/poll/lib/chart-colors";
|
|
|
|
import evenRound from "discourse/plugins/poll/lib/even-round";
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
function optionHtml(option) {
|
2019-04-29 16:01:19 +08:00
|
|
|
const $node = $(`<span>${option.html}</span>`);
|
|
|
|
|
|
|
|
$node.find(".discourse-local-date").each((_index, elem) => {
|
|
|
|
$(elem).applyLocalDates();
|
|
|
|
});
|
|
|
|
|
|
|
|
return new RawHtml({ html: `<span>${$node.html()}</span>` });
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08: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 19:12:13 +08:00
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
2018-06-16 00:42:20 +08:00
|
|
|
bootbox.alert(I18n.t("poll.error_while_fetching_voters"));
|
2017-11-17 19:12:13 +08:00
|
|
|
}
|
2017-01-27 17:09:33 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-18 18:13:19 +08:00
|
|
|
function checkUserGroups(user, poll) {
|
|
|
|
const pollGroups =
|
|
|
|
poll && poll.groups && poll.groups.split(",").map((g) => g.toLowerCase());
|
|
|
|
|
|
|
|
if (!pollGroups) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const userGroups =
|
|
|
|
user && user.groups && user.groups.map((g) => g.name.toLowerCase());
|
|
|
|
|
|
|
|
return userGroups && pollGroups.some((g) => userGroups.includes(g));
|
|
|
|
}
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-option", {
|
|
|
|
tagName: "li",
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
buildAttributes(attrs) {
|
2018-06-16 00:42:20 +08:00
|
|
|
return { "data-poll-option-id": attrs.option.id };
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs) {
|
2018-11-19 21:50:00 +08:00
|
|
|
const contents = [];
|
2016-12-08 04:48:47 +08:00
|
|
|
const { option, vote } = attrs;
|
2018-11-19 21:50:00 +08:00
|
|
|
const chosen = vote.includes(option.id);
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
if (attrs.isMultiple) {
|
2018-11-27 05:49:57 +08:00
|
|
|
contents.push(iconNode(chosen ? "far-check-square" : "far-square"));
|
2016-12-08 04:48:47 +08:00
|
|
|
} else {
|
2019-01-24 19:25:37 +08:00
|
|
|
contents.push(iconNode(chosen ? "circle" : "far-circle"));
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
2018-05-03 08:12:19 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(" ");
|
|
|
|
contents.push(optionHtml(option));
|
|
|
|
|
|
|
|
return contents;
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
click(e) {
|
|
|
|
if ($(e.target).closest("a").length === 0) {
|
2018-06-16 00:42:20 +08:00
|
|
|
this.sendWidgetAction("toggleOption", this.attrs.option);
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-load-more", {
|
|
|
|
tagName: "div.poll-voters-toggle-expand",
|
2018-11-19 21:50:00 +08:00
|
|
|
buildKey: (attrs) => `load-more-${attrs.optionId}`,
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
defaultState() {
|
|
|
|
return { loading: false };
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2018-06-16 00:42:20 +08:00
|
|
|
return state.loading
|
|
|
|
? h("div.spinner.small")
|
|
|
|
: h("a", iconNode("chevron-down"));
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
click() {
|
|
|
|
const { state } = this;
|
2018-11-19 21:50:00 +08:00
|
|
|
|
2020-09-22 22:28:28 +08:00
|
|
|
if (state.loading) {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
state.loading = true;
|
2018-06-16 00:42:20 +08:00
|
|
|
return this.sendWidgetAction("loadMore").finally(
|
2018-11-19 23:29:15 +08:00
|
|
|
() => (state.loading = false)
|
2018-06-16 00:42:20 +08:00
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-voters", {
|
|
|
|
tagName: "ul.poll-voters-list",
|
2018-11-19 21:50:00 +08:00
|
|
|
buildKey: (attrs) => `poll-voters-${attrs.optionId}`,
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
defaultState() {
|
|
|
|
return {
|
2018-06-16 00:42:20 +08:00
|
|
|
loaded: "new",
|
2018-11-19 21:50:00 +08:00
|
|
|
voters: [],
|
|
|
|
page: 1,
|
2016-12-08 04:48:47 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2020-09-22 22:28:28 +08:00
|
|
|
if (state.loaded === "loading") {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-16 00:42:20 +08:00
|
|
|
state.loaded = "loading";
|
2017-01-27 17:09:33 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
return _fetchVoters({
|
2017-01-27 17:09:33 +08:00
|
|
|
post_id: attrs.postId,
|
|
|
|
poll_name: attrs.pollName,
|
|
|
|
option_id: attrs.optionId,
|
2018-11-19 21:50:00 +08:00
|
|
|
page: state.page,
|
2016-12-08 04:48:47 +08:00
|
|
|
}).then((result) => {
|
2018-06-16 00:42:20 +08:00
|
|
|
state.loaded = "loaded";
|
2018-11-19 21:50:00 +08:00
|
|
|
state.page += 1;
|
2017-01-27 17:09:33 +08:00
|
|
|
|
2018-11-19 23:29:15 +08:00
|
|
|
const newVoters =
|
|
|
|
attrs.pollType === "number"
|
|
|
|
? result.voters
|
|
|
|
: result.voters[attrs.optionId];
|
2018-12-11 21:00:28 +08:00
|
|
|
|
|
|
|
const existingVoters = new Set(
|
|
|
|
state.voters.map((voter) => voter.username)
|
|
|
|
);
|
2019-02-28 00:00:21 +08:00
|
|
|
|
2018-12-11 21:00:28 +08:00
|
|
|
newVoters.forEach((voter) => {
|
|
|
|
if (!existingVoters.has(voter.username)) {
|
|
|
|
existingVoters.add(voter.username);
|
|
|
|
state.voters.push(voter);
|
|
|
|
}
|
|
|
|
});
|
2017-01-27 17:09:33 +08:00
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
this.scheduleRerender();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
loadMore() {
|
|
|
|
return this.fetchVoters();
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2018-11-19 21:50:00 +08:00
|
|
|
if (attrs.voters && state.loaded === "new") {
|
|
|
|
state.voters = attrs.voters;
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
const contents = state.voters.map((user) => {
|
2018-06-16 00:42:20 +08:00
|
|
|
return h("li", [
|
|
|
|
avatarFor("tiny", {
|
|
|
|
username: user.username,
|
|
|
|
template: user.avatar_template,
|
|
|
|
}),
|
|
|
|
" ",
|
|
|
|
]);
|
2016-12-08 04:48:47 +08:00
|
|
|
});
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (state.voters.length < attrs.totalVotes) {
|
|
|
|
contents.push(this.attach("discourse-poll-load-more", attrs));
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
return h("div.poll-voters", contents);
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-standard-results", {
|
|
|
|
tagName: "ul.results",
|
2018-11-19 21:50:00 +08:00
|
|
|
buildKey: (attrs) => `poll-standard-results-${attrs.id}`,
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2017-01-27 17:09:33 +08:00
|
|
|
defaultState() {
|
2018-11-19 21:50:00 +08:00
|
|
|
return { loaded: false };
|
2017-01-27 17:09:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2018-11-19 21:50:00 +08: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 17:09:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2016-12-08 04:48:47 +08:00
|
|
|
const { poll } = attrs;
|
2018-06-16 00:42:20 +08:00
|
|
|
const options = poll.get("options");
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2017-01-16 23:41:41 +08:00
|
|
|
if (options) {
|
2018-06-16 00:42:20 +08:00
|
|
|
const voters = poll.get("voters");
|
|
|
|
const isPublic = poll.get("public");
|
2017-01-27 17:09:33 +08:00
|
|
|
|
2020-09-02 04:42:22 +08:00
|
|
|
const ordered = [...options].sort((a, b) => {
|
2016-12-22 11:45:41 +08:00
|
|
|
if (a.votes < b.votes) {
|
|
|
|
return 1;
|
2016-12-22 11:46:15 +08:00
|
|
|
} else if (a.votes === b.votes) {
|
2016-12-22 11:45:41 +08:00
|
|
|
if (a.html < b.html) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
});
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (isPublic && !state.loaded) {
|
2019-02-28 00:00:21 +08:00
|
|
|
state.voters = poll.get("preloaded_voters");
|
2018-11-19 21:50:00 +08:00
|
|
|
state.loaded = true;
|
|
|
|
}
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
const percentages =
|
|
|
|
voters === 0
|
|
|
|
? Array(ordered.length).fill(0)
|
|
|
|
: ordered.map((o) => (100 * o.votes) / voters);
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
const rounded = attrs.isMultiple
|
|
|
|
? percentages.map(Math.floor)
|
|
|
|
: evenRound(percentages);
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
return ordered.map((option, idx) => {
|
|
|
|
const contents = [];
|
|
|
|
const per = rounded[idx].toString();
|
2017-02-03 12:09:30 +08:00
|
|
|
const chosen = (attrs.vote || []).includes(option.id);
|
2017-01-25 11:56:39 +08:00
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"div.option",
|
|
|
|
h("p", [h("span.percentage", `${per}%`), optionHtml(option)])
|
|
|
|
)
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"div.bar-back",
|
|
|
|
h("div.bar", { attributes: { style: `width:${per}%` } })
|
|
|
|
)
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2017-01-27 17:09:33 +08:00
|
|
|
if (isPublic) {
|
2018-06-16 00:42:20 +08: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 21:50:00 +08:00
|
|
|
voters: (state.voters && state.voters[option.id]) || [],
|
2018-06-16 00:42:20 +08:00
|
|
|
})
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
return h("li", { className: `${chosen ? "chosen" : ""}` }, contents);
|
2016-12-08 04:48:47 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-number-results", {
|
2018-11-19 21:50:00 +08:00
|
|
|
buildKey: (attrs) => `poll-number-results-${attrs.id}`,
|
2017-01-27 17:09:33 +08:00
|
|
|
|
|
|
|
defaultState() {
|
2018-11-19 21:50:00 +08:00
|
|
|
return { loaded: false };
|
2017-01-27 17:09:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
fetchVoters() {
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
2018-11-19 21:50:00 +08: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 17:09:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2016-12-08 04:48:47 +08:00
|
|
|
const { poll } = attrs;
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
const totalScore = poll.get("options").reduce((total, o) => {
|
2016-12-08 04:48:47 +08:00
|
|
|
return total + parseInt(o.html, 10) * parseInt(o.votes, 10);
|
|
|
|
}, 0);
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
const voters = poll.get("voters");
|
2016-12-08 04:48:47 +08:00
|
|
|
const average = voters === 0 ? 0 : round(totalScore / voters, -2);
|
|
|
|
const averageRating = I18n.t("poll.average_rating", { average });
|
2018-11-19 21:50:00 +08:00
|
|
|
const contents = [
|
2018-06-16 00:42:20 +08:00
|
|
|
h(
|
|
|
|
"div.poll-results-number-rating",
|
|
|
|
new RawHtml({ html: `<span>${averageRating}</span>` })
|
|
|
|
),
|
|
|
|
];
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (poll.get("public")) {
|
|
|
|
if (!state.loaded) {
|
2019-02-28 00:00:21 +08:00
|
|
|
state.voters = poll.get("preloaded_voters");
|
2018-11-19 21:50:00 +08:00
|
|
|
state.loaded = true;
|
|
|
|
}
|
2017-01-27 17:09:33 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
this.attach("discourse-poll-voters", {
|
|
|
|
totalVotes: poll.get("voters"),
|
2018-11-19 21:50:00 +08:00
|
|
|
voters: state.voters || [],
|
2018-06-16 00:42:20 +08:00
|
|
|
postId: attrs.post.id,
|
|
|
|
pollName: poll.get("name"),
|
|
|
|
pollType: poll.get("type"),
|
|
|
|
})
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
return contents;
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-container", {
|
|
|
|
tagName: "div.poll-container",
|
2018-11-19 21:50:00 +08:00
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
html(attrs) {
|
|
|
|
const { poll } = attrs;
|
2018-11-19 21:50:00 +08:00
|
|
|
const options = poll.get("options");
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (attrs.showResults) {
|
2018-06-16 00:42:20 +08:00
|
|
|
const type = poll.get("type") === "number" ? "number" : "standard";
|
2019-11-26 01:51:01 +08:00
|
|
|
const resultsWidget =
|
|
|
|
type === "number" || attrs.poll.chart_type !== PIE_CHART_TYPE
|
|
|
|
? `discourse-poll-${type}-results`
|
|
|
|
: "discourse-poll-pie-chart";
|
|
|
|
return this.attach(resultsWidget, attrs);
|
2018-11-19 21:50:00 +08:00
|
|
|
} else if (options) {
|
2020-01-28 20:30:04 +08:00
|
|
|
const contents = [];
|
|
|
|
|
2020-10-02 15:21:24 +08:00
|
|
|
contents.push(new RawHtml({ html: attrs.titleHTML }));
|
|
|
|
|
2020-02-18 18:13:19 +08:00
|
|
|
if (!checkUserGroups(this.currentUser, poll)) {
|
2020-01-28 20:30:04 +08:00
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"div.alert.alert-danger",
|
|
|
|
I18n.t("poll.results.groups.title", { groups: poll.groups })
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
contents.push(
|
|
|
|
h(
|
|
|
|
"ul",
|
|
|
|
options.map((option) => {
|
|
|
|
return this.attach("discourse-poll-option", {
|
|
|
|
option,
|
|
|
|
isMultiple: attrs.isMultiple,
|
|
|
|
vote: attrs.vote,
|
|
|
|
});
|
|
|
|
})
|
|
|
|
)
|
2018-06-16 00:42:20 +08:00
|
|
|
);
|
2020-01-28 20:30:04 +08:00
|
|
|
|
|
|
|
return contents;
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-info", {
|
|
|
|
tagName: "div.poll-info",
|
2016-12-08 04:48:47 +08: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-16 00:42:20 +08:00
|
|
|
return I18n.t("poll.multiple.help.between_min_and_max_options", {
|
|
|
|
min,
|
|
|
|
max,
|
|
|
|
});
|
2016-12-08 04:48:47 +08:00
|
|
|
} else {
|
2018-06-16 00:42:20 +08:00
|
|
|
return I18n.t("poll.multiple.help.at_least_min_options", {
|
|
|
|
count: min,
|
|
|
|
});
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
} else if (max <= options) {
|
|
|
|
return I18n.t("poll.multiple.help.up_to_max_options", { count: max });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs) {
|
|
|
|
const { poll } = attrs;
|
2018-06-16 00:42:20 +08:00
|
|
|
const count = poll.get("voters");
|
2018-11-19 21:50:00 +08:00
|
|
|
const contents = [
|
2018-06-16 00:42:20 +08:00
|
|
|
h("p", [
|
|
|
|
h("span.info-number", count.toString()),
|
|
|
|
h("span.info-label", I18n.t("poll.voters", { count })),
|
|
|
|
]),
|
|
|
|
];
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
if (attrs.isMultiple) {
|
2018-05-03 08:12:19 +08:00
|
|
|
if (attrs.showResults || attrs.isClosed) {
|
2018-06-16 00:42:20 +08:00
|
|
|
const totalVotes = poll.get("options").reduce((total, o) => {
|
2016-12-08 04:48:47 +08:00
|
|
|
return total + parseInt(o.votes, 10);
|
|
|
|
}, 0);
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
h("p", [
|
|
|
|
h("span.info-number", totalVotes.toString()),
|
|
|
|
h(
|
|
|
|
"span.info-label",
|
|
|
|
I18n.t("poll.total_votes", { count: totalVotes })
|
|
|
|
),
|
|
|
|
])
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
} else {
|
2018-06-16 00:42:20 +08:00
|
|
|
const help = this.multipleHelpText(
|
|
|
|
attrs.min,
|
|
|
|
attrs.max,
|
|
|
|
poll.get("options.length")
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
if (help) {
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(infoTextHtml(help));
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 11:06:51 +08:00
|
|
|
if (
|
|
|
|
!attrs.isClosed &&
|
|
|
|
!attrs.showResults &&
|
|
|
|
poll.public &&
|
|
|
|
poll.results !== "staff_only"
|
|
|
|
) {
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(infoTextHtml(I18n.t("poll.public.title")));
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
return contents;
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-11-26 01:51:01 +08:00
|
|
|
function clearPieChart(id) {
|
|
|
|
let el = document.querySelector(`#poll-results-chart-${id}`);
|
|
|
|
el && el.parentNode.removeChild(el);
|
|
|
|
}
|
|
|
|
|
|
|
|
createWidget("discourse-poll-pie-canvas", {
|
|
|
|
tagName: "canvas.poll-results-canvas",
|
|
|
|
|
2019-11-27 07:10:43 +08:00
|
|
|
init(attrs) {
|
|
|
|
loadScript("/javascripts/Chart.min.js").then(() => {
|
|
|
|
const data = attrs.poll.options.mapBy("votes");
|
|
|
|
const labels = attrs.poll.options.mapBy("html");
|
|
|
|
const config = pieChartConfig(data, labels);
|
|
|
|
|
|
|
|
const el = document.getElementById(`poll-results-chart-${attrs.id}`);
|
|
|
|
// eslint-disable-next-line
|
2020-02-12 00:02:54 +08:00
|
|
|
let chart = new Chart(el.getContext("2d"), config);
|
|
|
|
document.getElementById(
|
|
|
|
`poll-results-legend-${attrs.id}`
|
|
|
|
).innerHTML = chart.generateLegend();
|
2019-11-27 07:10:43 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-11-26 01:51:01 +08:00
|
|
|
buildAttributes(attrs) {
|
|
|
|
return {
|
|
|
|
id: `poll-results-chart-${attrs.id}`,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
createWidget("discourse-poll-pie-chart", {
|
|
|
|
tagName: "div.poll-results-chart",
|
|
|
|
html(attrs) {
|
|
|
|
const contents = [];
|
|
|
|
|
|
|
|
if (!attrs.showResults) {
|
2019-11-27 07:10:43 +08:00
|
|
|
clearPieChart(attrs.id);
|
2019-11-26 01:51:01 +08:00
|
|
|
return contents;
|
|
|
|
}
|
|
|
|
|
2020-08-06 23:57:06 +08:00
|
|
|
if (attrs.groupableUserFields.length) {
|
|
|
|
const button = this.attach("button", {
|
|
|
|
className: "btn-default poll-show-breakdown",
|
|
|
|
label: "poll.group-results.label",
|
|
|
|
title: "poll.group-results.title",
|
|
|
|
icon: "far-eye",
|
|
|
|
action: "showBreakdown",
|
|
|
|
});
|
2019-11-27 07:10:43 +08:00
|
|
|
|
2020-08-06 23:57:06 +08:00
|
|
|
contents.push(button);
|
2019-11-26 01:51:01 +08:00
|
|
|
}
|
2020-08-06 23:57:06 +08:00
|
|
|
|
2020-10-02 15:21:24 +08:00
|
|
|
contents.push(new RawHtml({ html: attrs.titleHTML }));
|
|
|
|
|
2020-08-06 23:57:06 +08:00
|
|
|
const chart = this.attach("discourse-poll-pie-canvas", attrs);
|
2019-11-26 01:51:01 +08:00
|
|
|
contents.push(chart);
|
2020-08-06 23:57:06 +08:00
|
|
|
|
2020-02-12 00:02:54 +08:00
|
|
|
contents.push(h(`div#poll-results-legend-${attrs.id}.pie-chart-legends`));
|
2020-08-06 23:57:06 +08:00
|
|
|
|
2019-11-26 01:51:01 +08:00
|
|
|
return contents;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-12-03 03:59:52 +08:00
|
|
|
function pieChartConfig(data, labels, opts = {}) {
|
2020-02-12 00:02:54 +08:00
|
|
|
const aspectRatio = "aspectRatio" in opts ? opts.aspectRatio : 2.2;
|
|
|
|
const strippedLabels = labels.map((l) => stripHtml(l));
|
2019-11-26 01:51:01 +08:00
|
|
|
return {
|
|
|
|
type: PIE_CHART_TYPE,
|
|
|
|
data: {
|
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
data,
|
|
|
|
backgroundColor: getColors(data.length),
|
|
|
|
},
|
|
|
|
],
|
2020-02-12 00:02:54 +08:00
|
|
|
labels: strippedLabels,
|
2019-11-26 01:51:01 +08:00
|
|
|
},
|
|
|
|
options: {
|
|
|
|
responsive: true,
|
|
|
|
aspectRatio,
|
2020-02-12 23:09:40 +08:00
|
|
|
animation: { duration: 0 },
|
2020-02-12 00:02:54 +08:00
|
|
|
legend: { display: false },
|
|
|
|
legendCallback: function (chart) {
|
|
|
|
let legends = "";
|
|
|
|
for (let i = 0; i < labels.length; i++) {
|
|
|
|
legends += `<div class="legend"><span class="swatch" style="background-color:
|
|
|
|
${chart.data.datasets[0].backgroundColor[i]}"></span>${labels[i]}</div>`;
|
|
|
|
}
|
|
|
|
return legends;
|
|
|
|
},
|
2019-11-26 01:51:01 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-12 00:02:54 +08:00
|
|
|
function stripHtml(html) {
|
|
|
|
var doc = new DOMParser().parseFromString(html, "text/html");
|
|
|
|
return doc.body.textContent || "";
|
|
|
|
}
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
createWidget("discourse-poll-buttons", {
|
|
|
|
tagName: "div.poll-buttons",
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
html(attrs) {
|
2018-11-19 21:50:00 +08:00
|
|
|
const contents = [];
|
2016-12-08 04:48:47 +08:00
|
|
|
const { poll, post } = attrs;
|
2018-06-16 00:42:20 +08:00
|
|
|
const topicArchived = post.get("topic.archived");
|
2018-05-03 08:12:19 +08:00
|
|
|
const closed = attrs.isClosed;
|
2019-08-16 02:27:18 +08:00
|
|
|
const staffOnly = poll.results === "staff_only";
|
|
|
|
const isStaff = this.currentUser && this.currentUser.staff;
|
2019-12-06 04:03:06 +08:00
|
|
|
const isAdmin = this.currentUser && this.currentUser.admin;
|
2020-03-21 02:29:00 +08:00
|
|
|
const isMe = this.currentUser && post.user_id === this.currentUser.id;
|
2019-11-23 03:06:39 +08:00
|
|
|
const dataExplorerEnabled = this.siteSettings.data_explorer_enabled;
|
2019-08-16 02:27:18 +08:00
|
|
|
const hideResultsDisabled = !staffOnly && (closed || topicArchived);
|
2019-11-23 03:06:39 +08:00
|
|
|
const exportQueryID = this.siteSettings.poll_export_data_explorer_query_id;
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
if (attrs.isMultiple && !hideResultsDisabled) {
|
|
|
|
const castVotesDisabled = !attrs.canCastVotes;
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
this.attach("button", {
|
2019-11-26 01:51:01 +08:00
|
|
|
className: `cast-votes ${
|
2019-03-07 09:27:40 +08:00
|
|
|
castVotesDisabled ? "btn-default" : "btn-primary"
|
|
|
|
}`,
|
2018-06-16 00:42:20 +08:00
|
|
|
label: "poll.cast-votes.label",
|
|
|
|
title: "poll.cast-votes.title",
|
|
|
|
disabled: castVotesDisabled,
|
|
|
|
action: "castVotes",
|
|
|
|
})
|
|
|
|
);
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(" ");
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
|
2018-05-03 08:12:19 +08:00
|
|
|
if (attrs.showResults || hideResultsDisabled) {
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
this.attach("button", {
|
2019-11-26 01:51:01 +08:00
|
|
|
className: "btn-default toggle-results",
|
2018-06-16 00:42:20 +08:00
|
|
|
label: "poll.hide-results.label",
|
|
|
|
title: "poll.hide-results.title",
|
2019-01-22 19:02:02 +08:00
|
|
|
icon: "far-eye-slash",
|
2018-06-16 00:42:20 +08:00
|
|
|
disabled: hideResultsDisabled,
|
|
|
|
action: "toggleResults",
|
|
|
|
})
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
} else {
|
2020-03-21 02:29:00 +08:00
|
|
|
if (poll.get("results") === "on_vote" && !attrs.hasVoted && !isMe) {
|
2018-11-19 21:50:00 +08:00
|
|
|
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")));
|
2019-08-16 02:27:18 +08:00
|
|
|
} else if (poll.results === "staff_only" && !isStaff) {
|
|
|
|
contents.push(infoTextHtml(I18n.t("poll.results.staff.title")));
|
2018-11-19 21:50:00 +08:00
|
|
|
} else {
|
|
|
|
contents.push(
|
|
|
|
this.attach("button", {
|
2019-11-26 01:51:01 +08:00
|
|
|
className: "btn-default toggle-results",
|
2018-11-19 21:50:00 +08:00
|
|
|
label: "poll.show-results.label",
|
|
|
|
title: "poll.show-results.title",
|
2019-01-22 19:02:02 +08:00
|
|
|
icon: "far-eye",
|
2018-11-19 21:50:00 +08:00
|
|
|
disabled: poll.get("voters") === 0,
|
|
|
|
action: "toggleResults",
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
2018-05-12 08:14:58 +08:00
|
|
|
|
2019-12-06 04:03:06 +08:00
|
|
|
if (isAdmin && dataExplorerEnabled && poll.voters > 0 && exportQueryID) {
|
2019-11-23 03:06:39 +08:00
|
|
|
contents.push(
|
|
|
|
this.attach("button", {
|
|
|
|
className: "btn btn-default export-results",
|
|
|
|
label: "poll.export-results.label",
|
|
|
|
title: "poll.export-results.title",
|
|
|
|
icon: "download",
|
|
|
|
disabled: poll.voters === 0,
|
|
|
|
action: "exportResults",
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (poll.get("close")) {
|
2020-05-07 04:18:47 +08:00
|
|
|
const closeDate = moment(poll.get("close"));
|
2018-11-19 21:50:00 +08: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 {
|
2020-05-07 04:18:47 +08:00
|
|
|
const timeLeft = moment().to(closeDate, true);
|
2018-11-19 21:50:00 +08:00
|
|
|
label = I18n.t("poll.automatic_close.closes_in", { timeLeft });
|
|
|
|
}
|
|
|
|
|
|
|
|
contents.push(
|
|
|
|
new RawHtml({
|
|
|
|
html: `<span class="info-text" title="${title}">${label}</span>`,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2018-05-12 08:14:58 +08:00
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
if (
|
|
|
|
this.currentUser &&
|
2019-08-16 11:06:51 +08:00
|
|
|
(this.currentUser.get("id") === post.get("user_id") || isStaff) &&
|
2018-06-16 00:42:20 +08:00
|
|
|
!topicArchived
|
|
|
|
) {
|
2018-05-03 08:12:19 +08:00
|
|
|
if (closed) {
|
|
|
|
if (!attrs.isAutomaticallyClosed) {
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
this.attach("button", {
|
2019-11-26 01:51:01 +08:00
|
|
|
className: "btn-default toggle-status",
|
2018-06-16 00:42:20 +08:00
|
|
|
label: "poll.open.label",
|
|
|
|
title: "poll.open.title",
|
|
|
|
icon: "unlock-alt",
|
|
|
|
action: "toggleStatus",
|
|
|
|
})
|
|
|
|
);
|
2018-05-03 08:12:19 +08:00
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
} else {
|
2018-11-19 21:50:00 +08:00
|
|
|
contents.push(
|
2018-06-16 00:42:20 +08:00
|
|
|
this.attach("button", {
|
2019-11-26 01:51:01 +08:00
|
|
|
className: "toggle-status btn-danger",
|
2018-06-16 00:42:20 +08:00
|
|
|
label: "poll.close.label",
|
|
|
|
title: "poll.close.title",
|
|
|
|
icon: "lock",
|
|
|
|
action: "toggleStatus",
|
|
|
|
})
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
return contents;
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
export default createWidget("discourse-poll", {
|
2019-11-26 01:51:01 +08:00
|
|
|
tagName: "div",
|
2018-11-19 21:50:00 +08:00
|
|
|
buildKey: (attrs) => `poll-${attrs.id}`,
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
buildAttributes(attrs) {
|
2019-11-26 01:51:01 +08:00
|
|
|
let cssClasses = "poll";
|
2020-09-22 22:28:28 +08:00
|
|
|
if (attrs.poll.chart_type === PIE_CHART_TYPE) {
|
|
|
|
cssClasses += " pie";
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
return {
|
2019-11-26 01:51:01 +08:00
|
|
|
class: cssClasses,
|
2018-11-19 21:50:00 +08:00
|
|
|
"data-poll-name": attrs.poll.get("name"),
|
|
|
|
"data-poll-type": attrs.poll.get("type"),
|
2016-12-08 04:48:47 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
defaultState(attrs) {
|
2018-11-19 21:50:00 +08:00
|
|
|
const { post, poll } = attrs;
|
2019-08-16 02:27:18 +08:00
|
|
|
const staffOnly = attrs.poll.results === "staff_only";
|
2018-11-19 21:50:00 +08:00
|
|
|
|
2018-11-19 23:29:15 +08:00
|
|
|
const showResults =
|
2019-08-16 02:27:18 +08:00
|
|
|
(post.get("topic.archived") && !staffOnly) ||
|
|
|
|
(this.isClosed() && !staffOnly) ||
|
2019-08-16 11:06:51 +08:00
|
|
|
(poll.results !== "on_close" && this.hasVoted() && !staffOnly);
|
2018-11-19 21:50:00 +08:00
|
|
|
|
2018-05-03 08:12:19 +08:00
|
|
|
return { loading: false, showResults };
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
html(attrs, state) {
|
2019-08-16 02:27:18 +08:00
|
|
|
const staffOnly = attrs.poll.results === "staff_only";
|
2018-11-19 23:29:15 +08:00
|
|
|
const showResults =
|
2019-08-16 11:06:51 +08:00
|
|
|
state.showResults ||
|
|
|
|
(attrs.post.get("topic.archived") && !staffOnly) ||
|
|
|
|
(this.isClosed() && !staffOnly);
|
2018-11-19 21:50:00 +08:00
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
const newAttrs = jQuery.extend({}, attrs, {
|
|
|
|
canCastVotes: this.canCastVotes(),
|
2018-11-19 21:50:00 +08:00
|
|
|
hasVoted: this.hasVoted(),
|
2018-05-03 08:12:19 +08:00
|
|
|
isAutomaticallyClosed: this.isAutomaticallyClosed(),
|
2018-11-19 21:50:00 +08:00
|
|
|
isClosed: this.isClosed(),
|
|
|
|
isMultiple: this.isMultiple(),
|
|
|
|
max: this.max(),
|
2016-12-08 04:48:47 +08:00
|
|
|
min: this.min(),
|
2018-11-19 23:29:15 +08:00
|
|
|
showResults,
|
2016-12-08 04:48:47 +08:00
|
|
|
});
|
2018-05-03 08:12:19 +08:00
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
return h("div", [
|
|
|
|
this.attach("discourse-poll-container", newAttrs),
|
|
|
|
this.attach("discourse-poll-info", newAttrs),
|
|
|
|
this.attach("discourse-poll-buttons", newAttrs),
|
2016-12-08 04:48:47 +08:00
|
|
|
]);
|
|
|
|
},
|
|
|
|
|
|
|
|
min() {
|
2018-11-19 21:50:00 +08:00
|
|
|
let min = parseInt(this.attrs.poll.get("min"), 10);
|
2018-12-31 17:48:30 +08:00
|
|
|
if (isNaN(min) || min < 0) {
|
|
|
|
min = 0;
|
2018-06-16 00:42:20 +08:00
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
return min;
|
|
|
|
},
|
|
|
|
|
|
|
|
max() {
|
2018-11-19 21:50:00 +08:00
|
|
|
let max = parseInt(this.attrs.poll.get("max"), 10);
|
|
|
|
const numOptions = this.attrs.poll.get("options.length");
|
2018-06-16 00:42:20 +08:00
|
|
|
if (isNaN(max) || max > numOptions) {
|
|
|
|
max = numOptions;
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
return max;
|
|
|
|
},
|
|
|
|
|
2018-05-03 08:12:19 +08: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 21:50:00 +08:00
|
|
|
isMultiple() {
|
|
|
|
const { poll } = this.attrs;
|
|
|
|
return poll.get("type") === "multiple";
|
|
|
|
},
|
|
|
|
|
|
|
|
hasVoted() {
|
|
|
|
const { vote } = this.attrs;
|
|
|
|
return vote && vote.length > 0;
|
|
|
|
},
|
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
canCastVotes() {
|
|
|
|
const { state, attrs } = this;
|
2018-05-03 08:12:19 +08:00
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
if (this.isClosed() || state.showResults || state.loading) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const selectedOptionCount = attrs.vote.length;
|
2018-05-03 08:12:19 +08:00
|
|
|
|
2018-11-19 21:50:00 +08:00
|
|
|
if (this.isMultiple()) {
|
2018-06-16 00:42:20 +08:00
|
|
|
return (
|
|
|
|
selectedOptionCount >= this.min() && selectedOptionCount <= this.max()
|
|
|
|
);
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
2018-05-03 08:12:19 +08:00
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
return selectedOptionCount > 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleStatus() {
|
|
|
|
const { state, attrs } = this;
|
2018-05-03 08:12:19 +08:00
|
|
|
const { post, poll } = attrs;
|
|
|
|
|
2018-06-16 00:42:20 +08:00
|
|
|
if (this.isAutomaticallyClosed()) {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
bootbox.confirm(
|
2018-05-03 08:12:19 +08:00
|
|
|
I18n.t(this.isClosed() ? "poll.open.confirm" : "poll.close.confirm"),
|
2016-12-08 04:48:47 +08:00
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
(confirmed) => {
|
|
|
|
if (confirmed) {
|
|
|
|
state.loading = true;
|
2018-05-03 08:12:19 +08:00
|
|
|
const status = this.isClosed() ? "open" : "closed";
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
ajax("/polls/toggle_status", {
|
|
|
|
type: "PUT",
|
|
|
|
data: {
|
2018-06-16 00:42:20 +08:00
|
|
|
post_id: post.get("id"),
|
|
|
|
poll_name: poll.get("name"),
|
|
|
|
status,
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
2018-11-19 23:29:15 +08: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-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleResults() {
|
|
|
|
this.state.showResults = !this.state.showResults;
|
|
|
|
},
|
|
|
|
|
2019-11-23 03:06:39 +08:00
|
|
|
exportResults() {
|
|
|
|
const { attrs } = this;
|
|
|
|
const queryID = this.siteSettings.poll_export_data_explorer_query_id;
|
|
|
|
|
|
|
|
// This uses the Data Explorer plugin export as CSV route
|
|
|
|
// There is detection to check if the plugin is enabled before showing the button
|
|
|
|
ajax(`/admin/plugins/explorer/queries/${queryID}/run.csv`, {
|
|
|
|
type: "POST",
|
|
|
|
data: {
|
|
|
|
// needed for data-explorer route compatibility
|
|
|
|
params: JSON.stringify({
|
|
|
|
poll_name: attrs.poll.name,
|
|
|
|
post_id: attrs.post.id.toString(), // needed for data-explorer route compatibility
|
|
|
|
}),
|
|
|
|
explain: false,
|
|
|
|
limit: 1000000,
|
|
|
|
download: 1,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then((csvContent) => {
|
|
|
|
const downloadLink = document.createElement("a");
|
|
|
|
const blob = new Blob([csvContent], {
|
|
|
|
type: "text/csv;charset=utf-8;",
|
|
|
|
});
|
|
|
|
downloadLink.href = URL.createObjectURL(blob);
|
|
|
|
downloadLink.setAttribute(
|
|
|
|
"download",
|
|
|
|
`poll-export-${attrs.poll.name}-${attrs.post.id}.csv`
|
|
|
|
);
|
|
|
|
downloadLink.click();
|
|
|
|
downloadLink.remove();
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("poll.error_while_exporting_results"));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
showLogin() {
|
2018-06-16 00:42:20 +08:00
|
|
|
this.register.lookup("route:application").send("showLogin");
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
|
2020-01-28 20:30:04 +08:00
|
|
|
_toggleOption(option) {
|
|
|
|
const { vote } = this.attrs;
|
|
|
|
const chosenIdx = vote.indexOf(option.id);
|
|
|
|
if (chosenIdx !== -1) {
|
|
|
|
vote.splice(chosenIdx, 1);
|
|
|
|
} else {
|
|
|
|
vote.push(option.id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-12-08 04:48:47 +08:00
|
|
|
toggleOption(option) {
|
2018-05-03 08:12:19 +08:00
|
|
|
const { attrs } = this;
|
|
|
|
|
2020-09-22 22:28:28 +08:00
|
|
|
if (this.isClosed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.currentUser) {
|
|
|
|
return this.showLogin();
|
|
|
|
}
|
|
|
|
if (!checkUserGroups(this.currentUser, this.attrs.poll)) {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
const { vote } = attrs;
|
2018-11-19 21:50:00 +08:00
|
|
|
if (!this.isMultiple()) {
|
2016-12-08 04:48:47 +08:00
|
|
|
vote.length = 0;
|
|
|
|
}
|
|
|
|
|
2020-01-28 20:30:04 +08:00
|
|
|
this._toggleOption(option);
|
2018-11-19 21:50:00 +08:00
|
|
|
if (!this.isMultiple()) {
|
2020-01-28 20:30:04 +08:00
|
|
|
return this.castVotes().catch(() => this._toggleOption(option));
|
2016-12-08 04:48:47 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
castVotes() {
|
2020-09-22 22:28:28 +08:00
|
|
|
if (!this.canCastVotes()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.currentUser) {
|
|
|
|
return this.showLogin();
|
|
|
|
}
|
2016-12-08 04:48:47 +08:00
|
|
|
|
|
|
|
const { attrs, state } = this;
|
|
|
|
|
|
|
|
state.loading = true;
|
|
|
|
|
|
|
|
return ajax("/polls/vote", {
|
|
|
|
type: "PUT",
|
|
|
|
data: {
|
|
|
|
post_id: attrs.post.id,
|
2018-11-19 21:50:00 +08:00
|
|
|
poll_name: attrs.poll.get("name"),
|
2016-12-08 04:48:47 +08:00
|
|
|
options: attrs.vote,
|
|
|
|
},
|
2018-11-19 23:29:15 +08:00
|
|
|
})
|
|
|
|
.then(({ poll }) => {
|
|
|
|
attrs.poll.setProperties(poll);
|
|
|
|
if (attrs.poll.get("results") !== "on_close") {
|
|
|
|
state.showResults = true;
|
|
|
|
}
|
2019-08-16 02:27:18 +08:00
|
|
|
if (attrs.poll.results === "staff_only") {
|
|
|
|
if (this.currentUser && this.currentUser.get("staff")) {
|
|
|
|
state.showResults = true;
|
|
|
|
} else {
|
|
|
|
state.showResults = false;
|
|
|
|
}
|
|
|
|
}
|
2018-11-19 23:29:15 +08:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
if (error) {
|
|
|
|
popupAjaxError(error);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("poll.error_while_casting_votes"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
state.loading = false;
|
|
|
|
});
|
2019-11-26 01:51:01 +08:00
|
|
|
},
|
|
|
|
|
2020-08-06 23:57:06 +08:00
|
|
|
showBreakdown() {
|
|
|
|
showModal("poll-breakdown", {
|
|
|
|
model: this.attrs,
|
|
|
|
panels: [
|
|
|
|
{ id: "percentage", title: "poll.breakdown.percentage" },
|
|
|
|
{ id: "count", title: "poll.breakdown.count" },
|
|
|
|
],
|
|
|
|
});
|
2016-12-08 04:48:47 +08:00
|
|
|
},
|
|
|
|
});
|