2016-06-13 06:21:14 -04:00
|
|
|
import { default as computed, observes } from 'ember-addons/ember-computed-decorators';
|
|
|
|
|
|
|
|
export default Ember.Controller.extend({
|
|
|
|
needs: ['modal'],
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this._super();
|
|
|
|
this._setupPoll();
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed
|
|
|
|
pollTypes() {
|
|
|
|
return [I18n.t("poll.ui_builder.poll_type.number"), I18n.t("poll.ui_builder.poll_type.multiple")].map(type => {
|
|
|
|
return { name: type, value: type };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("pollType", "pollOptionsCount")
|
|
|
|
isMultiple(pollType, count) {
|
|
|
|
return (pollType === I18n.t("poll.ui_builder.poll_type.multiple")) && count > 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("pollType")
|
|
|
|
isNumber(pollType) {
|
|
|
|
return pollType === I18n.t("poll.ui_builder.poll_type.number");
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("isNumber", "isMultiple")
|
|
|
|
showMinMax(isNumber, isMultiple) {
|
|
|
|
return isNumber || isMultiple;
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("pollOptions")
|
|
|
|
pollOptionsCount(pollOptions) {
|
|
|
|
if (pollOptions.length === 0) return 0;
|
|
|
|
|
|
|
|
let length = 0;
|
|
|
|
|
|
|
|
pollOptions.split("\n").forEach(option => {
|
|
|
|
if (option.length !== 0) length += 1;
|
|
|
|
});
|
|
|
|
|
|
|
|
return length;
|
|
|
|
},
|
|
|
|
|
|
|
|
@observes("isMultiple", "isNumber", "pollOptionsCount")
|
|
|
|
_setPollMax() {
|
|
|
|
const isMultiple = this.get("isMultiple");
|
|
|
|
const isNumber = this.get("isNumber");
|
|
|
|
if (!isMultiple && !isNumber) return;
|
|
|
|
|
|
|
|
if (isMultiple) {
|
|
|
|
this.set("pollMax", this.get("pollOptionsCount"));
|
|
|
|
} else if (isNumber) {
|
|
|
|
this.set("pollMax", this.siteSettings.poll_maximum_options);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("isMultiple", "isNumber", "pollOptionsCount")
|
|
|
|
pollMinOptions(isMultiple, isNumber, count) {
|
|
|
|
if (!isMultiple && !isNumber) return;
|
|
|
|
|
|
|
|
if (isMultiple) {
|
|
|
|
return this._comboboxOptions(1, count + 1);
|
|
|
|
} else if (isNumber) {
|
|
|
|
return this._comboboxOptions(1, this.siteSettings.poll_maximum_options + 1);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("isMultiple", "isNumber", "pollOptionsCount", "pollMin", "pollStep")
|
|
|
|
pollMaxOptions(isMultiple, isNumber, count, pollMin, pollStep) {
|
|
|
|
if (!isMultiple && !isNumber) return;
|
2016-06-15 00:54:52 -04:00
|
|
|
const pollMinInt = parseInt(pollMin) || 1;
|
2016-06-13 06:21:14 -04:00
|
|
|
|
|
|
|
if (isMultiple) {
|
|
|
|
return this._comboboxOptions(pollMinInt + 1, count + 1);
|
|
|
|
} else if (isNumber) {
|
2016-06-15 00:54:52 -04:00
|
|
|
const pollStepInt = parseInt(pollStep) || 1;
|
2016-06-13 06:21:14 -04:00
|
|
|
return this._comboboxOptions(pollMinInt + 1, pollMinInt + (this.siteSettings.poll_maximum_options * pollStepInt));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("isNumber", "pollMax")
|
|
|
|
pollStepOptions(isNumber, pollMax) {
|
|
|
|
if (!isNumber) return;
|
2016-06-15 00:54:52 -04:00
|
|
|
return this._comboboxOptions(1, (parseInt(pollMax) || 1) + 1);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
@computed("isNumber", "showMinMax", "pollName", "pollType", "publicPoll", "pollOptions", "pollMin", "pollMax", "pollStep")
|
|
|
|
pollOutput(isNumber, showMinMax, pollName, pollType, publicPoll, pollOptions, pollMin, pollMax, pollStep) {
|
|
|
|
let pollHeader = '[poll';
|
|
|
|
let output = '';
|
|
|
|
|
2016-06-16 04:35:23 -04:00
|
|
|
if (pollName) pollHeader += ` name=${pollName.trim().replace(/\s/g, '-')}`;
|
2016-06-13 06:21:14 -04:00
|
|
|
if (pollType) pollHeader += ` type=${pollType}`;
|
|
|
|
if (pollMin && showMinMax) pollHeader += ` min=${pollMin}`;
|
|
|
|
if (pollMax) pollHeader += ` max=${pollMax}`;
|
|
|
|
if (isNumber) pollHeader += ` step=${pollStep}`;
|
|
|
|
if (publicPoll) pollHeader += ' public=true';
|
2016-06-14 04:11:45 -04:00
|
|
|
pollHeader += ']';
|
2016-06-13 06:21:14 -04:00
|
|
|
output += `${pollHeader}\n`;
|
|
|
|
|
|
|
|
if (pollOptions.length > 0 && !isNumber) {
|
|
|
|
output += `${pollOptions.split("\n").map(option => `* ${option}`).join("\n")}\n`;
|
|
|
|
}
|
|
|
|
|
|
|
|
output += '[/poll]';
|
|
|
|
return output;
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed("pollOptionsCount", "isNumber")
|
|
|
|
disableInsert(count, isNumber) {
|
2016-06-14 04:11:45 -04:00
|
|
|
return isNumber ? false : (count < 2);
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
@computed("disableInsert")
|
|
|
|
minNumOfOptionsValidation(disableInsert) {
|
|
|
|
let options = { ok: true };
|
|
|
|
|
|
|
|
if (disableInsert) {
|
|
|
|
options = { failed: true, reason: I18n.t("poll.ui_builder.help.options_count") };
|
|
|
|
}
|
|
|
|
|
|
|
|
return Discourse.InputValidation.create(options);
|
|
|
|
},
|
|
|
|
|
|
|
|
_comboboxOptions(start_index, end_index) {
|
|
|
|
return _.range(start_index, end_index).map(number => {
|
2016-06-14 04:11:45 -04:00
|
|
|
return { value: number, name: number };
|
|
|
|
});
|
2016-06-13 06:21:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_setupPoll() {
|
|
|
|
this.setProperties({
|
|
|
|
pollName: '',
|
|
|
|
pollNamePlaceholder: I18n.t("poll.ui_builder.poll_name.placeholder"),
|
|
|
|
pollType: null,
|
|
|
|
publicPoll: false,
|
|
|
|
pollOptions: '',
|
|
|
|
pollMin: 1,
|
|
|
|
pollMax: null,
|
|
|
|
pollStep: 1
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
insertPoll() {
|
|
|
|
this.get("toolbarEvent").addText(this.get("pollOutput"));
|
|
|
|
this.send("closeModal");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|