2023-10-05 21:02:57 +02:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2024-03-07 19:47:27 +01:00
|
|
|
import {unresolve_name} from "../shared/src/resolved_topic";
|
2022-07-16 14:40:59 +02:00
|
|
|
import render_add_poll_modal from "../templates/add_poll_modal.hbs";
|
|
|
|
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as compose from "./compose";
|
|
|
|
import * as compose_actions from "./compose_actions";
|
|
|
|
import * as compose_banner from "./compose_banner";
|
|
|
|
import * as compose_call from "./compose_call";
|
|
|
|
import * as compose_call_ui from "./compose_call_ui";
|
|
|
|
import * as compose_recipient from "./compose_recipient";
|
2024-04-16 23:40:09 +02:00
|
|
|
import * as compose_send_menu_popover from "./compose_send_menu_popover";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as compose_state from "./compose_state";
|
|
|
|
import * as compose_ui from "./compose_ui";
|
|
|
|
import * as compose_validate from "./compose_validate";
|
2022-07-16 14:40:59 +02:00
|
|
|
import * as dialog_widget from "./dialog_widget";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as flatpickr from "./flatpickr";
|
2022-07-16 14:40:59 +02:00
|
|
|
import {$t_html} from "./i18n";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as message_edit from "./message_edit";
|
|
|
|
import * as narrow from "./narrow";
|
2024-05-01 08:44:53 +02:00
|
|
|
import * as onboarding_steps from "./onboarding_steps";
|
2023-10-05 21:02:57 +02:00
|
|
|
import {page_params} from "./page_params";
|
2022-07-16 14:40:59 +02:00
|
|
|
import * as poll_modal from "./poll_modal";
|
2023-10-15 11:46:46 +02:00
|
|
|
import * as popovers from "./popovers";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as resize from "./resize";
|
|
|
|
import * as rows from "./rows";
|
|
|
|
import * as scheduled_messages from "./scheduled_messages";
|
|
|
|
import * as stream_data from "./stream_data";
|
2023-10-10 19:40:26 +02:00
|
|
|
import * as stream_settings_components from "./stream_settings_components";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as sub_store from "./sub_store";
|
|
|
|
import * as subscriber_api from "./subscriber_api";
|
|
|
|
import {get_timestamp_for_flatpickr} from "./timerender";
|
2022-07-16 14:40:59 +02:00
|
|
|
import * as ui_report from "./ui_report";
|
2023-10-05 21:02:57 +02:00
|
|
|
import * as upload from "./upload";
|
|
|
|
import * as user_topics from "./user_topics";
|
|
|
|
|
|
|
|
export function abort_xhr() {
|
|
|
|
$("#compose-send-button").prop("disabled", false);
|
2024-02-16 00:25:31 +01:00
|
|
|
upload.compose_upload_cancel();
|
2023-10-05 21:02:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function setup_compose_actions_hooks() {
|
|
|
|
compose_actions.register_compose_box_clear_hook(compose.clear_invites);
|
|
|
|
compose_actions.register_compose_box_clear_hook(compose.clear_private_stream_alert);
|
|
|
|
compose_actions.register_compose_box_clear_hook(compose.clear_preview_area);
|
|
|
|
|
|
|
|
compose_actions.register_compose_cancel_hook(abort_xhr);
|
|
|
|
compose_actions.register_compose_cancel_hook(compose_call.abort_video_callbacks);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initialize() {
|
|
|
|
// Register hooks for compose_actions.
|
|
|
|
setup_compose_actions_hooks();
|
|
|
|
|
2023-11-01 18:43:48 +01:00
|
|
|
$(".compose-control-buttons-container .video_link").toggle(
|
|
|
|
compose_call.compute_show_video_chat_button(),
|
|
|
|
);
|
|
|
|
$(".compose-control-buttons-container .audio_link").toggle(
|
|
|
|
compose_call.compute_show_audio_chat_button(),
|
|
|
|
);
|
2023-10-05 21:02:57 +02:00
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("textarea#compose-textarea").on("keydown", (event) => {
|
|
|
|
compose_ui.handle_keydown(event, $("textarea#compose-textarea").expectOne());
|
2023-10-05 21:02:57 +02:00
|
|
|
});
|
2023-11-02 19:29:54 +01:00
|
|
|
$("textarea#compose-textarea").on("keyup", (event) => {
|
|
|
|
compose_ui.handle_keyup(event, $("textarea#compose-textarea").expectOne());
|
2023-10-05 21:02:57 +02:00
|
|
|
});
|
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("textarea#compose-textarea").on("input propertychange", () => {
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_validate.warn_if_topic_resolved(false);
|
|
|
|
const compose_text_length = compose_validate.check_overflow_text();
|
2023-11-02 19:29:54 +01:00
|
|
|
if (compose_text_length !== 0 && $("textarea#compose-textarea").hasClass("invalid")) {
|
|
|
|
$("textarea#compose-textarea").toggleClass("invalid", false);
|
2023-10-05 21:02:57 +02:00
|
|
|
}
|
|
|
|
// 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_template",
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$("#compose_close").attr("data-tooltip-template-id", "compose_close_tooltip_template");
|
|
|
|
}
|
2022-07-16 14:40:59 +02:00
|
|
|
|
|
|
|
// The poll widget requires an empty compose box.
|
|
|
|
if (compose_text_length > 0) {
|
|
|
|
$(".add-poll").parent().addClass("disabled-on-hover");
|
|
|
|
} else {
|
|
|
|
$(".add-poll").parent().removeClass("disabled-on-hover");
|
|
|
|
}
|
2023-10-05 21:02:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose form").on("submit", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
compose.finish();
|
|
|
|
});
|
|
|
|
|
|
|
|
resize.watch_manual_resize("#compose-textarea");
|
|
|
|
|
|
|
|
// Updates compose max-height and scroll to bottom button position when
|
|
|
|
// there is a change in compose height like when a compose banner is displayed.
|
|
|
|
const update_compose_max_height = new ResizeObserver(resize.reset_compose_message_max_height);
|
|
|
|
update_compose_max_height.observe(document.querySelector("#compose"));
|
|
|
|
|
|
|
|
function get_input_info(event) {
|
|
|
|
const $edit_banners_container = $(event.target).closest(".edit_form_banners");
|
|
|
|
const is_edit_input = Boolean($edit_banners_container.length);
|
|
|
|
const $banner_container = $edit_banners_container.length
|
|
|
|
? $edit_banners_container
|
|
|
|
: $("#compose_banners");
|
|
|
|
return {is_edit_input, $banner_container};
|
|
|
|
}
|
|
|
|
|
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(
|
|
|
|
compose_banner.CLASSNAMES.wildcard_warning,
|
|
|
|
)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const {$banner_container, is_edit_input} = get_input_info(event);
|
|
|
|
const $row = $(event.target).closest(".message_row");
|
2023-11-21 07:04:19 +01:00
|
|
|
compose_validate.clear_stream_wildcard_warnings($banner_container);
|
|
|
|
compose_validate.set_user_acknowledged_stream_wildcard_flag(true);
|
2023-10-05 21:02:57 +02:00
|
|
|
if (is_edit_input) {
|
|
|
|
message_edit.save_message_row_edit($row);
|
|
|
|
} else if (event.target.dataset.validationTrigger === "schedule") {
|
2024-04-16 23:40:09 +02:00
|
|
|
compose_send_menu_popover.open_send_later_menu();
|
2023-10-05 21:02:57 +02:00
|
|
|
|
|
|
|
// We need to set this flag to true here because `open_send_later_menu` validates the message and sets
|
|
|
|
// the user acknowledged wildcard flag back to 'false' and we don't want that to happen because then it
|
|
|
|
// would again show the wildcard warning banner when we actually send the message from 'send-later' modal.
|
2023-11-21 07:04:19 +01:00
|
|
|
compose_validate.set_user_acknowledged_stream_wildcard_flag(true);
|
2023-10-05 21:02:57 +02:00
|
|
|
} else {
|
|
|
|
compose.finish();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const user_not_subscribed_selector = `.${CSS.escape(
|
|
|
|
compose_banner.CLASSNAMES.user_not_subscribed,
|
|
|
|
)}`;
|
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`${user_not_subscribed_selector} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const stream_id = compose_state.stream_id();
|
2023-09-26 20:28:39 +02:00
|
|
|
if (stream_id === undefined) {
|
2023-10-05 21:02:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const sub = stream_data.get_sub_by_id(stream_id);
|
2023-10-10 19:40:26 +02:00
|
|
|
stream_settings_components.sub_or_unsub(sub);
|
2023-10-05 21:02:57 +02:00
|
|
|
$(user_not_subscribed_selector).remove();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(compose_banner.CLASSNAMES.topic_resolved)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const $target = $(event.target).parents(".main-view-banner");
|
|
|
|
const stream_id = Number.parseInt($target.attr("data-stream-id"), 10);
|
|
|
|
const topic_name = $target.attr("data-topic-name");
|
|
|
|
|
|
|
|
message_edit.with_first_message_id(stream_id, topic_name, (message_id) => {
|
2024-03-07 19:47:27 +01:00
|
|
|
if (message_id === undefined) {
|
|
|
|
// There is no message in the topic, so it is sufficient to
|
|
|
|
// just remove the topic resolved prefix (✔) from the topic name.
|
|
|
|
const $input = $("input#stream_message_recipient_topic");
|
|
|
|
const new_topic = unresolve_name(topic_name);
|
|
|
|
$input.val(new_topic);
|
|
|
|
// Trigger an input event, since this is a form of
|
|
|
|
// user-triggered edit to that field.
|
|
|
|
$input.trigger("input");
|
|
|
|
|
|
|
|
// TODO: Probably this should also renarrow to the
|
|
|
|
// new topic, if we were currently viewing the old
|
|
|
|
// topic, just as if a message edit had occurred.
|
|
|
|
} else {
|
|
|
|
message_edit.toggle_resolve_topic(message_id, topic_name, true);
|
|
|
|
}
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_validate.clear_topic_resolved_warning(true);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(
|
|
|
|
compose_banner.CLASSNAMES.unmute_topic_notification,
|
|
|
|
)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const $target = $(event.target).parents(".main-view-banner");
|
|
|
|
const stream_id = Number.parseInt($target.attr("data-stream-id"), 10);
|
|
|
|
const topic_name = $target.attr("data-topic-name");
|
|
|
|
|
|
|
|
user_topics.set_user_topic_visibility_policy(
|
|
|
|
stream_id,
|
|
|
|
topic_name,
|
|
|
|
user_topics.all_visibility_policies.UNMUTED,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2024-05-01 08:44:53 +02:00
|
|
|
const automatic_new_visibility_policy_banner_selector = `.${CSS.escape(compose_banner.CLASSNAMES.automatic_new_visibility_policy)}`;
|
2023-10-16 12:55:24 +02:00
|
|
|
$("body").on(
|
|
|
|
"click",
|
2024-05-01 08:44:53 +02:00
|
|
|
`${automatic_new_visibility_policy_banner_selector} .main-view-banner-action-button`,
|
2023-10-16 12:55:24 +02:00
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
2024-05-01 08:44:53 +02:00
|
|
|
if ($(event.target).attr("data-action") === "mark-as-read") {
|
|
|
|
$(event.target)
|
|
|
|
.parents(`${automatic_new_visibility_policy_banner_selector}`)
|
|
|
|
.remove();
|
|
|
|
onboarding_steps.post_onboarding_step_as_read("visibility_policy_banner");
|
|
|
|
return;
|
|
|
|
}
|
2023-10-16 12:55:24 +02:00
|
|
|
window.location.href = "/#settings/notifications";
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2023-10-05 21:02:57 +02:00
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(
|
|
|
|
compose_banner.CLASSNAMES.unscheduled_message,
|
|
|
|
)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const send_at_timestamp = scheduled_messages.get_selected_send_later_timestamp();
|
2024-04-16 23:40:09 +02:00
|
|
|
compose_send_menu_popover.do_schedule_message(send_at_timestamp);
|
2023-10-05 21:02:57 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(
|
|
|
|
compose_banner.CLASSNAMES.recipient_not_subscribed,
|
|
|
|
)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const {$banner_container} = get_input_info(event);
|
|
|
|
const $invite_row = $(event.target).parents(".main-view-banner");
|
|
|
|
|
2024-05-03 02:52:50 +02:00
|
|
|
const user_id = Number($invite_row.attr("data-user-id"));
|
2024-05-03 02:45:17 +02:00
|
|
|
const stream_id = Number($invite_row.attr("data-stream-id"));
|
2023-10-05 21:02:57 +02:00
|
|
|
|
|
|
|
function success() {
|
|
|
|
$invite_row.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
function xhr_failure(xhr) {
|
|
|
|
let error_message = "Failed to subscribe user!";
|
|
|
|
if (xhr.responseJSON?.msg) {
|
|
|
|
error_message = xhr.responseJSON.msg;
|
|
|
|
}
|
|
|
|
compose.clear_invites();
|
|
|
|
compose_banner.show_error_message(
|
|
|
|
error_message,
|
|
|
|
compose_banner.CLASSNAMES.generic_compose_error,
|
|
|
|
$banner_container,
|
2023-11-02 19:29:54 +01:00
|
|
|
$("textarea#compose-textarea"),
|
2023-10-05 21:02:57 +02:00
|
|
|
);
|
|
|
|
$(event.target).prop("disabled", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const sub = sub_store.get(stream_id);
|
|
|
|
|
|
|
|
subscriber_api.add_user_ids_to_stream([user_id], sub, success, xhr_failure);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2023-11-03 04:20:28 +01:00
|
|
|
$("body").on(
|
|
|
|
"click",
|
|
|
|
`.${CSS.escape(compose_banner.CLASSNAMES.search_view)} .main-view-banner-action-button`,
|
|
|
|
(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
narrow.to_compose_target();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2023-10-05 21:02:57 +02:00
|
|
|
for (const classname of Object.values(compose_banner.CLASSNAMES)) {
|
|
|
|
const classname_selector = `.${CSS.escape(classname)}`;
|
|
|
|
$("body").on("click", `${classname_selector} .main-view-banner-close-button`, (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
$(event.target).parents(classname_selector).remove();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Click event binding for "Attach files" button
|
|
|
|
// Triggers a click on a hidden file input field
|
|
|
|
|
|
|
|
$("#compose").on("click", ".compose_upload_file", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
$("#compose .file_input").trigger("click");
|
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("click", ".video_link", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
const show_video_chat_button = compose_call.compute_show_video_chat_button();
|
|
|
|
|
|
|
|
if (!show_video_chat_button) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
compose_call_ui.generate_and_insert_audio_or_video_call_link($(e.target), false);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("click", ".audio_link", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
const show_audio_chat_button = compose_call.compute_show_audio_chat_button();
|
|
|
|
|
|
|
|
if (!show_audio_chat_button) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
compose_call_ui.generate_and_insert_audio_or_video_call_link($(e.target), true);
|
|
|
|
});
|
|
|
|
|
2024-05-07 00:41:09 +02:00
|
|
|
$("body").on("click", ".time_pick", function (e) {
|
2023-10-05 21:02:57 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
let $target_textarea;
|
|
|
|
let edit_message_id;
|
2024-05-07 00:41:09 +02:00
|
|
|
const compose_click_target = compose_ui.get_compose_click_target(this);
|
2023-10-05 21:02:57 +02:00
|
|
|
if ($(compose_click_target).parents(".message_edit_form").length === 1) {
|
|
|
|
edit_message_id = rows.id($(compose_click_target).parents(".message_row"));
|
|
|
|
$target_textarea = $(`#edit_form_${CSS.escape(edit_message_id)} .message_edit_content`);
|
|
|
|
} else {
|
|
|
|
$target_textarea = $(compose_click_target).closest("form").find("textarea");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!flatpickr.is_open()) {
|
|
|
|
const on_timestamp_selection = (val) => {
|
|
|
|
const timestr = `<time:${val}> `;
|
|
|
|
compose_ui.insert_syntax_and_focus(timestr, $target_textarea);
|
|
|
|
};
|
|
|
|
|
|
|
|
flatpickr.show_flatpickr(
|
|
|
|
$(compose_click_target)[0],
|
|
|
|
on_timestamp_selection,
|
|
|
|
get_timestamp_for_flatpickr(),
|
|
|
|
{
|
|
|
|
// place the time picker wherever there is space and center it horizontally
|
|
|
|
position: "auto center",
|
|
|
|
// Since we want to handle close of flatpickr manually, we don't want
|
|
|
|
// flatpickr to hide automatically on clicking its trigger element.
|
|
|
|
ignoredFocusElements: [e.currentTarget],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
flatpickr.flatpickr_instance?.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-07-16 14:40:59 +02:00
|
|
|
$("body").on("click", ".compose_control_button_container:not(.disabled) .add-poll", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
function validate_input() {
|
|
|
|
const question = $("#poll-question-input").val().trim();
|
|
|
|
|
|
|
|
if (question === "") {
|
|
|
|
ui_report.error(
|
|
|
|
$t_html({defaultMessage: "Please enter a question."}),
|
|
|
|
undefined,
|
|
|
|
$("#dialog_error"),
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog_widget.launch({
|
|
|
|
html_heading: $t_html({defaultMessage: "Create a poll"}),
|
|
|
|
html_body: render_add_poll_modal(),
|
|
|
|
html_submit_button: $t_html({defaultMessage: "Add poll"}),
|
|
|
|
close_on_submit: true,
|
|
|
|
on_click(e) {
|
|
|
|
// frame a message using data input in modal, then populate the compose textarea with it
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
const poll_message_content = poll_modal.frame_poll_message_content();
|
|
|
|
compose_ui.insert_syntax_and_focus(poll_message_content);
|
|
|
|
},
|
|
|
|
validate_input,
|
|
|
|
form_id: "add-poll-form",
|
|
|
|
id: "add-poll-modal",
|
|
|
|
post_render: poll_modal.poll_options_setup,
|
|
|
|
help_link: "https://zulip.com/help/create-a-poll",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-10-05 21:02:57 +02:00
|
|
|
$("#compose").on("click", ".markdown_preview", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2024-01-16 21:09:38 +01:00
|
|
|
compose.show_preview_area();
|
2023-10-05 21:02:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", ".undo_markdown_preview", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
compose.clear_preview_area();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", ".expand_composebox_button", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
compose_ui.make_compose_box_full_size();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", ".narrow_to_compose_recipients", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
narrow.to_compose_target();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#compose").on("click", ".collapse_composebox_button", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
compose_ui.make_compose_box_original_size();
|
|
|
|
});
|
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("textarea#compose-textarea").on("focus", () => {
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_recipient.update_placeholder_text();
|
|
|
|
});
|
|
|
|
|
2023-10-03 18:18:55 +02:00
|
|
|
$("#compose_recipient_box").on("click", "#recipient_box_clear_topic_button", () => {
|
2023-11-02 19:29:54 +01:00
|
|
|
const $input = $("input#stream_message_recipient_topic");
|
2023-10-03 18:18:55 +02:00
|
|
|
const $button = $("#recipient_box_clear_topic_button");
|
|
|
|
|
|
|
|
$input.val("");
|
|
|
|
$input.trigger("focus");
|
|
|
|
$button.hide();
|
|
|
|
});
|
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("#compose_recipient_box").on("input", "input#stream_message_recipient_topic", (e) => {
|
2023-10-03 18:18:55 +02:00
|
|
|
const $button = $("#recipient_box_clear_topic_button");
|
|
|
|
const value = $(e.target).val();
|
|
|
|
if (value.length === 0) {
|
|
|
|
$button.hide();
|
|
|
|
} else {
|
|
|
|
$button.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("input#stream_message_recipient_topic").on("focus", () => {
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_recipient.update_placeholder_text();
|
|
|
|
});
|
|
|
|
|
2023-11-02 19:29:54 +01:00
|
|
|
$("input#stream_message_recipient_topic").on("input", () => {
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_recipient.update_placeholder_text();
|
|
|
|
});
|
|
|
|
|
2024-05-07 00:41:09 +02:00
|
|
|
$("body").on("click", ".formatting_button", function (e) {
|
|
|
|
const $compose_click_target = $(compose_ui.get_compose_click_target(this));
|
2023-10-05 21:02:57 +02:00
|
|
|
const $textarea = $compose_click_target.closest("form").find("textarea");
|
2024-05-07 00:41:09 +02:00
|
|
|
const format_type = $(this).attr("data-format-type");
|
2023-10-05 21:02:57 +02:00
|
|
|
compose_ui.format_text($textarea, format_type);
|
2023-10-15 11:46:46 +02:00
|
|
|
popovers.hide_all();
|
2023-10-05 21:02:57 +02:00
|
|
|
$textarea.trigger("focus");
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (page_params.narrow !== undefined) {
|
|
|
|
if (page_params.narrow_topic !== undefined) {
|
2024-04-04 02:38:16 +02:00
|
|
|
compose_actions.start({
|
|
|
|
message_type: "stream",
|
|
|
|
topic: page_params.narrow_topic,
|
|
|
|
});
|
2023-10-05 21:02:57 +02:00
|
|
|
} else {
|
2024-04-04 02:38:16 +02:00
|
|
|
compose_actions.start({message_type: "stream"});
|
2023-10-05 21:02:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|