zulip/static/js/ui_report.js

82 lines
2.4 KiB
JavaScript
Raw Normal View History

import $ from "jquery";
import _ from "lodash";
import * as common from "./common";
import {i18n} from "./i18n";
/* Arguments used in the report_* functions are,
response- response that we want to display
status_box- element being used to display the response
cls- class that we want to add/remove to/from the status_box
*/
export function message(response, status_box, cls = "alert", remove_after = false) {
// Note we use html() below, since we can rely on our callers escaping HTML
// via i18n.t when interpolating data.
status_box
.removeClass(common.status_classes)
.addClass(cls)
.html(response)
.stop(true)
.fadeTo(0, 1);
if (remove_after) {
setTimeout(() => {
status_box.fadeOut(400);
}, remove_after);
}
status_box.addClass("show");
}
export function error(response, xhr, status_box, remove_after) {
if (xhr && xhr.status.toString().charAt(0) === "4") {
// Only display the error response for 4XX, where we've crafted
// a nice response.
const server_response = _.escape(JSON.parse(xhr.responseText).msg);
if (response) {
response += ": " + server_response;
} else {
response = server_response;
}
}
message(response, status_box, "alert-error", remove_after);
}
2021-01-26 10:04:26 +01:00
export function client_error(response, status_box, remove_after) {
message(response, status_box, "alert-error", remove_after);
}
export function success(response, status_box, remove_after) {
message(response, status_box, "alert-success", remove_after);
}
export function generic_embed_error(error) {
const $alert = $("<div class='alert home-error-bar'></div>");
const $exit = "<div class='exit'></div>";
$(".alert-box").append(
$alert.html($exit + "<div class='content'>" + error + "</div>").addClass("show"),
);
}
export function generic_row_button_error(xhr, btn) {
if (xhr.status.toString().charAt(0) === "4") {
btn.closest("td").html(
$("<p>").addClass("text-error").text(JSON.parse(xhr.responseText).msg),
);
} else {
btn.text(i18n.t("Failed!"));
}
}
export function hide_error($target) {
$target.addClass("fade-out");
setTimeout(() => {
$target.removeClass("show fade-out");
}, 300);
}
export function show_error($target) {
$target.addClass("show");
}