2022-07-16 21:00:02 +00:00
|
|
|
const reason_comment = document.getElementById("reason_comment")
|
|
|
|
const reportCommentButton = document.getElementById("reportCommentButton");
|
|
|
|
|
|
|
|
reason_comment.addEventListener('keydown', (e) => {
|
|
|
|
if(!((e.ctrlKey || e.metaKey) && e.key === "Enter")) return;
|
|
|
|
|
|
|
|
const targetDOM = document.activeElement;
|
|
|
|
if(!(targetDOM instanceof HTMLInputElement)) return;
|
|
|
|
|
|
|
|
reportCommentButton.click()
|
|
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('reportCommentModal')).hide()
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function report_commentModal(id, author) {
|
|
|
|
|
|
|
|
document.getElementById("comment-author").textContent = author;
|
|
|
|
|
|
|
|
document.getElementById("reportCommentFormBefore").classList.remove('d-none');
|
|
|
|
document.getElementById("reportCommentFormAfter").classList.add('d-none');
|
|
|
|
|
|
|
|
reportCommentButton.innerHTML='Report comment';
|
|
|
|
reportCommentButton.disabled = false;
|
|
|
|
reportCommentButton.classList.remove('disabled');
|
|
|
|
|
|
|
|
reason_comment.value = ""
|
|
|
|
setTimeout(() => {
|
|
|
|
reason_comment.focus()
|
|
|
|
}, 500);
|
|
|
|
|
|
|
|
reportCommentButton.onclick = function() {
|
|
|
|
this.innerHTML='Reporting comment';
|
|
|
|
this.disabled = true;
|
|
|
|
this.classList.add('disabled');
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("POST", '/report/comment/'+id);
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData()
|
2022-07-16 21:00:02 +00:00
|
|
|
form.append("formkey", formkey());
|
|
|
|
form.append("reason", reason_comment.value);
|
|
|
|
|
|
|
|
xhr.onload=function() {
|
|
|
|
document.getElementById("reportCommentFormBefore").classList.add('d-none');
|
|
|
|
document.getElementById("reportCommentFormAfter").classList.remove('d-none');
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.onerror=function(){alert(errortext)};
|
|
|
|
xhr.send(form);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// Returns the selection text based on the range with the HTML
|
|
|
|
function getSelectionTextHtml() {
|
|
|
|
let html = "";
|
|
|
|
let sel = getSelection();
|
|
|
|
if (sel.rangeCount) {
|
|
|
|
let container = document.createElement("div");
|
|
|
|
container.appendChild(sel.getRangeAt(0).cloneContents());
|
|
|
|
html += container.innerHTML;
|
|
|
|
}
|
|
|
|
return html;
|
|
|
|
}
|
|
|
|
|
2022-07-23 08:53:43 +00:00
|
|
|
function ToggleReplyBox(id) {
|
2022-07-16 21:00:02 +00:00
|
|
|
const element = document.getElementById(id);
|
|
|
|
const textarea = element.getElementsByTagName('textarea')[0]
|
2022-07-23 08:53:43 +00:00
|
|
|
element.classList.toggle('d-none')
|
|
|
|
|
|
|
|
if (!element.classList.contains('d-none'))
|
2022-07-16 21:00:02 +00:00
|
|
|
{
|
2022-07-23 08:53:43 +00:00
|
|
|
let text = getSelection().toString().trim()
|
|
|
|
if (text)
|
|
|
|
{
|
|
|
|
textarea.value = '> ' + text
|
|
|
|
textarea.value = textarea.value.replace(/\n/g,"\n> ").replace(/\*/g,"\\*")
|
|
|
|
if (!textarea.value.endsWith('\n')) textarea.value += '\n'
|
|
|
|
}
|
|
|
|
textarea.focus()
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleEdit(id){
|
|
|
|
comment=document.getElementById("comment-text-"+id);
|
|
|
|
form=document.getElementById("comment-edit-"+id);
|
|
|
|
box=document.getElementById('comment-edit-body-'+id);
|
|
|
|
actions = document.getElementById('comment-' + id +'-actions');
|
|
|
|
|
|
|
|
comment.classList.toggle("d-none");
|
|
|
|
form.classList.toggle("d-none");
|
|
|
|
actions.classList.toggle("d-none");
|
|
|
|
autoExpand(box);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function delete_commentModal(id) {
|
|
|
|
document.getElementById("deleteCommentButton").onclick = function() {
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("POST", `/delete/comment/${id}`);
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData()
|
2022-07-16 21:00:02 +00:00
|
|
|
form.append("formkey", formkey());
|
|
|
|
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.getElementsByClassName(`comment-${id}-only`)[0].classList.add('deleted');
|
|
|
|
document.getElementById(`delete-${id}`).classList.add('d-none');
|
|
|
|
document.getElementById(`undelete-${id}`).classList.remove('d-none');
|
|
|
|
document.getElementById(`delete2-${id}`).classList.add('d-none');
|
|
|
|
document.getElementById(`undelete2-${id}`).classList.remove('d-none');
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function post_reply(id){
|
|
|
|
const btn = document.getElementById(`save-reply-to-${id}`)
|
|
|
|
btn.disabled = true;
|
|
|
|
btn.classList.add('disabled');
|
|
|
|
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData();
|
2022-07-16 21:00:02 +00:00
|
|
|
form.append('formkey', formkey());
|
|
|
|
form.append('parent_id', id);
|
|
|
|
form.append('body', document.getElementById('reply-form-body-'+id).value);
|
|
|
|
|
|
|
|
try {
|
|
|
|
for (const e of document.getElementById('file-upload').files)
|
|
|
|
form.append('file', e);
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("post", "/reply");
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
xhr.onload=function(){
|
|
|
|
let data
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
|
|
|
if (data && data["comment"]) {
|
|
|
|
commentForm=document.getElementById('comment-form-space-'+id);
|
|
|
|
commentForm.innerHTML = data["comment"].replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '').replace('comment-collapse-desktop d-none d-md-block','d-none').replace('border-left: 2px solid','padding-left:0;border-left: 0px solid');
|
|
|
|
bs_trigger(commentForm);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (data && data["error"]) document.getElementById('toast-post-error-text').innerText = data["error"];
|
|
|
|
else document.getElementById('toast-post-error-text').innerText = "Error, please try again later."
|
|
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-error')).show();
|
|
|
|
}
|
|
|
|
setTimeout(() => {
|
|
|
|
btn.disabled = false;
|
|
|
|
btn.classList.remove('disabled');
|
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|
|
|
|
|
|
|
|
function comment_edit(id){
|
|
|
|
const btn = document.getElementById(`edit-btn-${id}`)
|
|
|
|
btn.disabled = true
|
|
|
|
btn.classList.add('disabled');
|
|
|
|
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData();
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
form.append('formkey', formkey());
|
|
|
|
form.append('body', document.getElementById('comment-edit-body-'+id).value);
|
|
|
|
|
|
|
|
try {
|
|
|
|
for (const e of document.getElementById('file-edit-reply-'+id).files)
|
|
|
|
form.append('file', e);
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("post", "/edit_comment/"+id);
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
xhr.onload=function(){
|
|
|
|
let data
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
|
|
|
if (data && data["comment"]) {
|
|
|
|
commentForm=document.getElementById('comment-text-'+id);
|
|
|
|
commentForm.innerHTML = data["comment"].replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '')
|
|
|
|
document.getElementById('cancel-edit-'+id).click()
|
|
|
|
bs_trigger(commentForm);
|
2022-08-05 20:00:16 +00:00
|
|
|
document.getElementById('filename-show-reply-t2_' + id).innerHTML = '<i class="fas fa-file"></i>';
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (data && data["error"]) document.getElementById('toast-post-error-text').innerText = data["error"];
|
|
|
|
else document.getElementById('toast-post-error-text').innerText = "Error, please try again later."
|
|
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-error')).show();
|
|
|
|
}
|
|
|
|
setTimeout(() => {
|
|
|
|
btn.disabled = false;
|
|
|
|
btn.classList.remove('disabled');
|
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|
|
|
|
|
2022-07-23 08:53:17 +00:00
|
|
|
function post_comment(fullname, hide){
|
2022-07-16 21:00:02 +00:00
|
|
|
const btn = document.getElementById('save-reply-to-'+fullname)
|
|
|
|
btn.disabled = true
|
|
|
|
btn.classList.add('disabled');
|
|
|
|
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData();
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
form.append('formkey', formkey());
|
|
|
|
form.append('parent_fullname', fullname);
|
|
|
|
form.append('submission', document.getElementById('reply-form-submission-'+fullname).value);
|
|
|
|
form.append('body', document.getElementById('reply-form-body-'+fullname).value);
|
|
|
|
|
|
|
|
try {
|
|
|
|
for (const e of document.getElementById('file-upload-reply-'+fullname).files)
|
|
|
|
form.append('file', e);
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("post", "/comment");
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
xhr.onload=function(){
|
|
|
|
let data
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
|
|
|
if (data && data["comment"]) {
|
2022-07-23 09:08:02 +00:00
|
|
|
if (hide) document.getElementById(hide).classList.add('d-none');
|
2022-07-23 08:53:17 +00:00
|
|
|
|
|
|
|
let id = fullname.split('_')[1];
|
|
|
|
let name = 'comment-form-space-' + fullname;
|
|
|
|
commentForm = document.getElementById(name);
|
|
|
|
|
2022-07-23 09:08:02 +00:00
|
|
|
let comments = document.getElementById('replies-of-' + fullname);
|
2022-07-23 08:53:17 +00:00
|
|
|
let comment = data["comment"].replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '');
|
|
|
|
|
|
|
|
comments.innerHTML = comment + comments.innerHTML;
|
2022-07-23 09:19:47 +00:00
|
|
|
if (!hide) comments.scrollIntoView()
|
2022-07-23 08:53:17 +00:00
|
|
|
|
2022-07-16 21:00:02 +00:00
|
|
|
bs_trigger(commentForm);
|
2022-07-23 08:53:17 +00:00
|
|
|
|
|
|
|
btn.disabled = false;
|
|
|
|
btn.classList.remove('disabled');
|
|
|
|
|
|
|
|
document.getElementById('reply-form-body-'+fullname).value = ''
|
2022-07-23 09:19:47 +00:00
|
|
|
document.getElementById('form-preview-'+fullname).innerHTML = ''
|
2022-08-05 20:00:16 +00:00
|
|
|
document.getElementById('filename-show-reply-' + fullname).innerHTML = '<i class="fas fa-file"></i>';
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (data && data["error"]) document.getElementById('toast-post-error-text').innerText = data["error"];
|
|
|
|
else document.getElementById('toast-post-error-text').innerText = "Error, please try again later."
|
|
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-error')).show();
|
2022-07-23 08:53:17 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
btn.disabled = false;
|
|
|
|
btn.classList.remove('disabled');
|
|
|
|
}, 2000);
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|
|
|
|
|
|
|
|
document.onpaste = function(event) {
|
|
|
|
var focused = document.activeElement;
|
|
|
|
if (focused.id.includes('reply-form-body-')) {
|
|
|
|
files = event.clipboardData.files
|
|
|
|
if (files.length)
|
|
|
|
{
|
|
|
|
var fullname = focused.dataset.fullname;
|
|
|
|
f=document.getElementById('file-upload-reply-' + fullname);
|
|
|
|
try {
|
|
|
|
let filename = ''
|
|
|
|
for (const file of files)
|
|
|
|
filename += file.name + ', '
|
|
|
|
filename = filename.toLowerCase().slice(0, -2)
|
|
|
|
f.files = files;
|
|
|
|
document.getElementById('filename-show-reply-' + fullname).textContent = filename;
|
|
|
|
}
|
|
|
|
catch(e) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (focused.id.includes('comment-edit-body-')) {
|
|
|
|
files = event.clipboardData.files
|
|
|
|
if (files.length)
|
|
|
|
{
|
|
|
|
var id = focused.dataset.id;
|
|
|
|
f=document.getElementById('file-edit-reply-' + id);
|
|
|
|
let filename = ''
|
|
|
|
for (const file of files)
|
|
|
|
filename += file.name + ', '
|
|
|
|
filename = filename.toLowerCase().slice(0, -2)
|
|
|
|
f.files = files;
|
|
|
|
document.getElementById('filename-edit-reply-' + id).textContent = filename;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (focused.id.includes('post-edit-box-')) {
|
|
|
|
files = event.clipboardData.files
|
|
|
|
if (files.length)
|
|
|
|
{
|
|
|
|
var id = focused.dataset.id;
|
|
|
|
f=document.getElementById('file-upload-edit-' + id);
|
|
|
|
let filename = ''
|
|
|
|
for (const file of files)
|
|
|
|
filename += file.name + ', '
|
|
|
|
filename = filename.toLowerCase().slice(0, -2)
|
|
|
|
f.files = files;
|
|
|
|
document.getElementById('filename-show-edit-' + id).textContent = filename;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handle_action(type, cid, thing) {
|
|
|
|
|
|
|
|
|
|
|
|
const btns = document.getElementsByClassName(`action-${cid}`)
|
|
|
|
for (const btn of btns)
|
|
|
|
{
|
|
|
|
btn.disabled = true;
|
|
|
|
btn.classList.add('disabled');
|
|
|
|
}
|
|
|
|
|
|
|
|
const form = new FormData();
|
|
|
|
form.append('formkey', formkey());
|
|
|
|
form.append('comment_id', cid);
|
|
|
|
form.append('thing', thing);
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("post", `/${type}/${cid}`);
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xhr.onload=function(){
|
|
|
|
let data
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
|
|
|
if (data && data["response"]) {
|
|
|
|
const element = document.getElementById(`${type}-${cid}`);
|
|
|
|
element.innerHTML = data["response"]
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (data && data["error"]) document.getElementById('toast-post-error-text').innerText = data["error"];
|
|
|
|
else document.getElementById('toast-post-error-text').innerText = "Error, please try again later."
|
|
|
|
bootstrap.Toast.getOrCreateInstance(document.getElementById('toast-post-error')).show();
|
|
|
|
}
|
|
|
|
setTimeout(() => {
|
|
|
|
for (const btn of btns)
|
|
|
|
{
|
|
|
|
btn.disabled = false;
|
|
|
|
btn.classList.remove('disabled');
|
|
|
|
}
|
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|