2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
2021-02-28 00:51:57 +01:00
|
|
|
import _ from "lodash";
|
|
|
|
|
2021-04-14 13:10:34 +02:00
|
|
|
import render_compose from "../templates/compose.hbs";
|
2021-02-28 00:51:57 +01:00
|
|
|
|
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";
|
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";
|
2021-10-26 11:57:04 +02:00
|
|
|
import * as composebox_typeahead from "./composebox_typeahead";
|
2021-02-28 00:51:57 +01:00
|
|
|
import * as echo from "./echo";
|
2021-04-15 16:18:36 +02:00
|
|
|
import * as giphy from "./giphy";
|
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-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-02-28 00:55:38 +01:00
|
|
|
import * as stream_edit from "./stream_edit";
|
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";
|
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() {
|
2013-09-16 21:13:11 +02:00
|
|
|
$("#compose_invite_users").hide();
|
|
|
|
$("#compose_invite_users").empty();
|
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() {
|
2017-10-14 15:18:21 +02:00
|
|
|
$("#compose_private_stream_alert").hide();
|
|
|
|
$("#compose_private_stream_alert").empty();
|
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();
|
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();
|
2021-02-28 00:51:57 +01:00
|
|
|
}
|
2016-08-29 22:37:27 +02:00
|
|
|
|
2021-08-06 19:07:31 +02:00
|
|
|
export 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();
|
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
|
|
|
}
|
|
|
|
|
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-07-27 09:42:31 +02:00
|
|
|
export function toggle_enter_sends_ui() {
|
|
|
|
const send_button = $("#compose-send-button");
|
2021-07-28 16:00:58 +02:00
|
|
|
if (user_settings.enter_sends) {
|
2021-07-27 09:42:31 +02:00
|
|
|
send_button.fadeOut();
|
|
|
|
} else {
|
|
|
|
send_button.fadeIn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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();
|
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);
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-send-button").prop("disabled", false);
|
2013-12-03 20:59:23 +01:00
|
|
|
$("#sending-indicator").hide();
|
|
|
|
}
|
|
|
|
|
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) {
|
2021-06-24 19:30:01 +02:00
|
|
|
compose_error.show(_.escape(response), $("#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);
|
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
|
|
|
|
2021-02-28 00:51:57 +01:00
|
|
|
export function enter_with_preview_open() {
|
2021-07-28 16:00:58 +02:00
|
|
|
if (user_settings.enter_sends) {
|
2017-07-07 19:31:32 +02:00
|
|
|
// If enter_sends is enabled, we attempt to send the message
|
2021-02-28 00:51:57 +01:00
|
|
|
finish();
|
2017-02-19 07:43:02 +01:00
|
|
|
} else {
|
|
|
|
// Otherwise, we return to the compose box and focus it
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#compose-textarea").trigger("focus");
|
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-07-13 21:25:31 +02:00
|
|
|
function show_sending_indicator(whats_happening) {
|
|
|
|
$("#sending-indicator").text(whats_happening);
|
|
|
|
$("#sending-indicator").show();
|
|
|
|
}
|
|
|
|
|
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-07-13 21:25:31 +02:00
|
|
|
$("#compose-send-button").prop("disabled", true).trigger("blur");
|
|
|
|
if (reminder.is_deferred_delivery(message_content)) {
|
|
|
|
show_sending_indicator($t({defaultMessage: "Scheduling..."}));
|
|
|
|
} else {
|
|
|
|
show_sending_indicator($t({defaultMessage: "Sending..."}));
|
|
|
|
}
|
2021-06-25 15:16:29 +02:00
|
|
|
if (!compose_validate.validate()) {
|
2021-07-10 18:15:39 +02:00
|
|
|
// If the message failed validation, hide the sending indicator.
|
|
|
|
$("#sending-indicator").hide();
|
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
|
|
|
|
2021-02-28 00:51:57 +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;
|
|
|
|
}
|
|
|
|
|
2020-02-28 23:59:07 +01:00
|
|
|
preview_content_box.html(util.clean_user_content_links(rendered_preview_html));
|
2020-06-21 08:55:58 +02:00
|
|
|
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)) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const spinner = preview_spinner.expectOne();
|
2019-02-05 15:21:30 +01:00
|
|
|
loading.make_indicator(spinner);
|
|
|
|
} 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",
|
2019-02-05 15:21:30 +01:00
|
|
|
idempotent: true,
|
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)) {
|
|
|
|
loading.destroy_indicator(preview_spinner);
|
|
|
|
}
|
|
|
|
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)) {
|
|
|
|
loading.destroy_indicator(preview_spinner);
|
|
|
|
}
|
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 render_compose_box() {
|
2021-06-10 16:52:29 +02:00
|
|
|
$("#compose-container").append(
|
2021-04-14 13:10:34 +02:00
|
|
|
render_compose({
|
2021-06-10 16:52:29 +02:00
|
|
|
embedded: $("#compose").attr("data-embedded") === "",
|
2021-04-14 13:10:34 +02:00
|
|
|
file_upload_enabled: page_params.max_file_upload_size_mib > 0,
|
2021-04-15 16:18:36 +02:00
|
|
|
giphy_enabled: giphy.is_giphy_enabled(),
|
2021-04-14 13:10:34 +02:00
|
|
|
}),
|
|
|
|
);
|
2021-05-19 20:08:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function initialize() {
|
|
|
|
render_compose_box();
|
2021-04-14 13:10:34 +02:00
|
|
|
|
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",
|
|
|
|
).on("keyup", update_fade);
|
|
|
|
$(
|
|
|
|
"#stream_message_recipient_stream,#stream_message_recipient_topic,#private_message_recipient",
|
|
|
|
).on("change", update_fade);
|
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", () => {
|
2021-07-10 19:33:45 +02:00
|
|
|
compose_validate.check_overflow_text();
|
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
|
|
|
|
2021-04-20 16:22:50 +02:00
|
|
|
upload.feature_check($("#compose .compose_upload_file"));
|
2013-08-26 19:00:38 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-all-everyone").on("click", ".compose-all-everyone-confirm", (event) => {
|
2016-06-04 04:31:35 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(event.target).parents(".compose-all-everyone").remove();
|
2021-06-25 15:16:29 +02:00
|
|
|
compose_validate.set_user_acknowledged_all_everyone_flag(true);
|
|
|
|
compose_validate.clear_all_everyone_warnings();
|
2021-02-28 00:51:57 +01:00
|
|
|
finish();
|
2013-09-16 21:13:11 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-announce").on("click", ".compose-announce-confirm", (event) => {
|
2017-12-18 16:09:41 +01:00
|
|
|
event.preventDefault();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(event.target).parents(".compose-announce").remove();
|
2021-06-25 15:16:29 +02:00
|
|
|
compose_validate.set_user_acknowledged_announce_flag(true);
|
|
|
|
compose_validate.clear_announce_warnings();
|
2021-02-28 00:51:57 +01:00
|
|
|
finish();
|
2017-12-18 16:09:41 +01:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-send-status").on("click", ".sub_unsub_button", (event) => {
|
2018-04-04 19:38:09 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const stream_name = $("#stream_message_recipient_stream").val();
|
2018-04-04 19:38:09 +02:00
|
|
|
if (stream_name === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = stream_data.get_sub(stream_name);
|
2021-07-09 15:51:31 +02:00
|
|
|
stream_settings_ui.sub_or_unsub(sub);
|
2018-04-04 19:38:09 +02:00
|
|
|
$("#compose-send-status").hide();
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose-send-status").on("click", "#compose_not_subscribed_close", (event) => {
|
2018-04-07 04:53:32 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
$("#compose-send-status").hide();
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose_invite_users").on("click", ".compose_invite_link", (event) => {
|
2013-09-16 21:13:11 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const invite_row = $(event.target).parents(".compose_invite_user");
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2020-10-07 09:17:30 +02:00
|
|
|
const user_id = Number.parseInt($(invite_row).data("user-id"), 10);
|
|
|
|
const stream_id = Number.parseInt($(invite_row).data("stream-id"), 10);
|
2020-06-04 19:41:45 +02:00
|
|
|
|
2017-03-04 23:02:59 +01:00
|
|
|
function success() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const all_invites = $("#compose_invite_users");
|
2017-03-04 21:42:17 +01:00
|
|
|
invite_row.remove();
|
2013-09-16 21:13:11 +02:00
|
|
|
|
2017-03-04 21:42:17 +01:00
|
|
|
if (all_invites.children().length === 0) {
|
|
|
|
all_invites.hide();
|
|
|
|
}
|
2017-03-04 23:02:59 +01:00
|
|
|
}
|
|
|
|
|
2018-08-12 22:02:50 +02:00
|
|
|
function failure(error_msg) {
|
2021-02-28 00:51:57 +01:00
|
|
|
clear_invites();
|
2021-06-24 19:30:01 +02:00
|
|
|
compose_error.show(_.escape(error_msg), $("#compose-textarea"));
|
2020-07-22 02:59:06 +02:00
|
|
|
$(event.target).prop("disabled", true);
|
2017-03-04 23:02:59 +01:00
|
|
|
}
|
|
|
|
|
2018-08-12 22:02:50 +02:00
|
|
|
function xhr_failure(xhr) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const error = JSON.parse(xhr.responseText);
|
2018-08-12 22:02:50 +02:00
|
|
|
failure(error.msg);
|
|
|
|
}
|
|
|
|
|
2021-04-15 17:02:54 +02:00
|
|
|
const sub = sub_store.get(stream_id);
|
2017-03-04 23:02:59 +01:00
|
|
|
|
2020-06-03 21:38:43 +02:00
|
|
|
stream_edit.invite_user_to_stream([user_id], sub, success, xhr_failure);
|
2013-09-16 21:13:11 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#compose_invite_users").on("click", ".compose_invite_close", (event) => {
|
|
|
|
const invite_row = $(event.target).parents(".compose_invite_user");
|
2019-11-02 00:06:25 +01:00
|
|
|
const all_invites = $("#compose_invite_users");
|
2013-09-16 21:13:11 +02:00
|
|
|
|
|
|
|
invite_row.remove();
|
|
|
|
|
|
|
|
if (all_invites.children().length === 0) {
|
|
|
|
all_invites.hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#compose_private_stream_alert").on(
|
|
|
|
"click",
|
|
|
|
".compose_private_stream_alert_close",
|
|
|
|
(event) => {
|
|
|
|
const stream_alert_row = $(event.target).parents(".compose_private_stream_alert");
|
|
|
|
const stream_alert = $("#compose_private_stream_alert");
|
2017-10-14 15:18:21 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
stream_alert_row.remove();
|
2017-10-14 15:18:21 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
if (stream_alert.children().length === 0) {
|
|
|
|
stream_alert.hide();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2017-10-14 15:18:21 +02:00
|
|
|
|
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-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();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let target_textarea;
|
2021-04-21 15:46:11 +02:00
|
|
|
let edit_message_id;
|
|
|
|
if ($(e.target).parents(".message_edit_form").length === 1) {
|
|
|
|
edit_message_id = rows.id($(e.target).parents(".message_row"));
|
|
|
|
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);
|
2020-07-15 00:34:28 +02:00
|
|
|
insert_video_call_url(res.url, target_textarea);
|
|
|
|
},
|
|
|
|
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-04-27 22:41:31 +02:00
|
|
|
channel.get({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/calls/bigbluebutton/create",
|
2020-07-20 22:18:43 +02:00
|
|
|
success(response) {
|
2020-04-27 22:41:31 +02:00
|
|
|
insert_video_call_url(response.url, target_textarea);
|
|
|
|
},
|
|
|
|
});
|
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;
|
2019-01-23 08:04:53 +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-11-10 15:57:52 +01:00
|
|
|
let instance = {};
|
2021-10-26 11:57:04 +02:00
|
|
|
$("body").on("click", ".time_pick", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
let target_textarea;
|
|
|
|
let edit_message_id;
|
|
|
|
if ($(e.target).parents(".message_edit_form").length === 1) {
|
|
|
|
edit_message_id = rows.id($(e.target).parents(".message_row"));
|
|
|
|
target_textarea = $(`#edit_form_${CSS.escape(edit_message_id)} .message_edit_content`);
|
|
|
|
}
|
|
|
|
|
2021-11-10 15:57:52 +01:00
|
|
|
if (!instance.calendarContainer) {
|
2021-10-26 11:57:04 +02:00
|
|
|
const on_timestamp_selection = (val) => {
|
|
|
|
const timestr = `<time:${val}> `;
|
|
|
|
compose_ui.insert_syntax_and_focus(timestr, target_textarea);
|
|
|
|
};
|
|
|
|
|
|
|
|
instance = composebox_typeahead.show_flatpickr(
|
|
|
|
$(e.target)[0],
|
|
|
|
on_timestamp_selection,
|
|
|
|
new Date(),
|
|
|
|
{
|
|
|
|
// place the time picker above the icon and centerize it horizontally
|
|
|
|
position: "above center",
|
|
|
|
},
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
instance.close();
|
|
|
|
instance.destroy();
|
|
|
|
});
|
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
$("#compose").on("click", ".markdown_preview", (e) => {
|
2016-08-29 22:37:27 +02:00
|
|
|
e.preventDefault();
|
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();
|
|
|
|
$("#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-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();
|
|
|
|
compose_ui.make_compose_box_full_size();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", ".collapse_composebox_button", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
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
|
|
|
}
|