2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
2021-02-28 01:00:56 +01:00
|
|
|
import _ from "lodash";
|
2021-02-25 02:45:26 +01:00
|
|
|
import tippy from "tippy.js";
|
2021-02-28 01:00:56 +01:00
|
|
|
import WinChan from "winchan";
|
2020-07-28 00:52:14 +02:00
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// You won't find every click handler here, but it's a good place to start!
|
|
|
|
|
2021-02-28 01:00:56 +01:00
|
|
|
import render_buddy_list_tooltip_content from "../templates/buddy_list_tooltip_content.hbs";
|
|
|
|
|
2021-02-28 01:13:42 +01:00
|
|
|
import * as activity from "./activity";
|
2021-03-16 23:38:59 +01:00
|
|
|
import * as blueslip from "./blueslip";
|
2021-03-22 16:09:12 +01:00
|
|
|
import * as browser_history from "./browser_history";
|
2021-02-28 01:12:35 +01:00
|
|
|
import * as buddy_data from "./buddy_data";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as channel from "./channel";
|
|
|
|
import * as compose from "./compose";
|
2021-02-28 21:32:22 +01:00
|
|
|
import * as compose_actions from "./compose_actions";
|
2021-06-25 13:36:43 +02:00
|
|
|
import * as compose_error from "./compose_error";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as compose_state from "./compose_state";
|
2021-02-25 02:45:26 +01:00
|
|
|
import {media_breakpoints_num} from "./css_variables";
|
2022-02-10 16:06:55 +01:00
|
|
|
import * as dark_theme from "./dark_theme";
|
2021-02-28 01:26:16 +01:00
|
|
|
import * as emoji_picker from "./emoji_picker";
|
2021-02-28 01:07:13 +01:00
|
|
|
import * as hash_util from "./hash_util";
|
2021-02-28 01:15:02 +01:00
|
|
|
import * as hotspots from "./hotspots";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as message_edit from "./message_edit";
|
2021-02-28 01:08:13 +01:00
|
|
|
import * as message_flags from "./message_flags";
|
2021-03-30 02:21:21 +02:00
|
|
|
import * as message_lists from "./message_lists";
|
2021-02-28 01:10:03 +01:00
|
|
|
import * as message_store from "./message_store";
|
2021-07-08 20:36:52 +02:00
|
|
|
import * as muted_topics_ui from "./muted_topics_ui";
|
2021-02-28 21:31:57 +01:00
|
|
|
import * as narrow from "./narrow";
|
2022-02-14 17:43:32 +01:00
|
|
|
import * as navigate from "./navigate";
|
2021-02-28 01:06:34 +01:00
|
|
|
import * as notifications from "./notifications";
|
2021-02-28 01:03:46 +01:00
|
|
|
import * as overlays from "./overlays";
|
2022-02-15 11:21:38 +01:00
|
|
|
import {page_params} from "./page_params";
|
2022-02-17 15:42:40 +01:00
|
|
|
import * as people from "./people";
|
2021-02-28 01:03:09 +01:00
|
|
|
import * as popovers from "./popovers";
|
2021-02-28 01:25:00 +01:00
|
|
|
import * as reactions from "./reactions";
|
2021-06-10 14:18:46 +02:00
|
|
|
import * as recent_topics_ui from "./recent_topics_ui";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as rows from "./rows";
|
2021-02-28 01:11:47 +01:00
|
|
|
import * as server_events from "./server_events";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as settings_panel_menu from "./settings_panel_menu";
|
2021-02-28 01:01:33 +01:00
|
|
|
import * as settings_toggle from "./settings_toggle";
|
2021-02-28 21:31:02 +01:00
|
|
|
import * as stream_list from "./stream_list";
|
2021-02-28 01:02:37 +01:00
|
|
|
import * as stream_popover from "./stream_popover";
|
2021-06-08 18:42:06 +02:00
|
|
|
import * as topic_list from "./topic_list";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as ui_util from "./ui_util";
|
2022-03-02 23:06:33 +01:00
|
|
|
import {parse_html} from "./ui_util";
|
2021-02-28 21:30:08 +01:00
|
|
|
import * as unread_ops from "./unread_ops";
|
2021-06-23 20:48:49 +02:00
|
|
|
import * as user_profile from "./user_profile";
|
2021-02-28 01:00:56 +01:00
|
|
|
import * as util from "./util";
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2021-02-28 01:00:56 +01:00
|
|
|
export function initialize() {
|
2014-03-14 15:30:29 +01:00
|
|
|
// MESSAGE CLICKING
|
|
|
|
|
2017-07-31 21:45:39 +02:00
|
|
|
function initialize_long_tap() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const MS_DELAY = 750;
|
|
|
|
const meta = {
|
2017-07-31 21:45:39 +02:00
|
|
|
touchdown: false,
|
2018-06-11 16:52:41 +02:00
|
|
|
current_target: undefined,
|
2017-07-31 21:45:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
$("#main_div").on("touchstart", ".messagebox", function () {
|
|
|
|
meta.touchdown = true;
|
|
|
|
meta.invalid = false;
|
2019-11-02 00:06:25 +01:00
|
|
|
const id = rows.id($(this).closest(".message_row"));
|
2018-06-11 16:52:41 +02:00
|
|
|
meta.current_target = id;
|
|
|
|
if (!id) {
|
|
|
|
return;
|
|
|
|
}
|
2021-03-30 02:21:21 +02:00
|
|
|
message_lists.current.select_id(id);
|
2020-07-02 01:45:54 +02:00
|
|
|
setTimeout(() => {
|
2018-06-11 16:52:41 +02:00
|
|
|
// The algorithm to trigger long tap is that first, we check
|
|
|
|
// whether the message is still touched after MS_DELAY ms and
|
|
|
|
// the user isn't scrolling the messages(see other touch event
|
|
|
|
// handlers to see how these meta variables are handled).
|
|
|
|
// Later we check whether after MS_DELAY the user is still
|
|
|
|
// long touching the same message as it can be possible that
|
|
|
|
// user touched another message within MS_DELAY period.
|
2020-12-22 11:26:39 +01:00
|
|
|
if (meta.touchdown === true && !meta.invalid && id === meta.current_target) {
|
|
|
|
$(this).trigger("longtap");
|
2017-07-31 21:45:39 +02:00
|
|
|
}
|
2020-07-02 01:45:54 +02:00
|
|
|
}, MS_DELAY);
|
2017-07-31 21:45:39 +02:00
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#main_div").on("touchend", ".messagebox", () => {
|
2017-07-31 21:45:39 +02:00
|
|
|
meta.touchdown = false;
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#main_div").on("touchmove", ".messagebox", () => {
|
2017-07-31 21:45:39 +02:00
|
|
|
meta.invalid = true;
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#main_div").on("contextmenu", ".messagebox", (e) => {
|
2017-07-31 21:45:39 +02:00
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// this initializes the trigger that will give off the longtap event, which
|
|
|
|
// there is no point in running if we are on desktop since this isn't a
|
|
|
|
// standard event that we would want to support.
|
|
|
|
if (util.is_mobile()) {
|
|
|
|
initialize_long_tap();
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
function is_clickable_message_element($target) {
|
2020-07-02 00:35:02 +02:00
|
|
|
// This function defines all the elements within a message
|
|
|
|
// body that have UI behavior other than starting a reply.
|
2020-07-02 00:38:27 +02:00
|
|
|
|
|
|
|
// Links should be handled by the browser.
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.closest("a").length > 0) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Forms for message editing contain input elements
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is("textarea") || $target.is("input")) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Widget for adjusting the height of a message.
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is("div.message_length_controller")) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inline image and twitter previews.
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is("img.message_inline_image") || $target.is("img.twitter-avatar")) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UI elements for triggering message editing or viewing edit history.
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is("i.edit_content_button") || $target.is(".message_edit_notice")) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For spoilers, allow clicking either the header or elements within it
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is(".spoiler-header") || $target.parents(".spoiler-header").length > 0) {
|
2020-07-02 00:35:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-25 22:54:23 +02:00
|
|
|
// Ideally, this should be done via ClipboardJS, but it doesn't support
|
2021-04-10 03:06:27 +02:00
|
|
|
// feature of stopPropagation once clicked.
|
|
|
|
// See https://github.com/zenorocha/clipboard.js/pull/475
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.is(".copy_codeblock") || $target.parents(".copy_codeblock").length > 0) {
|
2021-04-10 03:06:27 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-08-17 09:34:41 +02:00
|
|
|
// Don't select message on clicking message control buttons.
|
2022-01-25 11:36:19 +01:00
|
|
|
if ($target.parents(".message_controls").length > 0) {
|
2021-08-17 09:34:41 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-02 00:35:02 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const select_message_function = function (e) {
|
2014-03-14 15:30:29 +01:00
|
|
|
if (is_clickable_message_element($(e.target))) {
|
|
|
|
// If this click came from a hyperlink, don't trigger the
|
|
|
|
// reply action. The simple way of doing this is simply
|
|
|
|
// to call e.stopPropagation() from within the link's
|
|
|
|
// click handler.
|
|
|
|
//
|
|
|
|
// Unfortunately, on Firefox, this breaks Ctrl-click and
|
|
|
|
// Shift-click, because those are (apparently) implemented
|
|
|
|
// by adding an event listener on link clicks, and
|
|
|
|
// stopPropagation prevents them from being called.
|
|
|
|
return;
|
|
|
|
}
|
2017-04-14 01:14:50 +02:00
|
|
|
|
2020-04-10 13:05:11 +02:00
|
|
|
if (document.getSelection().type === "Range") {
|
|
|
|
// Drags on the message (to copy message text) shouldn't trigger a reply.
|
|
|
|
return;
|
|
|
|
}
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(this).closest(".message_row");
|
|
|
|
const id = rows.id($row);
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2020-04-10 13:05:11 +02:00
|
|
|
if (message_edit.is_editing(id)) {
|
|
|
|
// Clicks on a message being edited shouldn't trigger a reply.
|
|
|
|
return;
|
2014-03-14 15:30:29 +01:00
|
|
|
}
|
2020-04-10 13:05:11 +02:00
|
|
|
|
2021-03-30 02:21:21 +02:00
|
|
|
message_lists.current.select_id(id);
|
2022-02-15 11:21:38 +01:00
|
|
|
|
|
|
|
if (page_params.is_spectator) {
|
|
|
|
return;
|
|
|
|
}
|
2020-07-15 01:29:15 +02:00
|
|
|
compose_actions.respond_to_message({trigger: "message click"});
|
2020-04-10 13:05:11 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
2017-07-31 21:45:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// if on normal non-mobile experience, a `click` event should run the message
|
|
|
|
// selection function which will open the compose box and select the message.
|
|
|
|
if (!util.is_mobile()) {
|
|
|
|
$("#main_div").on("click", ".messagebox", select_message_function);
|
2020-07-15 00:34:28 +02:00
|
|
|
// on the other hand, on mobile it should be done with a long tap.
|
2017-07-31 21:45:39 +02:00
|
|
|
} else {
|
2017-09-15 22:43:12 +02:00
|
|
|
$("#main_div").on("longtap", ".messagebox", function (e) {
|
2021-06-25 22:56:06 +02:00
|
|
|
const sel = window.getSelection();
|
2017-09-15 22:43:12 +02:00
|
|
|
// if one matches, remove the current selections.
|
|
|
|
// after a longtap that is valid, there should be no text selected.
|
|
|
|
if (sel) {
|
|
|
|
if (sel.removeAllRanges) {
|
|
|
|
sel.removeAllRanges();
|
|
|
|
} else if (sel.empty) {
|
|
|
|
sel.empty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
select_message_function.call(this, e);
|
|
|
|
});
|
2017-07-31 21:45:39 +02:00
|
|
|
}
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2020-07-03 17:49:19 +02:00
|
|
|
$("#main_div").on("click", ".star_container", function (e) {
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
2017-12-16 13:33:54 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const message_id = rows.id($(this).closest(".message_row"));
|
|
|
|
const message = message_store.get(message_id);
|
2018-08-01 20:09:12 +02:00
|
|
|
message_flags.toggle_starred_and_update_server(message);
|
2014-03-14 15:30:29 +01:00
|
|
|
});
|
|
|
|
|
2020-07-14 09:08:16 +02:00
|
|
|
$("#main_div").on("click", ".message_reaction", function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
emoji_picker.hide_emoji_popover();
|
2020-07-15 01:29:15 +02:00
|
|
|
const local_id = $(this).attr("data-reaction-id");
|
2019-11-02 00:06:25 +01:00
|
|
|
const message_id = rows.get_message_id(this);
|
2017-10-31 22:33:28 +01:00
|
|
|
reactions.process_reaction_click(message_id, local_id);
|
2019-04-04 14:56:54 +02:00
|
|
|
$(".tooltip").remove();
|
|
|
|
});
|
|
|
|
|
2021-05-04 19:17:18 +02:00
|
|
|
$("body").on("click", ".reveal_hidden_message", (e) => {
|
2021-05-14 20:47:28 +02:00
|
|
|
// Hide actions popover to keep its options
|
|
|
|
// in sync with revealed/hidden state of
|
|
|
|
// muted user's message.
|
|
|
|
popovers.hide_actions_popover();
|
|
|
|
|
2021-05-04 19:17:18 +02:00
|
|
|
const message_id = rows.id($(e.currentTarget).closest(".message_row"));
|
|
|
|
message_lists.current.view.reveal_hidden_message(message_id);
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
2016-11-18 10:18:08 +01:00
|
|
|
$("#main_div").on("click", "a.stream", function (e) {
|
|
|
|
e.preventDefault();
|
2018-02-15 21:02:47 +01:00
|
|
|
// Note that we may have an href here, but we trust the stream id more,
|
|
|
|
// so we re-encode the hash.
|
2020-10-07 09:17:30 +02:00
|
|
|
const stream_id = Number.parseInt($(this).attr("data-stream-id"), 10);
|
2018-12-14 19:18:24 +01:00
|
|
|
if (stream_id) {
|
2022-03-01 19:14:26 +01:00
|
|
|
browser_history.go_to_location(hash_util.by_stream_url(stream_id));
|
2016-11-18 10:18:08 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.href = $(this).attr("href");
|
2016-11-18 10:18:08 +01:00
|
|
|
});
|
|
|
|
|
2022-02-14 17:43:32 +01:00
|
|
|
$("body").on("click", "#scroll-to-bottom-button-clickable-area", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
navigate.to_end();
|
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// MESSAGE EDITING
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".edit_content_button", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = message_lists.current.get_row(rows.id($(this).closest(".message_row")));
|
|
|
|
message_lists.current.select_id(rows.id($row));
|
|
|
|
message_edit.start($row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".always_visible_topic_edit,.on_hover_topic_edit", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $recipient_row = $(this).closest(".recipient_row");
|
|
|
|
message_edit.start_inline_topic_edit($recipient_row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
|
|
|
$("body").on("click", ".topic_edit_save", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $recipient_row = $(this).closest(".recipient_row");
|
|
|
|
message_edit.save_inline_topic_edit($recipient_row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
|
|
|
$("body").on("click", ".topic_edit_cancel", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $recipient_row = $(this).closest(".recipient_row");
|
|
|
|
message_edit.end_inline_topic_edit($recipient_row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
|
|
|
$("body").on("click", ".message_edit_save", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(this).closest(".message_row");
|
|
|
|
message_edit.save_message_row_edit($row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
|
|
|
$("body").on("click", ".message_edit_cancel", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(this).closest(".message_row");
|
|
|
|
message_edit.end_message_row_edit($row);
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
2016-10-22 02:38:56 +02:00
|
|
|
$("body").on("click", ".message_edit_close", function (e) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(this).closest(".message_row");
|
|
|
|
message_edit.end_message_row_edit($row);
|
2016-10-22 02:38:56 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
2016-12-15 07:26:09 +01:00
|
|
|
$("body").on("click", "a", function () {
|
2016-12-14 23:34:08 +01:00
|
|
|
if (document.activeElement === this) {
|
2017-03-18 21:35:35 +01:00
|
|
|
ui_util.blur_active_element();
|
2016-12-14 23:34:08 +01:00
|
|
|
}
|
|
|
|
});
|
2021-04-21 16:20:16 +02:00
|
|
|
$(".message_edit_form .send-status-close").on("click", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const row_id = rows.id($(this).closest(".message_row"));
|
2022-01-25 11:36:19 +01:00
|
|
|
const $send_status = $(`#message-edit-send-status-${CSS.escape(row_id)}`);
|
|
|
|
$($send_status).stop(true).fadeOut(200);
|
2017-11-28 22:36:58 +01:00
|
|
|
});
|
2021-04-20 16:22:50 +02:00
|
|
|
$("body").on("click", ".message_edit_form .compose_upload_file", function (e) {
|
2017-11-28 22:36:58 +01:00
|
|
|
e.preventDefault();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const row_id = rows.id($(this).closest(".message_row"));
|
2021-04-20 16:14:55 +02:00
|
|
|
$(`#edit_form_${CSS.escape(row_id)} .file_input`).trigger("click");
|
2017-11-28 22:36:58 +01:00
|
|
|
});
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
$("body").on("click", ".message_edit_form .markdown_preview", (e) => {
|
2019-02-05 15:27:17 +01:00
|
|
|
e.preventDefault();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = rows.get_closest_row(e.target);
|
|
|
|
const $msg_edit_content = $row.find(".message_edit_content");
|
2021-04-20 19:50:01 +02:00
|
|
|
const content = $msg_edit_content.val();
|
|
|
|
$msg_edit_content.hide();
|
2022-01-25 11:36:19 +01:00
|
|
|
$row.find(".markdown_preview").hide();
|
|
|
|
$row.find(".undo_markdown_preview").show();
|
|
|
|
$row.find(".preview_message_area").show();
|
2019-02-05 15:27:17 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
compose.render_and_show_preview(
|
2022-01-25 11:36:19 +01:00
|
|
|
$row.find(".markdown_preview_spinner"),
|
|
|
|
$row.find(".preview_content"),
|
2020-07-15 00:34:28 +02:00
|
|
|
content,
|
|
|
|
);
|
2019-02-05 15:27:17 +01:00
|
|
|
});
|
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
$("body").on("click", ".message_edit_form .undo_markdown_preview", (e) => {
|
2019-02-05 15:27:17 +01:00
|
|
|
e.preventDefault();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = rows.get_closest_row(e.target);
|
|
|
|
$row.find(".message_edit_content").show();
|
|
|
|
$row.find(".undo_markdown_preview").hide();
|
|
|
|
$row.find(".preview_message_area").hide();
|
|
|
|
$row.find(".preview_content").empty();
|
|
|
|
$row.find(".markdown_preview").show();
|
2019-02-05 15:27:17 +01:00
|
|
|
});
|
|
|
|
|
2021-06-27 09:16:03 +02:00
|
|
|
// RESOLVED TOPICS
|
|
|
|
$("body").on("click", ".message_header .on_hover_topic_resolve", (e) => {
|
|
|
|
e.stopPropagation();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $recipient_row = $(e.target).closest(".recipient_row");
|
|
|
|
const message_id = rows.id_for_recipient_row($recipient_row);
|
2021-06-27 09:16:03 +02:00
|
|
|
const topic_name = $(e.target).attr("data-topic-name");
|
|
|
|
message_edit.toggle_resolve_topic(message_id, topic_name);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("click", ".message_header .on_hover_topic_unresolve", (e) => {
|
|
|
|
e.stopPropagation();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $recipient_row = $(e.target).closest(".recipient_row");
|
|
|
|
const message_id = rows.id_for_recipient_row($recipient_row);
|
2021-06-27 09:16:03 +02:00
|
|
|
const topic_name = $(e.target).attr("data-topic-name");
|
|
|
|
message_edit.toggle_resolve_topic(message_id, topic_name);
|
|
|
|
});
|
|
|
|
|
2021-04-08 19:52:11 +02:00
|
|
|
// TOPIC MUTING
|
|
|
|
function mute_or_unmute_topic($elt, mute_topic) {
|
2021-03-13 17:12:56 +01:00
|
|
|
const stream_id = Number.parseInt($elt.attr("data-stream-id"), 10);
|
|
|
|
const topic = $elt.attr("data-topic-name");
|
2021-04-08 19:52:11 +02:00
|
|
|
if (mute_topic) {
|
2021-07-08 20:36:52 +02:00
|
|
|
muted_topics_ui.mute_topic(stream_id, topic);
|
2021-04-08 19:52:11 +02:00
|
|
|
} else {
|
2021-07-08 20:36:52 +02:00
|
|
|
muted_topics_ui.unmute_topic(stream_id, topic);
|
2021-04-08 19:52:11 +02:00
|
|
|
}
|
2021-03-13 17:12:56 +01:00
|
|
|
}
|
2016-11-22 09:20:20 +01:00
|
|
|
|
recent topics: Fix duplicate muting requests sent to server.
Previously, on clicking the "bell" icon from a recent
topics topic row, two click handlers were triggered-
1. The one for the bell in the recent-topics topic
row.
2. The one for the bell in the floating recipient bar.
This is intended to be triggered only when the user
clicks on the bell icon in the floating recipient
bar to mute a topic, but this was triggered on
clicking the recent-topics topic row bell too,
because it wasn't specific and we use the same
HTML class for both the bells.
Because both these click handlers were triggered,
the webapp sent back-to-back duplicate requests to
the server to mute the topic, which caused the sever
to throw "HTTP 400: Topic already muted" error.
This commit fixes this by making the recipient bar
click handler more specific, so that it is triggered
only when the recipient bar bell icon is clicked.
There is also the issue that the recipient bar bell
icon only allows a user to mute the topic, not unmute.
So, when someone mutes a topic, and then clicks on
the recipient bar bell icon, the webapp sends a
request to mute the topic again (not to unmute),
leading to the same error as above.
This commit does not fix that. See #15223.
2021-03-28 09:01:27 +02:00
|
|
|
$("body").on("click", ".message_header .on_hover_topic_mute", (e) => {
|
2016-11-22 09:20:20 +01:00
|
|
|
e.stopPropagation();
|
2021-04-08 19:52:11 +02:00
|
|
|
mute_or_unmute_topic($(e.target), true);
|
2016-11-22 09:20:20 +01:00
|
|
|
});
|
|
|
|
|
2021-04-30 07:44:43 +02:00
|
|
|
$("body").on("click", ".message_header .on_hover_topic_unmute", (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
mute_or_unmute_topic($(e.target), false);
|
|
|
|
});
|
|
|
|
|
2021-03-13 16:45:47 +01:00
|
|
|
// RECENT TOPICS
|
|
|
|
|
2022-02-17 15:42:40 +01:00
|
|
|
$("#recent_topics_table").on("click", ".participant_profile", function (e) {
|
|
|
|
const participant_user_id = Number.parseInt($(this).attr("data-user-id"), 10);
|
|
|
|
e.stopPropagation();
|
|
|
|
const user = people.get_by_user_id(participant_user_id);
|
|
|
|
popovers.show_user_info_popover(this, user);
|
|
|
|
});
|
|
|
|
|
2021-03-31 05:36:08 +02:00
|
|
|
$("body").on("keydown", ".on_hover_topic_mute", ui_util.convert_enter_to_click);
|
2020-06-20 09:59:18 +02:00
|
|
|
|
2021-03-13 16:45:47 +01:00
|
|
|
$("body").on("click", "#recent_topics_table .on_hover_topic_unmute", (e) => {
|
2020-05-29 17:22:53 +02:00
|
|
|
e.stopPropagation();
|
2021-04-08 19:52:11 +02:00
|
|
|
const $elt = $(e.target);
|
2021-09-06 15:22:32 +02:00
|
|
|
const topic_row_index = $elt.closest("tr").index();
|
|
|
|
recent_topics_ui.focus_clicked_element(topic_row_index, recent_topics_ui.COLUMNS.mute);
|
2021-04-08 19:52:11 +02:00
|
|
|
mute_or_unmute_topic($elt, false);
|
2020-05-29 17:22:53 +02:00
|
|
|
});
|
|
|
|
|
2021-03-31 05:36:08 +02:00
|
|
|
$("body").on("keydown", ".on_hover_topic_unmute", ui_util.convert_enter_to_click);
|
2020-06-20 09:59:18 +02:00
|
|
|
|
2021-03-13 16:45:47 +01:00
|
|
|
$("body").on("click", "#recent_topics_table .on_hover_topic_mute", (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
const $elt = $(e.target);
|
2021-09-06 15:22:32 +02:00
|
|
|
const topic_row_index = $elt.closest("tr").index();
|
|
|
|
recent_topics_ui.focus_clicked_element(topic_row_index, recent_topics_ui.COLUMNS.mute);
|
2021-04-08 19:52:11 +02:00
|
|
|
mute_or_unmute_topic($elt, true);
|
2021-03-13 16:45:47 +01:00
|
|
|
});
|
2020-05-22 20:55:29 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", "#recent_topics_search", (e) => {
|
2020-06-24 16:55:55 +02:00
|
|
|
e.stopPropagation();
|
2021-06-10 14:18:46 +02:00
|
|
|
recent_topics_ui.change_focused_element($(e.target), "click");
|
2020-06-24 16:55:55 +02:00
|
|
|
});
|
|
|
|
|
2021-03-13 16:45:47 +01:00
|
|
|
$("body").on("click", "#recent_topics_table .on_hover_topic_read", (e) => {
|
2020-05-22 20:55:29 +02:00
|
|
|
e.stopPropagation();
|
2021-09-06 15:22:32 +02:00
|
|
|
const topic_row_index = $(e.target).closest("tr").index();
|
|
|
|
recent_topics_ui.focus_clicked_element(topic_row_index, recent_topics_ui.COLUMNS.read);
|
2020-10-07 09:17:30 +02:00
|
|
|
const stream_id = Number.parseInt($(e.currentTarget).attr("data-stream-id"), 10);
|
2020-07-15 01:29:15 +02:00
|
|
|
const topic = $(e.currentTarget).attr("data-topic-name");
|
2020-05-22 20:55:29 +02:00
|
|
|
unread_ops.mark_topic_as_read(stream_id, topic);
|
|
|
|
});
|
|
|
|
|
2021-03-31 05:36:08 +02:00
|
|
|
$("body").on("keydown", ".on_hover_topic_read", ui_util.convert_enter_to_click);
|
2020-06-20 09:59:18 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".btn-recent-filters", (e) => {
|
2020-05-23 09:04:51 +02:00
|
|
|
e.stopPropagation();
|
2021-06-10 14:18:46 +02:00
|
|
|
recent_topics_ui.change_focused_element($(e.target), "click");
|
|
|
|
recent_topics_ui.set_filter(e.currentTarget.dataset.filter);
|
|
|
|
recent_topics_ui.update_filters_view();
|
2021-08-24 17:19:37 +02:00
|
|
|
recent_topics_ui.revive_current_focus();
|
2020-05-23 09:04:51 +02:00
|
|
|
});
|
|
|
|
|
2021-02-18 06:44:09 +01:00
|
|
|
$("body").on("click", "td.recent_topic_stream", (e) => {
|
|
|
|
e.stopPropagation();
|
2021-09-06 15:22:32 +02:00
|
|
|
const topic_row_index = $(e.target).closest("tr").index();
|
|
|
|
recent_topics_ui.focus_clicked_element(topic_row_index, recent_topics_ui.COLUMNS.stream);
|
2021-02-18 06:44:09 +01:00
|
|
|
window.location.href = $(e.currentTarget).find("a").attr("href");
|
|
|
|
});
|
|
|
|
|
2020-09-21 08:59:48 +02:00
|
|
|
$("body").on("click", "td.recent_topic_name", (e) => {
|
|
|
|
e.stopPropagation();
|
2021-09-06 17:43:52 +02:00
|
|
|
// The element's parent may re-render while it is being passed to
|
|
|
|
// other functions, so, we get topic_key first.
|
2022-01-25 11:36:19 +01:00
|
|
|
const $topic_row = $(e.target).closest("tr");
|
|
|
|
const topic_key = $topic_row.attr("id").slice("recent_topics:".length - 1);
|
|
|
|
const topic_row_index = $topic_row.index();
|
2021-09-06 17:43:52 +02:00
|
|
|
recent_topics_ui.focus_clicked_element(
|
|
|
|
topic_row_index,
|
|
|
|
recent_topics_ui.COLUMNS.topic,
|
|
|
|
topic_key,
|
|
|
|
);
|
2020-09-21 08:59:48 +02:00
|
|
|
window.location.href = $(e.currentTarget).find("a").attr("href");
|
|
|
|
});
|
|
|
|
|
2020-05-23 09:04:51 +02:00
|
|
|
// Search for all table rows (this combines stream & topic names)
|
2020-07-15 00:34:28 +02:00
|
|
|
$("body").on(
|
|
|
|
"keyup",
|
|
|
|
"#recent_topics_search",
|
|
|
|
_.debounce(() => {
|
2021-06-10 14:18:46 +02:00
|
|
|
recent_topics_ui.update_filters_view();
|
2020-07-15 00:34:28 +02:00
|
|
|
// Wait for user to go idle before initiating search.
|
|
|
|
}, 300),
|
|
|
|
);
|
2020-05-23 09:04:51 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", "#recent_topics_search_clear", (e) => {
|
2020-05-29 12:48:45 +02:00
|
|
|
e.stopPropagation();
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#recent_topics_search").val("");
|
2021-06-10 14:18:46 +02:00
|
|
|
recent_topics_ui.update_filters_view();
|
2020-05-29 12:48:45 +02:00
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// RECIPIENT BARS
|
|
|
|
|
|
|
|
function get_row_id_for_narrowing(narrow_link_elem) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $group = rows.get_closest_group(narrow_link_elem);
|
|
|
|
const msg_id = rows.id_for_recipient_row($group);
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2021-03-30 02:21:21 +02:00
|
|
|
const nearest = message_lists.current.get(msg_id);
|
|
|
|
const selected = message_lists.current.selected_message();
|
2014-03-14 15:30:29 +01:00
|
|
|
if (util.same_recipient(nearest, selected)) {
|
|
|
|
return selected.id;
|
|
|
|
}
|
2016-12-02 21:34:35 +01:00
|
|
|
return nearest.id;
|
2014-03-14 15:30:29 +01:00
|
|
|
}
|
|
|
|
|
2020-07-04 16:25:41 +02:00
|
|
|
$("#message_feed_container").on("click", ".narrows_by_recipient", function (e) {
|
2014-03-14 15:30:29 +01:00
|
|
|
if (e.metaKey || e.ctrlKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
2019-11-02 00:06:25 +01:00
|
|
|
const row_id = get_row_id_for_narrowing(this);
|
2020-07-15 01:29:15 +02:00
|
|
|
narrow.by_recipient(row_id, {trigger: "message header"});
|
2014-03-14 15:30:29 +01:00
|
|
|
});
|
|
|
|
|
2020-07-04 16:25:41 +02:00
|
|
|
$("#message_feed_container").on("click", ".narrows_by_topic", function (e) {
|
2014-03-14 15:30:29 +01:00
|
|
|
if (e.metaKey || e.ctrlKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
2019-11-02 00:06:25 +01:00
|
|
|
const row_id = get_row_id_for_narrowing(this);
|
2020-07-15 01:29:15 +02:00
|
|
|
narrow.by_topic(row_id, {trigger: "message header"});
|
2014-03-14 15:30:29 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// SIDEBARS
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#userlist-toggle-button").on("click", (e) => {
|
2014-03-14 15:30:29 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sidebarHidden = !$(".app-main .column-right").hasClass("expanded");
|
2014-03-14 15:30:29 +01:00
|
|
|
popovers.hide_all();
|
|
|
|
if (sidebarHidden) {
|
|
|
|
popovers.show_userlist_sidebar();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#streamlist-toggle-button").on("click", (e) => {
|
2014-03-14 15:30:29 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sidebarHidden = !$(".app-main .column-left").hasClass("expanded");
|
2014-03-14 15:30:29 +01:00
|
|
|
popovers.hide_all();
|
|
|
|
if (sidebarHidden) {
|
2017-03-08 23:39:39 +01:00
|
|
|
stream_popover.show_streamlist_sidebar();
|
2014-03-14 15:30:29 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#user_presences")
|
|
|
|
.expectOne()
|
|
|
|
.on("click", ".selectable_sidebar_block", (e) => {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $li = $(e.target).parents("li");
|
2018-04-19 23:14:58 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
activity.narrow_for_user({$li});
|
2018-04-19 23:14:58 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
popovers.hide_all();
|
|
|
|
$(".tooltip").remove();
|
|
|
|
});
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
function do_render_buddy_list_tooltip($elem, title_data) {
|
2021-02-25 02:45:26 +01:00
|
|
|
let placement = "left";
|
2021-04-10 15:30:39 +02:00
|
|
|
let observer;
|
2021-02-25 02:45:26 +01:00
|
|
|
if (window.innerWidth < media_breakpoints_num.md) {
|
|
|
|
// On small devices display tooltips based on available space.
|
|
|
|
// This will default to "bottom" placement for this tooltip.
|
|
|
|
placement = "auto";
|
|
|
|
}
|
2022-01-25 11:36:19 +01:00
|
|
|
tippy($elem[0], {
|
2021-02-25 02:45:26 +01:00
|
|
|
// Quickly display and hide right sidebar tooltips
|
|
|
|
// so that they don't stick and overlap with
|
|
|
|
// each other.
|
|
|
|
delay: 0,
|
2022-03-02 23:06:33 +01:00
|
|
|
content: () => parse_html(render_buddy_list_tooltip_content(title_data)),
|
2021-02-25 02:45:26 +01:00
|
|
|
arrow: true,
|
|
|
|
placement,
|
|
|
|
showOnCreate: true,
|
|
|
|
onHidden: (instance) => {
|
|
|
|
instance.destroy();
|
2021-04-10 15:30:39 +02:00
|
|
|
observer.disconnect();
|
|
|
|
},
|
|
|
|
onShow: (instance) => {
|
|
|
|
// For both buddy list and top left corner pm list, `target_node`
|
|
|
|
// is their parent `ul` element. We cannot use MutationObserver
|
|
|
|
// directly on the reference element because it will be removed
|
|
|
|
// and we need to attach it on an element which will remain in the
|
|
|
|
// DOM which is their parent `ul`.
|
|
|
|
const target_node = $(instance.reference).parents("ul").get(0);
|
|
|
|
// We only need to know if any of the `li` elements were removed.
|
|
|
|
const config = {attributes: false, childList: true, subtree: false};
|
|
|
|
const callback = function (mutationsList) {
|
|
|
|
for (const mutation of mutationsList) {
|
|
|
|
// Hide instance if reference is in the removed node list.
|
|
|
|
if (
|
|
|
|
Array.prototype.includes.call(
|
|
|
|
mutation.removedNodes,
|
|
|
|
instance.reference.parentElement,
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
instance.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
observer = new MutationObserver(callback);
|
|
|
|
observer.observe(target_node, config);
|
2021-02-25 02:45:26 +01:00
|
|
|
},
|
2021-04-10 19:20:51 +02:00
|
|
|
appendTo: () => document.body,
|
2019-08-04 14:57:32 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// BUDDY LIST TOOLTIPS
|
2021-04-10 15:13:02 +02:00
|
|
|
$("#user_presences").on("mouseenter", ".selectable_sidebar_block", (e) => {
|
|
|
|
e.stopPropagation();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $elem = $(e.currentTarget).closest(".user_sidebar_entry").find(".user-presence-link");
|
|
|
|
const user_id_string = $elem.attr("data-user-id");
|
2021-04-10 15:13:02 +02:00
|
|
|
const title_data = buddy_data.get_title_data(user_id_string, false);
|
2022-01-25 11:36:19 +01:00
|
|
|
do_render_buddy_list_tooltip($elem.parent(), title_data);
|
2021-04-10 15:13:02 +02:00
|
|
|
});
|
2019-08-04 14:57:32 +02:00
|
|
|
|
|
|
|
// PM LIST TOOLTIPS
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("mouseenter", "#pm_user_status", (e) => {
|
2019-08-04 14:57:32 +02:00
|
|
|
e.stopPropagation();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $elem = $(e.currentTarget);
|
|
|
|
const user_ids_string = $elem.attr("data-user-ids-string");
|
2019-08-04 14:57:32 +02:00
|
|
|
// This converts from 'true' in the DOM to true.
|
2022-01-25 11:36:19 +01:00
|
|
|
const is_group = JSON.parse($elem.attr("data-is-group"));
|
2019-08-04 14:57:32 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const title_data = buddy_data.get_title_data(user_ids_string, is_group);
|
2022-01-25 11:36:19 +01:00
|
|
|
do_render_buddy_list_tooltip($elem, title_data);
|
2019-08-04 14:57:32 +02:00
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// MISC
|
|
|
|
|
2021-05-06 21:49:45 +02:00
|
|
|
{
|
2020-05-26 13:58:18 +02:00
|
|
|
const sel = ["#stream_filters", "#global_filters", "#user_presences"].join(", ");
|
2016-09-29 21:56:50 +02:00
|
|
|
|
|
|
|
$(sel).on("click", "a", function () {
|
|
|
|
this.blur();
|
|
|
|
});
|
2021-05-06 21:49:45 +02:00
|
|
|
}
|
2016-09-29 21:56:50 +02:00
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
popovers.register_click_handlers();
|
2021-06-23 20:48:49 +02:00
|
|
|
user_profile.register_click_handlers();
|
2017-04-27 07:27:25 +02:00
|
|
|
emoji_picker.register_click_handlers();
|
2017-03-05 17:28:40 +01:00
|
|
|
stream_popover.register_click_handlers();
|
2014-03-14 15:30:29 +01:00
|
|
|
notifications.register_click_handlers();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".logout_button", () => {
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#logout_form").trigger("submit");
|
2014-03-14 15:30:29 +01:00
|
|
|
});
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$(".restart_get_events_button").on("click", () => {
|
2014-03-14 15:30:29 +01:00
|
|
|
server_events.restart_get_events({dont_block: true});
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#settings_page").on("click", ".collapse-settings-btn", () => {
|
2019-05-13 00:43:21 +02:00
|
|
|
settings_toggle.toggle_org_setting_collapse();
|
|
|
|
});
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2020-08-07 19:30:28 +02:00
|
|
|
$(".organization-box").on("show.bs.modal", () => {
|
|
|
|
popovers.hide_all();
|
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// COMPOSE
|
|
|
|
|
2021-04-14 13:40:03 +02:00
|
|
|
$("body").on("click", "#compose-send-status .compose-send-status-close", () => {
|
2021-06-25 13:36:43 +02:00
|
|
|
compose_error.hide();
|
2020-07-15 00:34:28 +02:00
|
|
|
});
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2021-04-14 13:40:03 +02:00
|
|
|
$("body").on("click", ".empty_feed_compose_stream", (e) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
compose_actions.start("stream", {trigger: "empty feed message"});
|
2014-03-14 15:30:29 +01:00
|
|
|
e.preventDefault();
|
|
|
|
});
|
2021-04-14 13:40:03 +02:00
|
|
|
$("body").on("click", ".empty_feed_compose_private", (e) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
compose_actions.start("private", {trigger: "empty feed message"});
|
2014-03-14 15:30:29 +01:00
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
2017-01-05 21:11:45 +01:00
|
|
|
$("body").on("click", "[data-overlay-trigger]", function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const target = $(this).attr("data-overlay-trigger");
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.go_to_location(target);
|
2017-01-05 21:11:45 +01:00
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
function handle_compose_click(e) {
|
2021-12-08 07:35:06 +01:00
|
|
|
const $target = $(e.target);
|
2017-04-27 07:27:25 +02:00
|
|
|
// Emoji clicks should be handled by their own click handler in emoji_picker.js
|
2021-12-08 07:35:06 +01:00
|
|
|
if ($target.is(".emoji_map, img.emoji, .drag, .compose_gif_icon, .compose_control_menu")) {
|
2015-10-15 22:34:30 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-08-13 23:13:00 +02:00
|
|
|
|
|
|
|
// The mobile compose button has its own popover when clicked, so it already.
|
|
|
|
// hides other popovers.
|
2021-12-08 07:35:06 +01:00
|
|
|
if ($target.is(".compose_mobile_button, .compose_mobile_button *")) {
|
2018-08-13 23:13:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-10 09:07:42 +01:00
|
|
|
if ($(".enter_sends").has(e.target).length) {
|
|
|
|
e.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// Don't let clicks in the compose area count as
|
|
|
|
// "unfocusing" our compose -- in other words, e.g.
|
2020-08-11 02:09:14 +02:00
|
|
|
// clicking "Press Enter to send" should not
|
2021-10-22 23:02:43 +02:00
|
|
|
// trigger the composebox-closing code in MAIN CLICK HANDLER.
|
2014-03-14 15:30:29 +01:00
|
|
|
// But do allow our formatting link.
|
2021-12-08 07:35:06 +01:00
|
|
|
if (!$target.is("a")) {
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
// Still hide the popovers, however
|
|
|
|
popovers.hide_all();
|
|
|
|
}
|
|
|
|
|
2021-06-10 16:52:29 +02:00
|
|
|
$("body").on("click", "#compose-content", handle_compose_click);
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2021-04-14 13:40:03 +02:00
|
|
|
$("body").on("click", "#compose_close", () => {
|
2017-03-18 17:55:11 +01:00
|
|
|
compose_actions.cancel();
|
2014-03-14 15:30:29 +01:00
|
|
|
});
|
|
|
|
|
2021-04-14 13:40:03 +02:00
|
|
|
// LEFT SIDEBAR
|
|
|
|
|
2021-06-08 18:42:06 +02:00
|
|
|
$("body").on("click", "#clear_search_topic_button", topic_list.clear_topic_search);
|
|
|
|
|
2020-10-05 16:47:58 +02:00
|
|
|
$(".streams_filter_icon").on("click", (e) => {
|
2017-09-09 15:00:00 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
stream_list.toggle_filter_displayed(e);
|
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// WEBATHENA
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".webathena_login", (e) => {
|
2017-04-05 23:33:14 +02:00
|
|
|
$("#zephyr-mirror-error").removeClass("show");
|
2019-11-02 00:06:25 +01:00
|
|
|
const principal = ["zephyr", "zephyr"];
|
2020-07-15 00:34:28 +02:00
|
|
|
WinChan.open(
|
|
|
|
{
|
|
|
|
url: "https://webathena.mit.edu/#!request_ticket_v1",
|
|
|
|
relay_url: "https://webathena.mit.edu/relay.html",
|
|
|
|
params: {
|
|
|
|
realm: "ATHENA.MIT.EDU",
|
2020-07-20 22:18:43 +02:00
|
|
|
principal,
|
2020-07-15 00:34:28 +02:00
|
|
|
},
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2020-07-15 00:34:28 +02:00
|
|
|
(err, r) => {
|
|
|
|
if (err) {
|
|
|
|
blueslip.warn(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (r.status !== "OK") {
|
|
|
|
blueslip.warn(r);
|
|
|
|
return;
|
|
|
|
}
|
2014-03-14 15:30:29 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
channel.post({
|
|
|
|
url: "/accounts/webathena_kerberos_login/",
|
|
|
|
data: {cred: JSON.stringify(r.session)},
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#zephyr-mirror-error").removeClass("show");
|
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error() {
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#zephyr-mirror-error").addClass("show");
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#settings-dropdown").dropdown("toggle");
|
2014-03-14 15:30:29 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
// End Webathena code
|
|
|
|
|
2019-04-12 13:17:29 +02:00
|
|
|
// disable the draggability for left-sidebar components
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#stream_filters, #global_filters").on("dragstart", (e) => {
|
2020-07-22 04:21:43 +02:00
|
|
|
e.target.blur();
|
2020-07-16 10:03:13 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Chrome focuses an element when dragging it which can be confusing when
|
|
|
|
// users involuntarily drag something and we show them the focus outline.
|
2020-07-22 04:21:43 +02:00
|
|
|
$("body").on("dragstart", "a", (e) => e.target.blur());
|
2020-07-16 10:46:32 +02:00
|
|
|
|
|
|
|
// Don't focus links on middle click.
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("mouseup", "a", (e) => {
|
2021-05-31 18:21:45 +02:00
|
|
|
if (e.button === 1) {
|
2020-07-15 00:34:28 +02:00
|
|
|
// middle click
|
2020-07-22 04:21:43 +02:00
|
|
|
e.target.blur();
|
2020-07-16 10:46:32 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Don't focus links on context menu.
|
2020-07-22 04:21:43 +02:00
|
|
|
$("body").on("contextmenu", "a", (e) => e.target.blur());
|
2019-04-12 13:17:29 +02:00
|
|
|
|
2017-07-14 03:21:30 +02:00
|
|
|
// HOTSPOTS
|
|
|
|
|
|
|
|
// open
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".hotspot-icon", function (e) {
|
2017-07-14 03:21:30 +02:00
|
|
|
// hide icon
|
2018-03-17 19:35:19 +01:00
|
|
|
hotspots.close_hotspot_icon(this);
|
2017-07-14 03:21:30 +02:00
|
|
|
|
|
|
|
// show popover
|
2022-03-02 03:45:35 +01:00
|
|
|
const [, hotspot_name] = /^hotspot_(.*)_icon$/.exec(
|
|
|
|
$(e.target).closest(".hotspot-icon").attr("id"),
|
|
|
|
);
|
2020-07-15 01:29:15 +02:00
|
|
|
const overlay_name = "hotspot_" + hotspot_name + "_overlay";
|
2017-07-14 03:21:30 +02:00
|
|
|
|
|
|
|
overlays.open_overlay({
|
|
|
|
name: overlay_name,
|
2022-01-25 11:36:19 +01:00
|
|
|
$overlay: $(`#${CSS.escape(overlay_name)}`),
|
2017-07-14 03:21:30 +02:00
|
|
|
on_close: function () {
|
|
|
|
// close popover
|
2020-07-16 22:40:18 +02:00
|
|
|
$(this).css({display: "block"});
|
2020-07-15 00:34:28 +02:00
|
|
|
$(this).animate(
|
|
|
|
{opacity: 1},
|
|
|
|
{
|
|
|
|
duration: 300,
|
|
|
|
},
|
|
|
|
);
|
2017-07-14 03:21:30 +02:00
|
|
|
}.bind(this),
|
|
|
|
});
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
// confirm
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".hotspot.overlay .hotspot-confirm", function (e) {
|
2017-07-14 03:21:30 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const overlay_name = $(this).closest(".hotspot.overlay").attr("id");
|
2017-07-14 03:21:30 +02:00
|
|
|
|
2022-03-02 03:45:35 +01:00
|
|
|
const [, hotspot_name] = /^hotspot_(.*)_overlay$/.exec(overlay_name);
|
2017-07-14 03:21:30 +02:00
|
|
|
|
|
|
|
// Comment below to disable marking hotspots as read in production
|
|
|
|
hotspots.post_hotspot_as_read(hotspot_name);
|
|
|
|
|
|
|
|
overlays.close_overlay(overlay_name);
|
2021-02-03 23:23:32 +01:00
|
|
|
$(`#hotspot_${CSS.escape(hotspot_name)}_icon`).remove();
|
2017-07-14 03:21:30 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// stop propagation
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".hotspot.overlay .hotspot-popover", (e) => {
|
2017-07-14 03:21:30 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
2020-08-09 23:34:22 +02:00
|
|
|
$("body").on("hidden.bs.modal", () => {
|
|
|
|
// Enable mouse events for the background as the modal closes.
|
|
|
|
overlays.enable_background_mouse_events();
|
2021-06-06 19:28:12 +02:00
|
|
|
|
|
|
|
// TODO: Remove this once Bootstrap is upgraded.
|
|
|
|
// See: https://github.com/zulip/zulip/pull/18720
|
|
|
|
$(".modal.in").removeClass("in");
|
2020-08-09 23:34:22 +02:00
|
|
|
});
|
|
|
|
|
2022-02-10 16:06:55 +01:00
|
|
|
// GEAR MENU
|
|
|
|
|
|
|
|
$("body").on("click", "#gear-menu .dark-theme", (e) => {
|
|
|
|
// Allow propagation to close gear menu.
|
|
|
|
e.preventDefault();
|
|
|
|
dark_theme.enable();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("click", "#gear-menu .light-theme", (e) => {
|
|
|
|
// Allow propagation to close gear menu.
|
|
|
|
e.preventDefault();
|
|
|
|
dark_theme.disable();
|
|
|
|
});
|
|
|
|
|
2014-03-14 15:30:29 +01:00
|
|
|
// MAIN CLICK HANDLER
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(document).on("click", (e) => {
|
2016-10-15 07:21:30 +02:00
|
|
|
if (e.button !== 0 || $(e.target).is(".drag")) {
|
2014-03-14 15:30:29 +01:00
|
|
|
// Firefox emits right click events on the document, but not on
|
|
|
|
// the child nodes, so the #compose stopPropagation doesn't get a
|
|
|
|
// chance to capture right clicks.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dismiss popovers if the user has clicked outside them
|
2020-07-15 00:34:28 +02:00
|
|
|
if (
|
|
|
|
$(
|
|
|
|
'.popover-inner, #user-profile-modal, .emoji-info-popover, .app-main [class^="column-"].expanded',
|
|
|
|
).has(e.target).length === 0
|
|
|
|
) {
|
2021-06-17 00:49:50 +02:00
|
|
|
// Since tippy instance can handle outside clicks on their own,
|
|
|
|
// we don't need to trigger them from here.
|
|
|
|
// This fixes the bug of `hideAll` being called
|
|
|
|
// after a tippy popover has been triggered which hides
|
|
|
|
// the popover without being displayed.
|
|
|
|
const not_hide_tippy_instances = true;
|
|
|
|
popovers.hide_all(not_hide_tippy_instances);
|
2014-03-14 15:30:29 +01:00
|
|
|
}
|
|
|
|
|
2017-09-08 20:44:23 +02:00
|
|
|
if (compose_state.composing()) {
|
2021-07-07 18:14:31 +02:00
|
|
|
if (
|
|
|
|
$(e.target).closest("a").length > 0 ||
|
|
|
|
$(e.target).closest(".copy_codeblock").length > 0
|
|
|
|
) {
|
2021-01-19 15:27:49 +01:00
|
|
|
// Refocus compose message text box if one clicks an external
|
2021-07-07 18:14:31 +02:00
|
|
|
// link/url to view something else while composing a message.
|
|
|
|
// See issue #4331 for more details.
|
|
|
|
//
|
|
|
|
// We do the same when copying a code block, since the
|
|
|
|
// most likely next action within Zulip is to paste it
|
|
|
|
// into compose and modify it.
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#compose-textarea").trigger("focus");
|
2019-03-08 22:27:40 +01:00
|
|
|
return;
|
2020-07-15 00:34:28 +02:00
|
|
|
} else if (
|
|
|
|
!window.getSelection().toString() &&
|
2021-10-23 01:53:35 +02:00
|
|
|
// Clicking any input or text area should not close
|
|
|
|
// the compose box; this means using the sidebar
|
|
|
|
// filters or search widgets won't unnecessarily close
|
|
|
|
// compose.
|
|
|
|
!$(e.target).closest("input").length &&
|
|
|
|
!$(e.target).closest("textarea").length &&
|
|
|
|
!$(e.target).closest("select").length &&
|
2020-07-15 00:34:28 +02:00
|
|
|
// Clicks inside an overlay, popover, custom
|
|
|
|
// modal, or backdrop of one of the above
|
|
|
|
// should not have any effect on the compose
|
|
|
|
// state.
|
|
|
|
!$(e.target).closest(".overlay").length &&
|
|
|
|
!$(e.target).closest(".popover").length &&
|
|
|
|
!$(e.target).closest(".modal").length &&
|
2021-07-04 08:47:08 +02:00
|
|
|
!$(e.target).closest(".micromodal").length &&
|
2021-06-19 15:48:57 +02:00
|
|
|
!$(e.target).closest("[data-tippy-root]").length &&
|
2020-07-15 00:34:28 +02:00
|
|
|
!$(e.target).closest(".modal-backdrop").length &&
|
2021-12-10 09:07:42 +01:00
|
|
|
!$(e.target).closest(".enter_sends").length &&
|
2020-07-15 00:34:28 +02:00
|
|
|
$(e.target).closest("body").length
|
|
|
|
) {
|
2017-09-08 20:44:23 +02:00
|
|
|
// Unfocus our compose area if we click out of it. Don't let exits out
|
|
|
|
// of overlays or selecting text (for copy+paste) trigger cancelling.
|
2018-01-18 21:25:01 +01:00
|
|
|
// Check if the click is within the body to prevent extensions from
|
|
|
|
// interfering with the compose box.
|
2017-09-08 20:44:23 +02:00
|
|
|
compose_actions.cancel();
|
|
|
|
}
|
2014-03-14 15:30:29 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Workaround for Bootstrap issue #5900, which basically makes dropdowns
|
|
|
|
// unclickable on mobile devices.
|
|
|
|
// https://github.com/twitter/bootstrap/issues/5900
|
2020-07-15 01:29:15 +02:00
|
|
|
$("a.dropdown-toggle, .dropdown-menu a").on("touchstart", (e) => {
|
2014-03-14 15:30:29 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
});
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$(".settings-header.mobile .fa-chevron-left").on("click", () => {
|
2020-06-25 00:51:20 +02:00
|
|
|
settings_panel_menu.mobile_deactivate_section();
|
2016-12-03 01:12:52 +01:00
|
|
|
});
|
2021-02-28 01:00:56 +01:00
|
|
|
}
|