view src/chat.js @ 19:435f474f07c7

urls
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 Nov 2024 19:23:38 -0700
parents 0721dcf222e1
children dade6a560494
line wrap: on
line source

'use strict';

let title = document.title;
let currentChatId = null;
let eventSource;

function evalEvent(event) {
	// console.log(event);
	eval(event.data);
}

function setUserEventSource(userId) {
	let userEventSource = new EventSource(`${location.origin}/user/${userId}`);
	userEventSource.onmessage = evalEvent;
}

function selectChat(div) {
	let chatId = div.getAttribute('chat');
	if( chatId === currentChatId )
		return;
	let selected = div.parentNode.querySelector('[selected]');
	if( selected )  selected.removeAttribute('selected');
	div.setAttribute('selected','');
	ajax(`get_chat.js?chat=${chatId}`);
	currentChatId = chatId;

	if(eventSource)  eventSource.close();
	eventSource = new EventSource(`${location.origin}/chat/${chatId}`);
	eventSource.onmessage = evalEvent;
}

function gotChat(html) {
	document.querySelector('div[posts]').innerHTML = html;
	fixPosts();
	document.querySelector('div[input] textarea').focus();
	document.querySelector('div[input]').scrollIntoView({block: 'end'});
}

function fixTextarea(event) {
	let textarea = event.target;
	textarea.style.height = 'initial';
	textarea.style.height = (textarea.scrollHeight+2) + 'px';
	textarea.scrollIntoViewIfNeeded(false);
}

const isMobile = 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0;

function addPost() {
	let textarea = document.querySelector('div[input] textarea');
	let text = textarea.value;
	if( text.trim() === '' )
		return;
	ajax(`add_post.js?chat=${currentChatId}&content=${encodeURIComponent(text)}`);
	textarea.value = '';
}

function textareaKey(event) {
	if( event.keyCode===13 && !event.shiftKey && !event.ctrlKey && !isMobile ) {
		event.preventDefault();
		addPost();
	}
}

function fixPosts() {
	let spans = document.querySelectorAll('span[when][fix]');
	for( let span of spans ) {
		span.textContent = new Date(Number(span.textContent)).toLocaleString();
		span.removeAttribute('fix');
	}
	let divs = document.querySelectorAll('div[text][fix]');
	for( let div of divs ) {
		div.innerHTML = urlsToLinks(div.innerHTML);
		div.removeAttribute('fix');
	}
}

function deleteChat() {
	ajax(`delete_chat.js?chat=${currentChatId}`);
}

function added(html) {
	let input = document.querySelector('div[input]');
	input.insertAdjacentHTML('beforebegin',html);
	fixPosts();
	input.scrollIntoView({block: 'end'});
	if( !document.hasFocus() )
		document.title = title + ' *';
}

function getChats(chatId) {
	let first = document.querySelector('div[chat]');
	if( !first || first.getAttribute('chat') != chatId ) {
		// console.log('getChats');
		ajax('get_chats.js');
	}
}

function gotChats(html) {
	document.querySelector('div[chats]').innerHTML = html;
	if( currentChatId ) {
		let current = document.querySelector(`div[chat="${currentChatId}"]`);
		if( current ) {
			current.setAttribute('selected','');
			current.scrollIntoViewIfNeeded(false);
		} else {
			currentChatId = null;
			document.querySelector('div[posts]').innerHTML = '';
		}
	}
}

window.onfocus = function() {
	document.title = title;
};

let urlRegex = /(^|\s)(https?:\/\/\S+)/g;

function urlsToLinks(text) {
	return text.replace( urlRegex, '$1<a href="$2">$2</a>' );
}