2022-01-31 11:57:30 +01:00
|
|
|
import autosize from "autosize";
|
2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
2021-02-28 00:51:57 +01:00
|
|
|
import _ from "lodash";
|
|
|
|
|
2021-03-16 23:38:59 +01:00
|
|
|
import * as blueslip from "./blueslip";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as channel from "./channel";
|
2021-02-28 21:32:22 +01:00
|
|
|
import * as compose_actions from "./compose_actions";
|
2020-10-20 19:25:34 +02:00
|
|
|
import {get_recipient_label} from "./compose_closed_ui";
|
2021-06-24 19:30:01 +02:00
|
|
|
import * as compose_error from "./compose_error";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as compose_fade from "./compose_fade";
|
|
|
|
import * as compose_state from "./compose_state";
|
2021-02-28 01:26:48 +01:00
|
|
|
import * as compose_ui from "./compose_ui";
|
2021-06-25 15:16:29 +02:00
|
|
|
import * as compose_validate from "./compose_validate";
|
2022-10-07 18:58:30 +02:00
|
|
|
import * as drafts from "./drafts";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as echo from "./echo";
|
2021-12-08 07:54:28 +01:00
|
|
|
import * as flatpickr from "./flatpickr";
|
2021-04-13 06:51:54 +02:00
|
|
|
import {$t, $t_html} from "./i18n";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as loading from "./loading";
|
|
|
|
import * as markdown from "./markdown";
|
2021-07-27 21:48:11 +02:00
|
|
|
import * as message_edit from "./message_edit";
|
2021-08-16 17:10:43 +02:00
|
|
|
import * as narrow from "./narrow";
|
2021-02-28 01:06:34 +01:00
|
|
|
import * as notifications from "./notifications";
|
2021-03-25 22:35:45 +01:00
|
|
|
import {page_params} from "./page_params";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as people from "./people";
|
2021-02-28 01:16:59 +01:00
|
|
|
import * as reminder from "./reminder";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as rendered_markdown from "./rendered_markdown";
|
2021-02-28 00:57:20 +01:00
|
|
|
import * as resize from "./resize";
|
2021-04-21 15:46:11 +02:00
|
|
|
import * as rows from "./rows";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as sent_messages from "./sent_messages";
|
2021-02-28 01:11:47 +01:00
|
|
|
import * as server_events from "./server_events";
|
2021-02-28 00:53:59 +01:00
|
|
|
import * as stream_data from "./stream_data";
|
2021-07-09 15:51:31 +02:00
|
|
|
import * as stream_settings_ui from "./stream_settings_ui";
|
2021-04-15 17:02:54 +02:00
|
|
|
import * as sub_store from "./sub_store";
|
2022-02-21 15:28:56 +01:00
|
|
|
import * as subscriber_api from "./subscriber_api";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as transmit from "./transmit";
|
2021-02-28 00:58:55 +01:00
|
|
|
import * as ui_report from "./ui_report";
|
2021-02-28 00:52:20 +01:00
|
|
|
import * as upload from "./upload";
|
2021-07-28 16:00:58 +02:00
|
|
|
import {user_settings} from "./user_settings";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as util from "./util";
|
|
|
|
import * as zcommand from "./zcommand";
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2018-11-30 00:48:13 +01:00
|
|
|
// Docs: https://zulip.readthedocs.io/en/latest/subsystems/sending-messages.html
|
2012-10-03 22:53:15 +02:00
|
|
|
|
2016-12-02 15:16:33 +01:00
|
|
|
/* Track the state of the @all warning. The user must acknowledge that they are spamming the entire
|
|
|
|
stream before the warning will go away. If they try to send before explicitly dismissing the
|
|
|
|
warning, they will get an error message too.
|
|
|
|
|
|
|
|
undefined: no @all/@everyone in message;
|
|
|
|
false: user typed @all/@everyone;
|
|
|
|
true: user clicked YES */
|
2016-11-09 19:34:07 +01:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
let uppy;
|
2016-06-04 04:31:35 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function compute_show_video_chat_button() {
|
2020-04-08 00:23:15 +02:00
|
|
|
const available_providers = page_params.realm_available_video_chat_providers;
|
|
|
|
if (page_params.realm_video_chat_provider === available_providers.disabled.id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
if (
|
|
|
|
page_params.realm_video_chat_provider === available_providers.jitsi_meet.id &&
|
|
|
|
!page_params.jitsi_server_url
|
|
|
|
) {
|
2020-04-08 00:23:15 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2020-04-08 00:23:15 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function update_video_chat_button_display() {
|
|
|
|
const show_video_chat_button = compute_show_video_chat_button();
|
2020-04-08 00:23:15 +02:00
|
|
|
$("#below-compose-content .video_link").toggle(show_video_chat_button);
|
|
|
|
$(".message-edit-feature-group .video_link").toggle(show_video_chat_button);
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2020-04-08 00:23:15 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function clear_invites() {
|
2022-08-20 02:51:13 +02:00
|
|
|
$(`#compose_banners .${compose_error.CLASSNAMES.recipient_not_subscribed}`).remove();
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2017-04-14 15:09:13 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function clear_private_stream_alert() {
|
2022-08-23 01:03:37 +02:00
|
|
|
$(`#compose_banners .${compose_error.CLASSNAMES.private_stream_warning}`).remove();
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2017-10-14 15:18:21 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function clear_preview_area() {
|
2017-11-26 20:37:44 +01:00
|
|
|
$("#compose-textarea").show();
|
2022-08-16 10:15:20 +02:00
|
|
|
$("#compose-textarea").trigger("focus");
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose .undo_markdown_preview").hide();
|
|
|
|
$("#compose .preview_message_area").hide();
|
|
|
|
$("#compose .preview_content").empty();
|
|
|
|
$("#compose .markdown_preview").show();
|
2022-01-31 11:57:30 +01:00
|
|
|
autosize.update($("#compose-textarea"));
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2016-08-29 22:37:27 +02:00
|
|
|
|
2022-09-26 21:01:43 +02:00
|
|
|
function update_fade() {
|
2017-04-15 01:15:59 +02:00
|
|
|
if (!compose_state.composing()) {
|
2013-08-01 17:47:48 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-03-12 21:46:54 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const msg_type = compose_state.get_message_type();
|
2021-07-27 21:48:11 +02:00
|
|
|
compose_validate.warn_if_topic_resolved();
|
2013-08-11 23:54:50 +02:00
|
|
|
compose_fade.set_focused_recipient(msg_type);
|
2018-04-22 16:25:46 +02:00
|
|
|
compose_fade.update_all();
|
2013-03-12 21:46:54 +01:00
|
|
|
}
|
|
|
|
|
2022-09-26 21:01:43 +02:00
|
|
|
export function update_on_recipient_change() {
|
2021-08-17 21:05:14 +02:00
|
|
|
update_fade();
|
2021-08-16 17:10:43 +02:00
|
|
|
compose_actions.update_narrow_to_recipient_visibility();
|
2021-08-17 21:05:14 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function abort_xhr() {
|
2017-06-30 00:57:46 +02:00
|
|
|
$("#compose-send-button").prop("disabled", false);
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy.cancelAll();
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2013-03-27 18:49:28 +01:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export const zoom_token_callbacks = new Map();
|
|
|
|
export const video_call_xhrs = new Map();
|
2019-11-16 09:26:28 +01:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function abort_video_callbacks(edit_message_id = "") {
|
|
|
|
zoom_token_callbacks.delete(edit_message_id);
|
|
|
|
if (video_call_xhrs.has(edit_message_id)) {
|
|
|
|
video_call_xhrs.get(edit_message_id).abort();
|
|
|
|
video_call_xhrs.delete(edit_message_id);
|
2019-11-16 09:26:28 +01:00
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2019-11-16 09:26:28 +01:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function empty_topic_placeholder() {
|
2021-04-13 06:51:54 +02:00
|
|
|
return $t({defaultMessage: "(no topic)"});
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2013-05-20 22:52:03 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function create_message_object() {
|
2018-11-04 17:04:17 +01:00
|
|
|
// Topics are optional, and we provide a placeholder if one isn't given.
|
2019-11-02 00:06:25 +01:00
|
|
|
let topic = compose_state.topic();
|
2018-11-15 18:34:16 +01:00
|
|
|
if (topic === "") {
|
2021-02-28 00:51:57 +01:00
|
|
|
topic = empty_topic_placeholder();
|
2013-05-20 22:52:03 +02:00
|
|
|
}
|
2013-10-23 16:46:18 +02:00
|
|
|
|
2013-12-19 17:03:08 +01:00
|
|
|
// Changes here must also be kept in sync with echo.try_deliver_locally
|
2019-11-02 00:06:25 +01:00
|
|
|
const message = {
|
2017-04-24 20:35:26 +02:00
|
|
|
type: compose_state.get_message_type(),
|
2020-07-29 22:15:14 +02:00
|
|
|
content: compose_state.message_content(),
|
2017-02-17 22:15:38 +01:00
|
|
|
sender_id: page_params.user_id,
|
2017-04-24 21:40:16 +02:00
|
|
|
queue_id: page_params.queue_id,
|
2020-07-15 01:29:15 +02:00
|
|
|
stream: "",
|
2017-02-17 22:15:38 +01:00
|
|
|
};
|
2020-07-15 01:29:15 +02:00
|
|
|
message.topic = "";
|
2013-04-17 19:34:20 +02:00
|
|
|
|
|
|
|
if (message.type === "private") {
|
|
|
|
// TODO: this should be collapsed with the code in composebox_typeahead.js
|
2019-12-02 17:53:55 +01:00
|
|
|
const recipient = compose_state.private_message_recipient();
|
2019-11-02 00:06:25 +01:00
|
|
|
const emails = util.extract_pm_recipients(recipient);
|
2017-02-24 23:51:23 +01:00
|
|
|
message.to = emails;
|
2017-02-24 16:20:25 +01:00
|
|
|
message.reply_to = recipient;
|
|
|
|
message.private_message_recipient = recipient;
|
2017-02-24 23:51:23 +01:00
|
|
|
message.to_user_ids = people.email_list_to_user_ids_string(emails);
|
2019-05-23 22:18:58 +02:00
|
|
|
|
|
|
|
// Note: The `undefined` case is for situations like the
|
|
|
|
// is_zephyr_mirror_realm case where users may be
|
|
|
|
// automatically created when you try to send a private
|
|
|
|
// message to their email address.
|
|
|
|
if (message.to_user_ids !== undefined) {
|
2019-06-06 21:49:01 +02:00
|
|
|
message.to = people.user_ids_string_to_ids_array(message.to_user_ids);
|
2019-05-23 22:18:58 +02:00
|
|
|
}
|
2013-04-17 19:34:20 +02:00
|
|
|
} else {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = compose_state.stream_name();
|
2017-02-23 04:08:05 +01:00
|
|
|
message.stream = stream_name;
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = stream_data.get_sub(stream_name);
|
2017-02-23 04:08:05 +01:00
|
|
|
if (sub) {
|
|
|
|
message.stream_id = sub.stream_id;
|
2020-02-07 21:18:20 +01:00
|
|
|
message.to = sub.stream_id;
|
|
|
|
} else {
|
|
|
|
// We should be validating streams in calling code. We'll
|
|
|
|
// try to fall back to stream_name here just in case the
|
|
|
|
// user started composing to the old stream name and
|
|
|
|
// manually entered the stream name, and it got past
|
|
|
|
// validation. We should try to kill this code off eventually.
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.error("Trying to send message with bad stream name: " + stream_name);
|
2020-02-07 21:18:20 +01:00
|
|
|
message.to = stream_name;
|
2017-02-23 04:08:05 +01:00
|
|
|
}
|
2020-02-19 02:44:17 +01:00
|
|
|
message.topic = topic;
|
2013-04-17 19:34:20 +02:00
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
2018-02-06 22:54:53 +01:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function clear_compose_box() {
|
2021-09-23 17:43:30 +02:00
|
|
|
/* Before clearing the compose box, we reset it to the
|
|
|
|
* default/normal size. Note that for locally echoed messages, we
|
|
|
|
* will have already done this action before echoing the message
|
|
|
|
* to avoid the compose box triggering "new message out of view"
|
|
|
|
* notifications incorrectly. */
|
|
|
|
if (compose_ui.is_full_size()) {
|
|
|
|
compose_ui.make_compose_box_original_size();
|
|
|
|
}
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#compose-textarea").val("").trigger("focus");
|
2021-07-10 19:33:45 +02:00
|
|
|
compose_validate.check_overflow_text();
|
2022-03-16 01:27:00 +01:00
|
|
|
compose_validate.clear_topic_resolved_warning();
|
2021-06-14 11:08:54 +02:00
|
|
|
$("#compose-textarea").removeData("draft-id");
|
2020-09-04 23:49:49 +02:00
|
|
|
compose_ui.autosize_textarea($("#compose-textarea"));
|
2017-11-26 19:58:36 +01:00
|
|
|
$("#compose-send-status").hide(0);
|
2022-08-19 21:36:33 +02:00
|
|
|
$("#compose_banners").empty();
|
2021-11-30 06:26:05 +01:00
|
|
|
compose_ui.hide_compose_spinner();
|
2013-12-03 20:59:23 +01:00
|
|
|
}
|
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function send_message_success(local_id, message_id, locally_echoed) {
|
2017-05-09 19:34:42 +02:00
|
|
|
if (!locally_echoed) {
|
2013-12-19 17:03:08 +01:00
|
|
|
clear_compose_box();
|
|
|
|
}
|
|
|
|
|
2017-07-14 19:30:23 +02:00
|
|
|
echo.reify_message_id(local_id, message_id);
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2017-07-13 15:01:02 +02:00
|
|
|
|
2021-03-24 21:44:43 +01:00
|
|
|
export function send_message(request = create_message_object()) {
|
2013-09-11 20:42:12 +02:00
|
|
|
if (request.type === "private") {
|
|
|
|
request.to = JSON.stringify(request.to);
|
|
|
|
} else {
|
|
|
|
request.to = JSON.stringify([request.to]);
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let local_id;
|
|
|
|
let locally_echoed;
|
2017-05-09 19:34:42 +02:00
|
|
|
|
2020-04-09 19:22:30 +02:00
|
|
|
const message = echo.try_deliver_locally(request);
|
|
|
|
if (message) {
|
sending messages: Extract sent_messages.js.
This commit extract send_messages.js to clean up code related
to the following things:
* sending data to /json/report_send_time
* restarting the event loop if events don't arrive on time
The code related to /json/report changes the following ways:
* We track the state almost completely in the new
send_messages.js module, with other modules just
making one-line calls.
* We no longer send "displayed" times to the servers, since
we were kind of lying about them anyway.
* We now explicitly track the state of each single sent
message in its own object.
* We now look up data related to the messages by local_id,
instead of message_id. The problem with message_id was
that is was mutable. Now we use local_id, and we extend
the local_id concept to messages that don't get rendered
client side. We no longer need to react to the
'message_id_changed' event to change our hash key.
* The code used to live in many places:
* various big chunks were scattered among compose.js,
and those were all moved or reduced to one-line
calls into the new module
* echo.js continues to make basically one-line calls,
but it no longer calls compose.report_as_received(),
nor does it set the "start" time.
* message_util.js used to report received events, but
only when they finally got drawn in the home view;
this code is gone now
The code related to restarting the event loop if events don't arrive
changes as follows:
* The timer now gets set up from within
send_messages.message_state.report_server_ack,
where we can easily inspect the current state of the
possibly-still-in-flight message.
* The code to confirm that an event was received happens now
in server_events.js, rather than later, so that we don't
falsely blame the event loop for a downstream bug. (Plus
it's easier to just do it one place.)
This change removes a fair amount of code from our node tests. Some
of the removal is good stuff related to us completing killing off
unnecessary code. Other removals are more expediency-driven, and
we should make another sweep at ramping up our coverage on compose.js,
with possibly a little more mocking of the new `send_messages` code
layer, since it's now abstracted better.
There is also some minor cleanup to echo.resend_message() in this
commit.
See #5968 for a detailed breakdown of the changes.
2017-07-30 12:56:46 +02:00
|
|
|
// We are rendering this message locally with an id
|
|
|
|
// like 92l99.01 that corresponds to a reasonable
|
|
|
|
// approximation of the id we'll get from the server
|
|
|
|
// in terms of sorting messages.
|
2020-04-09 19:22:30 +02:00
|
|
|
local_id = message.local_id;
|
sending messages: Extract sent_messages.js.
This commit extract send_messages.js to clean up code related
to the following things:
* sending data to /json/report_send_time
* restarting the event loop if events don't arrive on time
The code related to /json/report changes the following ways:
* We track the state almost completely in the new
send_messages.js module, with other modules just
making one-line calls.
* We no longer send "displayed" times to the servers, since
we were kind of lying about them anyway.
* We now explicitly track the state of each single sent
message in its own object.
* We now look up data related to the messages by local_id,
instead of message_id. The problem with message_id was
that is was mutable. Now we use local_id, and we extend
the local_id concept to messages that don't get rendered
client side. We no longer need to react to the
'message_id_changed' event to change our hash key.
* The code used to live in many places:
* various big chunks were scattered among compose.js,
and those were all moved or reduced to one-line
calls into the new module
* echo.js continues to make basically one-line calls,
but it no longer calls compose.report_as_received(),
nor does it set the "start" time.
* message_util.js used to report received events, but
only when they finally got drawn in the home view;
this code is gone now
The code related to restarting the event loop if events don't arrive
changes as follows:
* The timer now gets set up from within
send_messages.message_state.report_server_ack,
where we can easily inspect the current state of the
possibly-still-in-flight message.
* The code to confirm that an event was received happens now
in server_events.js, rather than later, so that we don't
falsely blame the event loop for a downstream bug. (Plus
it's easier to just do it one place.)
This change removes a fair amount of code from our node tests. Some
of the removal is good stuff related to us completing killing off
unnecessary code. Other removals are more expediency-driven, and
we should make another sweep at ramping up our coverage on compose.js,
with possibly a little more mocking of the new `send_messages` code
layer, since it's now abstracted better.
There is also some minor cleanup to echo.resend_message() in this
commit.
See #5968 for a detailed breakdown of the changes.
2017-07-30 12:56:46 +02:00
|
|
|
locally_echoed = true;
|
|
|
|
} else {
|
|
|
|
// We are not rendering this message locally, but we
|
|
|
|
// track the message's life cycle with an id like
|
|
|
|
// loc-1, loc-2, loc-3,etc.
|
|
|
|
locally_echoed = false;
|
|
|
|
local_id = sent_messages.get_new_local_id();
|
2013-12-19 17:03:08 +01:00
|
|
|
}
|
2017-07-14 19:30:23 +02:00
|
|
|
|
sending messages: Extract sent_messages.js.
This commit extract send_messages.js to clean up code related
to the following things:
* sending data to /json/report_send_time
* restarting the event loop if events don't arrive on time
The code related to /json/report changes the following ways:
* We track the state almost completely in the new
send_messages.js module, with other modules just
making one-line calls.
* We no longer send "displayed" times to the servers, since
we were kind of lying about them anyway.
* We now explicitly track the state of each single sent
message in its own object.
* We now look up data related to the messages by local_id,
instead of message_id. The problem with message_id was
that is was mutable. Now we use local_id, and we extend
the local_id concept to messages that don't get rendered
client side. We no longer need to react to the
'message_id_changed' event to change our hash key.
* The code used to live in many places:
* various big chunks were scattered among compose.js,
and those were all moved or reduced to one-line
calls into the new module
* echo.js continues to make basically one-line calls,
but it no longer calls compose.report_as_received(),
nor does it set the "start" time.
* message_util.js used to report received events, but
only when they finally got drawn in the home view;
this code is gone now
The code related to restarting the event loop if events don't arrive
changes as follows:
* The timer now gets set up from within
send_messages.message_state.report_server_ack,
where we can easily inspect the current state of the
possibly-still-in-flight message.
* The code to confirm that an event was received happens now
in server_events.js, rather than later, so that we don't
falsely blame the event loop for a downstream bug. (Plus
it's easier to just do it one place.)
This change removes a fair amount of code from our node tests. Some
of the removal is good stuff related to us completing killing off
unnecessary code. Other removals are more expediency-driven, and
we should make another sweep at ramping up our coverage on compose.js,
with possibly a little more mocking of the new `send_messages` code
layer, since it's now abstracted better.
There is also some minor cleanup to echo.resend_message() in this
commit.
See #5968 for a detailed breakdown of the changes.
2017-07-30 12:56:46 +02:00
|
|
|
request.local_id = local_id;
|
|
|
|
|
|
|
|
sent_messages.start_tracking_message({
|
2020-07-20 22:18:43 +02:00
|
|
|
local_id,
|
|
|
|
locally_echoed,
|
sending messages: Extract sent_messages.js.
This commit extract send_messages.js to clean up code related
to the following things:
* sending data to /json/report_send_time
* restarting the event loop if events don't arrive on time
The code related to /json/report changes the following ways:
* We track the state almost completely in the new
send_messages.js module, with other modules just
making one-line calls.
* We no longer send "displayed" times to the servers, since
we were kind of lying about them anyway.
* We now explicitly track the state of each single sent
message in its own object.
* We now look up data related to the messages by local_id,
instead of message_id. The problem with message_id was
that is was mutable. Now we use local_id, and we extend
the local_id concept to messages that don't get rendered
client side. We no longer need to react to the
'message_id_changed' event to change our hash key.
* The code used to live in many places:
* various big chunks were scattered among compose.js,
and those were all moved or reduced to one-line
calls into the new module
* echo.js continues to make basically one-line calls,
but it no longer calls compose.report_as_received(),
nor does it set the "start" time.
* message_util.js used to report received events, but
only when they finally got drawn in the home view;
this code is gone now
The code related to restarting the event loop if events don't arrive
changes as follows:
* The timer now gets set up from within
send_messages.message_state.report_server_ack,
where we can easily inspect the current state of the
possibly-still-in-flight message.
* The code to confirm that an event was received happens now
in server_events.js, rather than later, so that we don't
falsely blame the event loop for a downstream bug. (Plus
it's easier to just do it one place.)
This change removes a fair amount of code from our node tests. Some
of the removal is good stuff related to us completing killing off
unnecessary code. Other removals are more expediency-driven, and
we should make another sweep at ramping up our coverage on compose.js,
with possibly a little more mocking of the new `send_messages` code
layer, since it's now abstracted better.
There is also some minor cleanup to echo.resend_message() in this
commit.
See #5968 for a detailed breakdown of the changes.
2017-07-30 12:56:46 +02:00
|
|
|
});
|
2013-12-19 17:03:08 +01:00
|
|
|
|
2017-07-17 16:52:57 +02:00
|
|
|
request.locally_echoed = locally_echoed;
|
|
|
|
|
2013-11-06 18:57:38 +01:00
|
|
|
function success(data) {
|
2021-02-28 00:51:57 +01:00
|
|
|
send_message_success(local_id, data.id, locally_echoed);
|
2013-12-19 17:03:08 +01:00
|
|
|
}
|
2013-11-04 23:58:51 +01:00
|
|
|
|
2013-12-19 17:03:08 +01:00
|
|
|
function error(response) {
|
|
|
|
// If we're not local echo'ing messages, or if this message was not
|
|
|
|
// locally echoed, show error in compose box
|
sending messages: Extract sent_messages.js.
This commit extract send_messages.js to clean up code related
to the following things:
* sending data to /json/report_send_time
* restarting the event loop if events don't arrive on time
The code related to /json/report changes the following ways:
* We track the state almost completely in the new
send_messages.js module, with other modules just
making one-line calls.
* We no longer send "displayed" times to the servers, since
we were kind of lying about them anyway.
* We now explicitly track the state of each single sent
message in its own object.
* We now look up data related to the messages by local_id,
instead of message_id. The problem with message_id was
that is was mutable. Now we use local_id, and we extend
the local_id concept to messages that don't get rendered
client side. We no longer need to react to the
'message_id_changed' event to change our hash key.
* The code used to live in many places:
* various big chunks were scattered among compose.js,
and those were all moved or reduced to one-line
calls into the new module
* echo.js continues to make basically one-line calls,
but it no longer calls compose.report_as_received(),
nor does it set the "start" time.
* message_util.js used to report received events, but
only when they finally got drawn in the home view;
this code is gone now
The code related to restarting the event loop if events don't arrive
changes as follows:
* The timer now gets set up from within
send_messages.message_state.report_server_ack,
where we can easily inspect the current state of the
possibly-still-in-flight message.
* The code to confirm that an event was received happens now
in server_events.js, rather than later, so that we don't
falsely blame the event loop for a downstream bug. (Plus
it's easier to just do it one place.)
This change removes a fair amount of code from our node tests. Some
of the removal is good stuff related to us completing killing off
unnecessary code. Other removals are more expediency-driven, and
we should make another sweep at ramping up our coverage on compose.js,
with possibly a little more mocking of the new `send_messages` code
layer, since it's now abstracted better.
There is also some minor cleanup to echo.resend_message() in this
commit.
See #5968 for a detailed breakdown of the changes.
2017-07-30 12:56:46 +02:00
|
|
|
if (!locally_echoed) {
|
2022-08-19 22:24:06 +02:00
|
|
|
compose_error.show_error_message(
|
|
|
|
response,
|
|
|
|
compose_error.CLASSNAMES.generic_compose_error,
|
|
|
|
$("#compose-textarea"),
|
|
|
|
);
|
2013-12-19 17:03:08 +01:00
|
|
|
return;
|
2013-12-03 20:59:23 +01:00
|
|
|
}
|
2013-10-31 15:56:30 +01:00
|
|
|
|
2020-04-09 17:43:30 +02:00
|
|
|
echo.message_send_error(message.id, response);
|
2022-10-07 18:58:30 +02:00
|
|
|
|
|
|
|
// We might not have updated the draft count because we assumed the
|
|
|
|
// message would send. Ensure that the displayed count is correct.
|
|
|
|
drafts.sync_count();
|
2013-09-11 20:42:12 +02:00
|
|
|
}
|
|
|
|
|
2018-02-20 13:08:50 +01:00
|
|
|
transmit.send_message(request, success, error);
|
2020-07-15 00:34:28 +02:00
|
|
|
server_events.assert_get_events_running(
|
|
|
|
"Restarting get_events because it was not running during send",
|
|
|
|
);
|
2013-12-03 20:59:23 +01:00
|
|
|
|
2017-05-09 19:34:42 +02:00
|
|
|
if (locally_echoed) {
|
2013-12-03 20:59:23 +01:00
|
|
|
clear_compose_box();
|
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2012-10-29 18:06:53 +01:00
|
|
|
|
2022-08-12 11:37:47 +02:00
|
|
|
export function enter_with_preview_open(ctrl_pressed = false) {
|
|
|
|
if (
|
|
|
|
(user_settings.enter_sends && !ctrl_pressed) ||
|
|
|
|
(!user_settings.enter_sends && ctrl_pressed)
|
|
|
|
) {
|
|
|
|
// If this enter should send, we attempt to send the message.
|
2021-02-28 00:51:57 +01:00
|
|
|
finish();
|
2017-02-19 07:43:02 +01:00
|
|
|
} else {
|
2022-08-16 23:34:11 +02:00
|
|
|
// Otherwise, we return to the normal compose state.
|
|
|
|
clear_preview_area();
|
2017-02-19 07:43:02 +01:00
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2017-02-19 07:43:02 +01:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function finish() {
|
|
|
|
clear_preview_area();
|
|
|
|
clear_invites();
|
|
|
|
clear_private_stream_alert();
|
2018-01-04 21:31:23 +01:00
|
|
|
notifications.clear_compose_notifications();
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const message_content = compose_state.message_content();
|
2018-06-02 13:59:02 +02:00
|
|
|
|
|
|
|
// Skip normal validation for zcommands, since they aren't
|
|
|
|
// actual messages with recipients; users only send them
|
|
|
|
// from the compose box for convenience sake.
|
|
|
|
if (zcommand.process(message_content)) {
|
2021-02-28 00:51:57 +01:00
|
|
|
do_post_send_tasks();
|
2018-06-02 13:59:02 +02:00
|
|
|
clear_compose_box();
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2018-06-02 13:59:02 +02:00
|
|
|
}
|
|
|
|
|
2021-11-30 06:26:05 +01:00
|
|
|
compose_ui.show_compose_spinner();
|
|
|
|
|
2021-06-25 15:16:29 +02:00
|
|
|
if (!compose_validate.validate()) {
|
2021-11-30 06:26:05 +01:00
|
|
|
// If the message failed validation, hide compose spinner.
|
|
|
|
compose_ui.hide_compose_spinner();
|
2012-10-29 22:37:34 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-04 21:31:23 +01:00
|
|
|
|
2018-02-06 22:54:53 +01:00
|
|
|
if (reminder.is_deferred_delivery(message_content)) {
|
|
|
|
reminder.schedule_message();
|
2018-01-04 21:31:23 +01:00
|
|
|
} else {
|
2021-02-28 00:51:57 +01:00
|
|
|
send_message();
|
2018-01-04 21:31:23 +01:00
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
do_post_send_tasks();
|
2018-06-02 13:38:40 +02:00
|
|
|
return true;
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2018-06-02 13:38:40 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function do_post_send_tasks() {
|
|
|
|
clear_preview_area();
|
2012-11-07 19:59:35 +01:00
|
|
|
// TODO: Do we want to fire the event even if the send failed due
|
|
|
|
// to a server-side error?
|
2020-12-11 04:26:23 +01:00
|
|
|
$(document).trigger("compose_finished.zulip");
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2012-10-18 20:16:56 +02:00
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function update_email(user_id, new_email) {
|
2019-12-02 17:53:55 +01:00
|
|
|
let reply_to = compose_state.private_message_recipient();
|
2017-02-10 20:03:23 +01:00
|
|
|
|
|
|
|
if (!reply_to) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reply_to = people.update_email_in_reply_to(reply_to, user_id, new_email);
|
|
|
|
|
2019-12-02 17:53:55 +01:00
|
|
|
compose_state.private_message_recipient(reply_to);
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2013-10-10 16:43:49 +02:00
|
|
|
|
2019-01-23 08:04:53 +01:00
|
|
|
function insert_video_call_url(url, target_textarea) {
|
2021-04-13 06:51:54 +02:00
|
|
|
const link_text = $t({defaultMessage: "Click to join video call"});
|
2020-07-25 02:56:31 +02:00
|
|
|
compose_ui.insert_syntax_and_focus(`[${link_text}](${url})`, target_textarea);
|
2018-12-28 20:45:54 +01:00
|
|
|
}
|
2018-04-24 22:40:00 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
export function render_and_show_preview($preview_spinner, $preview_content_box, content) {
|
2019-02-05 15:21:30 +01:00
|
|
|
function show_preview(rendered_content, raw_content) {
|
|
|
|
// content is passed to check for status messages ("/me ...")
|
|
|
|
// and will be undefined in case of errors
|
2019-11-02 00:06:25 +01:00
|
|
|
let rendered_preview_html;
|
2020-07-15 00:34:28 +02:00
|
|
|
if (raw_content !== undefined && markdown.is_status_message(raw_content)) {
|
2019-02-05 15:21:30 +01:00
|
|
|
// Handle previews of /me messages
|
2020-07-15 00:34:28 +02:00
|
|
|
rendered_preview_html =
|
|
|
|
"<p><strong>" +
|
2021-02-03 23:48:26 +01:00
|
|
|
_.escape(page_params.full_name) +
|
2020-07-15 00:34:28 +02:00
|
|
|
"</strong>" +
|
|
|
|
rendered_content.slice("<p>/me".length);
|
2019-02-05 15:21:30 +01:00
|
|
|
} else {
|
|
|
|
rendered_preview_html = rendered_content;
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$preview_content_box.html(util.clean_user_content_links(rendered_preview_html));
|
|
|
|
rendered_markdown.update_elements($preview_content_box);
|
2019-02-05 15:21:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (content.length === 0) {
|
2021-04-14 00:59:25 +02:00
|
|
|
show_preview($t_html({defaultMessage: "Nothing to preview"}));
|
2019-02-05 15:21:30 +01:00
|
|
|
} else {
|
2020-07-16 23:29:01 +02:00
|
|
|
if (markdown.contains_backend_only_syntax(content)) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $spinner = $preview_spinner.expectOne();
|
|
|
|
loading.make_indicator($spinner);
|
2019-02-05 15:21:30 +01:00
|
|
|
} else {
|
2020-06-29 23:20:51 +02:00
|
|
|
// For messages that don't appear to contain syntax that
|
2020-08-11 01:47:49 +02:00
|
|
|
// is only supported by our backend Markdown processor, we
|
|
|
|
// render using the frontend Markdown processor (but still
|
2020-06-29 23:20:51 +02:00
|
|
|
// render server-side to ensure the preview is accurate;
|
|
|
|
// if the `markdown.contains_backend_only_syntax` logic is
|
|
|
|
// wrong, users will see a brief flicker of the locally
|
|
|
|
// echoed frontend rendering before receiving the
|
|
|
|
// authoritative backend rendering from the server).
|
2019-11-02 00:06:25 +01:00
|
|
|
const message_obj = {
|
2019-02-05 15:21:30 +01:00
|
|
|
raw_content: content,
|
|
|
|
};
|
|
|
|
markdown.apply_markdown(message_obj);
|
|
|
|
}
|
|
|
|
channel.post({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/messages/render",
|
2020-07-20 22:18:43 +02:00
|
|
|
data: {content},
|
|
|
|
success(response_data) {
|
2019-02-05 15:21:30 +01:00
|
|
|
if (markdown.contains_backend_only_syntax(content)) {
|
2022-01-25 11:36:19 +01:00
|
|
|
loading.destroy_indicator($preview_spinner);
|
2019-02-05 15:21:30 +01:00
|
|
|
}
|
|
|
|
show_preview(response_data.rendered, content);
|
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error() {
|
2019-02-05 15:21:30 +01:00
|
|
|
if (markdown.contains_backend_only_syntax(content)) {
|
2022-01-25 11:36:19 +01:00
|
|
|
loading.destroy_indicator($preview_spinner);
|
2019-02-05 15:21:30 +01:00
|
|
|
}
|
2021-04-14 00:59:25 +02:00
|
|
|
show_preview($t_html({defaultMessage: "Failed to generate preview"}));
|
2019-02-05 15:21:30 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2019-02-05 15:21:30 +01:00
|
|
|
|
2021-05-19 20:08:09 +02:00
|
|
|
export function initialize() {
|
2021-02-28 00:51:57 +01:00
|
|
|
$("#below-compose-content .video_link").toggle(compute_show_video_chat_button());
|
2020-07-15 00:34:28 +02:00
|
|
|
$(
|
|
|
|
"#stream_message_recipient_stream,#stream_message_recipient_topic,#private_message_recipient",
|
2021-08-17 21:05:14 +02:00
|
|
|
).on("keyup", update_on_recipient_change);
|
2020-07-15 00:34:28 +02:00
|
|
|
$(
|
|
|
|
"#stream_message_recipient_stream,#stream_message_recipient_topic,#private_message_recipient",
|
2021-08-17 21:05:14 +02:00
|
|
|
).on("change", update_on_recipient_change);
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-textarea").on("keydown", (event) => {
|
2021-07-28 18:23:34 +02:00
|
|
|
compose_ui.handle_keydown(event, $("#compose-textarea").expectOne());
|
2018-08-11 06:43:38 +02:00
|
|
|
});
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-textarea").on("keyup", (event) => {
|
2021-07-28 18:23:34 +02:00
|
|
|
compose_ui.handle_keyup(event, $("#compose-textarea").expectOne());
|
2018-07-18 05:59:55 +02:00
|
|
|
});
|
2017-06-26 21:29:08 +02:00
|
|
|
|
2021-07-07 12:13:19 +02:00
|
|
|
$("#compose-textarea").on("input propertychange", () => {
|
2022-03-16 01:31:01 +01:00
|
|
|
compose_validate.warn_if_topic_resolved(false);
|
2022-07-29 14:30:39 +02:00
|
|
|
const compose_text_length = compose_validate.check_overflow_text();
|
|
|
|
// Change compose close button tooltip as per condition.
|
|
|
|
// We save compose text in draft only if its length is > 2.
|
|
|
|
if (compose_text_length > 2) {
|
|
|
|
$("#compose_close").attr("data-tooltip-template-id", "compose_close_and_save_tooltip");
|
|
|
|
} else {
|
|
|
|
$("#compose_close").attr("data-tooltip-template-id", "compose_close_tooltip");
|
|
|
|
}
|
2021-07-07 12:13:19 +02:00
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#compose form").on("submit", (e) => {
|
2018-05-06 21:43:17 +02:00
|
|
|
e.preventDefault();
|
2021-02-28 00:51:57 +01:00
|
|
|
finish();
|
2017-06-26 21:29:08 +02:00
|
|
|
});
|
|
|
|
|
2017-11-26 20:37:44 +01:00
|
|
|
resize.watch_manual_resize("#compose-textarea");
|
2013-05-03 22:16:52 +02:00
|
|
|
|
2022-02-14 17:43:32 +01:00
|
|
|
// Update position of scroll to bottom button based on
|
|
|
|
// height of the compose box.
|
|
|
|
const update_scroll_to_bottom_position = new ResizeObserver(() => {
|
|
|
|
$("#scroll-to-bottom-button-container").css("bottom", $("#compose").outerHeight());
|
|
|
|
});
|
|
|
|
update_scroll_to_bottom_position.observe(document.querySelector("#compose"));
|
|
|
|
|
2021-04-20 16:22:50 +02:00
|
|
|
upload.feature_check($("#compose .compose_upload_file"));
|
2013-08-26 19:00:38 +02:00
|
|
|
|
2022-08-20 21:07:32 +02:00
|
|
|
$("#compose_banners").on(
|
|
|
|
"click",
|
|
|
|
`.${compose_error.CLASSNAMES.wildcard_warning} .compose_banner_action_button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
compose_validate.clear_wildcard_warnings();
|
|
|
|
compose_validate.set_user_acknowledged_wildcard_flag(true);
|
|
|
|
finish();
|
|
|
|
},
|
|
|
|
);
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-23 00:12:29 +02:00
|
|
|
const user_not_subscribed_classname = `.${compose_error.CLASSNAMES.user_not_subscribed}`;
|
|
|
|
$("#compose_banners").on(
|
|
|
|
"click",
|
|
|
|
`${user_not_subscribed_classname} .compose_banner_action_button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
2018-04-07 04:53:32 +02:00
|
|
|
|
2022-08-23 00:12:29 +02:00
|
|
|
const stream_name = $("#stream_message_recipient_stream").val();
|
|
|
|
if (stream_name === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const sub = stream_data.get_sub(stream_name);
|
|
|
|
stream_settings_ui.sub_or_unsub(sub);
|
|
|
|
$(user_not_subscribed_classname).remove();
|
|
|
|
},
|
|
|
|
);
|
2018-04-07 04:53:32 +02:00
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
$("#compose_banners").on(
|
|
|
|
"click",
|
|
|
|
`.${compose_error.CLASSNAMES.topic_resolved} .compose_banner_action_button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
2021-07-27 21:48:11 +02:00
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
const $target = $(event.target).parents(".compose_banner");
|
|
|
|
const stream_id = Number.parseInt($target.attr("data-stream-id"), 10);
|
|
|
|
const topic_name = $target.attr("data-topic-name");
|
2021-07-27 21:48:11 +02:00
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
message_edit.with_first_message_id(stream_id, topic_name, (message_id) => {
|
|
|
|
message_edit.toggle_resolve_topic(message_id, topic_name);
|
|
|
|
compose_validate.clear_topic_resolved_warning(true);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2021-07-27 21:48:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
$("#compose_banners").on(
|
|
|
|
"click",
|
|
|
|
`.${compose_error.CLASSNAMES.recipient_not_subscribed} .compose_banner_action_button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
const $invite_row = $(event.target).parents(".compose_banner");
|
2020-06-04 19:41:45 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
const user_id = Number.parseInt($invite_row.data("user-id"), 10);
|
|
|
|
const stream_id = Number.parseInt($invite_row.data("stream-id"), 10);
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
function success() {
|
|
|
|
$invite_row.remove();
|
2017-03-04 21:42:17 +01:00
|
|
|
}
|
2017-03-04 23:02:59 +01:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
function failure(error_msg) {
|
|
|
|
clear_invites();
|
|
|
|
compose_error.show_error_message(
|
|
|
|
error_msg,
|
|
|
|
compose_error.CLASSNAMES.generic_compose_error,
|
|
|
|
$("#compose-textarea"),
|
|
|
|
);
|
|
|
|
$(event.target).prop("disabled", true);
|
|
|
|
}
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
function xhr_failure(xhr) {
|
|
|
|
const error = JSON.parse(xhr.responseText);
|
|
|
|
failure(error.msg);
|
|
|
|
}
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
const sub = sub_store.get(stream_id);
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-20 02:51:13 +02:00
|
|
|
subscriber_api.add_user_ids_to_stream([user_id], sub, success, xhr_failure);
|
|
|
|
},
|
|
|
|
);
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
for (const classname of Object.values(compose_error.CLASSNAMES)) {
|
|
|
|
const classname_selector = `.${classname}`;
|
|
|
|
$("#compose_banners").on(
|
|
|
|
"click",
|
|
|
|
`${classname_selector} .compose_banner_close_button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
$(event.target).parents(classname_selector).remove();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-08-11 19:57:44 +02:00
|
|
|
// Click event binding for "Attach files" button
|
|
|
|
// Triggers a click on a hidden file input field
|
|
|
|
|
2021-04-20 16:22:50 +02:00
|
|
|
$("#compose").on("click", ".compose_upload_file", (e) => {
|
2013-08-11 19:57:44 +02:00
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-04-20 16:14:55 +02:00
|
|
|
$("#compose .file_input").trigger("click");
|
2017-10-06 21:36:39 +02:00
|
|
|
});
|
2013-08-11 19:57:44 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("body").on("click", ".video_link", (e) => {
|
2017-08-11 01:51:48 +02:00
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
2017-08-11 01:51:48 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
let $target_textarea;
|
2021-04-21 15:46:11 +02:00
|
|
|
let edit_message_id;
|
2021-12-03 06:24:52 +01:00
|
|
|
if ($(e.target).parents(".message_edit_form").length === 1) {
|
2021-04-21 15:46:11 +02:00
|
|
|
edit_message_id = rows.id($(e.target).parents(".message_row"));
|
2022-01-25 11:36:19 +01:00
|
|
|
$target_textarea = $(`#edit_form_${CSS.escape(edit_message_id)} .message_edit_content`);
|
2019-01-23 08:04:53 +01:00
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let video_call_link;
|
|
|
|
const available_providers = page_params.realm_available_video_chat_providers;
|
2021-02-28 00:51:57 +01:00
|
|
|
const show_video_chat_button = compute_show_video_chat_button();
|
2020-04-08 00:23:15 +02:00
|
|
|
|
|
|
|
if (!show_video_chat_button) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-09 09:54:38 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
if (
|
|
|
|
available_providers.zoom &&
|
|
|
|
page_params.realm_video_chat_provider === available_providers.zoom.id
|
|
|
|
) {
|
2021-02-28 00:51:57 +01:00
|
|
|
abort_video_callbacks(edit_message_id);
|
2019-11-16 09:26:28 +01:00
|
|
|
const key = edit_message_id || "";
|
|
|
|
|
|
|
|
const make_zoom_call = () => {
|
2021-02-28 00:51:57 +01:00
|
|
|
video_call_xhrs.set(
|
2020-07-15 00:34:28 +02:00
|
|
|
key,
|
|
|
|
channel.post({
|
|
|
|
url: "/json/calls/zoom/create",
|
|
|
|
success(res) {
|
2021-02-28 00:51:57 +01:00
|
|
|
video_call_xhrs.delete(key);
|
2022-01-25 11:36:19 +01:00
|
|
|
insert_video_call_url(res.url, $target_textarea);
|
2020-07-15 00:34:28 +02:00
|
|
|
},
|
|
|
|
error(xhr, status) {
|
2021-02-28 00:51:57 +01:00
|
|
|
video_call_xhrs.delete(key);
|
2020-07-15 00:34:28 +02:00
|
|
|
if (
|
|
|
|
status === "error" &&
|
|
|
|
xhr.responseJSON &&
|
|
|
|
xhr.responseJSON.code === "INVALID_ZOOM_TOKEN"
|
|
|
|
) {
|
|
|
|
page_params.has_zoom_token = false;
|
|
|
|
}
|
|
|
|
if (status !== "abort") {
|
|
|
|
ui_report.generic_embed_error(
|
2021-04-13 05:18:25 +02:00
|
|
|
$t_html({defaultMessage: "Failed to create video call."}),
|
2020-07-15 00:34:28 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
2019-11-16 09:26:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (page_params.has_zoom_token) {
|
|
|
|
make_zoom_call();
|
|
|
|
} else {
|
2021-02-28 00:51:57 +01:00
|
|
|
zoom_token_callbacks.set(key, make_zoom_call);
|
2019-11-16 09:26:28 +01:00
|
|
|
window.open(
|
2020-07-15 00:34:28 +02:00
|
|
|
window.location.protocol + "//" + window.location.host + "/calls/zoom/register",
|
2019-11-16 09:26:28 +01:00
|
|
|
"_blank",
|
2020-07-02 02:16:03 +02:00
|
|
|
"width=800,height=500,noopener,noreferrer",
|
2019-11-16 09:26:28 +01:00
|
|
|
);
|
|
|
|
}
|
2020-04-27 22:41:31 +02:00
|
|
|
} else if (
|
2020-07-15 00:34:28 +02:00
|
|
|
available_providers.big_blue_button &&
|
|
|
|
page_params.realm_video_chat_provider === available_providers.big_blue_button.id
|
2020-06-23 02:29:27 +02:00
|
|
|
) {
|
2020-10-20 19:25:34 +02:00
|
|
|
const meeting_name = get_recipient_label() + " meeting";
|
2020-04-27 22:41:31 +02:00
|
|
|
channel.get({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/calls/bigbluebutton/create",
|
2020-10-20 19:25:34 +02:00
|
|
|
data: {
|
|
|
|
meeting_name,
|
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
success(response) {
|
2022-01-25 11:36:19 +01:00
|
|
|
insert_video_call_url(response.url, $target_textarea);
|
2020-04-27 22:41:31 +02:00
|
|
|
},
|
|
|
|
});
|
2018-04-23 14:51:30 +02:00
|
|
|
} else {
|
2020-10-28 11:35:48 +01:00
|
|
|
const video_call_id = util.random_int(100000000000000, 999999999999999);
|
2020-07-16 23:29:01 +02:00
|
|
|
video_call_link = page_params.jitsi_server_url + "/" + video_call_id;
|
2022-01-25 11:36:19 +01:00
|
|
|
insert_video_call_url(video_call_link, $target_textarea);
|
2018-04-23 14:51:30 +02:00
|
|
|
}
|
2017-08-11 01:51:48 +02:00
|
|
|
});
|
|
|
|
|
2021-10-26 11:57:04 +02:00
|
|
|
$("body").on("click", ".time_pick", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-12-05 21:54:37 +01:00
|
|
|
$(e.target).toggleClass("has_popover");
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
let $target_textarea;
|
2021-10-26 11:57:04 +02:00
|
|
|
let edit_message_id;
|
2021-12-03 07:19:24 +01:00
|
|
|
const compose_click_target = compose_ui.get_compose_click_target(e);
|
|
|
|
if ($(compose_click_target).parents(".message_edit_form").length === 1) {
|
|
|
|
edit_message_id = rows.id($(compose_click_target).parents(".message_row"));
|
2022-01-25 11:36:19 +01:00
|
|
|
$target_textarea = $(`#edit_form_${CSS.escape(edit_message_id)} .message_edit_content`);
|
2021-12-03 07:19:24 +01:00
|
|
|
} else {
|
2022-01-25 11:36:19 +01:00
|
|
|
$target_textarea = $(compose_click_target).closest("form").find("textarea");
|
2021-10-26 11:57:04 +02:00
|
|
|
}
|
|
|
|
|
2021-12-05 21:54:37 +01:00
|
|
|
if ($(e.target).hasClass("has_popover")) {
|
2021-10-26 11:57:04 +02:00
|
|
|
const on_timestamp_selection = (val) => {
|
|
|
|
const timestr = `<time:${val}> `;
|
2022-01-25 11:36:19 +01:00
|
|
|
compose_ui.insert_syntax_and_focus(timestr, $target_textarea);
|
2021-10-26 11:57:04 +02:00
|
|
|
};
|
|
|
|
|
2021-12-08 07:54:28 +01:00
|
|
|
flatpickr.show_flatpickr(
|
2021-12-03 07:19:24 +01:00
|
|
|
$(compose_click_target)[0],
|
2021-10-26 11:57:04 +02:00
|
|
|
on_timestamp_selection,
|
|
|
|
new Date(),
|
|
|
|
{
|
2022-02-08 00:13:33 +01:00
|
|
|
// place the time picker above the icon and center it horizontally
|
2021-10-26 11:57:04 +02:00
|
|
|
position: "above center",
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose").on("click", ".markdown_preview", (e) => {
|
2016-08-29 22:37:27 +02:00
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const content = $("#compose-textarea").val();
|
2017-11-26 20:37:44 +01:00
|
|
|
$("#compose-textarea").hide();
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose .markdown_preview").hide();
|
|
|
|
$("#compose .undo_markdown_preview").show();
|
2022-08-16 15:42:26 +02:00
|
|
|
$("#compose .undo_markdown_preview").trigger("focus");
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose .preview_message_area").show();
|
|
|
|
|
|
|
|
render_and_show_preview(
|
|
|
|
$("#compose .markdown_preview_spinner"),
|
|
|
|
$("#compose .preview_content"),
|
|
|
|
content,
|
|
|
|
);
|
2016-08-29 22:37:27 +02:00
|
|
|
});
|
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose").on("click", ".undo_markdown_preview", (e) => {
|
2016-08-29 22:37:27 +02:00
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
clear_preview_area();
|
2016-08-29 22:37:27 +02:00
|
|
|
});
|
|
|
|
|
2021-05-17 13:15:11 +02:00
|
|
|
$("#compose").on("click", ".expand_composebox_button", (e) => {
|
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-05-17 13:15:11 +02:00
|
|
|
compose_ui.make_compose_box_full_size();
|
|
|
|
});
|
|
|
|
|
2021-08-16 17:10:43 +02:00
|
|
|
$("#compose").on("click", ".narrow_to_compose_recipients", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
narrow.to_compose_target();
|
|
|
|
});
|
|
|
|
|
2021-05-17 13:15:11 +02:00
|
|
|
$("#compose").on("click", ".collapse_composebox_button", (e) => {
|
|
|
|
e.preventDefault();
|
2021-12-03 06:29:43 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-05-17 13:15:11 +02:00
|
|
|
compose_ui.make_compose_box_original_size();
|
|
|
|
});
|
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy = upload.setup_upload({
|
|
|
|
mode: "compose",
|
|
|
|
});
|
2014-01-14 17:21:41 +01:00
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#compose-textarea").on("focus", () => {
|
2020-07-27 16:07:38 +02:00
|
|
|
compose_actions.update_placeholder_text();
|
2019-07-23 20:13:43 +02:00
|
|
|
});
|
|
|
|
|
2020-09-01 17:46:14 +02:00
|
|
|
$("#stream_message_recipient_topic").on("focus", () => {
|
|
|
|
compose_actions.update_placeholder_text();
|
|
|
|
});
|
|
|
|
|
2021-11-12 06:34:23 +01:00
|
|
|
$("body").on("click", ".formatting_button", (e) => {
|
2021-12-03 07:19:24 +01:00
|
|
|
const $compose_click_target = $(compose_ui.get_compose_click_target(e));
|
2022-01-25 11:36:19 +01:00
|
|
|
const $textarea = $compose_click_target.closest("form").find("textarea");
|
2021-12-03 07:19:24 +01:00
|
|
|
const format_type = $(e.target).attr("data-format-type");
|
2022-01-25 11:36:19 +01:00
|
|
|
compose_ui.format_text($textarea, format_type);
|
|
|
|
$textarea.trigger("focus");
|
2021-11-12 06:34:23 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
2014-01-14 17:21:41 +01:00
|
|
|
if (page_params.narrow !== undefined) {
|
2014-01-17 00:05:35 +01:00
|
|
|
if (page_params.narrow_topic !== undefined) {
|
2018-11-15 19:14:16 +01:00
|
|
|
compose_actions.start("stream", {topic: page_params.narrow_topic});
|
2014-01-17 00:05:35 +01:00
|
|
|
} else {
|
2017-03-18 17:41:47 +01:00
|
|
|
compose_actions.start("stream", {});
|
2014-01-17 00:05:35 +01:00
|
|
|
}
|
2014-01-14 17:21:41 +01:00
|
|
|
}
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|