102 lines
3.2 KiB
JavaScript
102 lines
3.2 KiB
JavaScript
function removeComment(post_id,button1,button2) {
|
|
url="/remove_comment/"+post_id
|
|
|
|
post(url)
|
|
|
|
try {
|
|
document.getElementById("comment-"+post_id+"-only").classList.add("banned");
|
|
} catch(e) {
|
|
document.getElementById("context").classList.add("banned");
|
|
}
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
button.onclick=function(){approveComment(post_id)};
|
|
button.innerHTML='<i class="fas fa-clipboard-check"></i>Approve'
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
document.getElementById(button1).classList.toggle("d-md-block");
|
|
document.getElementById(button2).classList.toggle("d-md-block");
|
|
}
|
|
};
|
|
|
|
function approveComment(post_id,button1,button2) {
|
|
url="/approve_comment/"+post_id
|
|
|
|
post(url)
|
|
|
|
try {
|
|
document.getElementById("comment-"+post_id+"-only").classList.remove("banned");
|
|
} catch(e) {
|
|
document.getElementById("context").classList.remove("banned");
|
|
}
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
button.onclick=function(){removeComment(post_id)};
|
|
button.innerHTML='<i class="fas fa-trash-alt"></i>Remove'
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
document.getElementById(button1).classList.toggle("d-md-block");
|
|
document.getElementById(button2).classList.toggle("d-md-block");
|
|
}
|
|
}
|
|
|
|
|
|
function removeComment2(post_id,button1,button2) {
|
|
url="/remove_comment/"+post_id
|
|
|
|
post(url)
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.add("banned");
|
|
var button=document.getElementById("remove-"+post_id);
|
|
button.onclick=function(){approveComment(post_id)};
|
|
button.innerHTML='<i class="fas fa-clipboard-check"></i>Approve'
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
document.getElementById(button1).classList.toggle("d-none");
|
|
document.getElementById(button2).classList.toggle("d-none");
|
|
}
|
|
};
|
|
|
|
function approveComment2(post_id,button1,button2) {
|
|
url="/approve_comment/"+post_id
|
|
|
|
post(url)
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.remove("banned");
|
|
var button=document.getElementById("remove-"+post_id);
|
|
button.onclick=function(){removeComment(post_id)};
|
|
button.innerHTML='<i class="fas fa-trash-alt"></i>Remove'
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
document.getElementById(button1).classList.toggle("d-none");
|
|
document.getElementById(button2).classList.toggle("d-none");
|
|
}
|
|
}
|
|
|
|
function adminMuteUser(userId, muteStatus, buttonId) {
|
|
let form = new FormData();
|
|
form.append("formkey", formkey());
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
xhr.open("POST", `/mute_user/${userId}/${muteStatus}`);
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
xhr.onload = function() {
|
|
let data
|
|
try {data = JSON.parse(xhr.response)}
|
|
catch(e) {console.log(e)}
|
|
if (xhr.status >= 200 && xhr.status < 300 && data && data['message']) {
|
|
document.getElementById('toast-post-success-text').innerText = data["message"];
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-success')).show();
|
|
} else {
|
|
document.getElementById('toast-post-error-text').innerText = "Error, please try again later."
|
|
if (data && data["error"]) document.getElementById('toast-post-error-text').innerText = data["error"];
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-error')).show();
|
|
}
|
|
};
|
|
|
|
xhr.send(form);
|
|
|
|
document.getElementById('mute-user-' + buttonId).classList.add("d-none");
|
|
}
|