2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-04-14 16:52:40 +02:00
|
|
|
import emoji_codes from "../generated/emoji/emoji_codes.json";
|
2022-09-06 15:26:07 +02:00
|
|
|
import render_confirm_deactivate_custom_emoji from "../templates/confirm_dialog/confirm_deactivate_custom_emoji.hbs";
|
2021-06-21 11:08:12 +02:00
|
|
|
import emoji_settings_warning_modal from "../templates/confirm_dialog/confirm_emoji_settings_warning.hbs";
|
2022-03-29 18:46:59 +02:00
|
|
|
import render_add_emoji from "../templates/settings/add_emoji.hbs";
|
2021-04-22 13:10:09 +02:00
|
|
|
import render_admin_emoji_list from "../templates/settings/admin_emoji_list.hbs";
|
2021-02-28 01:19:58 +01:00
|
|
|
import render_settings_emoji_settings_tip from "../templates/settings/emoji_settings_tip.hbs";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
import * as channel from "./channel";
|
2021-04-14 16:52:40 +02:00
|
|
|
import * as confirm_dialog from "./confirm_dialog";
|
2022-09-06 15:26:07 +02:00
|
|
|
import * as dialog_widget from "./dialog_widget";
|
2022-03-25 14:47:51 +01:00
|
|
|
import * as emoji from "./emoji";
|
2021-04-13 05:18:25 +02:00
|
|
|
import {$t_html} from "./i18n";
|
2021-02-28 01:19:58 +01:00
|
|
|
import * as ListWidget from "./list_widget";
|
|
|
|
import * as loading from "./loading";
|
2021-03-25 22:35:45 +01:00
|
|
|
import {page_params} from "./page_params";
|
2021-02-28 01:19:58 +01:00
|
|
|
import * as people from "./people";
|
2021-05-04 19:02:24 +02:00
|
|
|
import * as settings_config from "./settings_config";
|
2021-05-17 19:32:35 +02:00
|
|
|
import * as settings_data from "./settings_data";
|
2021-02-28 21:33:10 +01:00
|
|
|
import * as ui from "./ui";
|
2021-02-28 01:19:58 +01:00
|
|
|
import * as ui_report from "./ui_report";
|
|
|
|
import * as upload_widget from "./upload_widget";
|
2020-08-20 21:24:06 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const meta = {
|
2017-04-08 17:24:07 +02:00
|
|
|
loaded: false,
|
|
|
|
};
|
|
|
|
|
2021-05-15 19:34:37 +02:00
|
|
|
function can_delete_emoji(emoji) {
|
2017-05-18 22:03:03 +02:00
|
|
|
if (page_params.is_admin) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-05-29 11:11:48 +02:00
|
|
|
if (emoji.author_id === null) {
|
2017-05-31 18:49:41 +02:00
|
|
|
// If we don't have the author information then only admin is allowed to disable that emoji.
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-04 19:47:10 +02:00
|
|
|
if (people.is_my_user_id(emoji.author_id)) {
|
2017-05-18 22:03:03 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
export function update_custom_emoji_ui() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_tip = render_settings_emoji_settings_tip({
|
2021-05-17 19:32:35 +02:00
|
|
|
realm_add_custom_emoji_policy: page_params.realm_add_custom_emoji_policy,
|
|
|
|
policy_values: settings_config.common_policy_values,
|
2017-07-13 20:53:27 +02:00
|
|
|
});
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#emoji-settings").find(".emoji-settings-tip-container").html(rendered_tip);
|
2021-05-17 19:32:35 +02:00
|
|
|
if (!settings_data.user_can_add_custom_emoji()) {
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".add-emoji-text").hide();
|
2022-03-29 18:46:59 +02:00
|
|
|
$("#add-custom-emoji-button").hide();
|
2017-07-12 20:23:51 +02:00
|
|
|
} else {
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".add-emoji-text").show();
|
2022-03-29 18:46:59 +02:00
|
|
|
$("#add-custom-emoji-button").show();
|
2017-07-12 20:23:51 +02:00
|
|
|
}
|
2017-07-13 20:53:27 +02:00
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
populate_emoji();
|
|
|
|
}
|
2017-07-12 20:23:51 +02:00
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
export function reset() {
|
2017-04-17 16:51:27 +02:00
|
|
|
meta.loaded = false;
|
2021-02-28 01:19:58 +01:00
|
|
|
}
|
2017-04-17 16:51:27 +02:00
|
|
|
|
2020-04-12 12:13:47 +02:00
|
|
|
function sort_author_full_name(a, b) {
|
|
|
|
if (a.author.full_name > b.author.full_name) {
|
|
|
|
return 1;
|
|
|
|
} else if (a.author.full_name === b.author.full_name) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-14 16:52:40 +02:00
|
|
|
function is_default_emoji(emoji_name) {
|
2023-01-20 16:49:59 +01:00
|
|
|
// Spaces are replaced with `_` to match how the emoji name will
|
|
|
|
// actually be stored in the backend.
|
|
|
|
return emoji_codes.names.includes(emoji_name.replace(/ /g, "_"));
|
2021-04-14 16:52:40 +02:00
|
|
|
}
|
|
|
|
|
2021-06-16 17:00:13 +02:00
|
|
|
function is_custom_emoji(emoji_name) {
|
|
|
|
const emoji_data = emoji.get_server_realm_emoji_data();
|
|
|
|
for (const emoji of Object.values(emoji_data)) {
|
|
|
|
if (emoji.name === emoji_name && !emoji.deactivated) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
export function populate_emoji() {
|
2017-04-08 17:24:07 +02:00
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-24 00:39:22 +02:00
|
|
|
const emoji_data = emoji.get_server_realm_emoji_data();
|
2020-07-24 00:42:44 +02:00
|
|
|
|
2020-05-29 11:11:48 +02:00
|
|
|
for (const emoji of Object.values(emoji_data)) {
|
|
|
|
// Add people.js data for the user here.
|
|
|
|
if (emoji.author_id !== null) {
|
|
|
|
emoji.author = people.get_by_user_id(emoji.author_id);
|
|
|
|
} else {
|
|
|
|
emoji.author = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $emoji_table = $("#admin_emoji_table").expectOne();
|
|
|
|
ListWidget.create($emoji_table, Object.values(emoji_data), {
|
2019-08-16 10:52:48 +02:00
|
|
|
name: "emoji_list",
|
2020-07-20 22:18:43 +02:00
|
|
|
modifier(item) {
|
2019-08-16 10:52:48 +02:00
|
|
|
if (item.deactivated !== true) {
|
|
|
|
return render_admin_emoji_list({
|
|
|
|
emoji: {
|
|
|
|
name: item.name,
|
2020-07-15 01:29:15 +02:00
|
|
|
display_name: item.name.replace(/_/g, " "),
|
2019-08-16 10:52:48 +02:00
|
|
|
source_url: item.source_url,
|
2020-07-15 01:29:15 +02:00
|
|
|
author: item.author || "",
|
2021-05-15 19:34:37 +02:00
|
|
|
can_delete_emoji: can_delete_emoji(item),
|
2019-08-16 10:52:48 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
filter: {
|
2022-01-25 11:36:19 +01:00
|
|
|
$element: $emoji_table.closest(".settings-section").find(".search"),
|
2020-07-20 22:18:43 +02:00
|
|
|
predicate(item, value) {
|
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
|
|
|
return item.name.toLowerCase().includes(value);
|
2019-08-16 10:52:48 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
onupdate() {
|
2022-01-25 11:36:19 +01:00
|
|
|
ui.reset_scrollbar($emoji_table);
|
2019-08-16 10:52:48 +02:00
|
|
|
},
|
|
|
|
},
|
2022-01-25 11:36:19 +01:00
|
|
|
$parent_container: $("#emoji-settings").expectOne(),
|
2020-04-11 16:23:29 +02:00
|
|
|
sort_fields: {
|
|
|
|
author_full_name: sort_author_full_name,
|
|
|
|
},
|
2020-07-15 01:29:15 +02:00
|
|
|
init_sort: ["alphabetic", "name"],
|
2022-01-25 11:36:19 +01:00
|
|
|
$simplebar_container: $("#emoji-settings .progressive-table-wrapper"),
|
2020-04-11 16:23:29 +02:00
|
|
|
});
|
2019-08-16 11:03:10 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
loading.destroy_indicator($("#admin_page_emoji_loading_indicator"));
|
2021-02-28 01:19:58 +01:00
|
|
|
}
|
2017-04-08 17:24:07 +02:00
|
|
|
|
2022-03-29 18:46:59 +02:00
|
|
|
export function add_custom_emoji_post_render() {
|
|
|
|
$("#add-custom-emoji-modal .dialog_submit_button").prop("disabled", true);
|
|
|
|
|
|
|
|
$("#add-custom-emoji-form").on("input", "input", () => {
|
|
|
|
$("#add-custom-emoji-modal .dialog_submit_button").prop(
|
|
|
|
"disabled",
|
|
|
|
$("#emoji_name").val() === "" || $("#emoji_file_input").val() === "",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2020-04-08 23:40:20 +02:00
|
|
|
const get_file_input = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
return $("#emoji_file_input");
|
2020-04-08 23:40:20 +02:00
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $file_name_field = $("#emoji-file-name");
|
|
|
|
const $input_error = $("#emoji_file_input_error");
|
|
|
|
const $clear_button = $("#emoji_image_clear_button");
|
|
|
|
const $upload_button = $("#emoji_upload_button");
|
|
|
|
const $preview_text = $("#emoji_preview_text");
|
|
|
|
const $preview_image = $("#emoji_preview_image");
|
2022-03-29 18:46:59 +02:00
|
|
|
const $placeholder_icon = $("#emoji_placeholder_icon");
|
2020-04-08 23:40:20 +02:00
|
|
|
|
2022-03-29 18:46:59 +02:00
|
|
|
$preview_image.hide();
|
|
|
|
|
|
|
|
upload_widget.build_widget(
|
2020-04-08 23:40:20 +02:00
|
|
|
get_file_input,
|
2022-01-25 11:36:19 +01:00
|
|
|
$file_name_field,
|
|
|
|
$input_error,
|
|
|
|
$clear_button,
|
|
|
|
$upload_button,
|
|
|
|
$preview_text,
|
|
|
|
$preview_image,
|
2020-04-08 23:40:20 +02:00
|
|
|
);
|
2022-03-29 18:46:59 +02:00
|
|
|
|
|
|
|
get_file_input().on("input", () => {
|
|
|
|
$placeholder_icon.hide();
|
|
|
|
$preview_image.show();
|
|
|
|
});
|
|
|
|
|
|
|
|
$preview_text.show();
|
|
|
|
$clear_button.on("click", (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$("#add-custom-emoji-modal .dialog_submit_button").prop("disabled", true);
|
|
|
|
|
|
|
|
$preview_image.hide();
|
|
|
|
$placeholder_icon.show();
|
|
|
|
$preview_text.show();
|
|
|
|
$preview_image.attr("src", "/static/images/default-avatar.png");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_modal() {
|
|
|
|
const html_body = render_add_emoji();
|
|
|
|
|
|
|
|
function add_custom_emoji(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
dialog_widget.show_dialog_spinner();
|
|
|
|
|
|
|
|
const $emoji_status = $("#dialog_error");
|
|
|
|
const emoji = {};
|
|
|
|
|
|
|
|
function submit_custom_emoji_request(formData) {
|
|
|
|
channel.post({
|
|
|
|
url: "/json/realm/emoji/" + encodeURIComponent(emoji.name),
|
|
|
|
data: formData,
|
|
|
|
cache: false,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
success() {
|
|
|
|
dialog_widget.close_modal();
|
|
|
|
},
|
|
|
|
error(xhr) {
|
|
|
|
$("#dialog_error").hide();
|
|
|
|
dialog_widget.hide_dialog_spinner();
|
|
|
|
const errors = JSON.parse(xhr.responseText).msg;
|
|
|
|
xhr.responseText = JSON.stringify({msg: errors});
|
|
|
|
ui_report.error($t_html({defaultMessage: "Failed"}), xhr, $emoji_status);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const obj of $("#add-custom-emoji-form").serializeArray()) {
|
|
|
|
emoji[obj.name] = obj.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (emoji.name.trim() === "") {
|
|
|
|
ui_report.client_error(
|
|
|
|
$t_html({defaultMessage: "Failed: Emoji name is required."}),
|
|
|
|
$emoji_status,
|
|
|
|
);
|
|
|
|
dialog_widget.hide_dialog_spinner();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_custom_emoji(emoji.name)) {
|
|
|
|
ui_report.client_error(
|
|
|
|
$t_html({
|
|
|
|
defaultMessage: "Failed: A custom emoji with this name already exists.",
|
|
|
|
}),
|
|
|
|
$emoji_status,
|
|
|
|
);
|
|
|
|
dialog_widget.hide_dialog_spinner();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const formData = new FormData();
|
|
|
|
for (const [i, file] of Array.prototype.entries.call($("#emoji_file_input")[0].files)) {
|
|
|
|
formData.append("file-" + i, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_default_emoji(emoji.name)) {
|
|
|
|
if (!page_params.is_admin) {
|
|
|
|
ui_report.client_error(
|
|
|
|
$t_html({
|
|
|
|
defaultMessage:
|
|
|
|
"Failed: There is a default emoji with this name. Only administrators can override default emoji.",
|
|
|
|
}),
|
|
|
|
$emoji_status,
|
|
|
|
);
|
|
|
|
dialog_widget.hide_dialog_spinner();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog_widget.close_modal(() => {
|
|
|
|
const html_body = emoji_settings_warning_modal({
|
|
|
|
emoji_name: emoji.name,
|
|
|
|
});
|
|
|
|
confirm_dialog.launch({
|
|
|
|
html_heading: $t_html({defaultMessage: "Override default emoji?"}),
|
|
|
|
html_body,
|
|
|
|
on_click: () => submit_custom_emoji_request(formData),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
submit_custom_emoji_request(formData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialog_widget.launch({
|
|
|
|
html_heading: $t_html({defaultMessage: "Add a new emoji"}),
|
|
|
|
html_body,
|
|
|
|
html_submit_button: $t_html({defaultMessage: "Confirm"}),
|
|
|
|
id: "add-custom-emoji-modal",
|
|
|
|
loading_spinner: true,
|
|
|
|
on_click: add_custom_emoji,
|
|
|
|
post_render: add_custom_emoji_post_render,
|
|
|
|
});
|
2021-02-28 01:19:58 +01:00
|
|
|
}
|
2020-04-08 23:40:20 +02:00
|
|
|
|
2021-02-28 01:19:58 +01:00
|
|
|
export function set_up() {
|
2017-04-08 17:24:07 +02:00
|
|
|
meta.loaded = true;
|
|
|
|
|
2022-03-29 18:46:59 +02:00
|
|
|
$("#add-custom-emoji-button").on("click", show_modal);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
loading.make_indicator($("#admin_page_emoji_loading_indicator"));
|
2017-04-08 17:24:07 +02:00
|
|
|
|
|
|
|
// Populate emoji table
|
2021-02-28 01:19:58 +01:00
|
|
|
populate_emoji();
|
2017-04-08 17:24:07 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".admin_emoji_table").on("click", ".delete", function (e) {
|
2017-04-08 17:24:07 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $btn = $(this);
|
2022-09-06 15:26:07 +02:00
|
|
|
const url = "/json/realm/emoji/" + encodeURIComponent($btn.attr("data-emoji-name"));
|
|
|
|
const html_body = render_confirm_deactivate_custom_emoji();
|
2017-04-08 17:24:07 +02:00
|
|
|
|
2022-09-06 15:26:07 +02:00
|
|
|
const opts = {
|
|
|
|
success_continuation() {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $btn.parents("tr");
|
|
|
|
$row.remove();
|
2017-04-08 17:24:07 +02:00
|
|
|
},
|
2022-09-06 15:26:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
confirm_dialog.launch({
|
|
|
|
html_heading: $t_html({defaultMessage: "Deactivate custom emoji?"}),
|
|
|
|
html_body,
|
|
|
|
id: "confirm_deactivate_custom_emoji_modal",
|
|
|
|
on_click: () => dialog_widget.submit_api_request(channel.del, url, {}, opts),
|
|
|
|
loading_spinner: true,
|
2017-04-08 17:24:07 +02:00
|
|
|
});
|
|
|
|
});
|
2021-02-28 01:19:58 +01:00
|
|
|
}
|