2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-08-29 04:08:14 +02:00
|
|
|
const emojisets = require("./emojisets");
|
2020-02-21 14:26:11 +01:00
|
|
|
const settings_config = require("./settings_config");
|
2021-02-10 17:09:37 +01:00
|
|
|
const settings_ui = require("./settings_ui");
|
2020-02-21 14:26:11 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const meta = {
|
2018-03-05 03:32:05 +01:00
|
|
|
loaded: false,
|
|
|
|
};
|
|
|
|
|
2018-03-30 02:35:29 +02:00
|
|
|
function change_display_setting(data, status_element, success_msg, sticky) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const $status_el = $(status_element);
|
2020-07-15 01:29:15 +02:00
|
|
|
const status_is_sticky = $status_el.data("is_sticky");
|
|
|
|
const display_message = status_is_sticky ? $status_el.data("sticky_msg") : success_msg;
|
2019-11-02 00:06:25 +01:00
|
|
|
const opts = {
|
2018-03-29 02:02:01 +02:00
|
|
|
success_msg: display_message,
|
|
|
|
sticky: status_is_sticky || sticky,
|
2018-03-11 10:35:03 +01:00
|
|
|
};
|
2018-03-29 02:02:01 +02:00
|
|
|
|
|
|
|
if (sticky) {
|
2020-07-15 01:29:15 +02:00
|
|
|
$status_el.data("is_sticky", true);
|
|
|
|
$status_el.data("sticky_msg", success_msg);
|
2018-03-29 02:02:01 +02:00
|
|
|
}
|
2020-07-15 00:34:28 +02:00
|
|
|
settings_ui.do_settings_change(
|
|
|
|
channel.patch,
|
|
|
|
"/json/settings/display",
|
|
|
|
data,
|
|
|
|
status_element,
|
|
|
|
opts,
|
|
|
|
);
|
2018-03-05 02:55:20 +01:00
|
|
|
}
|
|
|
|
|
2017-04-06 15:34:42 +02:00
|
|
|
exports.set_up = function () {
|
2018-03-05 03:32:05 +01:00
|
|
|
meta.loaded = true;
|
2017-04-06 15:34:42 +02:00
|
|
|
$("#display-settings-status").hide();
|
|
|
|
|
2017-04-02 20:59:22 +02:00
|
|
|
$("#user_timezone").val(page_params.timezone);
|
2018-07-20 09:28:32 +02:00
|
|
|
|
2019-03-17 14:48:51 +01:00
|
|
|
$("#demote_inactive_streams").val(page_params.demote_inactive_streams);
|
|
|
|
|
2020-05-16 13:13:59 +02:00
|
|
|
$("#color_scheme").val(page_params.color_scheme);
|
|
|
|
|
2019-07-28 11:47:45 +02:00
|
|
|
$("#twenty_four_hour_time").val(JSON.stringify(page_params.twenty_four_hour_time));
|
|
|
|
|
2021-02-03 23:23:32 +01:00
|
|
|
$(`.emojiset_choice[value="${CSS.escape(page_params.emojiset)}"]`).prop("checked", true);
|
2017-04-02 20:59:22 +02:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#default_language_modal [data-dismiss]").on("click", () => {
|
2020-07-15 01:29:15 +02:00
|
|
|
overlays.close_modal("#default_language_modal");
|
2017-04-06 15:34:42 +02:00
|
|
|
});
|
|
|
|
|
2020-02-21 14:26:11 +01:00
|
|
|
const all_display_settings = settings_config.get_all_display_settings();
|
|
|
|
for (const setting of all_display_settings.settings.user_display_settings) {
|
2021-02-03 23:23:32 +01:00
|
|
|
$(`#${CSS.escape(setting)}`).on("change", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {};
|
2020-07-15 01:29:15 +02:00
|
|
|
data[setting] = JSON.stringify($(this).prop("checked"));
|
2019-06-13 21:23:05 +02:00
|
|
|
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
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 K from "ast-types/gen/kinds";
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);
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;
recast.visit(ast, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
changed = true;
}
this.traverse(path);
},
});
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-08 04:55:06 +01:00
|
|
|
if (["left_side_userlist"].includes(setting)) {
|
2019-06-13 21:23:05 +02:00
|
|
|
change_display_setting(
|
|
|
|
data,
|
|
|
|
"#display-settings-status",
|
2020-07-15 00:34:28 +02:00
|
|
|
i18n.t(
|
|
|
|
"Saved. Please <a class='reload_link'>reload</a> for the change to take effect.",
|
|
|
|
),
|
|
|
|
true,
|
|
|
|
);
|
2019-06-13 21:23:05 +02:00
|
|
|
} else {
|
|
|
|
change_display_setting(data, "#display-settings-status");
|
|
|
|
}
|
|
|
|
});
|
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-06-13 21:23:05 +02:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#default_language_modal .language").on("click", (e) => {
|
2017-04-06 15:34:42 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2020-07-15 01:29:15 +02:00
|
|
|
overlays.close_modal("#default_language_modal");
|
2017-04-06 15:34:42 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const $link = $(e.target).closest("a[data-code]");
|
2020-07-15 01:29:15 +02:00
|
|
|
const setting_value = $link.attr("data-code");
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {default_language: JSON.stringify(setting_value)};
|
2017-04-06 15:34:42 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const new_language = $link.attr("data-name");
|
|
|
|
$("#default_language_name").text(new_language);
|
2017-04-06 15:34:42 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
change_display_setting(
|
|
|
|
data,
|
|
|
|
"#language-settings-status",
|
|
|
|
i18n.t(
|
|
|
|
"Saved. Please <a class='reload_link'>reload</a> for the change to take effect.",
|
|
|
|
),
|
|
|
|
true,
|
|
|
|
);
|
2017-04-06 15:34:42 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#default_language").on("click", (e) => {
|
2017-04-06 15:34:42 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2020-07-15 01:29:15 +02:00
|
|
|
overlays.open_modal("#default_language_modal");
|
2017-04-06 15:34:42 +02:00
|
|
|
});
|
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#demote_inactive_streams").on("change", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {demote_inactive_streams: this.value};
|
2020-07-15 01:29:15 +02:00
|
|
|
change_display_setting(data, "#display-settings-status");
|
2019-03-17 14:48:51 +01:00
|
|
|
});
|
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#color_scheme").on("change", function () {
|
2020-05-16 13:13:59 +02:00
|
|
|
const data = {color_scheme: this.value};
|
2020-07-15 01:29:15 +02:00
|
|
|
change_display_setting(data, "#display-settings-status");
|
2020-05-16 13:13:59 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".reload_link", () => {
|
2018-03-05 03:04:25 +01:00
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#twenty_four_hour_time").on("change", function () {
|
2019-07-28 11:47:45 +02:00
|
|
|
const data = {twenty_four_hour_time: this.value};
|
2020-07-15 01:29:15 +02:00
|
|
|
change_display_setting(data, "#time-settings-status");
|
2017-04-06 15:34:42 +02:00
|
|
|
});
|
2017-04-02 20:59:22 +02:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#user_timezone").on("change", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {timezone: JSON.stringify(this.value)};
|
2020-07-15 01:29:15 +02:00
|
|
|
change_display_setting(data, "#time-settings-status");
|
2017-04-02 20:59:22 +02:00
|
|
|
});
|
2020-07-20 21:26:58 +02:00
|
|
|
$(".emojiset_choice").on("click", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {emojiset: JSON.stringify($(this).val())};
|
2020-01-23 23:00:54 +01:00
|
|
|
const current_emojiset = JSON.stringify(page_params.emojiset);
|
|
|
|
if (current_emojiset === data.emojiset) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const spinner = $("#emoji-settings-status").expectOne();
|
2020-07-16 22:40:18 +02:00
|
|
|
loading.make_indicator(spinner, {text: settings_ui.strings.saving});
|
2018-08-25 09:18:49 +02:00
|
|
|
|
|
|
|
channel.patch({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/settings/display",
|
2020-07-20 22:18:43 +02:00
|
|
|
data,
|
|
|
|
success() {},
|
|
|
|
error(xhr) {
|
2020-07-15 00:34:28 +02:00
|
|
|
ui_report.error(
|
|
|
|
settings_ui.strings.failure,
|
|
|
|
xhr,
|
|
|
|
$("#emoji-settings-status").expectOne(),
|
|
|
|
);
|
2018-08-25 09:18:49 +02:00
|
|
|
},
|
|
|
|
});
|
2017-04-23 20:47:18 +02:00
|
|
|
});
|
2018-01-15 19:36:32 +01:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#translate_emoticons").on("change", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {translate_emoticons: JSON.stringify(this.checked)};
|
2020-07-15 01:29:15 +02:00
|
|
|
change_display_setting(data, "#emoji-settings-status");
|
2018-01-15 19:36:32 +01:00
|
|
|
});
|
2017-04-06 15:34:42 +02:00
|
|
|
};
|
|
|
|
|
2020-02-21 00:20:39 +01:00
|
|
|
exports.report_emojiset_change = async function () {
|
2018-08-25 09:18:49 +02:00
|
|
|
// TODO: Clean up how this works so we can use
|
|
|
|
// change_display_setting. The challenge is that we don't want to
|
|
|
|
// report success before the server_events request returns that
|
|
|
|
// causes the actual sprite sheet to change. The current
|
|
|
|
// implementation is wrong, though, in that it displays the UI
|
|
|
|
// update in all active browser windows.
|
|
|
|
|
2020-02-21 00:20:39 +01:00
|
|
|
await emojisets.select(page_params.emojiset);
|
2018-08-31 20:36:03 +02:00
|
|
|
|
2020-02-21 00:20:39 +01:00
|
|
|
if ($("#emoji-settings-status").length) {
|
|
|
|
loading.destroy_indicator($("#emojiset_spinner"));
|
|
|
|
$("#emojiset_select").val(page_params.emojiset);
|
2020-07-15 00:34:28 +02:00
|
|
|
ui_report.success(
|
|
|
|
i18n.t("Emojiset changed successfully!"),
|
|
|
|
$("#emoji-settings-status").expectOne(),
|
|
|
|
);
|
2020-02-21 00:20:39 +01:00
|
|
|
const spinner = $("#emoji-settings-status").expectOne();
|
|
|
|
settings_ui.display_checkmark(spinner);
|
2018-01-02 21:11:23 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-30 18:00:41 +02:00
|
|
|
exports.update_page = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#left_side_userlist").prop("checked", page_params.left_side_userlist);
|
2017-04-06 15:34:42 +02:00
|
|
|
$("#default_language_name").text(page_params.default_language_name);
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#translate_emoticons").prop("checked", page_params.translate_emoticons);
|
2019-07-28 11:47:45 +02:00
|
|
|
$("#twenty_four_hour_time").val(JSON.stringify(page_params.twenty_four_hour_time));
|
2020-05-16 13:13:59 +02:00
|
|
|
$("#color_scheme").val(JSON.stringify(page_params.color_scheme));
|
2019-07-28 11:47:45 +02:00
|
|
|
|
2018-08-25 09:18:49 +02:00
|
|
|
// TODO: Set emojiset selector here.
|
2018-03-05 03:48:51 +01:00
|
|
|
// Longer term, we'll want to automate this function
|
2017-04-06 15:34:42 +02:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.settings_display = exports;
|