2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-04-16 12:05:12 +02:00
|
|
|
import {PollData} from "../shared/js/poll_data";
|
2021-02-28 00:45:58 +01:00
|
|
|
import render_widgets_poll_widget from "../templates/widgets/poll_widget.hbs";
|
|
|
|
import render_widgets_poll_widget_results from "../templates/widgets/poll_widget_results.hbs";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-03-16 23:38:59 +01:00
|
|
|
import * as blueslip from "./blueslip";
|
2021-02-28 00:45:58 +01:00
|
|
|
import * as people from "./people";
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2021-03-24 21:44:43 +01:00
|
|
|
export function activate({
|
|
|
|
elem,
|
|
|
|
callback,
|
|
|
|
extra_data: {question = "", options = []} = {},
|
|
|
|
message,
|
|
|
|
}) {
|
|
|
|
const is_my_poll = people.is_my_user_id(message.sender_id);
|
2021-04-16 11:54:38 +02:00
|
|
|
const poll_data = new PollData({
|
|
|
|
current_user_id: people.my_current_user_id(),
|
2021-04-16 11:37:06 +02:00
|
|
|
is_my_poll,
|
|
|
|
question,
|
|
|
|
options,
|
2021-04-16 12:00:05 +02:00
|
|
|
comma_separated_names: people.safe_full_names,
|
2021-04-16 11:54:38 +02:00
|
|
|
report_error_function: blueslip.warn,
|
|
|
|
});
|
2018-02-23 15:54:07 +01:00
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function update_edit_controls() {
|
2020-07-15 01:29:15 +02:00
|
|
|
const has_question = elem.find("input.poll-question").val().trim() !== "";
|
|
|
|
elem.find("button.poll-question-check").toggle(has_question);
|
2019-01-09 17:55:42 +01:00
|
|
|
}
|
2018-02-23 15:54:07 +01:00
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function render_question() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const question = poll_data.get_question();
|
|
|
|
const input_mode = poll_data.get_input_mode();
|
|
|
|
const can_edit = is_my_poll && !input_mode;
|
2020-07-15 01:29:15 +02:00
|
|
|
const has_question = question.trim() !== "";
|
2019-11-02 00:06:25 +01:00
|
|
|
const can_vote = has_question;
|
|
|
|
const waiting = !is_my_poll && !has_question;
|
|
|
|
const author_help = is_my_poll && !has_question;
|
2018-05-31 02:08:55 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find(".poll-question-header").toggle(!input_mode);
|
|
|
|
elem.find(".poll-question-header").text(question);
|
|
|
|
elem.find(".poll-edit-question").toggle(can_edit);
|
2019-01-09 17:55:42 +01:00
|
|
|
update_edit_controls();
|
2018-02-23 15:54:07 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find(".poll-question-bar").toggle(input_mode);
|
|
|
|
elem.find(".poll-option-bar").toggle(can_vote);
|
2018-05-31 02:17:25 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find(".poll-please-wait").toggle(waiting);
|
2018-06-27 17:33:30 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find(".poll-author-help").toggle(author_help);
|
2019-01-09 17:55:42 +01:00
|
|
|
}
|
2018-06-27 17:33:30 +02:00
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function start_editing() {
|
|
|
|
poll_data.set_input_mode();
|
2018-06-27 17:33:30 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const question = poll_data.get_question();
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("input.poll-question").val(question);
|
2019-01-09 17:55:42 +01:00
|
|
|
render_question();
|
2020-07-20 21:24:26 +02:00
|
|
|
elem.find("input.poll-question").trigger("focus");
|
2019-01-09 17:55:42 +01:00
|
|
|
}
|
2018-06-27 17:33:30 +02:00
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function abort_edit() {
|
|
|
|
poll_data.clear_input_mode();
|
|
|
|
render_question();
|
2018-02-23 15:54:07 +01:00
|
|
|
}
|
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function submit_question() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const poll_question_input = elem.find("input.poll-question");
|
|
|
|
let new_question = poll_question_input.val().trim();
|
|
|
|
const old_question = poll_data.get_question();
|
2019-01-09 17:55:42 +01:00
|
|
|
|
|
|
|
// We should disable the button for blank questions,
|
|
|
|
// so this is just defensive code.
|
2020-07-15 01:29:15 +02:00
|
|
|
if (new_question.trim() === "") {
|
2019-01-09 17:55:42 +01:00
|
|
|
new_question = old_question;
|
2018-06-27 17:33:30 +02:00
|
|
|
}
|
2019-01-09 17:55:42 +01:00
|
|
|
|
|
|
|
// Optimistically set the question locally.
|
|
|
|
poll_data.set_question(new_question);
|
|
|
|
render_question();
|
|
|
|
|
|
|
|
// If there were no actual edits, we can exit now.
|
|
|
|
if (new_question === old_question) {
|
|
|
|
return;
|
2018-06-27 17:33:30 +02:00
|
|
|
}
|
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
// Broadcast the new question to our peers.
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = poll_data.handle.question.outbound(new_question);
|
2019-01-09 17:55:42 +01:00
|
|
|
callback(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function submit_option() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const poll_option_input = elem.find("input.poll-option");
|
|
|
|
const option = poll_option_input.val().trim();
|
|
|
|
const options = poll_data.get_widget_data().options;
|
2019-01-24 20:22:12 +01:00
|
|
|
|
2019-01-28 19:13:56 +01:00
|
|
|
if (poll_data.is_option_present(options, option)) {
|
2019-01-24 20:22:12 +01:00
|
|
|
return;
|
|
|
|
}
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
if (option === "") {
|
2019-01-09 17:55:42 +01:00
|
|
|
return;
|
2018-12-22 05:02:36 +01:00
|
|
|
}
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2020-07-20 21:24:26 +02:00
|
|
|
poll_option_input.val("").trigger("focus");
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = poll_data.handle.new_option.outbound(option);
|
2019-01-09 17:55:42 +01:00
|
|
|
callback(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function submit_vote(key) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = poll_data.handle.vote.outbound(key);
|
2019-01-09 17:55:42 +01:00
|
|
|
callback(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function build_widget() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const html = render_widgets_poll_widget();
|
2019-01-09 17:55:42 +01:00
|
|
|
elem.html(html);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("input.poll-question").on("keyup", (e) => {
|
2019-01-09 17:55:42 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
update_edit_controls();
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("input.poll-question").on("keydown", (e) => {
|
2019-01-18 03:27:16 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
if (e.keyCode === 13) {
|
|
|
|
submit_question();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.keyCode === 27) {
|
|
|
|
abort_edit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find(".poll-edit-question").on("click", (e) => {
|
2019-01-09 17:55:42 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
start_editing();
|
2018-12-22 05:02:36 +01:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("button.poll-question-check").on("click", (e) => {
|
2019-01-09 17:55:42 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
submit_question();
|
2018-12-22 05:02:36 +01:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("button.poll-question-remove").on("click", (e) => {
|
2019-01-09 17:55:42 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
abort_edit();
|
2018-12-22 05:02:36 +01:00
|
|
|
});
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("button.poll-option").on("click", (e) => {
|
2018-02-23 15:54:07 +01:00
|
|
|
e.stopPropagation();
|
2019-01-09 17:55:42 +01:00
|
|
|
submit_option();
|
|
|
|
});
|
2019-01-18 03:27:16 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("input.poll-option").on("keydown", (e) => {
|
2019-01-18 03:27:16 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
if (e.keyCode === 13) {
|
|
|
|
submit_option();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.keyCode === 27) {
|
2020-07-15 01:29:15 +02:00
|
|
|
$("input.poll-option").val("");
|
2019-01-18 03:27:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
2019-01-09 17:55:42 +01:00
|
|
|
}
|
2018-02-23 15:54:07 +01:00
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
function render_results() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const widget_data = poll_data.get_widget_data();
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const html = render_widgets_poll_widget_results(widget_data);
|
2020-07-15 01:29:15 +02:00
|
|
|
elem.find("ul.poll-widget").html(html);
|
2019-01-09 17:55:42 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
elem.find("button.poll-vote")
|
|
|
|
.off("click")
|
|
|
|
.on("click", (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
const key = $(e.target).attr("data-key");
|
|
|
|
submit_vote(key);
|
|
|
|
});
|
2018-02-23 15:54:07 +01:00
|
|
|
}
|
|
|
|
|
2018-06-26 09:30:57 +02:00
|
|
|
elem.handle_events = function (events) {
|
js: Automatically convert _.each to for…of.
This commit was automatically generated by the following script,
followed by lint --fix and a few small manual lint-related cleanups.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import { Context } from "ast-types/lib/path-visitor";
import K from "ast-types/gen/kinds";
import { NodePath } from "ast-types/lib/node-path";
import assert from "assert";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
const checkStatement = (node: n.Node): node is K.StatementKind =>
n.Statement.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
let inLoop = false;
let replaceReturn = false;
const visitLoop = (...args: string[]) =>
function(this: Context, path: NodePath) {
for (const arg of args) {
this.visit(path.get(arg));
}
const old = { inLoop };
inLoop = true;
this.visit(path.get("body"));
inLoop = old.inLoop;
return false;
};
recast.visit(ast, {
visitDoWhileStatement: visitLoop("test"),
visitExpressionStatement(path) {
const { expression, comments } = path.node;
let valueOnly;
if (
n.CallExpression.check(expression) &&
n.MemberExpression.check(expression.callee) &&
!expression.callee.computed &&
n.Identifier.check(expression.callee.object) &&
expression.callee.object.name === "_" &&
n.Identifier.check(expression.callee.property) &&
["each", "forEach"].includes(expression.callee.property.name) &&
[2, 3].includes(expression.arguments.length) &&
checkExpression(expression.arguments[0]) &&
(n.FunctionExpression.check(expression.arguments[1]) ||
n.ArrowFunctionExpression.check(expression.arguments[1])) &&
[1, 2].includes(expression.arguments[1].params.length) &&
n.Identifier.check(expression.arguments[1].params[0]) &&
((valueOnly = expression.arguments[1].params[1] === undefined) ||
n.Identifier.check(expression.arguments[1].params[1])) &&
(expression.arguments[2] === undefined ||
n.ThisExpression.check(expression.arguments[2]))
) {
const old = { inLoop, replaceReturn };
inLoop = false;
replaceReturn = true;
this.visit(
path
.get("expression")
.get("arguments")
.get(1)
.get("body")
);
inLoop = old.inLoop;
replaceReturn = old.replaceReturn;
const [right, { body, params }] = expression.arguments;
const loop = b.forOfStatement(
b.variableDeclaration("let", [
b.variableDeclarator(
valueOnly ? params[0] : b.arrayPattern([params[1], params[0]])
),
]),
valueOnly
? right
: b.callExpression(
b.memberExpression(right, b.identifier("entries")),
[]
),
checkStatement(body) ? body : b.expressionStatement(body)
);
loop.comments = comments;
path.replace(loop);
changed = true;
}
this.traverse(path);
},
visitForStatement: visitLoop("init", "test", "update"),
visitForInStatement: visitLoop("left", "right"),
visitForOfStatement: visitLoop("left", "right"),
visitFunction(path) {
this.visit(path.get("params"));
const old = { replaceReturn };
replaceReturn = false;
this.visit(path.get("body"));
replaceReturn = old.replaceReturn;
return false;
},
visitReturnStatement(path) {
if (replaceReturn) {
assert(!inLoop); // could use labeled continue if this ever fires
const { argument, comments } = path.node;
if (argument === null) {
const s = b.continueStatement();
s.comments = comments;
path.replace(s);
} else {
const s = b.expressionStatement(argument);
s.comments = comments;
path.replace(s, b.continueStatement());
}
return false;
}
this.traverse(path);
},
visitWhileStatement: visitLoop("test"),
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-06 06:19:47 +01:00
|
|
|
for (const event of events) {
|
2018-02-23 15:54:07 +01:00
|
|
|
poll_data.handle_event(event.sender_id, event.data);
|
js: Automatically convert _.each to for…of.
This commit was automatically generated by the following script,
followed by lint --fix and a few small manual lint-related cleanups.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import { Context } from "ast-types/lib/path-visitor";
import K from "ast-types/gen/kinds";
import { NodePath } from "ast-types/lib/node-path";
import assert from "assert";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
const checkStatement = (node: n.Node): node is K.StatementKind =>
n.Statement.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
let inLoop = false;
let replaceReturn = false;
const visitLoop = (...args: string[]) =>
function(this: Context, path: NodePath) {
for (const arg of args) {
this.visit(path.get(arg));
}
const old = { inLoop };
inLoop = true;
this.visit(path.get("body"));
inLoop = old.inLoop;
return false;
};
recast.visit(ast, {
visitDoWhileStatement: visitLoop("test"),
visitExpressionStatement(path) {
const { expression, comments } = path.node;
let valueOnly;
if (
n.CallExpression.check(expression) &&
n.MemberExpression.check(expression.callee) &&
!expression.callee.computed &&
n.Identifier.check(expression.callee.object) &&
expression.callee.object.name === "_" &&
n.Identifier.check(expression.callee.property) &&
["each", "forEach"].includes(expression.callee.property.name) &&
[2, 3].includes(expression.arguments.length) &&
checkExpression(expression.arguments[0]) &&
(n.FunctionExpression.check(expression.arguments[1]) ||
n.ArrowFunctionExpression.check(expression.arguments[1])) &&
[1, 2].includes(expression.arguments[1].params.length) &&
n.Identifier.check(expression.arguments[1].params[0]) &&
((valueOnly = expression.arguments[1].params[1] === undefined) ||
n.Identifier.check(expression.arguments[1].params[1])) &&
(expression.arguments[2] === undefined ||
n.ThisExpression.check(expression.arguments[2]))
) {
const old = { inLoop, replaceReturn };
inLoop = false;
replaceReturn = true;
this.visit(
path
.get("expression")
.get("arguments")
.get(1)
.get("body")
);
inLoop = old.inLoop;
replaceReturn = old.replaceReturn;
const [right, { body, params }] = expression.arguments;
const loop = b.forOfStatement(
b.variableDeclaration("let", [
b.variableDeclarator(
valueOnly ? params[0] : b.arrayPattern([params[1], params[0]])
),
]),
valueOnly
? right
: b.callExpression(
b.memberExpression(right, b.identifier("entries")),
[]
),
checkStatement(body) ? body : b.expressionStatement(body)
);
loop.comments = comments;
path.replace(loop);
changed = true;
}
this.traverse(path);
},
visitForStatement: visitLoop("init", "test", "update"),
visitForInStatement: visitLoop("left", "right"),
visitForOfStatement: visitLoop("left", "right"),
visitFunction(path) {
this.visit(path.get("params"));
const old = { replaceReturn };
replaceReturn = false;
this.visit(path.get("body"));
replaceReturn = old.replaceReturn;
return false;
},
visitReturnStatement(path) {
if (replaceReturn) {
assert(!inLoop); // could use labeled continue if this ever fires
const { argument, comments } = path.node;
if (argument === null) {
const s = b.continueStatement();
s.comments = comments;
path.replace(s);
} else {
const s = b.expressionStatement(argument);
s.comments = comments;
path.replace(s, b.continueStatement());
}
return false;
}
this.traverse(path);
},
visitWhileStatement: visitLoop("test"),
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-06 06:19:47 +01:00
|
|
|
}
|
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
render_question();
|
2018-02-23 15:54:07 +01:00
|
|
|
render_results();
|
|
|
|
};
|
|
|
|
|
2019-01-09 17:55:42 +01:00
|
|
|
build_widget();
|
|
|
|
render_question();
|
2018-02-23 15:54:07 +01:00
|
|
|
render_results();
|
2021-02-28 00:45:58 +01:00
|
|
|
}
|