forked from rDrama/rDrama
1
0
Fork 0

make post approval and removal effects only happen when response code is between 200 and 300

master
Aevann1 2022-11-03 17:38:46 +02:00
parent 07a12380de
commit 32f079ed20
1 changed files with 47 additions and 22 deletions

View File

@ -1,8 +1,13 @@
function removePost(t,post_id,button1,button2,cls) {
url="/remove_post/"+post_id
postToast(t,url,button1,button2,cls)
t.disabled = true;
t.classList.add("disabled");
postToast_callback(url,
{
},
(xhr) => {
if (xhr.status >= 200 && xhr.status < 300) {
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
@ -11,14 +16,27 @@ function removePost(t,post_id,button1,button2,cls) {
else
{
document.getElementById("post-"+post_id).classList.add("banned");
document.getElementById(button1).classList.toggle(cls);
document.getElementById(button2).classList.toggle(cls);
}
};
}
t.disabled = false;
t.classList.remove("disabled");
}
);
}
function approvePost(t,post_id,button1,button2,cls) {
url="/approve_post/"+post_id
postToast(t,url,button1,button2,cls)
t.disabled = true;
t.classList.add("disabled");
postToast_callback(url,
{
},
(xhr) => {
if (xhr.status >= 200 && xhr.status < 300) {
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
@ -27,5 +45,12 @@ function approvePost(t,post_id,button1,button2,cls) {
else
{
document.getElementById("post-"+post_id).classList.remove("banned");
document.getElementById(button1).classList.toggle(cls);
document.getElementById(button2).classList.toggle(cls);
}
}
t.disabled = false;
t.classList.remove("disabled");
}
);
}