mirror of https://github.com/zulip/zulip.git
settings: Add confirmation dialog to delete code playgrounds.
Fixes part of #22812.
This commit is contained in:
parent
ceb14351dd
commit
92b4bb7ffc
|
@ -74,6 +74,11 @@ async function test_invalid_playground_parameters(page: Page): Promise<void> {
|
|||
|
||||
async function test_successful_playground_deletion(page: Page): Promise<void> {
|
||||
await page.click(".playground_row button.delete");
|
||||
|
||||
await common.wait_for_micromodal_to_open(page);
|
||||
await page.click("#confirm_delete_code_playgrounds_modal .dialog_submit_button");
|
||||
await common.wait_for_micromodal_to_close(page);
|
||||
|
||||
await page.waitForSelector(".playground_row", {hidden: true});
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
import $ from "jquery";
|
||||
|
||||
import render_confirm_delete_playground from "../templates/confirm_dialog/confirm_delete_playground.hbs";
|
||||
import render_admin_playground_list from "../templates/settings/admin_playground_list.hbs";
|
||||
|
||||
import * as channel from "./channel";
|
||||
import * as confirm_dialog from "./confirm_dialog";
|
||||
import * as dialog_widget from "./dialog_widget";
|
||||
import {$t_html} from "./i18n";
|
||||
import * as ListWidget from "./list_widget";
|
||||
import {page_params} from "./page_params";
|
||||
|
@ -95,14 +98,16 @@ function build_page() {
|
|||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
const $btn = $(this);
|
||||
const url =
|
||||
"/json/realm/playgrounds/" + encodeURIComponent($btn.attr("data-playground-id"));
|
||||
const html_body = render_confirm_delete_playground();
|
||||
|
||||
channel.del({
|
||||
url: "/json/realm/playgrounds/" + encodeURIComponent($btn.attr("data-playground-id")),
|
||||
error(xhr) {
|
||||
ui_report.generic_row_button_error(xhr, $btn);
|
||||
},
|
||||
// There is no need for an on-success action here since the row is removed by the
|
||||
// `realm_playgrounds` events handler which builds the playground list again.
|
||||
confirm_dialog.launch({
|
||||
html_heading: $t_html({defaultMessage: "Delete code playground?"}),
|
||||
html_body,
|
||||
id: "confirm_delete_code_playgrounds_modal",
|
||||
on_click: () => dialog_widget.submit_api_request(channel.del, url),
|
||||
loading_spinner: true,
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
<p>{{t "This action cannot be undone."}}</p>
|
||||
|
Loading…
Reference in New Issue