2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-02-28 01:08:54 +01:00
|
|
|
import render_alert_word_settings_item from "../templates/settings/alert_word_settings_item.hbs";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-02-28 01:08:54 +01:00
|
|
|
import * as alert_words from "./alert_words";
|
|
|
|
import * as channel from "./channel";
|
2021-04-13 06:51:54 +02:00
|
|
|
import {$t} from "./i18n";
|
2022-02-21 18:23:21 +01:00
|
|
|
import * as ListWidget from "./list_widget";
|
|
|
|
|
|
|
|
export let loaded = false;
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2022-02-26 01:58:57 +01:00
|
|
|
export function rerender_alert_words_ui() {
|
2022-02-21 18:23:21 +01:00
|
|
|
if (!loaded) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-26 01:58:57 +01:00
|
|
|
|
2020-02-26 23:53:46 +01:00
|
|
|
const words = alert_words.get_word_list();
|
2020-04-15 23:45:34 +02:00
|
|
|
words.sort();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $word_list = $("#alert-words-table");
|
2017-06-07 21:46:11 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
ListWidget.create($word_list, words, {
|
2022-02-21 18:23:21 +01:00
|
|
|
name: "alert-words-list",
|
|
|
|
modifier(alert_word) {
|
|
|
|
return render_alert_word_settings_item({alert_word});
|
|
|
|
},
|
2022-01-25 11:36:19 +01:00
|
|
|
$parent_container: $("#alert-word-settings"),
|
|
|
|
$simplebar_container: $("#alert-word-settings .progressive-table-wrapper"),
|
2022-02-21 18:23:21 +01:00
|
|
|
});
|
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
|
|
|
|
2017-06-07 21:46:11 +02:00
|
|
|
// Focus new alert word name text box.
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#create_alert_word_name").trigger("focus");
|
2021-02-28 01:08:54 +01:00
|
|
|
}
|
2017-06-07 21:46:11 +02:00
|
|
|
|
2017-06-07 21:16:02 +02:00
|
|
|
function update_alert_word_status(status_text, is_error) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $alert_word_status = $("#alert_word_status");
|
2017-06-07 21:16:02 +02:00
|
|
|
if (is_error) {
|
2022-01-25 11:36:19 +01:00
|
|
|
$alert_word_status.removeClass("alert-success").addClass("alert-danger");
|
2017-06-07 21:16:02 +02:00
|
|
|
} else {
|
2022-01-25 11:36:19 +01:00
|
|
|
$alert_word_status.removeClass("alert-danger").addClass("alert-success");
|
2017-06-07 21:16:02 +02:00
|
|
|
}
|
2022-01-25 11:36:19 +01:00
|
|
|
$alert_word_status.find(".alert_word_status_text").text(status_text);
|
|
|
|
$alert_word_status.show();
|
2017-06-07 21:16:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-11 20:30:09 +02:00
|
|
|
function add_alert_word(alert_word) {
|
2020-07-22 03:39:41 +02:00
|
|
|
alert_word = alert_word.trim();
|
2020-07-15 01:29:15 +02:00
|
|
|
if (alert_word === "") {
|
2021-04-13 06:51:54 +02:00
|
|
|
update_alert_word_status($t({defaultMessage: "Alert word can't be empty!"}), true);
|
2014-03-04 23:37:29 +01:00
|
|
|
return;
|
2020-02-26 23:53:46 +01:00
|
|
|
} else if (alert_words.has_alert_word(alert_word)) {
|
2021-04-13 06:51:54 +02:00
|
|
|
update_alert_word_status($t({defaultMessage: "Alert word already exists!"}), true);
|
2017-06-11 21:30:06 +02:00
|
|
|
return;
|
2013-09-09 17:49:39 +02:00
|
|
|
}
|
2014-03-04 23:37:29 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const words_to_be_added = [alert_word];
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2018-05-06 21:43:17 +02:00
|
|
|
channel.post({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/users/me/alert_words",
|
2017-06-11 20:30:09 +02:00
|
|
|
data: {alert_words: JSON.stringify(words_to_be_added)},
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2021-04-13 06:51:54 +02:00
|
|
|
const message = $t(
|
|
|
|
{defaultMessage: 'Alert word "{word}" added successfully!'},
|
|
|
|
{word: words_to_be_added[0]},
|
|
|
|
);
|
2020-05-27 23:03:16 +02:00
|
|
|
update_alert_word_status(message, false);
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#create_alert_word_name").val("");
|
2017-06-11 20:30:09 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error() {
|
2021-04-13 06:51:54 +02:00
|
|
|
update_alert_word_status($t({defaultMessage: "Error adding alert word!"}), true);
|
2017-06-11 20:30:09 +02:00
|
|
|
},
|
|
|
|
});
|
2014-03-04 23:37:29 +01:00
|
|
|
}
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2017-06-07 21:36:43 +02:00
|
|
|
function remove_alert_word(alert_word) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const words_to_be_removed = [alert_word];
|
2017-06-07 21:36:43 +02:00
|
|
|
channel.del({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/users/me/alert_words",
|
2017-06-07 21:36:43 +02:00
|
|
|
data: {alert_words: JSON.stringify(words_to_be_removed)},
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2021-04-13 06:51:54 +02:00
|
|
|
update_alert_word_status(
|
|
|
|
$t({defaultMessage: "Alert word removed successfully!"}),
|
|
|
|
false,
|
|
|
|
);
|
2017-06-07 21:36:43 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error() {
|
2021-04-13 06:51:54 +02:00
|
|
|
update_alert_word_status($t({defaultMessage: "Error removing alert word!"}), true);
|
2017-06-07 21:36:43 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-28 01:08:54 +01:00
|
|
|
export function set_up_alert_words() {
|
2014-03-04 23:37:29 +01:00
|
|
|
// The settings page must be rendered before this function gets called.
|
2022-02-21 18:23:21 +01:00
|
|
|
loaded = true;
|
2022-02-26 01:58:57 +01:00
|
|
|
rerender_alert_words_ui();
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#create_alert_word_form").on("click", "#create_alert_word_button", () => {
|
|
|
|
const word = $("#create_alert_word_name").val();
|
2017-06-11 20:30:09 +02:00
|
|
|
add_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
});
|
|
|
|
|
2022-02-21 18:23:21 +01:00
|
|
|
$("#alert-words-table").on("click", ".remove-alert-word", (event) => {
|
2021-02-02 01:35:51 +01:00
|
|
|
const word = $(event.currentTarget).parents("tr").find(".value").text().trim();
|
2017-06-07 21:36:43 +02:00
|
|
|
remove_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#create_alert_word_form").on("keypress", "#create_alert_word_name", (event) => {
|
2021-05-31 18:29:58 +02:00
|
|
|
// Handle Enter as "add".
|
|
|
|
if (event.key === "Enter") {
|
2013-09-09 17:49:39 +02:00
|
|
|
event.preventDefault();
|
2019-11-02 00:06:25 +01:00
|
|
|
const word = $(event.target).val();
|
2017-06-11 20:30:09 +02:00
|
|
|
add_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
}
|
|
|
|
});
|
2016-07-14 01:32:25 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#alert-word-settings").on("click", ".close-alert-word-status", (event) => {
|
2016-07-14 01:32:25 +02:00
|
|
|
event.preventDefault();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $alert = $(event.currentTarget).parents(".alert");
|
|
|
|
$alert.hide();
|
2016-07-14 01:32:25 +02:00
|
|
|
});
|
2021-02-28 01:08:54 +01:00
|
|
|
}
|
2022-02-21 18:23:21 +01:00
|
|
|
|
|
|
|
export function reset() {
|
|
|
|
loaded = false;
|
|
|
|
}
|