cryptpad/www/form/inner.js

1647 lines
64 KiB
JavaScript
Raw Normal View History

2021-05-20 08:43:29 +00:00
define([
'jquery',
'json.sortify',
'/bower_components/chainpad-crypto/crypto.js',
'/common/sframe-app-framework.js',
'/common/toolbar.js',
'/bower_components/nthen/index.js',
'/common/sframe-common.js',
'/common/common-util.js',
'/common/common-hash.js',
'/common/common-interface.js',
'/common/common-ui-elements.js',
'/common/clipboard.js',
'/common/inner/common-mediatag.js',
'/common/hyperscript.js',
'/customize/messages.js',
'/customize/application_config.js',
'/common/inner/share.js',
'/common/inner/access.js',
'/common/inner/properties.js',
2021-05-26 15:02:34 +00:00
'/lib/datepicker/flatpickr.js',
2021-05-21 15:40:41 +00:00
'/bower_components/sortablejs/Sortable.min.js',
2021-05-26 15:02:34 +00:00
'css!/lib/datepicker/flatpickr.min.css',
2021-05-20 08:43:29 +00:00
'css!/bower_components/components-font-awesome/css/font-awesome.min.css',
'less!/form/app-form.less',
], function (
$,
2021-05-25 13:15:51 +00:00
Sortify,
2021-05-20 08:43:29 +00:00
Crypto,
Framework,
Toolbar,
nThen,
SFCommon,
Util,
Hash,
UI,
UIElements,
Clipboard,
MT,
h,
Messages,
AppConfig,
2021-05-21 15:40:41 +00:00
Share, Access, Properties,
2021-05-26 15:02:34 +00:00
Flatpickr,
2021-05-21 15:40:41 +00:00
Sortable
2021-05-20 08:43:29 +00:00
)
{
var APP = window.APP = {
};
2021-05-28 12:04:24 +00:00
var is24h = false;
var dateFormat = "Y-m-d H:i";
var timeFormat = "H:i";
2021-05-28 12:04:24 +00:00
try {
is24h = !new Intl.DateTimeFormat(navigator.language, { hour: 'numeric' }).format(0).match(/AM/);
} catch (e) {}
is24h = false;
if (!is24h) {
dateFormat = "Y-m-d h:i K";
timeFormat = "h:i K";
}
2021-05-28 12:04:24 +00:00
2021-05-20 08:43:29 +00:00
Messages.button_newform = "New Form"; // XXX
Messages.form_invalid = "Invalid form";
Messages.form_editBlock = "Edit options";
2021-05-21 15:40:41 +00:00
Messages.form_editQuestion = "Edit question";
2021-05-27 15:46:46 +00:00
Messages.form_editMax = "Max selectable options";
2021-05-28 12:04:24 +00:00
Messages.form_editType = "Options type";
Messages.form_poll_text = "Text";
Messages.form_poll_day = "Day";
Messages.form_poll_time = "Time";
2021-05-20 08:43:29 +00:00
Messages.form_default = "Your question here?";
Messages.form_type_input = "Text"; // XXX
Messages.form_type_radio = "Radio"; // XXX
2021-05-27 15:46:46 +00:00
Messages.form_type_multiradio = "Multiline Radio"; // XXX
Messages.form_type_checkbox = "Checkbox"; // XXX
Messages.form_type_multicheck = "Multiline Checkbox"; // XXX
2021-05-28 12:04:24 +00:00
Messages.form_type_poll = "Poll"; // XXX
2021-05-20 08:43:29 +00:00
Messages.form_duplicates = "Duplicate entries have been removed";
2021-05-27 15:46:46 +00:00
Messages.form_maxOptions = "{0} answer(s) max";
2021-05-20 08:43:29 +00:00
2021-05-21 11:39:33 +00:00
Messages.form_submit = "Submit";
Messages.form_update = "Update";
2021-05-20 11:54:20 +00:00
Messages.form_reset = "Reset";
Messages.form_sent = "Sent";
2021-05-21 15:40:41 +00:00
Messages.form_delete = "Delete block";
2021-05-20 11:54:20 +00:00
2021-05-20 14:20:15 +00:00
Messages.form_cantFindAnswers = "Unable to retrieve your existing answers for this form.";
2021-05-21 11:39:33 +00:00
Messages.form_viewResults = "Go to responses";
Messages.form_viewCreator = "Go to form creator";
2021-05-20 11:54:20 +00:00
2021-05-21 11:39:33 +00:00
Messages.form_notAnswered = "And <b>{0}</b> empty answers";
2021-05-20 08:43:29 +00:00
Messages.form_makePublic = "Make public";
Messages.form_makePublicWarning = "Are you sure you want to make the results of this form public? This can't be undone.";
Messages.form_isPublic = "Results are public";
Messages.form_isPrivate = "Results are private";
2021-05-26 15:02:34 +00:00
Messages.form_open = "Open";
Messages.form_setEnd = "Set closing date";
Messages.form_removeEnd = "Remove closing date";
Messages.form_isOpen = "This form is open";
Messages.form_isClosed = "This form was closed on {0}";
Messages.form_willClose = "This form will close on {0}";
2021-05-27 15:46:46 +00:00
Messages.form_defaultOption = "Option {0}";
Messages.form_defaultItem = "Item {0}";
Messages.form_newOption = "New option";
Messages.form_newItem = "New item";
Messages.form_add_option = "Add option";
Messages.form_add_item = "Add item";
var MAX_OPTIONS = 10; // XXX
var MAX_ITEMS = 10; // XXX
2021-05-25 13:15:51 +00:00
var editOptions = function (v, setCursorGetter, cb, tmp) {
2021-05-20 11:54:20 +00:00
var add = h('button.btn.btn-secondary', [
h('i.fa.fa-plus'),
2021-05-27 15:46:46 +00:00
h('span', Messages.form_add_option)
]);
var addItem = h('button.btn.btn-secondary', [
h('i.fa.fa-plus'),
h('span', Messages.form_add_item)
2021-05-20 11:54:20 +00:00
]);
2021-05-25 13:15:51 +00:00
var cursor;
if (tmp && tmp.content && Sortify(v) === Sortify(tmp.old)) {
2021-05-27 15:46:46 +00:00
v = tmp.content;
2021-05-25 13:15:51 +00:00
cursor = tmp.cursor;
}
2021-05-27 15:46:46 +00:00
var maxOptions, maxInput;
if (typeof(v.max) === "number") {
maxInput = h('input', {
type:"number",
value: v.max,
min: 1,
max: v.values.length
2021-05-28 12:13:16 +00:00
});
2021-05-27 15:46:46 +00:00
maxOptions = h('div.cp-form-edit-max-options', [
h('span', Messages.form_editMax),
maxInput
]);
}
2021-05-28 12:04:24 +00:00
var type, typeSelect;
if (v.type) {
var options = ['text', 'day', 'time'].map(function (t) {
return {
tag: 'a',
attributes: {
'class': 'cp-form-type-value',
'data-value': t,
'href': '#',
},
content: Messages['form_poll_'+t]
};
});
var dropdownConfig = {
text: '', // Button initial text
options: options, // Entries displayed in the menu
//left: true, // Open to the left of the button
//container: $(type),
isSelect: true,
caretDown: true,
buttonCls: 'btn btn-secondary'
};
typeSelect = UIElements.createDropdown(dropdownConfig);
typeSelect.setValue(v.type);
type = h('div.cp-form-edit-type', [
h('span', Messages.form_editType),
typeSelect[0]
]);
}
2021-05-20 11:54:20 +00:00
// Show existing options
2021-05-28 12:13:16 +00:00
var $add, $addItem;
2021-05-27 15:46:46 +00:00
var getOption = function (val, isItem, uid) {
2021-05-20 11:54:20 +00:00
var input = h('input', {value:val});
2021-05-27 15:46:46 +00:00
if (uid) { $(input).data('uid', uid); }
2021-05-25 13:15:51 +00:00
2021-05-28 12:04:24 +00:00
// If the input is a date, initialize flatpickr
if (v.type && v.type !== 'text') {
if (v.type === 'time') {
Flatpickr(input, {
enableTime: true,
time_24hr: is24h,
dateFormat: dateFormat,
defaultDate: val ? new Date(val) : undefined
2021-05-28 12:04:24 +00:00
});
} else if (v.type === 'day') {
Flatpickr(input, {
defaultDate: val ? new Date(val) : undefined
});
}
2021-05-27 15:46:46 +00:00
}
2021-05-28 12:04:24 +00:00
// if this element was active before the remote change, restore cursor
2021-05-27 15:46:46 +00:00
var setCursor = function () {
2021-05-28 13:35:53 +00:00
if (v.type && v.type !== 'text') { return; }
2021-05-25 13:15:51 +00:00
input.selectionStart = cursor.start || 0;
input.selectionEnd = cursor.end || 0;
setTimeout(function () { input.focus(); });
2021-05-27 15:46:46 +00:00
};
if (isItem) {
if (cursor && cursor.uid === uid && cursor.item) { setCursor(); }
} else {
if (cursor && cursor.el === val && !cursor.item) { setCursor(); }
2021-05-25 13:15:51 +00:00
}
2021-05-20 11:54:20 +00:00
var del = h('button.btn.btn-danger', h('i.fa.fa-times'));
var el = h('div.cp-form-edit-block-input', [ input, del ]);
2021-05-27 15:46:46 +00:00
$(del).click(function () {
$(el).remove();
// We've just deleted an item/option so we should be under the MAX limit and
// we can show the "add" button again
if (isItem && $addItem) { $addItem.show(); }
if (!isItem && $add) { $add.show(); }
});
2021-05-20 11:54:20 +00:00
return el;
};
2021-05-27 15:46:46 +00:00
var inputs = v.values.map(function (val) { return getOption(val, false); });
2021-05-20 11:54:20 +00:00
inputs.push(add);
2021-05-27 15:46:46 +00:00
2021-05-20 11:54:20 +00:00
var container = h('div.cp-form-edit-block', inputs);
2021-05-28 12:04:24 +00:00
var $container = $(container);
2021-05-20 11:54:20 +00:00
2021-05-27 15:46:46 +00:00
var containerItems;
if (v.items) {
var inputsItems = v.items.map(function (itemData) {
return getOption(itemData.v, true, itemData.uid);
});
inputsItems.push(addItem);
containerItems = h('div.cp-form-edit-block', inputsItems);
}
2021-05-28 12:04:24 +00:00
// Doodle type change: empty current values and change input types?
if (typeSelect) {
typeSelect.onChange.reg(function (prettyVal, val) {
$container.find('input').each(function (i, input) {
if (!input._flatpickr && val !== 'text') {
input.value = "";
}
2021-05-28 12:22:06 +00:00
v.type = val;
2021-05-28 12:04:24 +00:00
if (input._flatpickr) {
input._flatpickr.destroy();
delete input._flatpickr;
}
if (val === 'time') {
Flatpickr(input, {
enableTime: true,
time_24hr: is24h,
dateFormat: dateFormat,
});
}
if (val === 'day') {
Flatpickr(input, {
time_24hr: is24h,
});
}
});
});
}
2021-05-27 15:46:46 +00:00
// "Add option" button handler
$add = $(add).click(function () {
2021-05-28 12:22:06 +00:00
var txt = v.type ? '' : Messages.form_newOption;
2021-05-28 12:23:02 +00:00
$add.before(getOption(txt, false));
2021-05-28 12:04:24 +00:00
var l = $container.find('input').length;
$(maxInput).attr('max', l);
if (l >= MAX_OPTIONS) { $add.hide(); }
2021-05-27 15:46:46 +00:00
});
// If multiline block, handle "Add item" button
$addItem = $(addItem).click(function () {
$addItem.before(getOption(Messages.form_newItem, true, Util.uid()));
if ($(containerItems).find('input').length >= MAX_ITEMS) { $addItem.hide(); }
2021-05-20 11:54:20 +00:00
});
2021-05-28 12:04:24 +00:00
if ($container.find('input').length >= MAX_OPTIONS) { $add.hide(); }
2021-05-27 15:46:46 +00:00
if ($(containerItems).find('input').length >= MAX_ITEMS) { $addItem.hide(); }
2021-05-20 11:54:20 +00:00
// Cancel changes
var cancelBlock = h('button.btn.btn-secondary', Messages.cancel);
$(cancelBlock).click(function () { cb(); });
2021-05-25 13:15:51 +00:00
// Set cursor getter (to handle remote changes to the form)
setCursorGetter(function () {
var values = [];
var active = document.activeElement;
var cursor = {};
2021-05-28 12:04:24 +00:00
$container.find('input').each(function (i, el) {
if (el === active && !el._flatpickr) {
2021-05-25 13:15:51 +00:00
cursor.el= $(el).val();
cursor.start = el.selectionStart;
cursor.end = el.selectionEnd;
}
values.push($(el).val());
});
2021-05-27 15:46:46 +00:00
var _content = {values: values};
if (maxInput) {
_content.max = Number($(maxInput).val()) || 1;
}
2021-05-28 12:04:24 +00:00
if (typeSelect) {
_content.type = typeSelect.getValue();
}
2021-05-27 15:46:46 +00:00
if (v.items) {
var items = [];
$(containerItems).find('input').each(function (i, el) {
if (el === active) {
cursor.item = true;
cursor.uid= $(el).data('uid');
cursor.start = el.selectionStart;
cursor.end = el.selectionEnd;
}
items.push({
uid: $(el).data('uid'),
v: $(el).val()
});
});
_content.items = items;
}
2021-05-25 13:15:51 +00:00
return {
2021-05-27 15:46:46 +00:00
old: (tmp && tmp.old) || v,
content: _content,
2021-05-25 13:15:51 +00:00
cursor: cursor
};
});
2021-05-20 11:54:20 +00:00
// Save changes
var saveBlock = h('button.btn.btn-primary', [
h('i.fa.fa-floppy-o'),
h('span', Messages.settings_save)
]);
$(saveBlock).click(function () {
$(saveBlock).attr('disabled', 'disabled');
2021-05-27 15:46:46 +00:00
// Get values
2021-05-20 11:54:20 +00:00
var values = [];
var duplicates = false;
2021-05-28 12:04:24 +00:00
$container.find('input').each(function (i, el) {
2021-05-20 11:54:20 +00:00
var val = $(el).val().trim();
if (v.type === "day" || v.type === "time") { val = +new Date(val); }
2021-05-20 11:54:20 +00:00
if (values.indexOf(val) === -1) { values.push(val); }
else { duplicates = true; }
});
2021-05-27 15:46:46 +00:00
var res = { values: values };
// If multiline block, get items
if (v.items) {
var items = [];
$(containerItems).find('input').each(function (i, el) {
var val = $(el).val().trim();
var uid = $(el).data('uid');
if (!items.some(function (i) { return i.uid === uid; })) {
items.push({
uid: $(el).data('uid'),
v: val
});
}
else { duplicates = true; }
});
res.items = items;
}
// Show duplicates warning
2021-05-20 11:54:20 +00:00
if (duplicates) {
UI.warn(Messages.form_duplicates);
}
2021-05-27 15:46:46 +00:00
// If checkboxes, get the maximum number of values the users can select
if (maxInput) {
var maxVal = Number($(maxInput).val());
if (isNaN(maxVal)) { maxVal = values.length; }
res.max = maxVal;
}
2021-05-28 12:04:24 +00:00
if (typeSelect) {
res.type = typeSelect.getValue();
}
2021-05-27 15:46:46 +00:00
cb(res);
2021-05-20 11:54:20 +00:00
});
return [
2021-05-28 12:04:24 +00:00
type,
2021-05-27 15:46:46 +00:00
maxOptions,
h('div.cp-form-edit-options-block', [containerItems, container]),
2021-05-20 11:54:20 +00:00
h('div', [cancelBlock, saveBlock])
];
};
2021-05-28 12:04:24 +00:00
var makePollTable = function (answers, opts) {
// Sort date values
if (opts.type !== "text") {
opts.values.sort(function (a, b) {
return +new Date(a) - +new Date(b);
});
}
2021-05-28 12:04:24 +00:00
// Create first line with options
2021-05-28 12:13:16 +00:00
var els = opts.values.map(function (data) {
2021-05-28 12:04:24 +00:00
if (opts.type === "day") {
var _date = new Date(data);
data = _date.toLocaleDateString();
}
if (opts.type === "time") {
var _dateT = new Date(data);
data = Flatpickr.formatDate(_dateT, timeFormat);
}
2021-05-28 12:04:24 +00:00
return h('div.cp-poll-cell.cp-form-poll-option', data);
});
// Insert axis switch button
var switchAxis = h('button.btn', [
h('i.fa.fa-exchange'),
]);
els.unshift(h('div.cp-poll-cell.cp-poll-switch', switchAxis));
var lines = [h('div', els)];
// Add an initial row to "time" values containing the days
if (opts.type === "time") {
var days = [h('div.cp-poll-cell')];
var _days = {};
opts.values.forEach(function (d) {
var date = new Date(d);
var day = date.toLocaleDateString();
_days[day] = _days[day] || 0;
_days[day]++;
});
var dayValues = Object.keys(_days).map(function (d) { return _days[d]; });
var minDay = Math.min.apply(null, dayValues);
console.log(_days, minDay);
Object.keys(_days).forEach(function (day) {
days.push(h('div.cp-poll-cell.cp-poll-time-day', {
style: 'flex-grow:'+(_days[day]-1)+';'
}, day));
});
var width = (opts.values.length + 2)*100;
lines.unshift(h('div', days));
}
2021-05-28 12:04:24 +00:00
// Add answers
if (Array.isArray(answers)) {
answers.forEach(function (answer) {
if (!answer.name || !answer.values) { return; }
var _name = answer.name;
var values = answer.values || {};
var els = opts.values.map(function (data) {
var res = values[data] || 0;
var v = (Number(res) === 1) ? h('i.fa.fa-check.cp-yes') : undefined;
var cell = h('div.cp-poll-cell.cp-form-poll-answer', {
'data-value': res
}, v);
return cell;
});
els.unshift(h('div.cp-poll-cell.cp-poll-answer-name', _name));
lines.push(h('div', els));
});
}
var $s = $(switchAxis).click(function () {
$s.closest('.cp-form-type-poll').toggleClass('cp-form-poll-switch');
});
return lines;
};
2021-05-21 11:39:33 +00:00
var getEmpty = function (empty) {
if (empty) {
return UI.setHTML(h('div.cp-form-results-type-text-empty'), Messages._getKey('form_notAnswered', [empty]));
}
};
2021-05-27 15:46:46 +00:00
var findItem = function (items, uid) {
if (!Array.isArray(items)) { return; }
var res;
items.some(function (item) {
if (item.uid === uid) {
res = item.v;
return true;
}
});
return res;
};
2021-05-28 12:13:16 +00:00
var getBlockAnswers = function (answers, uid, filterCurve) {
return Object.keys(answers || {}).map(function (user) {
if (filterCurve && user === filterCurve) { return; }
try {
return answers[user].msg[uid];
} catch (e) { console.error(e); }
}).filter(Boolean);
};
2021-05-20 08:43:29 +00:00
var TYPES = {
input: {
get: function () {
var tag = h('input');
var $tag = $(tag);
return {
tag: tag,
getValue: function () { return $tag.val(); },
2021-05-20 14:20:15 +00:00
setValue: function (val) { $tag.val(val); },
2021-05-20 11:54:20 +00:00
reset: function () { $tag.val(''); }
2021-05-20 08:43:29 +00:00
};
},
2021-05-21 11:39:33 +00:00
printResults: function (answers, uid) {
var results = [];
var empty = 0;
Object.keys(answers).forEach(function (author) {
var obj = answers[author];
var answer = obj.msg[uid];
if (!answer || !answer.trim()) { return empty++; }
results.push(h('div.cp-form-results-type-text-data', answer));
});
results.push(getEmpty(empty));
return h('div.cp-form-results-type-text', results);
},
2021-05-20 08:43:29 +00:00
icon: h('i.fa.fa-font')
},
radio: {
defaultOpts: {
2021-05-27 15:46:46 +00:00
values: [1,2].map(function (i) {
return Messages._getKey('form_defaultOption', [i]);
})
2021-05-20 08:43:29 +00:00
},
get: function (opts) {
if (!opts) { opts = TYPES.radio.defaultOpts; }
2021-05-27 15:46:46 +00:00
if (!Array.isArray(opts.values)) { return; }
2021-05-20 08:43:29 +00:00
var name = Util.uid();
var els = opts.values.map(function (data, i) {
2021-05-20 14:20:15 +00:00
var radio = UI.createRadio(name, 'cp-form-'+name+'-'+i,
data, false, { mark: { tabindex:1 } });
$(radio).find('input').data('val', data);
return radio;
2021-05-20 08:43:29 +00:00
});
2021-05-21 15:40:41 +00:00
var tag = h('div.radio-group.cp-form-type-radio', els);
2021-05-25 13:15:51 +00:00
var cursorGetter;
var setCursorGetter = function (f) { cursorGetter = f; };
2021-05-20 08:43:29 +00:00
return {
tag: tag,
getValue: function () {
var res;
2021-05-28 12:13:16 +00:00
els.some(function (el) {
2021-05-27 15:46:46 +00:00
var $i = $(el).find('input');
if (Util.isChecked($i)) {
res = $i.data('val');
return true;
2021-05-20 08:43:29 +00:00
}
});
return res;
},
2021-05-20 11:54:20 +00:00
reset: function () { $(tag).find('input').removeAttr('checked'); },
2021-05-25 13:15:51 +00:00
edit: function (cb, tmp) {
2021-05-27 15:46:46 +00:00
var v = Util.clone(opts);
2021-05-25 13:15:51 +00:00
return editOptions(v, setCursorGetter, cb, tmp);
2021-05-20 14:20:15 +00:00
},
2021-05-25 13:15:51 +00:00
getCursor: function () { return cursorGetter(); },
2021-05-20 14:20:15 +00:00
setValue: function (val) {
this.reset();
els.some(function (el) {
var $el = $(el).find('input');
if ($el.data('val') === val) {
$el.prop('checked', true);
return true;
}
});
2021-05-20 08:43:29 +00:00
}
};
},
2021-05-21 11:39:33 +00:00
printResults: function (answers, uid) {
var results = [];
var empty = 0;
var count = {};
Object.keys(answers).forEach(function (author) {
var obj = answers[author];
var answer = obj.msg[uid];
if (!answer || !answer.trim()) { return empty++; }
count[answer] = count[answer] || 0;
count[answer]++;
});
Object.keys(count).forEach(function (value) {
results.push(h('div.cp-form-results-type-radio-data', [
h('span.cp-value', value),
h('span.cp-count', count[value])
]));
});
results.push(getEmpty(empty));
return h('div.cp-form-results-type-radio', results);
},
2021-05-20 08:43:29 +00:00
icon: h('i.fa.fa-list-ul')
2021-05-27 15:46:46 +00:00
},
multiradio: {
defaultOpts: {
items: [1,2].map(function (i) {
return {
uid: Util.uid(),
v: Messages._getKey('form_defaultItem', [i])
};
}),
values: [1,2].map(function (i) {
return Messages._getKey('form_defaultOption', [i]);
})
},
get: function (opts) {
if (!opts) { opts = TYPES.multiradio.defaultOpts; }
if (!Array.isArray(opts.items) || !Array.isArray(opts.values)) { return; }
var lines = opts.items.map(function (itemData) {
var name = itemData.uid;
var item = itemData.v;
var els = opts.values.map(function (data, i) {
var radio = UI.createRadio(name, 'cp-form-'+name+'-'+i,
'', false, { mark: { tabindex:1 } });
$(radio).find('input').data('uid', name);
$(radio).find('input').data('val', data);
return radio;
});
els.unshift(h('div.cp-form-multiradio-item', item));
return h('div.radio-group', {'data-uid':name}, els);
});
var header = opts.values.map(function (v) { return h('span', v); });
header.unshift(h('span'));
lines.unshift(h('div.cp-form-multiradio-header', header));
var tag = h('div.radio-group.cp-form-type-multiradio', lines);
var cursorGetter;
var setCursorGetter = function (f) { cursorGetter = f; };
return {
tag: tag,
getValue: function () {
var res = {};
var l = lines.slice(1);
2021-05-28 12:13:16 +00:00
l.forEach(function (el) {
2021-05-27 15:46:46 +00:00
var $el = $(el);
var uid = $el.attr('data-uid');
2021-05-28 12:13:16 +00:00
$el.find('input').each(function (i, input) {
2021-05-27 15:46:46 +00:00
var $i = $(input);
if (res[uid]) { return; }
if (Util.isChecked($i)) { res[uid] = $i.data('val'); }
});
});
return res;
},
reset: function () { $(tag).find('input').removeAttr('checked'); },
edit: function (cb, tmp) {
var v = Util.clone(opts);
return editOptions(v, setCursorGetter, cb, tmp);
},
getCursor: function () { return cursorGetter(); },
setValue: function (val) {
this.reset();
Object.keys(val || {}).forEach(function (uid) {
$(tag).find('[name="'+uid+'"]').each(function (i, el) {
if ($(el).data('val') !== val[uid]) { return; }
$(el).prop('checked', true);
});
});
}
};
},
printResults: function (answers, uid, form) {
var structure = form[uid];
if (!structure) { return; }
var results = [];
var empty = 0;
var count = {};
Object.keys(answers).forEach(function (author) {
var obj = answers[author];
var answer = obj.msg[uid];
if (!answer || !Object.keys(answer).length) { return empty++; }
//count[answer] = count[answer] || {};
Object.keys(answer).forEach(function (q_uid) {
var c = count[q_uid] = count[q_uid] || {};
var res = answer[q_uid];
if (!res || !res.trim()) { return; }
c[res] = c[res] || 0;
c[res]++;
});
});
Object.keys(count).forEach(function (q_uid) {
var q = findItem(structure.opts.items, q_uid);
var c = count[q_uid];
var values = Object.keys(c).map(function (res) {
return h('div.cp-form-results-type-radio-data', [
h('span.cp-value', res),
h('span.cp-count', c[res])
]);
});
results.push(h('div.cp-form-results-type-multiradio-data', [
h('span.cp-mr-q', q),
h('span.cp-mr-value', values)
]));
});
results.push(getEmpty(empty));
return h('div.cp-form-results-type-radio', results);
},
icon: h('i.fa.fa-list-ul')
},
checkbox: {
defaultOpts: {
max: 3,
values: [1, 2, 3].map(function (i) {
return Messages._getKey('form_defaultOption', [i]);
})
},
get: function (opts) {
if (!opts) { opts = TYPES.checkbox.defaultOpts; }
if (!Array.isArray(opts.values)) { return; }
var name = Util.uid();
var els = opts.values.map(function (data, i) {
var cbox = UI.createCheckbox('cp-form-'+name+'-'+i,
data, false, { mark: { tabindex:1 } });
$(cbox).find('input').data('val', data);
return cbox;
});
var tag = h('div', [
h('div.cp-form-max-options', Messages._getKey('form_maxOptions', [opts.max])),
h('div.radio-group.cp-form-type-checkbox', els)
]);
var $tag = $(tag);
$tag.find('input').on('change', function () {
var selected = $tag.find('input:checked').length;
if (selected >= opts.max) {
$tag.find('input:not(:checked)').attr('disabled', 'disabled');
} else {
$tag.find('input').removeAttr('disabled');
}
});
var cursorGetter;
var setCursorGetter = function (f) { cursorGetter = f; };
return {
tag: tag,
getValue: function () {
var res = [];
2021-05-28 12:13:16 +00:00
els.forEach(function (el) {
2021-05-27 15:46:46 +00:00
var $i = $(el).find('input');
if (Util.isChecked($i)) {
res.push($i.data('val'));
}
});
return res;
},
reset: function () { $(tag).find('input').removeAttr('checked'); },
edit: function (cb, tmp) {
var v = Util.clone(opts);
return editOptions(v, setCursorGetter, cb, tmp);
},
getCursor: function () { return cursorGetter(); },
setValue: function (val) {
this.reset();
if (!Array.isArray(val)) { return; }
els.forEach(function (el) {
var $el = $(el).find('input');
if (val.indexOf($el.data('val')) !== -1) {
$el.prop('checked', true);
}
});
}
};
},
printResults: function (answers, uid) {
var results = [];
var empty = 0;
var count = {};
Object.keys(answers).forEach(function (author) {
var obj = answers[author];
var answer = obj.msg[uid];
if (!Array.isArray(answer) || !answer.length) { return empty++; }
answer.forEach(function (val) {
count[val] = count[val] || 0;
count[val]++;
});
});
Object.keys(count).forEach(function (value) {
results.push(h('div.cp-form-results-type-radio-data', [
h('span.cp-value', value),
h('span.cp-count', count[value])
]));
});
results.push(getEmpty(empty));
return h('div.cp-form-results-type-radio', results);
},
icon: h('i.fa.fa-check-square-o')
},
multicheck: {
defaultOpts: {
max: 3,
items: [1,2].map(function (i) {
return {
uid: Util.uid(),
v: Messages._getKey('form_defaultItem', [i])
};
}),
values: [1,2,3].map(function (i) {
return Messages._getKey('form_defaultOption', [i]);
})
},
get: function (opts) {
if (!opts) { opts = TYPES.multicheck.defaultOpts; }
if (!Array.isArray(opts.items) || !Array.isArray(opts.values)) { return; }
var lines = opts.items.map(function (itemData) {
var name = itemData.uid;
var item = itemData.v;
var els = opts.values.map(function (data, i) {
var cbox = UI.createCheckbox('cp-form-'+name+'-'+i,
'', false, { mark: { tabindex:1 } });
$(cbox).find('input').data('uid', name);
$(cbox).find('input').data('val', data);
return cbox;
});
els.unshift(h('div.cp-form-multiradio-item', item));
return h('div.radio-group', {'data-uid':name}, els);
});
lines.forEach(function (l) {
$(l).find('input').on('change', function () {
var selected = $(l).find('input:checked').length;
if (selected >= opts.max) {
$(l).find('input:not(:checked)').attr('disabled', 'disabled');
} else {
$(l).find('input').removeAttr('disabled');
}
});
});
var header = opts.values.map(function (v) { return h('span', v); });
header.unshift(h('span'));
lines.unshift(h('div.cp-form-multiradio-header', header));
var tag = h('div.radio-group.cp-form-type-multiradio', lines);
var cursorGetter;
var setCursorGetter = function (f) { cursorGetter = f; };
return {
tag: tag,
getValue: function () {
var res = {};
var l = lines.slice(1);
2021-05-28 12:13:16 +00:00
l.forEach(function (el) {
2021-05-27 15:46:46 +00:00
var $el = $(el);
var uid = $el.attr('data-uid');
res[uid] = [];
2021-05-28 12:13:16 +00:00
$el.find('input').each(function (i, input) {
2021-05-27 15:46:46 +00:00
var $i = $(input);
if (Util.isChecked($i)) { res[uid].push($i.data('val')); }
});
});
return res;
},
reset: function () { $(tag).find('input').removeAttr('checked'); },
edit: function (cb, tmp) {
var v = Util.clone(opts);
return editOptions(v, setCursorGetter, cb, tmp);
},
getCursor: function () { return cursorGetter(); },
setValue: function (val) {
this.reset();
Object.keys(val || {}).forEach(function (uid) {
if (!Array.isArray(val[uid])) { return; }
$(tag).find('[data-uid="'+uid+'"] input').each(function (i, el) {
if (val[uid].indexOf($(el).data('val')) === -1) { return; }
$(el).prop('checked', true);
});
});
}
};
},
printResults: function (answers, uid, form) {
var structure = form[uid];
if (!structure) { return; }
var results = [];
var empty = 0;
var count = {};
Object.keys(answers).forEach(function (author) {
var obj = answers[author];
var answer = obj.msg[uid];
if (!answer || !Object.keys(answer).length) { return empty++; }
Object.keys(answer).forEach(function (q_uid) {
var c = count[q_uid] = count[q_uid] || {};
var res = answer[q_uid];
if (!Array.isArray(res) || !res.length) { return; }
res.forEach(function (v) {
c[v] = c[v] || 0;
c[v]++;
});
});
});
Object.keys(count).forEach(function (q_uid) {
var q = findItem(structure.opts.items, q_uid);
var c = count[q_uid];
var values = Object.keys(c).map(function (res) {
return h('div.cp-form-results-type-radio-data', [
h('span.cp-value', res),
h('span.cp-count', c[res])
]);
});
results.push(h('div.cp-form-results-type-multiradio-data', [
h('span.cp-mr-q', q),
h('span.cp-mr-value', values)
]));
});
results.push(getEmpty(empty));
return h('div.cp-form-results-type-radio', results);
},
icon: h('i.fa.fa-list-ul')
},
2021-05-28 12:04:24 +00:00
poll: {
defaultOpts: {
type: 'text', // Text or Days or Time
values: [1, 2, 3].map(function (i) {
return Messages._getKey('form_defaultOption', [i]);
})
},
get: function (opts, answers, username) {
if (!opts) { opts = TYPES.poll.defaultOpts; }
if (!Array.isArray(opts.values)) { return; }
var lines = makePollTable(answers, opts);
// Add form
2021-05-28 12:13:16 +00:00
var addLine = opts.values.map(function (data) {
2021-05-28 12:04:24 +00:00
var cell = h('div.cp-poll-cell.cp-form-poll-choice', [
h('i.fa.fa-times.cp-no'),
h('i.fa.fa-check.cp-yes'),
h('i.fa.fa-question.cp-maybe'),
]);
var $c = $(cell);
$c.data('option', data);
var val = 0;
$c.attr('data-value', val);
$c.click(function () {
val = (val+1)%3;
$c.attr('data-value', val);
});
cell._setValue = function (v) {
val = v;
$c.attr('data-value', val);
};
return cell;
});
// Name input
2021-05-28 12:22:06 +00:00
var nameInput = h('input', { value: username || '' });
2021-05-28 12:04:24 +00:00
addLine.unshift(h('div.cp-poll-cell', nameInput));
// XXX Submit button here?
lines.push(h('div', addLine));
var tag = h('div.cp-form-type-poll', lines);
var $tag = $(tag);
var cursorGetter;
var setCursorGetter = function (f) { cursorGetter = f; };
return {
tag: tag,
getValue: function () {
var res = {};
var name = $(nameInput).val().trim() || Messages.anonymous;
$tag.find('.cp-form-poll-choice').each(function (i, el) {
var $el = $(el);
res[$el.data('option')] = $el.attr('data-value');
});
return {
name: name,
values: res
};
},
reset: function () {
$tag.find('.cp-form-poll-choice').attr('data-value', 0);
},
edit: function (cb, tmp) {
var v = Util.clone(opts);
return editOptions(v, setCursorGetter, cb, tmp);
},
getCursor: function () { return cursorGetter(); },
setValue: function (res) {
this.reset();
if (!res || !res.values || !res.name) { return; }
var val = res.values;
$(nameInput).val(res.name);
$tag.find('.cp-form-poll-choice').each(function (i, el) {
if (!el._setValue) { return; }
var $el = $(el);
el._setValue(val[$el.data('option')] || 0);
});
}
};
},
printResults: function (answers, uid, form) {
var _answers = getBlockAnswers(answers, uid);
var lines = makePollTable(_answers, form[uid].opts);
return h('div.cp-form-type-poll', lines);
},
icon: h('i.fa.fa-check-square-o')
},
2021-05-20 08:43:29 +00:00
};
var renderResults = function (content, answers) {
var $container = $('div.cp-form-creator-results').empty();
var form = content.form;
var elements = content.order.map(function (uid) {
var block = form[uid];
var type = block.type;
var model = TYPES[type];
if (!model || !model.printResults) { return; }
2021-05-27 15:46:46 +00:00
var print = model.printResults(answers, uid, form);
var q = h('div.cp-form-block-question', block.q || Messages.form_default);
return h('div.cp-form-block', [
h('div.cp-form-block-type', [
TYPES[type].icon.cloneNode(),
h('span', Messages['form_type_'+type])
]),
q,
h('div.cp-form-block-content', print),
]);
});
$container.append(elements);
};
2021-05-25 13:15:51 +00:00
var getFormResults = function () {
if (!Array.isArray(APP.formBlocks)) { return; }
var results = {};
APP.formBlocks.forEach(function (data) {
results[data.uid] = data.getValue();
});
return results;
};
2021-05-21 11:39:33 +00:00
var makeFormControls = function (framework, content, update) {
2021-05-26 15:02:34 +00:00
var send = h('button.cp-open.btn.btn-primary', update ? Messages.form_update : Messages.form_submit);
var reset = h('button.cp-open.btn.btn-danger-alt', Messages.form_reset);
2021-05-20 11:54:20 +00:00
$(reset).click(function () {
if (!Array.isArray(APP.formBlocks)) { return; }
APP.formBlocks.forEach(function (data) {
if (typeof(data.reset) === "function") { data.reset(); }
});
});
var $send = $(send).click(function () {
$send.attr('disabled', 'disabled');
2021-05-25 13:15:51 +00:00
var results = getFormResults();
if (!results) { return; }
2021-05-20 11:54:20 +00:00
var sframeChan = framework._.sfCommon.getSframeChannel();
sframeChan.query('Q_FORM_SUBMIT', {
mailbox: content.answers,
results: results
}, function (err, data) {
2021-05-21 11:39:33 +00:00
$send.attr('disabled', 'disabled');
2021-05-20 11:54:20 +00:00
if (err || (data && data.error)) {
console.error(err || data.error);
return void UI.warn(Messages.error);
}
2021-05-27 15:46:46 +00:00
$send.removeAttr('disabled');
2021-05-20 11:54:20 +00:00
UI.alert(Messages.form_sent);
2021-05-21 11:39:33 +00:00
$send.text(Messages.form_update);
2021-05-20 11:54:20 +00:00
});
});
2021-05-28 12:13:16 +00:00
var viewResults;
if (content.answers.privateKey) {
2021-05-28 12:13:16 +00:00
viewResults = h('button.btn.btn-primary', [
h('span.cp-app-form-button-results', Messages.form_viewResults),
]);
var sframeChan = framework._.sfCommon.getSframeChannel();
var $v = $(viewResults).click(function () {
$v.attr('disabled', 'disabled');
sframeChan.query("Q_FORM_FETCH_ANSWERS", content.answers, function (err, answers) {
2021-05-28 12:04:24 +00:00
if (answers) { APP.answers = answers; }
$v.removeAttr('disabled');
$('body').addClass('cp-app-form-results');
renderResults(content, answers);
});
});
}
2021-05-26 15:02:34 +00:00
if (APP.isClosed) {
send = undefined;
reset = undefined;
}
return h('div.cp-form-send-container', [send, reset, viewResults]);
2021-05-20 08:43:29 +00:00
};
2021-05-25 13:15:51 +00:00
var updateForm = function (framework, content, editable, answers, temp) {
2021-05-20 08:43:29 +00:00
var $container = $('div.cp-form-creator-content');
2021-05-25 13:15:51 +00:00
if (!$container.length) { return; } // Not ready
2021-05-20 08:43:29 +00:00
var form = content.form;
2021-05-20 11:54:20 +00:00
APP.formBlocks = [];
2021-05-20 08:43:29 +00:00
// XXX order array later
2021-05-21 15:40:41 +00:00
var elements = content.order.map(function (uid) {
2021-05-20 08:43:29 +00:00
var block = form[uid];
var type = block.type;
var model = TYPES[type];
if (!model) { return; }
2021-05-20 11:54:20 +00:00
2021-05-28 12:04:24 +00:00
var _answers, name;
if (type === 'poll') {
var metadataMgr = framework._.cpNfInner.metadataMgr;
var user = metadataMgr.getUserData();
// If we are a participant, our results shouldn't be in the table but in the
// editable part: remove them from _answers
_answers = getBlockAnswers(APP.answers, uid, !editable && user.curvePublic);
name = user.name;
}
var data = model.get(block.opts, _answers, name);
2021-05-27 15:46:46 +00:00
if (!data) { return; }
2021-05-20 11:54:20 +00:00
data.uid = uid;
2021-05-20 14:20:15 +00:00
if (answers && answers[uid]) { data.setValue(answers[uid]); }
2021-05-20 11:54:20 +00:00
2021-05-20 08:43:29 +00:00
var q = h('div.cp-form-block-question', block.q || Messages.form_default);
2021-05-21 15:40:41 +00:00
var editButtons, editContainer;
2021-05-20 11:54:20 +00:00
APP.formBlocks.push(data);
2021-05-20 08:43:29 +00:00
if (editable) {
// Question
var inputQ = h('input', {
value: block.q || Messages.form_default
});
var $inputQ = $(inputQ);
2021-05-21 15:40:41 +00:00
var saveQ = h('button.btn.btn-primary.small', [
2021-05-20 08:43:29 +00:00
h('i.fa.fa-pencil.cp-form-edit'),
2021-05-21 15:40:41 +00:00
h('span.cp-form-edit', Messages.form_editQuestion),
h('i.fa.fa-floppy-o.cp-form-save'),
2021-05-20 08:43:29 +00:00
h('span.cp-form-save', Messages.settings_save)
]);
2021-05-21 15:40:41 +00:00
var dragHandle = h('i.fa.fa-arrows-v.cp-form-block-drag');
2021-05-20 08:43:29 +00:00
var $saveQ = $(saveQ).click(function () {
2021-05-21 15:40:41 +00:00
if (!$(q).hasClass('editing')) {
$(q).addClass('editing');
$inputQ.focus();
return;
}
2021-05-20 08:43:29 +00:00
var v = $inputQ.val();
2021-05-21 15:40:41 +00:00
if (!v || !v.trim()) { return void UI.warn(Messages.error); }
2021-05-20 08:43:29 +00:00
block.q = v.trim();
framework.localChange();
$saveQ.attr('disabled', 'disabled');
framework._.cpNfInner.chainpad.onSettle(function () {
2021-05-21 15:40:41 +00:00
$(q).removeClass('editing');
2021-05-20 08:43:29 +00:00
$saveQ.removeAttr('disabled');
2021-05-21 15:40:41 +00:00
$inputQ.blur();
2021-05-20 08:43:29 +00:00
UI.log(Messages.saved);
});
});
2021-05-21 15:40:41 +00:00
var onCancelQ = function (e) {
2021-05-20 08:43:29 +00:00
if (e && e.relatedTarget && e.relatedTarget === saveQ) { return; }
2021-05-21 15:40:41 +00:00
$inputQ.val(block.q || Messages.form_default);
if (!e) { $inputQ.blur(); }
$(q).removeClass('editing');
2021-05-20 08:43:29 +00:00
};
$inputQ.keydown(function (e) {
if (e.which === 13) { return void $saveQ.click(); }
2021-05-21 15:40:41 +00:00
if (e.which === 27) { return void onCancelQ(); }
});
$inputQ.focus(function () {
$(q).addClass('editing');
});
$inputQ.blur(onCancelQ);
q = h('div.cp-form-input-block', [inputQ, saveQ, dragHandle]);
// Delete question
var edit;
var del = h('button.btn.btn-danger', [
h('i.fa.fa-trash-o'),
h('span', Messages.form_delete)
]);
UI.confirmButton(del, {
classes: 'btn-danger',
new: true
}, function () {
delete content.form[uid];
var idx = content.order.indexOf(uid);
content.order.splice(idx, 1);
$('.cp-form-block[data-id="'+uid+'"]').remove();
framework.localChange();
2021-05-20 08:43:29 +00:00
});
// Values
if (data.edit) {
edit = h('button.btn.btn-primary.cp-form-edit-button', [
h('i.fa.fa-pencil'),
h('span', Messages.form_editBlock)
]);
editContainer = h('div');
var onSave = function (newOpts) {
2021-05-25 13:15:51 +00:00
data.editing = false;
2021-05-20 08:43:29 +00:00
if (!newOpts) { // Cancel edit
$(editContainer).empty();
2021-05-21 15:40:41 +00:00
$(editButtons).show();
2021-05-20 08:43:29 +00:00
$(data.tag).show();
return;
}
$(editContainer).empty();
block.opts = newOpts;
2021-05-20 11:54:20 +00:00
framework.localChange();
2021-05-20 08:43:29 +00:00
var $oldTag = $(data.tag);
framework._.cpNfInner.chainpad.onSettle(function () {
2021-05-21 15:40:41 +00:00
$(editButtons).show();
2021-05-20 08:43:29 +00:00
UI.log(Messages.saved);
2021-05-28 12:04:24 +00:00
var _answers = getBlockAnswers(APP.answers, uid);
2021-05-28 12:13:16 +00:00
data = model.get(newOpts, _answers);
2021-05-27 15:46:46 +00:00
if (!data) { data = {}; }
2021-05-20 08:43:29 +00:00
$oldTag.before(data.tag).remove();
});
};
2021-05-25 13:15:51 +00:00
var onEdit = function (tmp) {
data.editing = true;
2021-05-20 08:43:29 +00:00
$(data.tag).hide();
2021-05-25 13:15:51 +00:00
$(editContainer).append(data.edit(onSave, tmp));
2021-05-21 15:40:41 +00:00
$(editButtons).hide();
2021-05-25 13:15:51 +00:00
};
$(edit).click(function () {
onEdit();
2021-05-20 08:43:29 +00:00
});
2021-05-25 13:15:51 +00:00
// If we were editing this field, recover our unsaved changes
if (temp && temp[uid]) {
setTimeout(function () {
onEdit(temp[uid]);
});
}
2021-05-20 08:43:29 +00:00
}
2021-05-21 15:40:41 +00:00
editButtons = h('div.cp-form-edit-buttons-container', [
edit, del
]);
2021-05-20 08:43:29 +00:00
}
2021-05-21 15:40:41 +00:00
var editableCls = editable ? ".editable" : "";
return h('div.cp-form-block'+editableCls, {
'data-id':uid
}, [
2021-05-20 08:43:29 +00:00
q,
h('div.cp-form-block-content', [
data.tag,
2021-05-21 15:40:41 +00:00
editButtons
2021-05-20 08:43:29 +00:00
]),
editContainer
]);
});
$container.empty().append(elements);
2021-05-21 15:40:41 +00:00
if (editable) {
Sortable.create($container[0], {
direction: "vertical",
filter: "input, button",
preventOnFilter: false,
store: {
set: function (s) {
content.order = s.toArray();
framework.localChange();
}
}
});
return;
}
// In view mode, add "Submit" and "reset" buttons
2021-05-21 11:39:33 +00:00
$container.append(makeFormControls(framework, content, Boolean(answers)));
};
2021-05-25 13:15:51 +00:00
var getTempFields = function () {
if (!Array.isArray(APP.formBlocks)) { return; }
var temp = {};
APP.formBlocks.forEach(function (data) {
if (data.editing) {
var cursor = data.getCursor && data.getCursor();
temp[data.uid] = cursor;
}
});
return temp;
};
2021-05-20 08:43:29 +00:00
var andThen = function (framework) {
framework.start();
var content = {};
2021-05-20 11:54:20 +00:00
var sframeChan = framework._.sfCommon.getSframeChannel();
var metadataMgr = framework._.cpNfInner.metadataMgr;
2021-05-28 12:04:24 +00:00
var user = metadataMgr.getUserData();
2021-05-20 11:54:20 +00:00
var priv = metadataMgr.getPrivateData();
APP.isEditor = Boolean(priv.form_public);
2021-05-21 11:39:33 +00:00
var $body = $('body');
2021-05-26 15:02:34 +00:00
var $toolbarContainer = $('#cp-toolbar');
var helpMenu = framework._.sfCommon.createHelpMenu(['text', 'pad']);
$toolbarContainer.after(helpMenu.menu);
2021-05-21 11:39:33 +00:00
var makeFormSettings = function () {
var makePublic = h('button.btn.btn-primary', Messages.form_makePublic);
if (content.answers.privateKey) { makePublic = undefined; }
var publicText = content.answers.privateKey ? Messages.form_isPublic : Messages.form_isPrivate;
var resultsType = h('div.cp-form-results-type-container', [
h('span.cp-form-results-type', publicText),
makePublic
]);
var $makePublic = $(makePublic).click(function () {
UI.confirm(Messages.form_makePublicWarning, function (yes) {
if (!yes) { return; }
content.answers.privateKey = priv.form_private;
framework.localChange();
framework._.cpNfInner.chainpad.onSettle(function () {
UI.log(Messages.saved);
$makePublic.remove();
$(resultsType).find('.cp-form-results-type').text(Messages.form_isPublic);
});
});
});
2021-05-26 15:02:34 +00:00
// End date / Closed state
var endDateContainer = h('div.cp-form-status-container');
var $endDate = $(endDateContainer);
var refreshEndDate = function () {
$endDate.empty();
var endDate = content.answers.endDate;
var date = new Date(endDate).toLocaleString();
var now = +new Date();
var text = Messages.form_isOpen;
var buttonTxt = Messages.form_setEnd;
if (endDate <= now) {
text = Messages._getKey('form_isClosed', [date]);
buttonTxt = Messages.form_open;
} else if (endDate > now) {
text = Messages._getKey('form_willClose', [date]);
buttonTxt = Messages.form_removeEnd;
}
var button = h('button.btn.btn-secondary', buttonTxt);
var $button = $(button).click(function () {
$button.attr('disabled', 'disabled');
// If there is an end date, remove it
if (endDate) {
delete content.answers.endDate;
framework.localChange();
refreshEndDate();
return;
}
// Otherwise add it
var datePicker = h('input');
var picker = Flatpickr(datePicker, {
enableTime: true,
time_24hr: is24h,
dateFormat: dateFormat,
minDate: new Date()
});
var save = h('button.btn.btn-primary', Messages.settings_save);
$(save).click(function () {
var d = picker.parseDate(datePicker.value);
content.answers.endDate = +d;
framework.localChange();
refreshEndDate();
});
var confirmContent = h('div', [
h('div', Messages.form_setEnd),
h('div.cp-form-input-block', [datePicker, save]),
]);
$button.after(confirmContent);
$button.remove();
});
$endDate.append(h('div.cp-form-status', text));
$endDate.append(h('div.cp-form-actions', button));
};
refreshEndDate();
2021-05-21 11:39:33 +00:00
var viewResults = h('button.btn.btn-primary', [
h('span.cp-app-form-button-results', Messages.form_viewResults),
h('span.cp-app-form-button-creator', Messages.form_viewCreator),
]);
var $v = $(viewResults).click(function () {
if ($body.hasClass('cp-app-form-results')) {
$body.removeClass('cp-app-form-results');
return;
}
$v.attr('disabled', 'disabled');
sframeChan.query("Q_FORM_FETCH_ANSWERS", {
channel: content.answers.channel,
validateKey: content.answers.validateKey,
publicKey: content.answers.publicKey
}, function (err, answers) {
2021-05-28 12:04:24 +00:00
if (answers) { APP.answers = answers; }
2021-05-21 11:39:33 +00:00
$v.removeAttr('disabled');
$body.addClass('cp-app-form-results');
renderResults(content, answers);
});
});
return [
2021-05-26 15:02:34 +00:00
endDateContainer,
resultsType,
viewResults,
2021-05-21 11:39:33 +00:00
];
// XXX
// Button to set results as public
// Checkbox to allow anonymous answers
// Button to clear all answers?
};
2021-05-20 08:43:29 +00:00
2021-05-21 15:40:41 +00:00
var checkIntegrity = function (getter) {
2021-05-26 12:54:56 +00:00
if (!content.order || !content.form) { return; }
2021-05-21 15:40:41 +00:00
var changed = false;
content.order.forEach(function (uid) {
if (!content.form[uid]) {
var idx = content.order.indexOf(uid);
content.order.splice(idx, 1);
changed = true;
}
});
Object.keys(content.form).forEach(function (uid) {
var idx = content.order.indexOf(uid);
if (idx === -1) {
changed = true;
content.order.push(uid);
}
});
if (!getter && changed) { framework.localChange(); }
};
2021-05-20 08:43:29 +00:00
var makeFormCreator = function () {
2021-05-20 11:54:20 +00:00
var controlContainer;
if (APP.isEditor) {
var controls = Object.keys(TYPES).map(function (type) {
var btn = h('button.btn', [
TYPES[type].icon.cloneNode(),
h('span', Messages['form_type_'+type])
]);
$(btn).click(function () {
var uid = Util.uid();
content.form[uid] = {
//q: Messages.form_default,
//opts: opts
type: type,
};
2021-05-21 15:40:41 +00:00
content.order.push(uid);
2021-05-20 11:54:20 +00:00
framework.localChange();
updateForm(framework, content, true);
});
return btn;
2021-05-20 08:43:29 +00:00
});
2021-05-21 11:39:33 +00:00
var settings = makeFormSettings();
controlContainer = h('div.cp-form-creator-control', [
h('div.cp-form-creator-settings', settings),
h('div.cp-form-creator-types', controls)
]);
2021-05-20 11:54:20 +00:00
}
2021-05-20 08:43:29 +00:00
var contentContainer = h('div.cp-form-creator-content');
2021-05-21 11:39:33 +00:00
var resultsContainer = h('div.cp-form-creator-results');
2021-05-20 08:43:29 +00:00
var div = h('div.cp-form-creator-container', [
controlContainer,
contentContainer,
2021-05-21 11:39:33 +00:00
resultsContainer
2021-05-20 08:43:29 +00:00
]);
return div;
};
2021-05-26 15:02:34 +00:00
var endDateEl = h('div.alert.alert-warning.cp-burn-after-reading');
var endDate;
var endDateTo;
var refreshEndDateBanner = function (force) {
2021-05-27 15:46:46 +00:00
if (APP.isEditor) { return; }
2021-05-26 15:02:34 +00:00
var _endDate = content.answers.endDate;
if (_endDate === endDate && !force) { return; }
endDate = _endDate;
var date = new Date(endDate).toLocaleString();
var text = Messages._getKey('form_isClosed', [date]);
if (endDate > +new Date()) {
text = Messages._getKey('form_willClose', [date]);
}
if ($('.cp-help-container').length && endDate) {
$(endDateEl).text(text);
$('.cp-help-container').before(endDateEl);
} else {
$(endDateEl).remove();
}
APP.isClosed = endDate && endDate < (+new Date());
clearTimeout(endDateTo);
if (!APP.isClosed && endDate) {
setTimeout(function () {
refreshEndDateBanner(true);
$('.cp-form-send-container').find('.cp-open').remove();
},(endDate - +new Date() + 100));
}
};
2021-05-28 12:13:16 +00:00
framework.onReady(function () {
2021-05-20 08:43:29 +00:00
var priv = metadataMgr.getPrivateData();
2021-05-20 08:43:29 +00:00
if (APP.isEditor) {
if (!content.form) {
content.form = {};
framework.localChange();
}
2021-05-21 15:40:41 +00:00
if (!content.order) {
content.order = [];
framework.localChange();
}
2021-05-20 14:20:15 +00:00
if (!content.answers || !content.answers.channel || !content.answers.publicKey || !content.answers.validateKey) {
2021-05-20 08:43:29 +00:00
content.answers = {
channel: Hash.createChannelId(),
2021-05-20 14:20:15 +00:00
publicKey: priv.form_public,
validateKey: priv.form_answerValidateKey
2021-05-20 08:43:29 +00:00
};
framework.localChange();
}
}
2021-05-26 12:54:56 +00:00
sframeChan.event('EV_FORM_PIN', {channel: content.answers.channel});
2021-05-26 10:03:32 +00:00
var $container = $('#cp-app-form-container');
$container.append(makeFormCreator());
2021-05-20 14:20:15 +00:00
if (!content.answers || !content.answers.channel || !content.answers.publicKey || !content.answers.validateKey) {
2021-05-20 08:43:29 +00:00
return void UI.errorLoadingScreen(Messages.form_invalid);
}
// XXX fetch answers and
// * viewers ==> check if you've already answered and show form (new or edit)
// * editors ==> show schema and warn users if existing questions already have answers
if (priv.form_auditorKey) {
sframeChan.query("Q_FORM_FETCH_ANSWERS", {
channel: content.answers.channel,
validateKey: content.answers.validateKey,
publicKey: content.answers.publicKey,
privateKey: priv.form_auditorKey
}, function (err, obj) {
2021-05-28 12:04:24 +00:00
if (obj) { APP.answers = obj; }
$body.addClass('cp-app-form-results');
renderResults(content, obj);
});
return;
}
2021-05-20 08:43:29 +00:00
if (APP.isEditor) {
sframeChan.query("Q_FORM_FETCH_ANSWERS", {
channel: content.answers.channel,
2021-05-21 11:39:33 +00:00
validateKey: content.answers.validateKey,
2021-05-20 08:43:29 +00:00
publicKey: content.answers.publicKey
2021-05-21 11:39:33 +00:00
}, function (err, obj) {
if (obj) { APP.answers = obj; }
2021-05-21 15:40:41 +00:00
checkIntegrity(false);
2021-05-20 08:43:29 +00:00
updateForm(framework, content, true);
});
return;
}
2021-05-20 14:20:15 +00:00
2021-05-26 15:02:34 +00:00
refreshEndDateBanner();
2021-05-28 12:04:24 +00:00
// If the results are public and there is at least one doodle, fetch the results now
if (content.answers.privateKey && Object.keys(content.form).some(function (uid) {
return content.form[uid].type === "poll";
})) {
sframeChan.query("Q_FORM_FETCH_ANSWERS", {
channel: content.answers.channel,
validateKey: content.answers.validateKey,
publicKey: content.answers.publicKey,
privateKey: content.answers.privateKey,
}, function (err, obj) {
if (obj) { APP.answers = obj; }
checkIntegrity(false);
var myAnswers;
if (user.curvePublic && obj && obj[user.curvePublic]) { // XXX ANONYMOUS
myAnswers = obj[user.curvePublic].msg;
}
updateForm(framework, content, false, myAnswers);
});
return;
}
2021-05-26 15:02:34 +00:00
2021-05-20 14:20:15 +00:00
sframeChan.query("Q_FETCH_MY_ANSWERS", {
channel: content.answers.channel,
validateKey: content.answers.validateKey,
publicKey: content.answers.publicKey
}, function (err, obj) {
if (obj && obj.error) {
UI.warn(Messages.form_cantFindAnswers);
}
var answers;
if (obj && !obj.error) { answers = obj; }
2021-05-21 15:40:41 +00:00
checkIntegrity(false);
2021-05-20 14:20:15 +00:00
updateForm(framework, content, false, answers);
});
2021-05-20 08:43:29 +00:00
});
framework.onContentUpdate(function (newContent) {
console.log(newContent);
content = newContent;
2021-05-26 15:02:34 +00:00
refreshEndDateBanner();
2021-05-25 13:15:51 +00:00
var answers, temp;
if (!APP.isEditor) { answers = getFormResults(); }
else { temp = getTempFields(); }
updateForm(framework, content, APP.isEditor, answers, temp);
2021-05-20 08:43:29 +00:00
});
framework.setContentGetter(function () {
2021-05-21 15:40:41 +00:00
checkIntegrity(true);
2021-05-20 08:43:29 +00:00
return content;
});
};
Framework.create({
toolbarContainer: '#cp-toolbar',
contentContainer: '#cp-app-form-editor',
}, andThen);
});