File size: 15,125 Bytes
5383ef0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | // app.js β bootstrap, input handling, sidebar, attach, paste
import { send, on } from './ws.js';
import { isAuthenticated, logout, getTempId, getClientId } from './auth.js';
import { createNewSession, switchSession, currentSessionId, onSessionChange } from './sessions.js';
import { submitMessage, renderSession, setActiveSession, getIsStreaming } from './chat.js';
import { openAuthModal, closeModal, openPasteEditor } from './modals.js';
import { openSettings, applyTheme } from './settings.js';
import { showNotification, autoResize, escHtml } from './ui.js';
// ββ Sidebar βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const sidebar = document.getElementById('sidebar');
const toggleBtn = document.getElementById('toggle-sidebar-btn');
function expandSidebar() { sidebar?.classList.remove('collapsed'); sidebar?.classList.add('expanded'); }
function collapseSidebar(){ sidebar?.classList.remove('expanded'); sidebar?.classList.add('collapsed'); }
function toggleSidebar() { sidebar?.classList.contains('expanded') ? collapseSidebar() : expandSidebar(); }
toggleBtn?.addEventListener('click', toggleSidebar);
if (window.innerWidth >= 768) expandSidebar();
// ββ New chat ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
document.getElementById('new-chat-btn')?.addEventListener('click', () => {
createNewSession();
if (window.innerWidth < 768) collapseSidebar();
});
// ββ Session switching βββββββββββββββββββββββββββββββββββββββββββββββββββββ
onSessionChange((event, data) => {
if (event === 'switched') {
setActiveSession(data);
if (!data) {
document.getElementById('welcome-view')?.classList.remove('hidden');
document.getElementById('chat-view')?.classList.add('hidden');
document.getElementById('bottom-input-bar')?.classList.add('hidden');
}
}
if (event === 'data') {
if (data.id === currentSessionId) renderSession(data);
}
if (event === 'created') {
switchSession(data.id);
if (window.innerWidth < 768) collapseSidebar();
}
});
// ββ Center input (welcome view) βββββββββββββββββββββββββββββββββββββββββββ
const centerInput = document.getElementById('center-input');
const centerSendBtn = document.getElementById('center-send-btn');
centerInput?.addEventListener('input', () => autoResize(centerInput, 6));
centerInput?.addEventListener('keydown', e => {
if (e.key === 'Enter' && !e.shiftKey) { e.preventDefault(); triggerCenterSend(); }
});
centerSendBtn?.addEventListener('click', triggerCenterSend);
// Center tool buttons
document.querySelectorAll('#center-tool-search, #center-tool-image, #center-tool-video, #center-tool-audio')
.forEach(btn => btn.addEventListener('click', () => btn.classList.toggle('active')));
function triggerCenterSend() {
const text = centerInput?.value.trim();
const attachments = pendingAttachments.splice(0);
if (!text && attachments.length === 0) return;
if (centerInput) { centerInput.value = ''; autoResize(centerInput, 6); }
clearFilePreviewRow();
if (!currentSessionId) {
// Create session first, then send
const pendingText = text, pendingAttach = attachments;
const unsub = onSessionChange((ev, s) => {
if (ev !== 'created') return;
unsub();
doSend(pendingText, pendingAttach);
});
createNewSession();
} else {
doSend(text, attachments);
}
}
// ββ Bottom input (active chat) ββββββββββββββββββββββββββββββββββββββββββββ
const bottomInput = document.getElementById('bottom-input');
const bottomSendBtn = document.getElementById('bottom-send-btn');
bottomInput?.addEventListener('input', () => autoResize(bottomInput, 6));
bottomInput?.addEventListener('keydown', e => {
if (e.key === 'Enter' && !e.shiftKey) { e.preventDefault(); triggerBottomSend(); }
});
bottomSendBtn?.addEventListener('click', () => {
if (getIsStreaming()) { send({ type: 'chat:stop' }); return; }
triggerBottomSend();
});
function triggerBottomSend() {
const text = bottomInput?.value.trim();
const attachments = pendingAttachments.splice(0);
if (!text && attachments.length === 0) return;
if (bottomInput) { bottomInput.value = ''; autoResize(bottomInput, 6); }
clearFilePreviewRow();
doSend(text || '', attachments);
}
document.querySelectorAll('.tool-btn-sm').forEach(btn =>
btn.addEventListener('click', () => btn.classList.toggle('active')));
// ββ Core send βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function doSend(text, attachments = []) {
submitMessage(text, attachments);
}
// ββ Attachments βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
let pendingAttachments = [];
const LARGE_PASTE_THRESHOLD = 10000;
function openAttachMenu(e, triggerEl) {
e.preventDefault(); e.stopPropagation();
const menu = document.getElementById('attach-context-menu');
if (!menu) return;
menu.innerHTML = '';
for (const item of [
{ label: 'π Upload file', onClick: () => document.getElementById('file-input')?.click() },
{ label: 'πΌοΈ Upload image', onClick: () => document.getElementById('image-input')?.click() },
]) {
const el = document.createElement('div');
el.className = 'context-item'; el.textContent = item.label;
el.addEventListener('click', () => { menu.classList.add('hidden'); item.onClick(); });
menu.appendChild(el);
}
menu.classList.remove('hidden');
// Position above the trigger
const rect = triggerEl.getBoundingClientRect();
const mh = menu.getBoundingClientRect().height || 80;
menu.style.left = `${Math.max(8, rect.left)}px`;
menu.style.top = `${rect.top - mh - 8}px`;
setTimeout(() => document.addEventListener('click', () => menu.classList.add('hidden'), { once: true }), 0);
}
document.getElementById('center-attach-btn')?.addEventListener('click', e =>
openAttachMenu(e, document.getElementById('center-attach-btn')));
document.getElementById('bottom-attach-btn')?.addEventListener('click', e =>
openAttachMenu(e, document.getElementById('bottom-attach-btn')));
// File input handlers
document.getElementById('file-input')?.addEventListener('change', async function() {
for (const file of this.files) {
const text = await file.text();
pendingAttachments.push({ type: 'text', name: file.name, content: text });
}
this.value = '';
renderFilePreviewRow();
});
document.getElementById('image-input')?.addEventListener('change', async function() {
for (const file of this.files) await addImageFile(file);
this.value = '';
});
async function addImageFile(file) {
const dataUrl = await new Promise((res, rej) => {
const reader = new FileReader();
reader.onload = () => res(reader.result);
reader.onerror = rej;
reader.readAsDataURL(file);
});
const comma = dataUrl.indexOf(',');
const mimeType = dataUrl.slice(5, dataUrl.indexOf(';'));
const base64 = dataUrl.slice(comma + 1);
pendingAttachments.push({ type: 'image', name: file.name, base64, mimeType });
renderFilePreviewRow();
}
function renderFilePreviewRow() {
const row = document.getElementById('file-preview-row');
if (!row) return;
row.innerHTML = '';
pendingAttachments.forEach((a, i) => {
const wrap = document.createElement('div');
wrap.style.cssText = 'position:relative;display:inline-flex;align-items:center;';
if (a.type === 'image') {
const img = document.createElement('img');
img.src = `data:${a.mimeType};base64,${a.base64}`;
img.style.cssText = 'width:48px;height:48px;object-fit:cover;border-radius:6px;display:block;';
wrap.appendChild(img);
} else {
const chip = document.createElement('div');
chip.className = 'pasted-chip';
const icon = document.createElement('span'); icon.textContent = 'π';
const name = document.createElement('span'); name.textContent = a.name;
chip.appendChild(icon); chip.appendChild(name);
chip.addEventListener('click', () => openPasteEditor(a.content, nc => { pendingAttachments[i].content = nc; }));
wrap.appendChild(chip);
}
const rm = document.createElement('button');
rm.textContent = 'Γ';
rm.style.cssText = 'position:absolute;top:-5px;right:-5px;width:18px;height:18px;border-radius:50%;' +
'background:var(--bg-raised);border:1px solid var(--border-bright);cursor:pointer;' +
'display:flex;align-items:center;justify-content:center;font-size:11px;color:var(--text);z-index:1;';
rm.addEventListener('click', e => { e.stopPropagation(); pendingAttachments.splice(i, 1); renderFilePreviewRow(); });
wrap.appendChild(rm);
row.appendChild(wrap);
});
}
function clearFilePreviewRow() {
pendingAttachments = [];
const row = document.getElementById('file-preview-row');
if (row) row.innerHTML = '';
}
// ββ Paste & drag-drop βββββββββββββββββββββββββββββββββββββββββββββββββββββ
function handlePaste(e) {
const items = Array.from(e.clipboardData?.items || []);
// Image in clipboard
const imgItem = items.find(i => i.kind === 'file' && i.type.startsWith('image/'));
if (imgItem) { e.preventDefault(); addImageFile(imgItem.getAsFile()); return; }
// Large text
const textItem = items.find(i => i.kind === 'string' && i.type === 'text/plain');
if (textItem) {
textItem.getAsString(text => {
if (text.length > LARGE_PASTE_THRESHOLD) {
e.preventDefault();
pendingAttachments.push({ type: 'text', name: `pasted-${Date.now()}.txt`, content: text });
renderFilePreviewRow();
}
});
}
}
[centerInput, bottomInput].forEach(input => {
input?.addEventListener('paste', handlePaste);
input?.addEventListener('dragover', e => e.preventDefault());
input?.addEventListener('drop', async e => {
e.preventDefault();
for (const file of e.dataTransfer.files)
if (file.type.startsWith('image/')) await addImageFile(file);
});
});
// ββ Auth/settings buttons βββββββββββββββββββββββββββββββββββββββββββββββββ
document.getElementById('signin-btn')?.addEventListener('click', () => openAuthModal('signin'));
document.getElementById('settings-btn')?.addEventListener('click', () => openSettings('chat'));
document.getElementById('settings-btn-guest')?.addEventListener('click', () => openSettings('chat'));
document.getElementById('user-profile-btn')?.addEventListener('click', e => {
const btn = e.currentTarget;
const rect = btn.getBoundingClientRect();
const menu = document.getElementById('user-context-menu');
if (!menu) return;
const menuItems = [
{ label: 'βοΈ Settings', onClick: () => openSettings('chat') },
{ label: 'π€ Account', onClick: () => openSettings('account') },
{ label: 'π³ Billing Portal', onClick: () => window.open('https://sharktide-lightning.hf.space/portal', '_blank') },
{ sep: true },
{ label: 'ποΈ Clear All Chats', danger: true,
onClick: () => { if (confirm('Delete all chats? This cannot be undone.')) send({ type: 'sessions:deleteAll' }); }},
{ sep: true },
{ label: 'πͺ Sign Out', danger: true, onClick: () => logout() },
];
menu.innerHTML = '';
for (const item of menuItems) {
if (item.sep) {
const s = document.createElement('div'); s.style.cssText = 'height:1px;background:var(--border);margin:3px 0;';
menu.appendChild(s); continue;
}
const el = document.createElement('div');
el.className = 'context-item' + (item.danger ? ' danger' : '');
el.textContent = item.label;
el.addEventListener('click', () => { menu.classList.add('hidden'); item.onClick(); });
menu.appendChild(el);
}
menu.classList.remove('hidden');
const mw = 200;
let left = rect.left, top = rect.top;
const mh = menu.scrollHeight || 200;
top = rect.top - mh - 8;
if (left + mw > window.innerWidth - 8) left = window.innerWidth - mw - 8;
menu.style.left = `${Math.max(8, left)}px`;
menu.style.top = `${Math.max(8, top)}px`;
setTimeout(() => document.addEventListener('click', () => menu.classList.add('hidden'), { once: true }), 0);
});
// ββ Share import from URL ?share=token ββββββββββββββββββββββββββββββββββββ
function checkShareParam() {
const params = new URLSearchParams(location.search);
const token = params.get('share');
if (!token) return;
const banner = document.getElementById('share-import-banner');
const bannerText= document.getElementById('share-banner-text');
const importBtn = document.getElementById('share-import-btn');
const dismissBtn= document.getElementById('share-dismiss-btn');
fetch(`/api/share/${encodeURIComponent(token)}`)
.then(r => r.ok ? r.json() : null)
.then(data => {
if (!data) return;
if (bannerText) bannerText.textContent = `Import shared chat: "${data.name}"?`;
banner?.classList.remove('hidden');
})
.catch(() => {});
importBtn?.addEventListener('click', () => {
if (!isAuthenticated()) { openAuthModal('signin'); return; }
send({ type: 'sessions:import', token });
banner?.classList.add('hidden');
history.replaceState({}, '', '/');
});
dismissBtn?.addEventListener('click', () => {
banner?.classList.add('hidden');
history.replaceState({}, '', '/');
});
}
// ββ Connection notifications ββββββββββββββββββββββββββββββββββββββββββββββ
let wasDisconnected = false;
on('ws:disconnected', () => {
wasDisconnected = true;
showNotification({ type: 'warning', message: 'Connection lost β reconnectingβ¦', duration: 3000 });
});
on('ws:connected', () => {
if (wasDisconnected) showNotification({ type: 'success', message: 'Reconnected', duration: 2000 });
wasDisconnected = false;
});
// ββ Init ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
document.addEventListener('DOMContentLoaded', () => {
checkShareParam();
applyTheme('dark'); // default until auth resolves
});
|