2021-06-24 19:30:01 +02:00
|
|
|
import $ from "jquery";
|
|
|
|
|
|
|
|
import * as common from "./common";
|
|
|
|
|
2021-07-06 19:05:08 +02:00
|
|
|
export function show(error_html: string, bad_input?: JQuery, alert_class = "alert-error"): void {
|
2021-06-24 19:30:01 +02:00
|
|
|
$("#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");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 19:05:08 +02:00
|
|
|
export function show_not_subscribed(error_html: string, bad_input?: JQuery): void {
|
2021-06-24 19:30:01 +02:00
|
|
|
show(error_html, bad_input, "home-error-bar");
|
|
|
|
$(".compose-send-status-close").hide();
|
|
|
|
}
|
2021-06-25 13:36:43 +02:00
|
|
|
|
2021-07-06 19:05:08 +02:00
|
|
|
export function hide(): void {
|
2021-06-25 13:36:43 +02:00
|
|
|
$("#compose-send-status").stop(true).fadeOut(500);
|
|
|
|
}
|