mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
This commit moves the `emoji_collection` datasource in the emoji picker to emoji.js and renames it to `emojis_by_name`. It is a mapping from emoji name to object where each object describes an emoji. This is an effort in the direction of de-duplicating and unifying the datasets being used by various our widgets(like emoji picker and composebox typeahead) in the webapp. Migrating all the widgets to a single datasource will help us in removing the whole class of annoying bugs which causes some emojis to be missing from some widgets.
37 lines
1.5 KiB
JavaScript
37 lines
1.5 KiB
JavaScript
zrequire('emoji_codes', 'generated/emoji/emoji_codes');
|
|
zrequire('emoji');
|
|
zrequire('emoji_picker');
|
|
|
|
run_test('initialize', () => {
|
|
emoji.update_emojis({});
|
|
emoji_picker.initialize();
|
|
|
|
var complete_emoji_catalog = _.sortBy(emoji_picker.complete_emoji_catalog, 'name');
|
|
assert.equal(complete_emoji_catalog.length, 9);
|
|
assert.equal(_.keys(emoji.emojis_by_name).length, 1037);
|
|
|
|
function assert_emoji_category(ele, icon, num) {
|
|
assert.equal(ele.icon, icon);
|
|
assert.equal(ele.emojis.length, num);
|
|
function check_emojis(val) {
|
|
_.each(ele.emojis, function (emoji) {
|
|
assert.equal(emoji.is_realm_emoji, val);
|
|
});
|
|
}
|
|
if (ele.name === 'Custom') {
|
|
check_emojis(true);
|
|
} else {
|
|
check_emojis(false);
|
|
}
|
|
}
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-car', 177);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-hashtag', 181);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-smile-o', 260);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-thumbs-o-up', 6);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-lightbulb-o', 159);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-cutlery', 89);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-cog', 1);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-leaf', 107);
|
|
assert_emoji_category(complete_emoji_catalog.pop(), 'fa-soccer-ball-o', 58);
|
|
});
|