define([ '/api/config?cb=' + Math.random().toString(16).substring(2), '/customize/messages.js', '/poll/table.js', '/poll/wizard.js', '/bower_components/textpatcher/TextPatcher.js', '/bower_components/chainpad-listmap/chainpad-listmap.js', '/bower_components/chainpad-crypto/crypto.js', '/common/cryptpad-common.js', '/common/visible.js', '/common/notify.js', '/bower_components/file-saver/FileSaver.min.js', '/bower_components/jquery/dist/jquery.min.js', '/customize/pad.js' ], function (Config, Messages, Table, Wizard, TextPatcher, Listmap, Crypto, Cryptpad, Visible, Notify) { var $ = window.jQuery; var saveAs = window.saveAs; Cryptpad.styleAlerts(); console.log("Initializing your realtime session..."); /* TODO * set range of dates/times * (pair of date pickers) * hide options within that range * show hidden options * add notes to a particular time slot * check or uncheck options for a particular user * mark preference level? (+1, 0, -1) * delete/hide columns/rows // let users choose what they want the default input to be... * date - http://foxrunsoftware.github.io/DatePicker/ ? * ??? */ var secret = Cryptpad.getSecrets(); var module = window.APP = { Cryptpad: Cryptpad, }; module.getResults = function () { if (!module.ready) { return []; } var table = module.rt.proxy.table; var cells = table.cells; var rows = table.rows; return Object.keys(rows).map(function (id) { var text = rows[id]; var count = Object.keys(cells).filter(function (c) { return c.indexOf(id) !== -1 && cells[c]; }).length; return { text: text, count: count, }; }).sort(function (a,b) { return b.count - a.count; }); }; module.Wizard = Wizard; // special UI elements var $title = $('#title').attr('placeholder', Messages.poll_titleHint || 'title'); var $description = $('#description').attr('placeholder', Messages.poll_descriptionHint || 'description'); var items = [$title, $description]; var Uid = function (prefix, f) { f = f || function () { return Number(Math.random() * Number.MAX_SAFE_INTEGER) .toString(32).replace(/\./g, ''); }; return function () { return prefix + '-' + f(); }; }; var xy = function (x, y) { return x + '_' + y; }; var parseXY = function (id) { var p = id.split('_'); return { x: p[0], y: p[1], }; }; var Input = function (opt) { return $('', opt); }; var Checkbox = function (id) { var p = parseXY(id); var proxy = module.rt.proxy; var $div = $('
', { 'class': 'checkbox-contain', }); var $cover = $('', { 'class': 'cover' }); var $label = $('