2017-04-27 07:27:25 +02:00
|
|
|
var emoji_picker = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-04-28 22:26:22 +02:00
|
|
|
// The functionalities for reacting to a message with an emoji
|
|
|
|
// and composing a message with an emoji share a single widget,
|
|
|
|
// implemented as the emoji_popover.
|
|
|
|
var current_message_emoji_popover_elem;
|
2017-07-19 00:28:56 +02:00
|
|
|
var emoji_collection = {};
|
|
|
|
var complete_emoji_catalog = [];
|
|
|
|
var emoji_catalog_last_coordinates = {
|
|
|
|
section: 0,
|
|
|
|
index: 0,
|
|
|
|
};
|
|
|
|
var current_section = 0;
|
|
|
|
var current_index = 0;
|
|
|
|
var search_is_active = false;
|
|
|
|
var search_results = [];
|
|
|
|
var section_head_offsets = [];
|
|
|
|
|
|
|
|
function get_emoji_categories() {
|
|
|
|
return [
|
|
|
|
{ name: "Popular", icon: "fa-thumbs-o-up" },
|
|
|
|
{ name: "People", icon: "fa-smile-o" },
|
|
|
|
{ name: "Nature", icon: "fa-leaf" },
|
|
|
|
{ name: "Foods", icon: "fa-cutlery" },
|
|
|
|
{ name: "Activity", icon: "fa-soccer-ball-o" },
|
|
|
|
{ name: "Places", icon: "fa-car" },
|
|
|
|
{ name: "Objects", icon: "fa-lightbulb-o" },
|
|
|
|
{ name: "Symbols", icon: "fa-hashtag" },
|
|
|
|
{ name: "Custom", icon: "fa-cog" },
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_frequently_used_emojis() {
|
|
|
|
return [
|
|
|
|
'1f44d', // thumbs_up
|
|
|
|
'1f389', // party_popper
|
|
|
|
'1f642', // simple_smile
|
|
|
|
'2764', // heart
|
|
|
|
'1f6e0', // hammer_and_wrench
|
|
|
|
'1f419', // octopus
|
|
|
|
];
|
|
|
|
}
|
2017-04-27 07:27:25 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function get_total_sections() {
|
|
|
|
if (search_is_active) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return complete_emoji_catalog.length;
|
|
|
|
}
|
2017-04-27 07:27:25 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function get_max_index(section) {
|
|
|
|
if (search_is_active) {
|
|
|
|
return search_results.length;
|
|
|
|
} else if (section >= 0 && section < get_total_sections()) {
|
|
|
|
return complete_emoji_catalog[section].emojis.length;
|
2017-04-27 07:27:25 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
}
|
2017-04-27 07:27:25 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function show_search_results() {
|
|
|
|
$(".emoji-popover-emoji-map").hide();
|
|
|
|
$(".emoji-popover-category-tabs").hide();
|
|
|
|
$(".emoji-search-results-container").show();
|
|
|
|
emoji_catalog_last_coordinates = {
|
|
|
|
section: current_section,
|
|
|
|
index: current_index,
|
|
|
|
};
|
|
|
|
current_section = 0;
|
|
|
|
current_index = 0;
|
|
|
|
search_is_active = true;
|
2017-04-27 07:27:25 +02:00
|
|
|
}
|
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function show_emoji_catalog() {
|
|
|
|
$(".emoji-popover-emoji-map").show();
|
|
|
|
$(".emoji-popover-category-tabs").show();
|
|
|
|
$(".emoji-search-results-container").hide();
|
|
|
|
current_section = emoji_catalog_last_coordinates.section;
|
|
|
|
current_index = emoji_catalog_last_coordinates.index;
|
|
|
|
search_is_active = false;
|
|
|
|
}
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
exports.generate_emoji_picker_data = function (realm_emojis) {
|
|
|
|
emoji_collection = {};
|
|
|
|
complete_emoji_catalog = {};
|
|
|
|
complete_emoji_catalog.Custom = [];
|
2017-04-29 09:46:31 +02:00
|
|
|
_.each(realm_emojis, function (realm_emoji, realm_emoji_name) {
|
2017-07-19 00:28:56 +02:00
|
|
|
emoji_collection[realm_emoji_name] = {
|
2017-04-29 09:46:31 +02:00
|
|
|
name: realm_emoji_name,
|
|
|
|
is_realm_emoji: true,
|
|
|
|
url: realm_emoji.emoji_url,
|
2017-07-19 00:28:56 +02:00
|
|
|
has_reacted: false,
|
2017-04-29 09:46:31 +02:00
|
|
|
};
|
2017-07-19 00:28:56 +02:00
|
|
|
complete_emoji_catalog.Custom.push(emoji_collection[realm_emoji_name]);
|
2017-04-29 09:46:31 +02:00
|
|
|
});
|
2017-05-01 00:04:51 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
_.each(emoji_codes.emoji_catalog, function (codepoints, category) {
|
|
|
|
complete_emoji_catalog[category] = [];
|
|
|
|
_.each(codepoints, function (codepoint) {
|
|
|
|
if (emoji_codes.codepoint_to_name.hasOwnProperty(codepoint)) {
|
|
|
|
var emoji_name = emoji_codes.codepoint_to_name[codepoint];
|
|
|
|
if (!emoji_collection.hasOwnProperty(emoji_name)) {
|
|
|
|
emoji_collection[emoji_name] = {
|
|
|
|
name: emoji_name,
|
|
|
|
is_realm_emoji: false,
|
|
|
|
css_class: codepoint,
|
|
|
|
has_reacted: false,
|
|
|
|
};
|
|
|
|
complete_emoji_catalog[category].push(emoji_collection[emoji_name]);
|
|
|
|
}
|
2017-05-23 15:54:01 +02:00
|
|
|
}
|
2017-05-01 00:04:51 +02:00
|
|
|
});
|
2017-07-19 00:28:56 +02:00
|
|
|
});
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
complete_emoji_catalog.Popular = [];
|
|
|
|
var frequently_used_emojis = get_frequently_used_emojis();
|
|
|
|
_.each(frequently_used_emojis, function (codepoint) {
|
|
|
|
if (emoji_codes.codepoint_to_name.hasOwnProperty(codepoint)) {
|
|
|
|
var emoji_name = emoji_codes.codepoint_to_name[codepoint];
|
|
|
|
if (emoji_collection.hasOwnProperty(emoji_name)) {
|
|
|
|
complete_emoji_catalog.Popular.push(emoji_collection[emoji_name]);
|
|
|
|
}
|
2017-04-29 09:46:31 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
});
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
var categories = get_emoji_categories().filter(function (category) {
|
|
|
|
return !!complete_emoji_catalog[category.name];
|
|
|
|
});
|
|
|
|
complete_emoji_catalog = categories.map(function (category) {
|
2017-04-29 09:46:31 +02:00
|
|
|
return {
|
2017-07-19 00:28:56 +02:00
|
|
|
name: category.name,
|
|
|
|
icon: category.icon,
|
|
|
|
emojis: complete_emoji_catalog[category.name],
|
2017-04-29 09:46:31 +02:00
|
|
|
};
|
|
|
|
});
|
2017-07-19 00:28:56 +02:00
|
|
|
};
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
var generate_emoji_picker_content = function (id) {
|
|
|
|
var emojis_used = [];
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
if (id !== undefined) {
|
|
|
|
emojis_used = reactions.get_emojis_used_by_user_for_message_id(id);
|
2017-06-02 17:31:06 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
_.each(emoji_collection, function (emoji_dict) {
|
|
|
|
emoji_dict.has_reacted = _.contains(emojis_used, emoji_dict.name);
|
|
|
|
});
|
2017-06-02 17:31:06 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
return templates.render('emoji_popover_content', {
|
|
|
|
message_id: id,
|
|
|
|
emoji_categories: complete_emoji_catalog,
|
|
|
|
});
|
|
|
|
};
|
2017-04-29 09:46:31 +02:00
|
|
|
|
2017-06-26 21:58:24 +02:00
|
|
|
function add_scrollbar(element) {
|
|
|
|
$(element).perfectScrollbar({
|
|
|
|
suppressScrollX: true,
|
|
|
|
useKeyboard: false,
|
|
|
|
// Picked so that each mousewheel bump moves 1 emoji down.
|
|
|
|
wheelSpeed: 0.68,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-28 22:26:22 +02:00
|
|
|
exports.toggle_emoji_popover = function (element, id) {
|
|
|
|
var last_popover_elem = current_message_emoji_popover_elem;
|
2017-04-27 07:27:25 +02:00
|
|
|
popovers.hide_all();
|
|
|
|
if (last_popover_elem !== undefined
|
|
|
|
&& last_popover_elem.get()[0] === element) {
|
|
|
|
// We want it to be the case that a user can dismiss a popover
|
|
|
|
// by clicking on the same element that caused the popover.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-20 06:02:29 +02:00
|
|
|
$(element).closest('.message_row').toggleClass('has_popover has_emoji_popover');
|
2017-04-27 07:27:25 +02:00
|
|
|
var elt = $(element);
|
2017-05-01 00:04:51 +02:00
|
|
|
if (id !== undefined) {
|
|
|
|
current_msg_list.select_id(id);
|
|
|
|
}
|
2017-04-27 07:27:25 +02:00
|
|
|
|
2017-04-29 09:46:31 +02:00
|
|
|
if (elt.data('popover') === undefined) {
|
2017-04-27 07:27:25 +02:00
|
|
|
elt.prop('title', '');
|
2017-07-19 00:28:56 +02:00
|
|
|
var template_args = {
|
|
|
|
class: "emoji-info-popover",
|
|
|
|
categories: get_emoji_categories(),
|
|
|
|
};
|
2017-04-27 07:27:25 +02:00
|
|
|
elt.popover({
|
2017-08-01 00:36:09 +02:00
|
|
|
// temporary patch for handling popover placement of `viewport_center`
|
|
|
|
placement: popovers.compute_placement(elt) === 'viewport_center' ?
|
|
|
|
'right' : popovers.compute_placement(elt),
|
2017-07-19 00:28:56 +02:00
|
|
|
template: templates.render('emoji_popover', template_args),
|
2017-04-27 07:27:25 +02:00
|
|
|
title: "",
|
2017-04-29 09:46:31 +02:00
|
|
|
content: generate_emoji_picker_content(id),
|
2017-04-27 07:27:25 +02:00
|
|
|
trigger: "manual",
|
|
|
|
});
|
|
|
|
elt.popover("show");
|
|
|
|
elt.prop('title', 'Add reaction...');
|
2017-04-28 22:26:22 +02:00
|
|
|
$('.emoji-popover-filter').focus();
|
2017-06-26 21:58:24 +02:00
|
|
|
add_scrollbar($(".emoji-popover-emoji-map"));
|
2017-07-19 00:28:56 +02:00
|
|
|
add_scrollbar($(".emoji-search-results-container"));
|
2017-04-28 22:26:22 +02:00
|
|
|
current_message_emoji_popover_elem = elt;
|
2017-07-19 00:28:56 +02:00
|
|
|
|
|
|
|
emoji_catalog_last_coordinates = {
|
|
|
|
section: 0,
|
|
|
|
index: 0,
|
|
|
|
};
|
|
|
|
show_emoji_catalog();
|
|
|
|
|
|
|
|
$('.emoji-popover-subheading').each(function () {
|
|
|
|
section_head_offsets.push({
|
|
|
|
section: $(this).attr('data-section'),
|
|
|
|
position_y: $(this).position().top,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
var $emoji_map = $('.emoji-popover-emoji-map');
|
|
|
|
$emoji_map.on("scroll", function () {
|
|
|
|
emoji_picker.emoji_select_tab($emoji_map);
|
|
|
|
});
|
2017-04-27 07:27:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.reactions_popped = function () {
|
2017-04-28 22:26:22 +02:00
|
|
|
return current_message_emoji_popover_elem !== undefined;
|
2017-04-27 07:27:25 +02:00
|
|
|
};
|
|
|
|
|
2017-04-28 22:26:22 +02:00
|
|
|
exports.hide_emoji_popover = function () {
|
|
|
|
$('.has_popover').removeClass('has_popover has_emoji_popover');
|
2017-04-27 07:27:25 +02:00
|
|
|
if (exports.reactions_popped()) {
|
2017-04-28 22:26:22 +02:00
|
|
|
$(".emoji-popover-emoji-map").perfectScrollbar("destroy");
|
2017-07-19 00:28:56 +02:00
|
|
|
$(".emoji-search-results-container").perfectScrollbar("destroy");
|
2017-04-28 22:26:22 +02:00
|
|
|
current_message_emoji_popover_elem.popover("destroy");
|
|
|
|
current_message_emoji_popover_elem = undefined;
|
2017-04-27 07:27:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-05-30 00:50:45 +02:00
|
|
|
function get_selected_emoji() {
|
|
|
|
return $(".emoji-popover-emoji").filter(":focus")[0];
|
|
|
|
}
|
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function get_rendered_emoji(section, index) {
|
|
|
|
var type = "emoji_picker_emoji";
|
|
|
|
if (search_is_active) {
|
|
|
|
type = "emoji_search_result";
|
2017-06-02 17:31:06 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
var emoji_id = [type, section, index].join("_");
|
|
|
|
var emoji = $(".emoji-popover-emoji[data-emoji-id='" + emoji_id + "']");
|
|
|
|
if (emoji.length > 0) {
|
|
|
|
return emoji;
|
2017-06-02 17:31:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:50:45 +02:00
|
|
|
function filter_emojis() {
|
|
|
|
var elt = $(".emoji-popover-filter").expectOne();
|
2017-07-19 00:28:56 +02:00
|
|
|
var query = elt.val().trim().toLowerCase();
|
|
|
|
var message_id = $(".emoji-search-results-container").data("message-id");
|
|
|
|
var search_results_visible = $(".emoji-search-results-container").is(":visible");
|
|
|
|
if (query !== "") {
|
|
|
|
var categories = complete_emoji_catalog;
|
|
|
|
var search_terms = query.split(" ");
|
|
|
|
search_results = [];
|
|
|
|
_.each(categories, function (category) {
|
|
|
|
if (category.name === "Popular") {
|
|
|
|
return;
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
var emojis = category.emojis;
|
|
|
|
_.each(emojis, function (emoji_dict) {
|
2017-08-16 20:48:14 +02:00
|
|
|
var match = _.every(search_terms, function (search_term) {
|
|
|
|
return emoji_dict.name.indexOf(search_term) >= 0;
|
2017-07-19 00:28:56 +02:00
|
|
|
});
|
|
|
|
if (match) {
|
|
|
|
search_results.push(emoji_dict);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
var search_results_rendered = templates.render('emoji_popover_search_results', {
|
|
|
|
search_results: search_results,
|
|
|
|
message_id: message_id,
|
|
|
|
});
|
|
|
|
$('.emoji-search-results').html(search_results_rendered);
|
|
|
|
$(".emoji-search-results-container").perfectScrollbar("update");
|
|
|
|
if (!search_results_visible) {
|
|
|
|
show_search_results();
|
2017-06-02 17:31:06 +02:00
|
|
|
}
|
2017-05-30 00:50:45 +02:00
|
|
|
} else {
|
2017-07-19 00:28:56 +02:00
|
|
|
show_emoji_catalog();
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function maybe_select_emoji(e) {
|
|
|
|
if (e.keyCode === 13) { // enter key
|
|
|
|
e.preventDefault();
|
2017-07-19 00:28:56 +02:00
|
|
|
var first_emoji = get_rendered_emoji(0, 0);
|
2017-05-30 00:50:45 +02:00
|
|
|
if (first_emoji) {
|
|
|
|
if (emoji_picker.is_composition(first_emoji)) {
|
|
|
|
first_emoji.click();
|
|
|
|
} else {
|
2017-07-19 00:28:56 +02:00
|
|
|
reactions.toggle_emoji_reaction(
|
|
|
|
current_msg_list.selected_id(),
|
|
|
|
first_emoji.attr('title')
|
|
|
|
);
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.toggle_selected_emoji = function () {
|
|
|
|
// Toggle the currently selected emoji.
|
|
|
|
var message_id = current_msg_list.selected_id();
|
|
|
|
|
|
|
|
var message = message_store.get(message_id);
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
blueslip.error('reactions: Bad message id: ' + message_id);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var selected_emoji = get_selected_emoji();
|
|
|
|
|
|
|
|
if (selected_emoji === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var emoji_name = selected_emoji.title;
|
|
|
|
|
|
|
|
reactions.toggle_emoji_reaction(message_id, emoji_name);
|
|
|
|
};
|
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
function round_off_to_previous_multiple(number_to_round, multiple) {
|
|
|
|
return (number_to_round - (number_to_round % multiple));
|
|
|
|
}
|
|
|
|
|
|
|
|
function may_be_change_focused_emoji(next_section, next_index) {
|
|
|
|
var next_emoji = get_rendered_emoji(next_section, next_index);
|
|
|
|
if (next_emoji) {
|
|
|
|
current_section = next_section;
|
|
|
|
current_index = next_index;
|
|
|
|
next_emoji.focus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function may_be_change_active_section(next_section) {
|
|
|
|
if (next_section >= 0 && next_section < get_total_sections()) {
|
|
|
|
current_section = next_section;
|
|
|
|
current_index = 0;
|
|
|
|
var offset = section_head_offsets[current_section];
|
|
|
|
if (offset) {
|
|
|
|
$(".emoji-popover-emoji-map").scrollTop(offset.position_y);
|
|
|
|
may_be_change_focused_emoji(current_section, current_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_next_emoji_coordinates(move_by) {
|
|
|
|
var next_section = current_section;
|
|
|
|
var next_index = current_index + move_by;
|
|
|
|
var max_len;
|
|
|
|
if (next_index < 0) {
|
|
|
|
next_section = next_section - 1;
|
|
|
|
if (next_section >= 0) {
|
|
|
|
next_index = get_max_index(next_section) - 1;
|
|
|
|
if (move_by === -6) {
|
|
|
|
max_len = get_max_index(next_section);
|
|
|
|
var prev_multiple = round_off_to_previous_multiple(max_len, 6);
|
|
|
|
next_index = prev_multiple + current_index;
|
|
|
|
next_index = next_index >= max_len
|
|
|
|
? (prev_multiple + current_index - 6)
|
|
|
|
: next_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (next_index >= get_max_index(next_section)) {
|
|
|
|
next_section = next_section + 1;
|
|
|
|
if (next_section < get_total_sections()) {
|
|
|
|
next_index = 0;
|
|
|
|
if (move_by === 6) {
|
|
|
|
max_len = get_max_index(next_index);
|
|
|
|
next_index = current_index % 6;
|
|
|
|
next_index = next_index >= max_len ? max_len - 1 : next_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
section: next_section,
|
|
|
|
index: next_index,
|
|
|
|
};
|
|
|
|
}
|
2017-05-30 00:50:45 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
exports.navigate = function (event_name) {
|
|
|
|
var selected_emoji = get_rendered_emoji(current_section, current_index);
|
|
|
|
var is_filter_focused = $('.emoji-popover-filter').is(':focus');
|
|
|
|
var next_section = 0;
|
2017-05-30 00:50:45 +02:00
|
|
|
// special cases
|
2017-07-19 00:28:56 +02:00
|
|
|
if (is_filter_focused && event_name === 'down_arrow') {
|
|
|
|
// move down into emoji map
|
|
|
|
selected_emoji.focus();
|
|
|
|
if (current_section === 0 && current_index < 6) {
|
|
|
|
$(".emoji-popover-emoji-map").scrollTop(0);
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
return true;
|
|
|
|
} else if (current_section === 0 && current_index < 6 && event_name === 'up_arrow') {
|
|
|
|
if (selected_emoji) {
|
|
|
|
// In this case, we're move up into the reaction
|
|
|
|
// filter. Here, we override the default browser
|
|
|
|
// behavior, which in Firefox is good (preserving
|
|
|
|
// the cursor position) and in Chrome is bad (cursor
|
|
|
|
// goes to beginning) with something reasonable and
|
|
|
|
// consistent (cursor goes to the end of the filter
|
|
|
|
// string).
|
2017-05-30 00:50:45 +02:00
|
|
|
$('.emoji-popover-filter').focus().caret(Infinity);
|
2017-07-19 00:28:56 +02:00
|
|
|
$(".emoji-popover-emoji-map").scrollTop(0);
|
|
|
|
$(".emoji-search-results-container").scrollTop(0);
|
|
|
|
current_section = 0;
|
|
|
|
current_index = 0;
|
2017-05-30 00:50:45 +02:00
|
|
|
return true;
|
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
} else if (event_name === 'tab') {
|
|
|
|
if (is_filter_focused) {
|
|
|
|
selected_emoji.focus();
|
|
|
|
} else {
|
|
|
|
$('.emoji-popover-filter').focus();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else if (event_name === 'shift_tab') {
|
|
|
|
if (!is_filter_focused) {
|
|
|
|
$('.emoji-popover-filter').focus();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else if (event_name === 'page_up') {
|
|
|
|
next_section = current_section - 1;
|
|
|
|
may_be_change_active_section(next_section);
|
|
|
|
return true;
|
|
|
|
} else if (event_name === 'page_down') {
|
|
|
|
next_section = current_section + 1;
|
|
|
|
may_be_change_active_section(next_section);
|
|
|
|
return true;
|
|
|
|
} else if (!is_filter_focused) {
|
|
|
|
var next_coord = {};
|
|
|
|
switch (event_name) {
|
|
|
|
case 'down_arrow':
|
|
|
|
next_coord = get_next_emoji_coordinates(6);
|
|
|
|
break;
|
|
|
|
case 'up_arrow':
|
|
|
|
next_coord = get_next_emoji_coordinates(-6);
|
|
|
|
break;
|
|
|
|
case 'left_arrow':
|
|
|
|
next_coord = get_next_emoji_coordinates(-1);
|
|
|
|
break;
|
|
|
|
case 'right_arrow':
|
|
|
|
next_coord = get_next_emoji_coordinates(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return may_be_change_focused_emoji(next_coord.section, next_coord.index);
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
return false;
|
|
|
|
};
|
2017-05-30 00:50:45 +02:00
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
exports.emoji_select_tab = function (elt) {
|
|
|
|
var scrolltop = elt.scrollTop();
|
|
|
|
var scrollheight = elt.prop('scrollHeight');
|
|
|
|
var elt_height = elt.height();
|
|
|
|
var currently_selected = "";
|
|
|
|
section_head_offsets.forEach(function (o) {
|
|
|
|
if (scrolltop + elt_height/2 >= o.position_y) {
|
|
|
|
currently_selected = o.section;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// Handles the corner case of the last category being
|
|
|
|
// smaller than half of the emoji picker height.
|
|
|
|
if (elt_height + scrolltop === scrollheight) {
|
|
|
|
currently_selected = section_head_offsets[section_head_offsets.length - 1].section;
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
// Handles the corner case of the scrolling back to top.
|
|
|
|
if (scrolltop === 0) {
|
|
|
|
currently_selected = section_head_offsets[0].section;
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
2017-07-19 00:28:56 +02:00
|
|
|
if (currently_selected) {
|
|
|
|
$('.emoji-popover-tab-item.active').removeClass('active');
|
|
|
|
$('.emoji-popover-tab-item[data-tab-name="'+currently_selected+'"]').addClass('active');
|
2017-05-30 00:50:45 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-27 07:27:25 +02:00
|
|
|
exports.register_click_handlers = function () {
|
2017-07-19 00:28:56 +02:00
|
|
|
|
2017-08-16 12:14:34 +02:00
|
|
|
$(document).on('click', '.emoji-popover-emoji.reaction', function () {
|
|
|
|
// When an emoji is clicked in the popover,
|
|
|
|
// if the user has reacted to this message with this emoji
|
|
|
|
// the reaction is removed
|
|
|
|
// otherwise, the reaction is added
|
|
|
|
var emoji_name = this.title;
|
|
|
|
var message_id = $(this).parent().parent().attr('data-message-id');
|
|
|
|
|
|
|
|
var message = message_store.get(message_id);
|
|
|
|
if (!message) {
|
|
|
|
blueslip.error('reactions: Bad message id: ' + message_id);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reactions.current_user_has_reacted_to_emoji(message, emoji_name)) {
|
|
|
|
$(this).removeClass('reacted');
|
|
|
|
}
|
|
|
|
reactions.toggle_emoji_reaction(message_id, emoji_name);
|
|
|
|
});
|
|
|
|
|
2017-04-28 22:26:22 +02:00
|
|
|
$(document).on('click', '.emoji-popover-emoji.composition', function (e) {
|
2017-04-29 09:43:13 +02:00
|
|
|
var emoji_text = ':' + this.title + ':';
|
2017-04-27 07:27:25 +02:00
|
|
|
var textarea = $("#new_message_content");
|
2017-04-29 09:43:13 +02:00
|
|
|
textarea.caret(emoji_text);
|
2017-04-27 07:27:25 +02:00
|
|
|
textarea.focus();
|
|
|
|
e.stopPropagation();
|
2017-04-28 22:26:22 +02:00
|
|
|
emoji_picker.hide_emoji_popover();
|
2017-04-27 07:27:25 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", "#emoji_map", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-28 22:26:22 +02:00
|
|
|
emoji_picker.toggle_emoji_popover(this);
|
2017-04-27 07:27:25 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$("#main_div").on("click", ".reactions_hover, .reaction_button", function (e) {
|
|
|
|
e.stopPropagation();
|
2017-07-19 14:01:06 +02:00
|
|
|
|
|
|
|
var message_id = rows.get_message_id(this);
|
|
|
|
emoji_picker.toggle_emoji_popover(this, message_id);
|
2017-04-27 07:27:25 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("click", ".actions_popover .reaction_button", function (e) {
|
|
|
|
var msgid = $(e.currentTarget).data('message-id');
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
// HACK: Because we need the popover to be based off an
|
|
|
|
// element that definitely exists in the page even if the
|
|
|
|
// message wasn't sent by us and thus the .reaction_hover
|
|
|
|
// element is not present, we use the message's
|
|
|
|
// .icon-vector-chevron-down element as the base for the popover.
|
2017-04-28 22:26:22 +02:00
|
|
|
emoji_picker.toggle_emoji_popover($(".selected_message .icon-vector-chevron-down")[0], msgid);
|
2017-04-27 07:27:25 +02:00
|
|
|
});
|
2017-05-30 00:50:45 +02:00
|
|
|
|
|
|
|
$(document).on('input', '.emoji-popover-filter', filter_emojis);
|
|
|
|
$(document).on('keydown', '.emoji-popover-filter', maybe_select_emoji);
|
|
|
|
|
2017-07-19 00:28:56 +02:00
|
|
|
$("body").on("click", ".emoji-popover-tab-item", function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
var offset = _.find(section_head_offsets, function (o) {
|
|
|
|
return o.section === $(this).attr("data-tab-name");
|
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
if (offset) {
|
|
|
|
$(".emoji-popover-emoji-map").scrollTop(offset.position_y);
|
|
|
|
}
|
|
|
|
});
|
2017-04-27 07:27:25 +02:00
|
|
|
};
|
|
|
|
|
2017-05-10 19:46:20 +02:00
|
|
|
exports.is_composition = function (emoji) {
|
2017-07-19 00:28:56 +02:00
|
|
|
return $(emoji).hasClass('composition');
|
2017-05-10 19:46:20 +02:00
|
|
|
};
|
|
|
|
|
2017-08-16 23:54:26 +02:00
|
|
|
exports.initialize = function () {
|
2017-07-19 00:28:56 +02:00
|
|
|
exports.generate_emoji_picker_data(emoji.active_realm_emojis);
|
2017-08-16 23:54:26 +02:00
|
|
|
};
|
2017-07-19 00:28:56 +02:00
|
|
|
|
2017-04-27 07:27:25 +02:00
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
|
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = emoji_picker;
|
|
|
|
}
|