2022-10-23 16:07:34 +00:00
|
|
|
function removeComment(t,post_id,button1,button2,cls) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/remove_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-10-30 15:10:07 +00:00
|
|
|
postToast(t,url,button1,button2,cls)
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-10-23 15:51:46 +00:00
|
|
|
if (window.location.pathname == '/admin/reported/comments')
|
|
|
|
{
|
|
|
|
document.getElementById("post-info-"+post_id).remove()
|
|
|
|
document.getElementById("comment-"+post_id).remove()
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
2022-10-23 15:51:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.add("banned");
|
|
|
|
} catch(e) {
|
|
|
|
document.getElementById("context").classList.add("banned");
|
|
|
|
}
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-10-23 16:07:34 +00:00
|
|
|
function approveComment(t,post_id,button1,button2,cls) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/approve_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-10-30 15:10:07 +00:00
|
|
|
postToast(t,url,button1,button2,cls)
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-10-23 15:51:46 +00:00
|
|
|
if (window.location.pathname == '/admin/reported/comments')
|
|
|
|
{
|
|
|
|
document.getElementById("post-info-"+post_id).remove()
|
|
|
|
document.getElementById("comment-"+post_id).remove()
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
2022-10-23 15:51:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.remove("banned");
|
|
|
|
} catch(e) {
|
|
|
|
document.getElementById("context").classList.remove("banned");
|
|
|
|
}
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
2022-09-01 21:29:27 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 20:38:54 +00:00
|
|
|
function adminToggleMute(userId, muteStatus, buttonId) {
|
2022-10-14 12:01:11 +00:00
|
|
|
const xhr = createXhrWithFormKey(`/mute_user/${userId}/${muteStatus}`);
|
|
|
|
xhr[0].onload = function() {
|
2022-09-01 21:29:27 +00:00
|
|
|
let data
|
2022-10-14 12:01:11 +00:00
|
|
|
try {data = JSON.parse(xhr[0].response)}
|
2022-09-01 21:29:27 +00:00
|
|
|
catch(e) {console.log(e)}
|
2022-10-14 12:01:11 +00:00
|
|
|
success = xhr[0].status >= 200 && xhr[0].status < 300;
|
2022-10-14 10:15:06 +00:00
|
|
|
showToast(success, getMessageFromJsonData(success, data));
|
2022-09-01 21:29:27 +00:00
|
|
|
};
|
2022-10-14 12:01:11 +00:00
|
|
|
xhr[0].send(xhr[1]);
|
2022-10-24 20:38:54 +00:00
|
|
|
document.getElementById('mute-user-' + buttonId).classList.toggle("d-none");
|
|
|
|
document.getElementById('unmute-user-' + buttonId).classList.toggle("d-none");
|
2022-09-01 21:29:27 +00:00
|
|
|
}
|