2021-03-24 18:41:55 +01:00
|
|
|
import $ from "jquery";
|
2021-02-25 02:33:15 +01:00
|
|
|
import tippy, {delegate} from "tippy.js";
|
|
|
|
|
2021-03-24 18:41:55 +01:00
|
|
|
import * as reactions from "./reactions";
|
|
|
|
import * as rows from "./rows";
|
|
|
|
|
2021-02-25 02:33:15 +01:00
|
|
|
// We override the defaults set by tippy library here,
|
|
|
|
// so make sure to check this too after checking tippyjs
|
|
|
|
// documentation for default properties.
|
|
|
|
tippy.setDefaultProps({
|
|
|
|
// We don't want tooltips
|
|
|
|
// to take more space than
|
|
|
|
// mobile widths ever.
|
|
|
|
maxWidth: 300,
|
|
|
|
|
|
|
|
// Some delay to showing / hiding the tooltip makes
|
|
|
|
// it look less forced and more natural.
|
|
|
|
delay: [100, 20],
|
|
|
|
placement: "auto",
|
|
|
|
|
|
|
|
// disable animations to make the
|
|
|
|
// tooltips feel snappy
|
|
|
|
animation: false,
|
|
|
|
|
|
|
|
// Show tooltips on long press on touch based
|
|
|
|
// devices.
|
|
|
|
touch: ["hold", 750],
|
|
|
|
|
|
|
|
// html content is not supported by default
|
|
|
|
// enable it by passing data-tippy-allowHtml="true"
|
|
|
|
// in the tag or a parameter.
|
|
|
|
});
|
|
|
|
|
|
|
|
export function initialize() {
|
|
|
|
delegate("body", {
|
|
|
|
// Add elements here which are not displayed on
|
|
|
|
// initial load but are displayed later through
|
|
|
|
// some means.
|
|
|
|
//
|
|
|
|
// Make all html elements having this class
|
|
|
|
// show tippy styled tooltip on hover.
|
|
|
|
target: ".tippy-zulip-tooltip",
|
|
|
|
});
|
2021-03-24 18:41:55 +01:00
|
|
|
|
|
|
|
// message reaction tooltip showing who reacted.
|
|
|
|
delegate("body", {
|
|
|
|
target: ".message_reaction",
|
2021-04-08 11:28:45 +02:00
|
|
|
placement: "bottom",
|
2021-03-24 18:41:55 +01:00
|
|
|
onShow(instance) {
|
|
|
|
const elem = $(instance.reference);
|
|
|
|
const local_id = elem.attr("data-reaction-id");
|
|
|
|
const message_id = rows.get_message_id(instance.reference);
|
|
|
|
const title = reactions.get_reaction_title_data(message_id, local_id);
|
|
|
|
instance.setContent(title);
|
|
|
|
},
|
2021-04-10 15:16:42 +02:00
|
|
|
// Insert directly into the `.message_reaction` element so
|
|
|
|
// that when the reaction is hidden, tooltip hides as well.
|
|
|
|
appendTo: (reference) => reference,
|
2021-03-24 18:41:55 +01:00
|
|
|
});
|
2021-02-25 02:33:15 +01:00
|
|
|
}
|