2022-07-16 21:00:02 +00:00
|
|
|
function banModal(link, id, name) {
|
|
|
|
document.getElementById("banModalTitle").innerHTML = `Ban @${name}`;
|
|
|
|
document.getElementById("ban-modal-link").value = link;
|
|
|
|
document.getElementById("banUserButton").innerHTML = `Ban @${name}`;
|
|
|
|
|
|
|
|
document.getElementById("banUserButton").onclick = function() {
|
|
|
|
let form = new FormData(document.getElementById("banModalForm"));
|
|
|
|
form.append("formkey", formkey());
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("POST", `/ban_user/${id}?form`);
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
|
|
|
|
xhr.onload = function() {
|
|
|
|
let data
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
2022-10-14 10:15:06 +00:00
|
|
|
success = xhr.status >= 200 && xhr.status < 300;
|
|
|
|
showToast(success, getMessageFromJsonData(success, data));
|
2022-07-16 21:00:02 +00:00
|
|
|
};
|
2022-09-04 23:15:37 +00:00
|
|
|
|
2022-07-16 21:00:02 +00:00
|
|
|
xhr.send(form);
|
|
|
|
}
|
|
|
|
}
|