2020-07-29 21:20:41 +02:00
|
|
|
import _ from "lodash";
|
|
|
|
|
2020-07-25 23:59:49 +02:00
|
|
|
// We will get actual values when we get initialized.
|
|
|
|
let emoji_codes = {};
|
|
|
|
|
2018-07-20 13:43:22 +02:00
|
|
|
// `emojis_by_name` is the central data source that is supposed to be
|
|
|
|
// used by every widget in the webapp for gathering data for displaying
|
|
|
|
// emojis. Emoji picker uses this data to derive data for its own use.
|
2020-07-25 00:12:17 +02:00
|
|
|
export const emojis_by_name = new Map();
|
2018-07-20 13:43:22 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export const all_realm_emojis = new Map();
|
|
|
|
export const active_realm_emojis = new Map();
|
2020-07-25 01:02:07 +02:00
|
|
|
|
|
|
|
const default_emoji_aliases = new Map();
|
2013-07-02 00:40:57 +02:00
|
|
|
|
2020-07-24 00:39:22 +02:00
|
|
|
// For legacy reasons we track server_realm_emoji_data,
|
|
|
|
// since our settings code builds off that format. We
|
|
|
|
// should move it to use all_realm_emojis, which requires
|
|
|
|
// adding author_id here and then changing the settings code
|
|
|
|
// in a slightly non-trivial way.
|
2020-07-25 01:02:07 +02:00
|
|
|
let server_realm_emoji_data = {};
|
2020-07-24 00:39:22 +02:00
|
|
|
|
|
|
|
// We really want to deprecate this, too.
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_server_realm_emoji_data() {
|
|
|
|
return server_realm_emoji_data;
|
|
|
|
}
|
2020-07-24 00:39:22 +02:00
|
|
|
|
2020-07-25 23:59:49 +02:00
|
|
|
let emoticon_translations = [];
|
|
|
|
|
|
|
|
function build_emoticon_translations() {
|
markdown: Build the emoticon regexes up front.
There are six emoticon regexes that allow us
make translations such as ":)" to ":slight_smile".
We now build these as soon as we read in the
JSON data, instead of rebuilding them every time
we convert a message to markdown.
It's possible that we should just hardcode this
data:
[
{ regex: /(\:\))/g, replacement_text: ':slight_smile:' },
{ regex: /(\(\:)/g, replacement_text: ':slight_smile:' },
{ regex: /(\:\/)/g, replacement_text: ':confused:' },
{ regex: /(<3)/g, replacement_text: ':heart:' },
{ regex: /(\:\()/g, replacement_text: ':frown:' },
{ regex: /(\:\|)/g, replacement_text: ':expressionless:' }
]
OTOH I suppose it's possible that some server
admins will want to modify emoji_codes.json to
have custom emoticons.
2020-02-15 14:20:22 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Build a data structure that looks like something
|
|
|
|
like this:
|
|
|
|
|
|
|
|
[
|
2020-06-30 21:16:29 +02:00
|
|
|
{ regex: /(\:\))/g, replacement_text: ':smile:' },
|
|
|
|
{ regex: /(\(\:)/g, replacement_text: ':smile:' },
|
markdown: Build the emoticon regexes up front.
There are six emoticon regexes that allow us
make translations such as ":)" to ":slight_smile".
We now build these as soon as we read in the
JSON data, instead of rebuilding them every time
we convert a message to markdown.
It's possible that we should just hardcode this
data:
[
{ regex: /(\:\))/g, replacement_text: ':slight_smile:' },
{ regex: /(\(\:)/g, replacement_text: ':slight_smile:' },
{ regex: /(\:\/)/g, replacement_text: ':confused:' },
{ regex: /(<3)/g, replacement_text: ':heart:' },
{ regex: /(\:\()/g, replacement_text: ':frown:' },
{ regex: /(\:\|)/g, replacement_text: ':expressionless:' }
]
OTOH I suppose it's possible that some server
admins will want to modify emoji_codes.json to
have custom emoticons.
2020-02-15 14:20:22 +01:00
|
|
|
{ regex: /(\:\/)/g, replacement_text: ':confused:' },
|
|
|
|
{ regex: /(<3)/g, replacement_text: ':heart:' },
|
|
|
|
{ regex: /(\:\()/g, replacement_text: ':frown:' },
|
|
|
|
{ regex: /(\:\|)/g, replacement_text: ':expressionless:' }
|
|
|
|
]
|
|
|
|
|
|
|
|
We build up this list of ~6 emoticon translations
|
|
|
|
even if page_params.translate_emoticons is false, since
|
|
|
|
that setting can be flipped via live update events.
|
|
|
|
On the other hand, we assume that emoticon_conversions
|
|
|
|
won't change until the next reload, which is fine for
|
|
|
|
now (and we want to avoid creating new regexes on
|
|
|
|
every new message).
|
|
|
|
*/
|
|
|
|
|
|
|
|
const translations = [];
|
2020-05-27 04:17:29 +02:00
|
|
|
for (const [emoticon, replacement_text] of Object.entries(emoji_codes.emoticon_conversions)) {
|
2020-07-29 21:20:41 +02:00
|
|
|
const regex = new RegExp("(" + _.escapeRegExp(emoticon) + ")", "g");
|
2020-05-27 04:17:29 +02:00
|
|
|
|
|
|
|
translations.push({
|
2020-07-20 22:18:43 +02:00
|
|
|
regex,
|
|
|
|
replacement_text,
|
2020-05-27 04:17:29 +02:00
|
|
|
});
|
markdown: Build the emoticon regexes up front.
There are six emoticon regexes that allow us
make translations such as ":)" to ":slight_smile".
We now build these as soon as we read in the
JSON data, instead of rebuilding them every time
we convert a message to markdown.
It's possible that we should just hardcode this
data:
[
{ regex: /(\:\))/g, replacement_text: ':slight_smile:' },
{ regex: /(\(\:)/g, replacement_text: ':slight_smile:' },
{ regex: /(\:\/)/g, replacement_text: ':confused:' },
{ regex: /(<3)/g, replacement_text: ':heart:' },
{ regex: /(\:\()/g, replacement_text: ':frown:' },
{ regex: /(\:\|)/g, replacement_text: ':expressionless:' }
]
OTOH I suppose it's possible that some server
admins will want to modify emoji_codes.json to
have custom emoticons.
2020-02-15 14:20:22 +01:00
|
|
|
}
|
|
|
|
|
2020-07-25 23:59:49 +02:00
|
|
|
emoticon_translations = translations;
|
|
|
|
}
|
markdown: Build the emoticon regexes up front.
There are six emoticon regexes that allow us
make translations such as ":)" to ":slight_smile".
We now build these as soon as we read in the
JSON data, instead of rebuilding them every time
we convert a message to markdown.
It's possible that we should just hardcode this
data:
[
{ regex: /(\:\))/g, replacement_text: ':slight_smile:' },
{ regex: /(\(\:)/g, replacement_text: ':slight_smile:' },
{ regex: /(\:\/)/g, replacement_text: ':confused:' },
{ regex: /(<3)/g, replacement_text: ':heart:' },
{ regex: /(\:\()/g, replacement_text: ':frown:' },
{ regex: /(\:\|)/g, replacement_text: ':expressionless:' }
]
OTOH I suppose it's possible that some server
admins will want to modify emoji_codes.json to
have custom emoticons.
2020-02-15 14:20:22 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const zulip_emoji = {
|
2020-07-15 01:29:15 +02:00
|
|
|
id: "zulip",
|
|
|
|
emoji_name: "zulip",
|
|
|
|
emoji_url: "/static/generated/emoji/images/emoji/unicode/zulip.png",
|
2017-05-01 01:13:28 +02:00
|
|
|
is_realm_emoji: true,
|
2017-06-20 22:50:55 +02:00
|
|
|
deactivated: false,
|
2017-05-01 01:13:28 +02:00
|
|
|
};
|
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_emoji_name(codepoint) {
|
2020-02-15 13:19:42 +01:00
|
|
|
// get_emoji_name('1f384') === 'holiday_tree'
|
2020-05-27 04:17:29 +02:00
|
|
|
if (Object.prototype.hasOwnProperty.call(emoji_codes.codepoint_to_name, codepoint)) {
|
|
|
|
return emoji_codes.codepoint_to_name[codepoint];
|
|
|
|
}
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2020-07-25 00:12:17 +02:00
|
|
|
}
|
2020-02-15 13:19:42 +01:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_emoji_codepoint(emoji_name) {
|
2020-02-15 13:19:42 +01:00
|
|
|
// get_emoji_codepoint('avocado') === '1f951'
|
2020-05-27 04:17:29 +02:00
|
|
|
if (Object.prototype.hasOwnProperty.call(emoji_codes.name_to_codepoint, emoji_name)) {
|
|
|
|
return emoji_codes.name_to_codepoint[emoji_name];
|
|
|
|
}
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2020-07-25 00:12:17 +02:00
|
|
|
}
|
2020-02-15 13:19:42 +01:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_realm_emoji_url(emoji_name) {
|
2020-02-15 13:19:42 +01:00
|
|
|
// If the emoji name is a realm emoji, returns the URL for it.
|
2020-10-23 02:43:28 +02:00
|
|
|
// Returns undefined for Unicode emoji.
|
2020-02-15 13:19:42 +01:00
|
|
|
// get_realm_emoji_url('shrug') === '/user_avatars/2/emoji/images/31.png'
|
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
const data = active_realm_emojis.get(emoji_name);
|
2020-02-15 13:19:42 +01:00
|
|
|
|
|
|
|
if (!data) {
|
2020-10-23 02:43:28 +02:00
|
|
|
// Not all emojis have URLs, plus the user
|
2020-02-15 13:19:42 +01:00
|
|
|
// may have hand-typed an invalid emoji.
|
|
|
|
// The caller can check the result for falsiness
|
|
|
|
// and then try alternate ways of parsing the
|
2020-08-11 01:47:49 +02:00
|
|
|
// emoji (in the case of Markdown) or just do
|
2020-02-15 13:19:42 +01:00
|
|
|
// whatever makes sense for the caller.
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2020-02-15 13:19:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return data.emoji_url;
|
2020-07-25 00:12:17 +02:00
|
|
|
}
|
2020-02-15 13:19:42 +01:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function build_emoji_data(realm_emojis) {
|
|
|
|
emojis_by_name.clear();
|
2020-07-25 02:24:01 +02:00
|
|
|
for (const [realm_emoji_name, realm_emoji] of realm_emojis) {
|
|
|
|
const emoji_dict = {
|
|
|
|
name: realm_emoji_name,
|
|
|
|
display_name: realm_emoji_name,
|
|
|
|
aliases: [realm_emoji_name],
|
|
|
|
is_realm_emoji: true,
|
|
|
|
url: realm_emoji.emoji_url,
|
|
|
|
has_reacted: false,
|
|
|
|
};
|
2020-07-25 00:12:17 +02:00
|
|
|
emojis_by_name.set(realm_emoji_name, emoji_dict);
|
2020-07-25 02:24:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const codepoints of Object.values(emoji_codes.emoji_catalog)) {
|
|
|
|
for (const codepoint of codepoints) {
|
2020-07-25 00:12:17 +02:00
|
|
|
const emoji_name = get_emoji_name(codepoint);
|
|
|
|
if (emoji_name !== undefined && !emojis_by_name.has(emoji_name)) {
|
2020-07-25 02:24:01 +02:00
|
|
|
const emoji_dict = {
|
|
|
|
name: emoji_name,
|
|
|
|
display_name: emoji_name,
|
|
|
|
aliases: default_emoji_aliases.get(codepoint),
|
|
|
|
is_realm_emoji: false,
|
|
|
|
emoji_code: codepoint,
|
|
|
|
has_reacted: false,
|
|
|
|
};
|
2020-07-25 00:12:17 +02:00
|
|
|
emojis_by_name.set(emoji_name, emoji_dict);
|
2020-07-25 02:24:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-25 00:12:17 +02:00
|
|
|
}
|
2020-07-25 02:24:01 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function update_emojis(realm_emojis) {
|
2020-07-24 00:39:22 +02:00
|
|
|
// The settings code still works with the
|
|
|
|
// server format of the data.
|
2020-07-25 01:02:07 +02:00
|
|
|
server_realm_emoji_data = realm_emojis;
|
2020-07-24 00:39:22 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
// all_realm_emojis is emptied before adding the realm-specific emoji
|
2018-03-11 18:55:20 +01:00
|
|
|
// to it. This makes sure that in case of deletion, the deleted realm_emojis
|
2020-07-25 00:12:17 +02:00
|
|
|
// don't persist in active_realm_emojis.
|
|
|
|
all_realm_emojis.clear();
|
|
|
|
active_realm_emojis.clear();
|
2017-06-20 22:50:55 +02:00
|
|
|
|
2020-02-06 02:10:03 +01:00
|
|
|
for (const data of Object.values(realm_emojis)) {
|
2020-07-25 00:12:17 +02:00
|
|
|
all_realm_emojis.set(data.id, {
|
2020-02-06 00:08:06 +01:00
|
|
|
id: data.id,
|
|
|
|
emoji_name: data.name,
|
|
|
|
emoji_url: data.source_url,
|
|
|
|
deactivated: data.deactivated,
|
|
|
|
});
|
2017-06-20 22:50:55 +02:00
|
|
|
if (data.deactivated !== true) {
|
2020-07-25 00:12:17 +02:00
|
|
|
active_realm_emojis.set(data.name, {
|
2020-02-06 00:17:30 +01:00
|
|
|
id: data.id,
|
|
|
|
emoji_name: data.name,
|
|
|
|
emoji_url: data.source_url,
|
|
|
|
});
|
2017-06-20 22:50:55 +02:00
|
|
|
}
|
2020-02-06 02:10:03 +01:00
|
|
|
}
|
2017-05-01 01:13:28 +02:00
|
|
|
// Add the Zulip emoji to the realm emojis list
|
2020-07-25 00:12:17 +02:00
|
|
|
all_realm_emojis.set("zulip", zulip_emoji);
|
|
|
|
active_realm_emojis.set("zulip", zulip_emoji);
|
2017-05-01 01:13:28 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
build_emoji_data(active_realm_emojis);
|
|
|
|
}
|
2013-08-22 19:54:35 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function initialize(params) {
|
2020-07-25 23:59:49 +02:00
|
|
|
emoji_codes = params.emoji_codes;
|
|
|
|
|
|
|
|
build_emoticon_translations();
|
|
|
|
|
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 value of emoji_codes.names) {
|
2020-07-25 00:12:17 +02:00
|
|
|
const base_name = get_emoji_codepoint(value);
|
2017-08-16 22:00:19 +02:00
|
|
|
|
2020-07-25 01:02:07 +02:00
|
|
|
if (default_emoji_aliases.has(base_name)) {
|
|
|
|
default_emoji_aliases.get(base_name).push(value);
|
2017-08-24 23:03:01 +02:00
|
|
|
} else {
|
2020-07-25 01:02:07 +02:00
|
|
|
default_emoji_aliases.set(base_name, [value]);
|
2017-08-24 23:03:01 +02: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-08-16 22:00:19 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
update_emojis(params.realm_emoji);
|
|
|
|
}
|
2015-10-15 22:34:30 +02:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_canonical_name(emoji_name) {
|
|
|
|
if (active_realm_emojis.has(emoji_name)) {
|
2017-09-29 22:14:57 +02:00
|
|
|
return emoji_name;
|
|
|
|
}
|
2020-07-25 00:12:17 +02:00
|
|
|
const codepoint = get_emoji_codepoint(emoji_name);
|
2020-05-27 04:17:29 +02:00
|
|
|
if (codepoint === undefined) {
|
2020-07-24 23:30:57 +02:00
|
|
|
// Our caller needs to handle this possibility.
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2017-09-29 22:14:57 +02:00
|
|
|
}
|
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
return get_emoji_name(codepoint);
|
|
|
|
}
|
2018-01-15 19:36:32 +01:00
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
export function get_emoticon_translations() {
|
|
|
|
return emoticon_translations;
|
|
|
|
}
|