Files
zulip/static/js/settings_emoji.js
Anders Kaseorg 719546641f 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-10 14:08:12 -08:00

171 lines
5.4 KiB
JavaScript

const render_admin_emoji_list = require('../templates/admin_emoji_list.hbs');
const render_settings_emoji_settings_tip = require("../templates/settings/emoji_settings_tip.hbs");
const meta = {
loaded: false,
};
exports.can_add_emoji = function () {
if (page_params.is_guest) {
return false;
}
if (page_params.is_admin) {
return true;
}
// for normal users, we depend on the setting
return !page_params.realm_add_emoji_by_admins_only;
};
function can_admin_emoji(emoji) {
if (page_params.is_admin) {
return true;
}
if (emoji.author === null) {
// If we don't have the author information then only admin is allowed to disable that emoji.
return false;
}
if (!page_params.realm_add_emoji_by_admins_only && people.is_current_user(emoji.author.email)) {
return true;
}
return false;
}
exports.update_custom_emoji_ui = function () {
const rendered_tip = render_settings_emoji_settings_tip({
realm_add_emoji_by_admins_only: page_params.realm_add_emoji_by_admins_only,
});
$('#emoji-settings').find('.emoji-settings-tip-container').html(rendered_tip);
if (page_params.realm_add_emoji_by_admins_only && !page_params.is_admin) {
$('.admin-emoji-form').hide();
$('#emoji-settings').removeClass('can_edit');
} else {
$('.admin-emoji-form').show();
$('#emoji-settings').addClass('can_edit');
}
exports.populate_emoji(page_params.realm_emoji);
};
exports.reset = function () {
meta.loaded = false;
};
exports.populate_emoji = function (emoji_data) {
if (!meta.loaded) {
return;
}
const emoji_table = $('#admin_emoji_table').expectOne();
const emoji_list = list_render.create(emoji_table, Object.values(emoji_data), {
name: "emoji_list",
modifier: function (item) {
if (item.deactivated !== true) {
return render_admin_emoji_list({
emoji: {
name: item.name,
display_name: item.name.replace(/_/g, ' '),
source_url: item.source_url,
author: item.author || '',
can_admin_emoji: can_admin_emoji(item),
},
});
}
return "";
},
filter: {
element: emoji_table.closest(".settings-section").find(".search"),
predicate: function (item, value) {
return item.name.toLowerCase().includes(value);
},
onupdate: function () {
ui.reset_scrollbar(emoji_table);
},
},
parent_container: $("#emoji-settings").expectOne(),
}).init();
emoji_list.sort("alphabetic", "name");
emoji_list.add_sort_function("author_full_name", function (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;
});
loading.destroy_indicator($('#admin_page_emoji_loading_indicator'));
};
exports.set_up = function () {
meta.loaded = true;
loading.make_indicator($('#admin_page_emoji_loading_indicator'));
// Populate emoji table
exports.populate_emoji(page_params.realm_emoji);
$('.admin_emoji_table').on('click', '.delete', function (e) {
e.preventDefault();
e.stopPropagation();
const btn = $(this);
channel.del({
url: '/json/realm/emoji/' + encodeURIComponent(btn.attr('data-emoji-name')),
error: function (xhr) {
ui_report.generic_row_button_error(xhr, btn);
},
success: function () {
const row = btn.parents('tr');
row.remove();
},
});
});
const emoji_widget = emoji.build_emoji_upload_widget();
$(".organization form.admin-emoji-form").off('submit').on('submit', function (e) {
e.preventDefault();
e.stopPropagation();
const emoji_status = $('#admin-emoji-status');
$('#admin_emoji_submit').attr('disabled', true);
const emoji = {};
const formData = new FormData();
for (const obj of $(this).serializeArray()) {
emoji[obj.name] = obj.value;
}
for (const [i, file] of Array.prototype.entries.call($('#emoji_file_input')[0].files)) {
formData.append('file-' + i, file);
}
channel.post({
url: "/json/realm/emoji/" + encodeURIComponent(emoji.name),
data: formData,
cache: false,
processData: false,
contentType: false,
success: function () {
$('#admin-emoji-status').hide();
ui_report.success(i18n.t("Custom emoji added!"), emoji_status);
$("form.admin-emoji-form input[type='text']").val("");
$('#admin_emoji_submit').removeAttr('disabled');
emoji_widget.clear();
},
error: function (xhr) {
$('#admin-emoji-status').hide();
const errors = JSON.parse(xhr.responseText).msg;
xhr.responseText = JSON.stringify({msg: errors});
ui_report.error(i18n.t("Failed"), xhr, emoji_status);
$('#admin_emoji_submit').removeAttr('disabled');
emoji_widget.clear();
},
});
});
};
window.settings_emoji = exports;