diff --git a/www/Poll/index.html b/www/Poll/index.html new file mode 100644 index 000000000..10dd07fc4 --- /dev/null +++ b/www/Poll/index.html @@ -0,0 +1,114 @@ + + + + + + Zero Knowledge Date Picker + + + + + + + + +
+ +
+
+

CryptPoll

+

+ +

+

+ +
+
+ +
+
+ + +

+ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ + + diff --git a/www/Poll/main.js b/www/Poll/main.js new file mode 100644 index 000000000..7417ad10b --- /dev/null +++ b/www/Poll/main.js @@ -0,0 +1,943 @@ +define([ + '/api/config?cb=' + Math.random().toString(16).substring(2), + '/customize/messages.js?app=poll', + '/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 readOnly = secret.keys && !secret.keys.editKeyStr; + if (!secret.keys) { + secret.keys = secret.key; + } + if (readOnly) { + $('#mainTitle').html($('#mainTitle').html() + ' - ' + Messages.readonly); + $('#adduser, #addoption, #howToUse').remove(); + } + + 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; + }); + }; + + var getLastName = module.getLastName = function (cb) { + Cryptpad.getAttribute('username', function (err, userName) { + cb(err, userName || ''); + }); + }; + + var setName = module.setName = function (uname, cb) { + if (typeof(uname) !== 'string') { + return void cb(new Error('expected string')); + } + uname = Cryptpad.fixHTML(uname.trim()).slice(0, 32); + Cryptpad.setAttribute('username', uname, function (err, data) { + if (err) { return void cb(err); } + cb(void 0, uname); + }); + }; + + 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 = $('