compose: Extract compose_error.js.

This commit moves the compose_error function to its own module, which
will be useful for future work splitting the compose module.

We also simplify compose_not_subscribed_error to call the
compose_error show function.
This commit is contained in:
Priyam Seth
2021-06-24 23:00:01 +05:30
committed by Tim Abbott
parent 128eb8cd8e
commit 939d8dab7b
4 changed files with 68 additions and 51 deletions

View File

@@ -0,0 +1,20 @@
"use strict";
const {strict: assert} = require("assert");
const {$t} = require("../zjsunit/i18n");
const {zrequire} = require("../zjsunit/namespace");
const {run_test} = require("../zjsunit/test");
const $ = require("../zjsunit/zjquery");
const compose_error = zrequire("compose_error");
run_test("compose_error_test", () => {
compose_error.show($t({defaultMessage: "You have nothing to send!"}), $("#compose-textarea"));
assert.ok($("#compose-send-status").hasClass("alert-error"));
assert.equal($("#compose-error-msg").html(), $t({defaultMessage: "You have nothing to send!"}));
assert.equal($("#compose-send-button").prop("disabled"), false);
assert.ok(!$("#sending-indicator").visible());
assert.ok($("#compose-textarea").is_focused());
});

View File

@@ -12,6 +12,7 @@ import * as blueslip from "./blueslip";
import * as channel from "./channel"; import * as channel from "./channel";
import * as common from "./common"; import * as common from "./common";
import * as compose_actions from "./compose_actions"; import * as compose_actions from "./compose_actions";
import * as compose_error from "./compose_error";
import * as compose_fade from "./compose_fade"; import * as compose_fade from "./compose_fade";
import * as compose_pm_pill from "./compose_pm_pill"; import * as compose_pm_pill from "./compose_pm_pill";
import * as compose_state from "./compose_state"; import * as compose_state from "./compose_state";
@@ -258,35 +259,6 @@ export function create_message_object() {
return message; return message;
} }
export function compose_error(error_html, bad_input) {
$("#compose-send-status")
.removeClass(common.status_classes)
.addClass("alert-error")
.stop(true)
.fadeTo(0, 1);
$("#compose-error-msg").html(error_html);
$("#compose-send-button").prop("disabled", false);
$("#sending-indicator").hide();
if (bad_input !== undefined) {
bad_input.trigger("focus").trigger("select");
}
}
function compose_not_subscribed_error(error_html, bad_input) {
$("#compose-send-status")
.removeClass(common.status_classes)
.addClass("home-error-bar")
.stop(true)
.fadeTo(0, 1);
$("#compose-error-msg").html(error_html);
$("#compose-send-button").prop("disabled", false);
$("#sending-indicator").hide();
$(".compose-send-status-close").hide();
if (bad_input !== undefined) {
bad_input.trigger("focus").trigger("select");
}
}
export function clear_compose_box() { export function clear_compose_box() {
$("#compose-textarea").val("").trigger("focus"); $("#compose-textarea").val("").trigger("focus");
drafts.delete_active_draft(); drafts.delete_active_draft();
@@ -347,7 +319,7 @@ export function send_message(request = create_message_object()) {
// If we're not local echo'ing messages, or if this message was not // If we're not local echo'ing messages, or if this message was not
// locally echoed, show error in compose box // locally echoed, show error in compose box
if (!locally_echoed) { if (!locally_echoed) {
compose_error(_.escape(response), $("#compose-textarea")); compose_error.show(_.escape(response), $("#compose-textarea"));
return; return;
} }
@@ -528,7 +500,7 @@ function validate_stream_message_mentions(stream_id) {
// stream, check if they permission to do so. // stream, check if they permission to do so.
if (wildcard_mention !== null && stream_count > wildcard_mention_large_stream_threshold) { if (wildcard_mention !== null && stream_count > wildcard_mention_large_stream_threshold) {
if (!wildcard_mention_allowed()) { if (!wildcard_mention_allowed()) {
compose_error( compose_error.show(
$t_html({ $t_html({
defaultMessage: defaultMessage:
"You do not have permission to use wildcard mentions in this stream.", "You do not have permission to use wildcard mentions in this stream.",
@@ -588,7 +560,7 @@ function validate_stream_message_post_policy(sub) {
const stream_post_policy = sub.stream_post_policy; const stream_post_policy = sub.stream_post_policy;
if (stream_post_policy === stream_post_permission_type.admins.code) { if (stream_post_policy === stream_post_permission_type.admins.code) {
compose_error( compose_error.show(
$t_html({ $t_html({
defaultMessage: "Only organization admins are allowed to post to this stream.", defaultMessage: "Only organization admins are allowed to post to this stream.",
}), }),
@@ -601,7 +573,7 @@ function validate_stream_message_post_policy(sub) {
} }
if (stream_post_policy === stream_post_permission_type.moderators.code) { if (stream_post_policy === stream_post_permission_type.moderators.code) {
compose_error( compose_error.show(
$t_html({ $t_html({
defaultMessage: defaultMessage:
"Only organization admins and moderators are allowed to post to this stream.", "Only organization admins and moderators are allowed to post to this stream.",
@@ -611,7 +583,9 @@ function validate_stream_message_post_policy(sub) {
} }
if (page_params.is_guest && stream_post_policy !== stream_post_permission_type.everyone.code) { if (page_params.is_guest && stream_post_policy !== stream_post_permission_type.everyone.code) {
compose_error($t_html({defaultMessage: "Guests are not allowed to post to this stream."})); compose_error.show(
$t_html({defaultMessage: "Guests are not allowed to post to this stream."}),
);
return false; return false;
} }
@@ -631,7 +605,7 @@ function validate_stream_message_post_policy(sub) {
}, },
{days}, {days},
); );
compose_error(error_html); compose_error.show(error_html);
return false; return false;
} }
return true; return true;
@@ -652,10 +626,10 @@ export function validation_error(error_type, stream_name) {
"z-link": (content_html) => `<a href='#streams/all'>${content_html}</a>`, "z-link": (content_html) => `<a href='#streams/all'>${content_html}</a>`,
}, },
); );
compose_error(response, $("#stream_message_recipient_stream")); compose_error.show(response, $("#stream_message_recipient_stream"));
return false; return false;
case "error": case "error":
compose_error( compose_error.show(
$t_html({defaultMessage: "Error checking subscription"}), $t_html({defaultMessage: "Error checking subscription"}),
$("#stream_message_recipient_stream"), $("#stream_message_recipient_stream"),
); );
@@ -665,7 +639,7 @@ export function validation_error(error_type, stream_name) {
const new_row = render_compose_not_subscribed({ const new_row = render_compose_not_subscribed({
should_display_sub_button: stream_data.can_toggle_subscription(sub), should_display_sub_button: stream_data.can_toggle_subscription(sub),
}); });
compose_not_subscribed_error(new_row, $("#stream_message_recipient_stream")); compose_error.show_not_subscribed(new_row, $("#stream_message_recipient_stream"));
return false; return false;
} }
} }
@@ -684,7 +658,7 @@ export function validate_stream_message_address_info(stream_name) {
function validate_stream_message() { function validate_stream_message() {
const stream_name = compose_state.stream_name(); const stream_name = compose_state.stream_name();
if (stream_name === "") { if (stream_name === "") {
compose_error( compose_error.show(
$t_html({defaultMessage: "Please specify a stream"}), $t_html({defaultMessage: "Please specify a stream"}),
$("#stream_message_recipient_stream"), $("#stream_message_recipient_stream"),
); );
@@ -694,7 +668,7 @@ function validate_stream_message() {
if (page_params.realm_mandatory_topics) { if (page_params.realm_mandatory_topics) {
const topic = compose_state.topic(); const topic = compose_state.topic();
if (topic === "") { if (topic === "") {
compose_error( compose_error.show(
$t_html({defaultMessage: "Please specify a topic"}), $t_html({defaultMessage: "Please specify a topic"}),
$("#stream_message_recipient_topic"), $("#stream_message_recipient_topic"),
); );
@@ -747,7 +721,7 @@ function validate_private_message() {
const user_ids = compose_pm_pill.get_user_ids(); const user_ids = compose_pm_pill.get_user_ids();
if (user_ids.length !== 1 || !people.get_by_user_id(user_ids[0]).is_bot) { if (user_ids.length !== 1 || !people.get_by_user_id(user_ids[0]).is_bot) {
// Unless we're composing to a bot // Unless we're composing to a bot
compose_error( compose_error.show(
$t_html({defaultMessage: "Private messages are disabled in this organization."}), $t_html({defaultMessage: "Private messages are disabled in this organization."}),
$("#private_message_recipient"), $("#private_message_recipient"),
); );
@@ -756,7 +730,7 @@ function validate_private_message() {
} }
if (compose_state.private_message_recipient().length === 0) { if (compose_state.private_message_recipient().length === 0) {
compose_error( compose_error.show(
$t_html({defaultMessage: "Please specify at least one valid recipient"}), $t_html({defaultMessage: "Please specify at least one valid recipient"}),
$("#private_message_recipient"), $("#private_message_recipient"),
); );
@@ -771,14 +745,14 @@ function validate_private_message() {
let context = {}; let context = {};
if (invalid_recipients.length === 1) { if (invalid_recipients.length === 1) {
context = {recipient: invalid_recipients.join(",")}; context = {recipient: invalid_recipients.join(",")};
compose_error( compose_error.show(
$t_html({defaultMessage: "The recipient {recipient} is not valid"}, context), $t_html({defaultMessage: "The recipient {recipient} is not valid"}, context),
$("#private_message_recipient"), $("#private_message_recipient"),
); );
return false; return false;
} else if (invalid_recipients.length > 1) { } else if (invalid_recipients.length > 1) {
context = {recipients: invalid_recipients.join(",")}; context = {recipients: invalid_recipients.join(",")};
compose_error( compose_error.show(
$t_html({defaultMessage: "The recipients {recipients} are not valid"}, context), $t_html({defaultMessage: "The recipients {recipients} are not valid"}, context),
$("#private_message_recipient"), $("#private_message_recipient"),
); );
@@ -797,7 +771,7 @@ export function validate() {
} }
if (/^\s*$/.test(message_content)) { if (/^\s*$/.test(message_content)) {
compose_error( compose_error.show(
$t_html({defaultMessage: "You have nothing to send!"}), $t_html({defaultMessage: "You have nothing to send!"}),
$("#compose-textarea"), $("#compose-textarea"),
); );
@@ -805,7 +779,7 @@ export function validate() {
} }
if ($("#zephyr-mirror-error").is(":visible")) { if ($("#zephyr-mirror-error").is(":visible")) {
compose_error( compose_error.show(
$t_html({ $t_html({
defaultMessage: defaultMessage:
"You need to be running Zephyr mirroring in order to send messages!", "You need to be running Zephyr mirroring in order to send messages!",
@@ -1181,7 +1155,7 @@ export function initialize() {
function failure(error_msg) { function failure(error_msg) {
clear_invites(); clear_invites();
compose_error(_.escape(error_msg), $("#compose-textarea")); compose_error.show(_.escape(error_msg), $("#compose-textarea"));
$(event.target).prop("disabled", true); $(event.target).prop("disabled", true);
} }

View File

@@ -0,0 +1,22 @@
import $ from "jquery";
import * as common from "./common";
export function show(error_html, bad_input, alert_class = "alert-error") {
$("#compose-send-status")
.removeClass(common.status_classes)
.addClass(alert_class)
.stop(true)
.fadeTo(0, 1);
$("#compose-error-msg").html(error_html);
$("#compose-send-button").prop("disabled", false);
$("#sending-indicator").hide();
if (bad_input !== undefined) {
bad_input.trigger("focus").trigger("select");
}
}
export function show_not_subscribed(error_html, bad_input) {
show(error_html, bad_input, "home-error-bar");
$(".compose-send-status-close").hide();
}

View File

@@ -3,6 +3,7 @@ import _ from "lodash";
import * as channel from "./channel"; import * as channel from "./channel";
import * as compose from "./compose"; import * as compose from "./compose";
import * as compose_error from "./compose_error";
import * as hash_util from "./hash_util"; import * as hash_util from "./hash_util";
import {$t, $t_html} from "./i18n"; import {$t, $t_html} from "./i18n";
import * as message_lists from "./message_lists"; import * as message_lists from "./message_lists";
@@ -65,7 +66,7 @@ export function schedule_message(request = compose.create_message_object()) {
) { ) {
$("#compose-textarea").prop("disabled", false); $("#compose-textarea").prop("disabled", false);
if (command_line.slice(command.length, command.length + 1) !== " ") { if (command_line.slice(command.length, command.length + 1) !== " ") {
compose.compose_error( compose_error.show(
$t_html({ $t_html({
defaultMessage: defaultMessage:
"Invalid slash command. Check if you are missing a space after the command.", "Invalid slash command. Check if you are missing a space after the command.",
@@ -73,12 +74,12 @@ export function schedule_message(request = compose.create_message_object()) {
$("#compose-textarea"), $("#compose-textarea"),
); );
} else if (deliver_at.trim() === "") { } else if (deliver_at.trim() === "") {
compose.compose_error( compose_error.show(
$t_html({defaultMessage: "Please specify a date or time"}), $t_html({defaultMessage: "Please specify a date or time"}),
$("#compose-textarea"), $("#compose-textarea"),
); );
} else { } else {
compose.compose_error( compose_error.show(
$t_html({defaultMessage: "Your reminder note is empty!"}), $t_html({defaultMessage: "Your reminder note is empty!"}),
$("#compose-textarea"), $("#compose-textarea"),
); );
@@ -104,7 +105,7 @@ export function schedule_message(request = compose.create_message_object()) {
}; };
const error = function (response) { const error = function (response) {
$("#compose-textarea").prop("disabled", false); $("#compose-textarea").prop("disabled", false);
compose.compose_error(_.escape(response), $("#compose-textarea")); compose_error.show(_.escape(response), $("#compose-textarea"));
}; };
/* We are adding a disable on compose under this block because we /* We are adding a disable on compose under this block because we
want slash commands to be blocking in nature. */ want slash commands to be blocking in nature. */