rDrama/files/assets/js/chat.js

350 lines
10 KiB
JavaScript
Raw Normal View History

function formatDate(d) {
return d.toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})
2023-01-21 10:36:21 +00:00
}
for (const e of timestamps) {
e.innerHTML = formatDate(new Date(e.dataset.time*1000));
};
const ua = window.navigator.userAgent
2023-01-21 10:36:21 +00:00
2023-09-26 18:39:05 +00:00
const socket = io()
2023-01-21 10:36:21 +00:00
const chatline = document.getElementsByClassName('chat-line')[0]
const box = document.getElementById('chat-window')
const ta = document.getElementById('input-text-chat')
2023-01-22 02:43:28 +00:00
2023-01-21 10:36:21 +00:00
const vid = document.getElementById('vid').value
const slurreplacer = document.getElementById('slurreplacer').value
let is_typing = false;
const blocked_user_ids = document.getElementById('blocked_user_ids').value.split(', ')
2023-08-09 15:19:43 +00:00
2023-01-22 02:43:28 +00:00
socket.on('speak', function(json) {
2023-08-09 15:19:43 +00:00
if (blocked_user_ids.includes(json.user_id.toString())) {
return
}
let text
2023-01-21 10:36:21 +00:00
let text_html
if (slurreplacer != '0') {
2023-08-09 15:19:32 +00:00
text = json.text_censored
text_html = json.text_html_censored
}
else {
2023-08-09 15:19:32 +00:00
text = json.text
text_html = json.text_html
}
2023-01-21 10:36:21 +00:00
2023-01-22 05:30:57 +00:00
chatline.classList.remove('chat-mention');
2023-08-20 15:57:31 +00:00
if (text_html.includes(`<a href="/id/${vid}"`)){
2023-01-21 10:36:21 +00:00
chatline.classList.add('chat-mention');
}
notifs = notifs + 1;
if (notifs == 1) {
2023-09-26 20:05:39 +00:00
flash();
2023-01-21 10:36:21 +00:00
}
2023-01-22 05:30:57 +00:00
const users = document.getElementsByClassName('user_id');
const last_user = users[users.length-1].value;
2023-09-29 06:11:18 +00:00
const scrolled_down = (box.scrollHeight - box.scrollTop <= innerHeight)
2023-01-21 10:36:21 +00:00
2023-08-09 15:19:32 +00:00
if (last_user != json.user_id) {
document.getElementsByClassName('avatar-pic')[0].src = '/pp/' + json.user_id
2023-01-22 02:43:28 +00:00
2023-08-09 15:19:32 +00:00
if (json.hat)
document.getElementsByClassName('avatar-hat')[0].src = json.hat + "?h=7"
2023-01-21 10:36:21 +00:00
else
document.getElementsByClassName('avatar-hat')[0].removeAttribute("src")
2023-01-25 03:30:08 +00:00
const userlink = document.getElementsByClassName('userlink')[0]
2023-08-09 15:19:32 +00:00
userlink.href = '/@' + json.username
userlink.style.color = '#' + json.namecolor
2023-01-22 02:43:28 +00:00
2023-08-14 12:26:42 +00:00
const username = document.getElementsByClassName('username')[0]
username.textContent = json.username
if (json.patron) {
username.classList.add('patron')
username.style.backgroundColor = '#' + json.namecolor
}
else {
username.classList.remove('patron')
username.style.backgroundColor = null
}
2023-10-26 19:16:27 +00:00
if (json.pride_username)
username.setAttribute("pride_username", "")
else
username.removeAttribute("pride_username")
2023-08-09 15:19:32 +00:00
document.getElementsByClassName('user_id')[0].value = json.user_id
2023-01-22 05:30:57 +00:00
document.getElementsByClassName('time')[0].innerHTML = formatDate(new Date(json.time*1000))
2023-01-21 10:36:21 +00:00
}
2023-08-09 15:19:32 +00:00
document.getElementsByClassName('chat-line')[0].id = json.id
2023-01-21 10:36:21 +00:00
document.getElementsByClassName('text')[0].innerHTML = escapeHTML(text)
document.getElementsByClassName('chat-message')[0].innerHTML = text_html.replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '').replace(/ loading="lazy"/g, '')
2023-01-21 10:36:21 +00:00
2023-01-21 23:19:46 +00:00
document.getElementsByClassName('quotes')[0].classList.add("d-none")
2023-08-09 15:19:32 +00:00
if (json.quotes) {
const quoted = document.getElementById(json.quotes)
2023-01-21 23:19:46 +00:00
if (quoted) {
2023-01-22 05:30:57 +00:00
const quoted_user = quoted.parentElement.querySelector('.user_id').value
if (quoted_user == vid){
chatline.classList.add('chat-mention');
}
2023-01-21 23:19:46 +00:00
document.getElementsByClassName('quotes')[0].classList.remove("d-none")
2023-08-09 15:19:32 +00:00
document.getElementsByClassName('QuotedMessageLink')[0].href = '#' + json.quotes
2023-09-29 00:44:22 +00:00
document.getElementsByClassName('QuotedUser')[0].innerHTML = quoted.parentElement.querySelector('.userlink').textContent.trim()
2023-01-21 23:19:46 +00:00
document.getElementsByClassName('QuotedMessage')[0].innerHTML = quoted.querySelector('.text').innerHTML
}
2023-01-21 10:36:21 +00:00
}
let line = document.getElementsByClassName('chat-line')[0].cloneNode(true)
register_new_elements(line);
bs_trigger(line)
2023-08-09 15:19:32 +00:00
if (last_user == json.user_id) {
2023-01-21 10:36:21 +00:00
box.querySelector('.chat-group:last-child').append(line)
}
else {
2023-01-22 02:43:28 +00:00
const chatgroup = document.getElementsByClassName('chat-group')[0].cloneNode(true)
2023-01-21 10:36:21 +00:00
chatgroup.append(line)
box.append(chatgroup)
}
2023-08-09 15:19:32 +00:00
const line2 = document.getElementById(json.id)
2023-02-18 16:08:48 +00:00
register_new_elements(line2);
bs_trigger(line2)
2023-08-20 17:03:20 +00:00
if (scrolled_down || json.user_id == vid) {
2023-01-21 10:36:21 +00:00
box.scrollTo(0, box.scrollHeight)
2023-08-20 17:03:20 +00:00
setTimeout(function () {
box.scrollTo(0, box.scrollHeight)
}, 200);
2023-08-20 19:31:06 +00:00
setTimeout(function () {
box.scrollTo(0, box.scrollHeight)
}, 500);
2023-10-15 15:14:47 +00:00
setTimeout(function () {
box.scrollTo(0, box.scrollHeight)
}, 1000);
2023-08-20 17:03:20 +00:00
}
2023-01-21 10:36:21 +00:00
})
function send() {
2023-03-04 23:07:05 +00:00
const text = ta.value.trim();
2023-02-27 15:02:35 +00:00
const input = document.getElementById('file');
const files = input.files;
2023-01-21 10:36:21 +00:00
if (text || files)
{
let sending;
if (files[0]) sending = files[0]
else sending = ''
socket.emit('speak', {
"message": text,
"quotes": document.getElementById('quotes_id').value,
"file": sending,
});
2023-03-04 23:07:05 +00:00
ta.value = ''
2023-01-21 10:36:21 +00:00
is_typing = false
socket.emit('typing', false);
2023-03-04 23:07:05 +00:00
autoExpand(ta);
2023-01-21 10:36:21 +00:00
document.getElementById("quotes").classList.add("d-none")
2023-01-21 11:05:58 +00:00
document.getElementById('quotes_id').value = null;
oldfiles[ta.id] = new DataTransfer();
2023-02-27 15:02:35 +00:00
input.value = null;
2023-10-05 12:40:03 +00:00
input.previousElementSibling.className = "fas fa-image";
input.previousElementSibling.textContent = "";
2023-01-21 11:58:10 +00:00
box.scrollTo(0, box.scrollHeight);
setTimeout(function () {
2023-01-21 11:58:10 +00:00
box.scrollTo(0, box.scrollHeight)
}, 200);
2023-08-20 19:31:06 +00:00
setTimeout(function () {
box.scrollTo(0, box.scrollHeight)
}, 500);
2023-10-15 15:14:47 +00:00
setTimeout(function () {
box.scrollTo(0, box.scrollHeight)
}, 1000);
2023-01-21 10:36:21 +00:00
}
}
function quote(t) {
document.getElementById("quotes").classList.remove("d-none")
2023-02-10 13:44:47 +00:00
const text = t.parentElement.parentElement.getElementsByClassName("text")[0].innerHTML.replace(/\*/g,"\\*").split('\n').pop()
2023-01-21 10:36:21 +00:00
document.getElementById('QuotedMessage').innerHTML = text
2023-02-10 13:44:47 +00:00
const username = t.parentElement.parentElement.parentElement.parentElement.parentElement.getElementsByClassName('userlink')[0].textContent
2023-09-29 00:44:22 +00:00
document.getElementById('QuotedUser').innerHTML = username.trim()
2023-01-21 10:36:21 +00:00
2023-02-10 13:44:47 +00:00
const id = t.parentElement.parentElement.parentElement.parentElement.id
2023-01-21 10:36:21 +00:00
document.getElementById('quotes_id').value = id
document.getElementById('QuotedMessageLink').href = `#${id}`
2023-01-21 11:05:58 +00:00
2023-03-04 23:07:05 +00:00
ta.focus()
2023-01-21 10:36:21 +00:00
}
ta.addEventListener("keydown", function(e) {
2023-10-08 19:55:52 +00:00
if (e.key === 'Enter' && !e.shiftKey && !current_word) {
2023-01-21 10:36:21 +00:00
e.preventDefault();
send();
}
})
socket.on('online', function(data){
2024-03-06 03:30:21 +00:00
const online_li = data[0]
const muted_li = Object.keys(data[1])
document.getElementsByClassName('board-chat-count')[0].innerHTML = online_li.length
document.getElementById('chat-count-header-bar').innerHTML = online_li.length
2023-01-24 05:28:56 +00:00
const admin_level = parseInt(document.getElementById('admin_level').value)
2023-01-21 10:36:21 +00:00
let online = ''
let online2 = '<b>Users Online</b>'
for (const u of online_li)
2023-01-21 10:36:21 +00:00
{
2023-08-14 12:26:42 +00:00
let patron = ''
if (u[3])
2023-12-15 01:59:22 +00:00
patron += ` class="patron chat-patron" style="background-color:#${u[2]}"`
2023-10-26 19:16:27 +00:00
if (u[5])
patron += " pride_username"
2023-08-14 12:26:42 +00:00
2023-01-23 06:04:02 +00:00
online += `<li>`
if (admin_level && muted_li.includes(u[1].toLowerCase()))
2023-01-23 06:04:02 +00:00
online += '<b class="text-danger muted" data-bs-toggle="tooltip" title="Muted">X</b> '
online += `<a class="font-weight-bold" target="_blank" href="/@${u[1]}" style="color:#${u[2]}"><img loading="lazy" class="mr-1" src="/pp/${u[4]}"><span${patron}>${u[1]}</span></a></li>`
online2 += `<br>@${u[1]}`
2023-01-21 10:36:21 +00:00
}
const online_el = document.getElementById('online')
2023-08-24 01:33:15 +00:00
if (online_el) {
online_el.innerHTML = online
bs_trigger(online_el)
}
2023-01-21 10:36:21 +00:00
document.getElementById('online2').setAttribute("data-bs-original-title", online2);
document.getElementById('online3').innerHTML = online
2023-01-23 06:04:02 +00:00
bs_trigger(document.getElementById('online3'))
2023-01-21 10:36:21 +00:00
})
let timer_id;
function remove_typing() {
is_typing = false;
socket.emit('typing', false);
}
2023-01-21 10:36:21 +00:00
ta.addEventListener("input", function() {
2023-03-04 23:07:05 +00:00
text = ta.value
2023-08-08 17:15:35 +00:00
if (!text && is_typing){
is_typing = false;
2023-01-21 10:36:21 +00:00
socket.emit('typing', false);
}
2023-08-08 17:15:35 +00:00
else if (text && !is_typing) {
is_typing = true;
2023-01-21 10:36:21 +00:00
socket.emit('typing', true);
2024-03-09 06:23:35 +00:00
clearTimeout(timer_id)
2023-09-07 15:26:31 +00:00
timer_id = setTimeout(remove_typing, 2000);
2023-01-21 10:36:21 +00:00
}
})
socket.on('typing', function (users){
if (users.length==0){
document.getElementById('typing-indicator').innerHTML = '';
}
else if (users.length==1){
document.getElementById('typing-indicator').innerHTML = '<b>'+users[0]+"</b> is typing...";
}
else if (users.length==2){
document.getElementById('typing-indicator').innerHTML = '<b>'+users[0]+"</b> and <b>"+users[1]+"</b> are typing...";
}
else {
document.getElementById('typing-indicator').innerHTML = '<b>'+users[0]+"</b>, <b>"+users[1]+"</b>, and <b>"+users[2]+"</b> are typing...";
}
})
function del(t) {
2023-02-10 13:44:47 +00:00
const chatline = t.parentElement.parentElement.parentElement.parentElement
2023-01-21 10:36:21 +00:00
socket.emit('delete', chatline.id);
chatline.remove()
}
socket.on('delete', function(text) {
const text_spans = document.getElementsByClassName('text')
2024-03-06 00:15:10 +00:00
for (const span of text_spans) {
2023-01-21 10:36:21 +00:00
if (span.innerHTML == text)
{
span.parentElement.parentElement.parentElement.parentElement.parentElement.remove()
}
}
})
socket.on('refresh_chat', () => {
location.reload()
})
2023-01-21 10:36:21 +00:00
document.addEventListener('click', function (e) {
2023-02-18 16:02:19 +00:00
if (e.target.classList.contains('delconfirm')) {
2023-01-21 10:36:21 +00:00
e.target.nextElementSibling.classList.remove('d-none');
e.target.classList.add('d-none');
}
else {
for (const btn of document.querySelectorAll('.delmsg:not(.d-none)')) {
btn.classList.add('d-none');
btn.previousElementSibling.classList.remove('d-none');
}
}
2023-02-22 17:27:33 +00:00
2023-01-21 10:36:21 +00:00
if (e.target.id == "cancel") {
2023-01-21 11:02:19 +00:00
document.getElementById("quotes").classList.add("d-none");
document.getElementById('quotes_id').value = null;
2023-01-21 10:36:21 +00:00
}
});
2023-01-21 11:23:09 +00:00
2023-03-06 18:02:12 +00:00
const input = document.getElementById('file')
function handle_files() {
if (!input.files.length) return
2023-09-07 08:47:06 +00:00
const char_limit = screen_width >= 768 ? 50 : 5;
2023-10-05 12:40:03 +00:00
input.previousElementSibling.className = "";
2023-09-07 08:47:06 +00:00
input.previousElementSibling.textContent = input.files[0].name.substr(0, char_limit);
}
input.onchange = handle_files
2023-03-06 18:02:12 +00:00
document.onpaste = function(event) {
input.files = structuredClone(event.clipboardData.files);
handle_files()
2023-03-06 18:02:12 +00:00
}
function send_hearbeat() {
socket.emit('heartbeat')
}
send_hearbeat()
setInterval(send_hearbeat, 20000);
2023-01-22 05:17:25 +00:00
box.scrollTo(0, box.scrollHeight)
setTimeout(function () {
2023-01-22 05:33:26 +00:00
box.scrollTo(0, box.scrollHeight)
}, 200);
setTimeout(function () {
2023-01-22 05:33:26 +00:00
box.scrollTo(0, box.scrollHeight)
}, 500);
setTimeout(function () {
2023-01-22 05:34:01 +00:00
box.scrollTo(0, box.scrollHeight)
}, 1000);
setTimeout(function () {
2023-01-22 23:17:59 +00:00
box.scrollTo(0, box.scrollHeight)
}, 1500);
document.addEventListener('DOMContentLoaded', function () {
2023-01-22 03:16:37 +00:00
box.scrollTo(0, box.scrollHeight)
});