2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2021-04-12 12:48:01 -04:00
|
|
|
import EmberObject, { action } from "@ember/object";
|
|
|
|
import { gt, or } from "@ember/object/computed";
|
|
|
|
import { next } from "@ember/runloop";
|
|
|
|
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
|
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
2020-08-06 11:57:06 -04:00
|
|
|
import I18n from "I18n";
|
2016-06-13 06:21:14 -04:00
|
|
|
|
2019-11-25 12:51:01 -05:00
|
|
|
export const BAR_CHART_TYPE = "bar";
|
|
|
|
export const PIE_CHART_TYPE = "pie";
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
export const REGULAR_POLL_TYPE = "regular";
|
|
|
|
export const NUMBER_POLL_TYPE = "number";
|
|
|
|
export const MULTIPLE_POLL_TYPE = "multiple";
|
|
|
|
|
|
|
|
const ALWAYS_POLL_RESULT = "always";
|
|
|
|
const VOTE_POLL_RESULT = "on_vote";
|
|
|
|
const CLOSED_POLL_RESULT = "on_close";
|
|
|
|
const STAFF_POLL_RESULT = "staff_only";
|
|
|
|
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
|
|
showAdvanced: false,
|
|
|
|
|
|
|
|
pollType: REGULAR_POLL_TYPE,
|
|
|
|
pollTitle: "",
|
|
|
|
pollOptions: null,
|
|
|
|
pollMin: 1,
|
|
|
|
pollMax: 2,
|
|
|
|
pollStep: 1,
|
|
|
|
pollGroups: null,
|
|
|
|
pollAutoClose: null,
|
|
|
|
pollResult: ALWAYS_POLL_RESULT,
|
|
|
|
chartType: BAR_CHART_TYPE,
|
|
|
|
publicPoll: null,
|
|
|
|
|
|
|
|
onShow() {
|
|
|
|
this.setProperties({
|
|
|
|
showAdvanced: false,
|
|
|
|
pollType: REGULAR_POLL_TYPE,
|
|
|
|
pollTitle: null,
|
|
|
|
pollOptions: [EmberObject.create({ value: "" })],
|
|
|
|
pollMin: 1,
|
|
|
|
pollMax: 2,
|
|
|
|
pollStep: 1,
|
|
|
|
pollGroups: null,
|
|
|
|
pollAutoClose: null,
|
|
|
|
pollResult: ALWAYS_POLL_RESULT,
|
|
|
|
chartType: BAR_CHART_TYPE,
|
|
|
|
publicPoll: false,
|
|
|
|
});
|
2019-11-25 12:51:01 -05:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed
|
|
|
|
pollResults() {
|
|
|
|
const options = [
|
2018-11-19 08:50:00 -05:00
|
|
|
{
|
|
|
|
name: I18n.t("poll.ui_builder.poll_result.always"),
|
2021-04-12 12:48:01 -04:00
|
|
|
value: ALWAYS_POLL_RESULT,
|
2018-11-19 08:50:00 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: I18n.t("poll.ui_builder.poll_result.vote"),
|
2021-04-12 12:48:01 -04:00
|
|
|
value: VOTE_POLL_RESULT,
|
2018-11-19 08:50:00 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: I18n.t("poll.ui_builder.poll_result.closed"),
|
2021-04-12 12:48:01 -04:00
|
|
|
value: CLOSED_POLL_RESULT,
|
2018-11-19 08:50:00 -05:00
|
|
|
},
|
|
|
|
];
|
2021-04-12 12:48:01 -04:00
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
if (this.get("currentUser.staff")) {
|
2019-12-17 16:43:15 -05:00
|
|
|
options.push({
|
|
|
|
name: I18n.t("poll.ui_builder.poll_result.staff"),
|
2021-04-12 12:48:01 -04:00
|
|
|
value: STAFF_POLL_RESULT,
|
2019-12-17 16:43:15 -05:00
|
|
|
});
|
|
|
|
}
|
2018-11-19 08:50:00 -05:00
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
return options;
|
2020-01-28 07:30:04 -05:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("pollType")
|
|
|
|
isRegular(pollType) {
|
|
|
|
return pollType === REGULAR_POLL_TYPE;
|
2017-04-04 23:15:39 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("pollType")
|
|
|
|
isNumber(pollType) {
|
|
|
|
return pollType === NUMBER_POLL_TYPE;
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("pollType")
|
|
|
|
isMultiple(pollType) {
|
|
|
|
return pollType === MULTIPLE_POLL_TYPE;
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
showNumber: or("showAdvanced", "isNumber"),
|
2016-06-13 06:21:14 -04:00
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("pollOptions.@each.value")
|
2016-06-13 06:21:14 -04:00
|
|
|
pollOptionsCount(pollOptions) {
|
2021-04-12 12:48:01 -04:00
|
|
|
return pollOptions.filter((option) => option.value.length > 0).length;
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("site.groups")
|
|
|
|
siteGroups(groups) {
|
|
|
|
// prevents group "everyone" to be listed
|
|
|
|
return groups.filter((g) => g.id !== 0);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("chartType", "pollType")
|
|
|
|
isPie(chartType, pollType) {
|
|
|
|
return pollType !== NUMBER_POLL_TYPE && chartType === PIE_CHART_TYPE;
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
canRemoveOption: gt("pollOptions.length", 1),
|
2016-06-13 06:21:14 -04:00
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@observes("pollType", "pollOptionsCount")
|
|
|
|
_setPollMinMax() {
|
|
|
|
if (this.isMultiple) {
|
|
|
|
if (
|
|
|
|
this.pollMin >= this.pollMax ||
|
|
|
|
this.pollMin >= this.pollOptionsCount
|
|
|
|
) {
|
|
|
|
this.set("pollMin", this.pollOptionsCount > 0 ? 1 : 0);
|
2017-11-30 11:04:41 -05:00
|
|
|
}
|
2016-06-13 06:21:14 -04:00
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
if (
|
|
|
|
this.pollMin >= this.pollMax ||
|
|
|
|
this.pollMax > this.pollOptionsCount
|
|
|
|
) {
|
|
|
|
this.set("pollMax", Math.min(this.pollMin + 1, this.pollOptionsCount));
|
|
|
|
}
|
|
|
|
} else if (this.isNumber) {
|
|
|
|
this.set("pollMax", this.siteSettings.poll_maximum_options);
|
2020-09-22 10:28:28 -04:00
|
|
|
}
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
@discourseComputed(
|
2018-06-15 12:42:20 -04:00
|
|
|
"pollType",
|
2018-11-19 08:50:00 -05:00
|
|
|
"pollResult",
|
2018-06-15 12:42:20 -04:00
|
|
|
"publicPoll",
|
2020-10-02 03:21:24 -04:00
|
|
|
"pollTitle",
|
2021-04-12 12:48:01 -04:00
|
|
|
"pollOptions.@each.value",
|
2018-06-15 12:42:20 -04:00
|
|
|
"pollMin",
|
|
|
|
"pollMax",
|
|
|
|
"pollStep",
|
2020-01-28 07:30:04 -05:00
|
|
|
"pollGroups",
|
2021-04-12 12:48:01 -04:00
|
|
|
"pollAutoClose",
|
|
|
|
"chartType"
|
2018-06-15 12:42:20 -04:00
|
|
|
)
|
|
|
|
pollOutput(
|
|
|
|
pollType,
|
2018-11-19 08:50:00 -05:00
|
|
|
pollResult,
|
2018-06-15 12:42:20 -04:00
|
|
|
publicPoll,
|
2020-10-02 03:21:24 -04:00
|
|
|
pollTitle,
|
2018-06-15 12:42:20 -04:00
|
|
|
pollOptions,
|
|
|
|
pollMin,
|
|
|
|
pollMax,
|
|
|
|
pollStep,
|
2020-01-28 07:30:04 -05:00
|
|
|
pollGroups,
|
2021-04-12 12:48:01 -04:00
|
|
|
pollAutoClose,
|
|
|
|
chartType
|
2018-06-15 12:42:20 -04:00
|
|
|
) {
|
|
|
|
let pollHeader = "[poll";
|
|
|
|
let output = "";
|
|
|
|
|
2019-05-27 04:15:39 -04:00
|
|
|
const match = this.toolbarEvent
|
2018-06-15 12:42:20 -04:00
|
|
|
.getText()
|
|
|
|
.match(/\[poll(\s+name=[^\s\]]+)*.*\]/gim);
|
2016-07-05 10:14:59 -04:00
|
|
|
|
|
|
|
if (match) {
|
|
|
|
pollHeader += ` name=poll${match.length + 1}`;
|
2018-06-15 12:42:20 -04:00
|
|
|
}
|
2016-07-05 10:14:59 -04:00
|
|
|
|
2017-11-30 11:04:41 -05:00
|
|
|
let step = pollStep;
|
2018-06-15 12:42:20 -04:00
|
|
|
if (step < 1) {
|
|
|
|
step = 1;
|
|
|
|
}
|
2017-11-30 11:04:41 -05:00
|
|
|
|
2020-09-22 10:28:28 -04:00
|
|
|
if (pollType) {
|
|
|
|
pollHeader += ` type=${pollType}`;
|
|
|
|
}
|
|
|
|
if (pollResult) {
|
|
|
|
pollHeader += ` results=${pollResult}`;
|
|
|
|
}
|
2021-04-12 12:48:01 -04:00
|
|
|
if (pollMin && pollType !== REGULAR_POLL_TYPE) {
|
2020-09-22 10:28:28 -04:00
|
|
|
pollHeader += ` min=${pollMin}`;
|
|
|
|
}
|
2021-04-12 12:48:01 -04:00
|
|
|
if (pollMax && pollType !== REGULAR_POLL_TYPE) {
|
2020-09-22 10:28:28 -04:00
|
|
|
pollHeader += ` max=${pollMax}`;
|
|
|
|
}
|
2021-04-12 12:48:01 -04:00
|
|
|
if (pollType === NUMBER_POLL_TYPE) {
|
2020-09-22 10:28:28 -04:00
|
|
|
pollHeader += ` step=${step}`;
|
|
|
|
}
|
|
|
|
if (publicPoll) {
|
|
|
|
pollHeader += ` public=true`;
|
|
|
|
}
|
2021-04-12 12:48:01 -04:00
|
|
|
if (chartType && pollType !== NUMBER_POLL_TYPE) {
|
2019-11-25 12:51:01 -05:00
|
|
|
pollHeader += ` chartType=${chartType}`;
|
2020-09-22 10:28:28 -04:00
|
|
|
}
|
2020-06-12 07:52:32 -04:00
|
|
|
if (pollGroups && pollGroups.length > 0) {
|
|
|
|
pollHeader += ` groups=${pollGroups}`;
|
|
|
|
}
|
2021-04-12 12:48:01 -04:00
|
|
|
if (pollAutoClose) {
|
|
|
|
pollHeader += ` close=${pollAutoClose.toISOString()}`;
|
2018-06-12 09:31:09 -04:00
|
|
|
}
|
2018-05-02 20:12:19 -04:00
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
pollHeader += "]";
|
2016-06-13 06:21:14 -04:00
|
|
|
output += `${pollHeader}\n`;
|
|
|
|
|
2020-10-02 03:21:24 -04:00
|
|
|
if (pollTitle) {
|
|
|
|
output += `# ${pollTitle.trim()}\n`;
|
|
|
|
}
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
if (pollOptions.length > 0 && pollType !== NUMBER_POLL_TYPE) {
|
|
|
|
pollOptions.forEach((option) => {
|
|
|
|
if (option.value.length > 0) {
|
|
|
|
output += `* ${option.value.trim()}\n`;
|
2020-09-22 10:28:28 -04:00
|
|
|
}
|
2016-07-14 03:10:31 -04:00
|
|
|
});
|
2016-06-13 06:21:14 -04:00
|
|
|
}
|
|
|
|
|
2019-10-16 21:40:42 -04:00
|
|
|
output += "[/poll]\n";
|
2016-06-13 06:21:14 -04:00
|
|
|
return output;
|
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("isNumber", "pollOptionsCount")
|
|
|
|
minNumOfOptionsValidation(isNumber, pollOptionsCount) {
|
2017-03-14 12:34:30 -04:00
|
|
|
let options = { ok: true };
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
if (!isNumber && pollOptionsCount === 0) {
|
2018-06-15 12:42:20 -04:00
|
|
|
options = {
|
|
|
|
failed: true,
|
2021-04-12 12:48:01 -04:00
|
|
|
reason: I18n.t("poll.ui_builder.help.options_count"),
|
2018-06-15 12:42:20 -04:00
|
|
|
};
|
2017-03-14 12:34:30 -04:00
|
|
|
}
|
|
|
|
|
2019-11-11 15:48:33 -05:00
|
|
|
return EmberObject.create(options);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("pollOptions.@each.value")
|
|
|
|
showMinNumOfOptionsValidation(pollOptions) {
|
|
|
|
return pollOptions.length !== 1 || pollOptions[0].value !== "";
|
|
|
|
},
|
2017-11-30 11:04:41 -05:00
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed(
|
|
|
|
"isMultiple",
|
|
|
|
"pollOptionsCount",
|
|
|
|
"isNumber",
|
|
|
|
"pollMin",
|
|
|
|
"pollMax"
|
|
|
|
)
|
|
|
|
minMaxValueValidation(
|
|
|
|
isMultiple,
|
|
|
|
pollOptionsCount,
|
|
|
|
isNumber,
|
|
|
|
pollMin,
|
|
|
|
pollMax
|
|
|
|
) {
|
|
|
|
pollMin = parseInt(pollMin, 10) || 0;
|
|
|
|
pollMax = parseInt(pollMax, 10) || 0;
|
|
|
|
|
|
|
|
const fail = {
|
|
|
|
failed: true,
|
|
|
|
reason: I18n.t("poll.ui_builder.help.invalid_values"),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isMultiple) {
|
|
|
|
if (
|
|
|
|
pollMin > pollMax ||
|
|
|
|
pollMin < 0 ||
|
|
|
|
(pollOptionsCount > 0 && pollMax > pollOptionsCount)
|
|
|
|
) {
|
|
|
|
return EmberObject.create(fail);
|
|
|
|
}
|
|
|
|
} else if (isNumber) {
|
|
|
|
if (pollMin >= pollMax) {
|
|
|
|
return EmberObject.create(fail);
|
|
|
|
}
|
2017-11-30 11:04:41 -05:00
|
|
|
}
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
return EmberObject.create({ ok: true });
|
2017-11-30 11:04:41 -05:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed("isNumber", "pollStep")
|
|
|
|
minStepValueValidation(isNumber, pollStep) {
|
2016-06-13 06:21:14 -04:00
|
|
|
let options = { ok: true };
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
if (isNumber && pollStep < 1) {
|
2018-06-15 12:42:20 -04:00
|
|
|
options = {
|
|
|
|
failed: true,
|
2021-04-12 12:48:01 -04:00
|
|
|
reason: I18n.t("poll.ui_builder.help.min_step_value"),
|
2018-06-15 12:42:20 -04:00
|
|
|
};
|
2016-06-13 06:21:14 -04:00
|
|
|
}
|
|
|
|
|
2019-11-11 15:48:33 -05:00
|
|
|
return EmberObject.create(options);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@discourseComputed(
|
|
|
|
"minMaxValueValidation",
|
|
|
|
"minStepValueValidation",
|
|
|
|
"minNumOfOptionsValidation"
|
|
|
|
)
|
|
|
|
disableInsert(
|
|
|
|
minMaxValueValidation,
|
|
|
|
minStepValueValidation,
|
|
|
|
minNumOfOptionsValidation
|
|
|
|
) {
|
|
|
|
return (
|
|
|
|
!minMaxValueValidation.ok ||
|
|
|
|
!minStepValueValidation.ok ||
|
|
|
|
!minNumOfOptionsValidation.ok
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2020-08-31 16:34:14 -04:00
|
|
|
_comboboxOptions(startIndex, endIndex) {
|
|
|
|
return [...Array(endIndex - startIndex).keys()].map((number) => ({
|
|
|
|
value: number + startIndex,
|
|
|
|
name: number + startIndex,
|
|
|
|
}));
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@action
|
|
|
|
insertPoll() {
|
|
|
|
this.toolbarEvent.addText(this.pollOutput);
|
|
|
|
this.send("closeModal");
|
|
|
|
},
|
|
|
|
|
|
|
|
@action
|
|
|
|
toggleAdvanced() {
|
|
|
|
this.toggleProperty("showAdvanced");
|
|
|
|
},
|
|
|
|
|
|
|
|
@action
|
|
|
|
addOption(beforeOption, value, e) {
|
|
|
|
if (value !== "") {
|
|
|
|
const idx = this.pollOptions.indexOf(beforeOption) + 1;
|
|
|
|
const option = EmberObject.create({ value: "" });
|
|
|
|
this.pollOptions.insertAt(idx, option);
|
|
|
|
|
|
|
|
let lastOptionIdx = 0;
|
|
|
|
this.pollOptions.forEach((o) => o.set("idx", lastOptionIdx++));
|
|
|
|
|
|
|
|
next(() => {
|
|
|
|
const pollOptions = document.getElementsByClassName("poll-options");
|
|
|
|
if (pollOptions) {
|
|
|
|
const inputs = pollOptions[0].getElementsByTagName("input");
|
|
|
|
if (option.idx < inputs.length) {
|
|
|
|
inputs[option.idx].focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
2021-04-12 12:48:01 -04:00
|
|
|
@action
|
|
|
|
removeOption(option) {
|
|
|
|
this.pollOptions.removeObject(option);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
});
|