function removeComment(t,post_id,button1,button2,cls) { url="/remove_comment/"+post_id postToast(t,url,button1,button2,cls) if (window.location.pathname == '/admin/reported/comments') { document.getElementById("post-info-"+post_id).remove() document.getElementById("comment-"+post_id).remove() } else { try { document.getElementById("comment-"+post_id+"-only").classList.add("banned"); } catch(e) { document.getElementById("context").classList.add("banned"); } } }; function approveComment(t,post_id,button1,button2,cls) { url="/approve_comment/"+post_id postToast(t,url,button1,button2,cls) if (window.location.pathname == '/admin/reported/comments') { document.getElementById("post-info-"+post_id).remove() document.getElementById("comment-"+post_id).remove() } else { try { document.getElementById("comment-"+post_id+"-only").classList.remove("banned"); } catch(e) { document.getElementById("context").classList.remove("banned"); } } } function adminToggleMute(userId, muteStatus, buttonId) { const xhr = createXhrWithFormKey(`/mute_user/${userId}/${muteStatus}`); xhr[0].onload = function() { let data try {data = JSON.parse(xhr[0].response)} catch(e) {console.log(e)} success = xhr[0].status >= 200 && xhr[0].status < 300; showToast(success, getMessageFromJsonData(success, data)); }; xhr[0].send(xhr[1]); document.getElementById('mute-user-' + buttonId).classList.toggle("d-none"); document.getElementById('unmute-user-' + buttonId).classList.toggle("d-none"); }