forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/submission_admin.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-10-23 16:24:17 +00:00
function removePost(t,post_id,button1,button2,cls) {
url="/remove_post/"+post_id
t.disabled = true;
t.classList.add("disabled");
2022-11-03 16:11:04 +00:00
postToastCallback(url,
{
},
(xhr) => {
if (xhr.status >= 200 && xhr.status < 300) {
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
document.getElementById("post-"+post_id).remove()
}
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");
}
);
}
2022-10-23 16:24:17 +00:00
function approvePost(t,post_id,button1,button2,cls) {
url="/approve_post/"+post_id
t.disabled = true;
t.classList.add("disabled");
2022-11-03 16:11:04 +00:00
postToastCallback(url,
{
},
(xhr) => {
if (xhr.status >= 200 && xhr.status < 300) {
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
document.getElementById("post-"+post_id).remove()
}
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");
}
);
2022-10-23 16:24:17 +00:00
}