2022-12-29 14:20:27 +00:00
|
|
|
function more_comments(cid, sort) {
|
|
|
|
btn = document.getElementById(`btn-${cid}`);
|
|
|
|
btn.disabled = true;
|
|
|
|
btn.innerHTML = "Requesting...";
|
|
|
|
const form = new FormData();
|
|
|
|
form.append("formkey", formkey());
|
|
|
|
form.append("sort", sort);
|
|
|
|
const xhr = new XMLHttpRequest();
|
2023-03-24 16:08:55 +00:00
|
|
|
|
|
|
|
let url;
|
|
|
|
if (location.pathname.startsWith('/@') && location.pathname.endsWith('/comments'))
|
|
|
|
url = location.pathname.replace("/comments", `/more_comments/${cid}`)
|
|
|
|
else
|
|
|
|
url = `/more_comments/${cid}`
|
|
|
|
|
|
|
|
xhr.open("get", url);
|
2022-12-29 14:20:27 +00:00
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
2023-03-10 03:21:02 +00:00
|
|
|
xhr.onload=function(){
|
2022-12-29 14:20:27 +00:00
|
|
|
if (xhr.status==200) {
|
|
|
|
let e = document.getElementById(`replies-of-c_${cid}`)
|
2022-12-30 13:17:04 +00:00
|
|
|
e.innerHTML = xhr.response.replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '').replace(/data-nonce=".*?"/g, `data-nonce="${nonce}"`);
|
2023-01-01 07:55:25 +00:00
|
|
|
register_new_elements(e);
|
2022-12-29 14:20:27 +00:00
|
|
|
bs_trigger(e)
|
|
|
|
|
2023-03-24 16:08:55 +00:00
|
|
|
if (typeof highlight_unread === "function")
|
|
|
|
highlight_unread("old-comment-counts")
|
2022-12-29 14:20:27 +00:00
|
|
|
}
|
|
|
|
btn.disabled = false;
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|