Spaces:
Running
Running
File size: 15,740 Bytes
ab31e87 695c394 ab31e87 fe40bed ab31e87 fe40bed ab31e87 fe40bed ab31e87 f00ce6c ab31e87 fe40bed ab31e87 fe40bed ab31e87 f00ce6c ab31e87 05fd0be ab31e87 05fd0be ab31e87 ddb1283 ab31e87 | 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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ReadStream Theater</title>
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0b0c10;
--panel-bg: rgba(22, 26, 35, 0.65);
--border-color: rgba(255, 255, 255, 0.08);
--accent-color: #7f5af0;
--accent-glow: rgba(127, 90, 240, 0.35);
--text-color: #fffffe;
--text-muted: #94a1b2;
--live-color: #ff0055;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 100vh;
overflow-y: auto;
padding: 10px;
}
.theater-container {
display: grid;
grid-template-columns: 1.8fr 1fr;
width: 100%;
max-width: 1350px;
height: 480px;
gap: 16px;
background: rgba(15, 15, 20, 0.4);
border-radius: 16px;
border: 1px solid var(--border-color);
padding: 16px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
@media (max-width: 1024px) {
.theater-container {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
height: auto;
max-height: none;
overflow-y: auto;
}
}
/* Video section */
.video-wrapper {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
background: #000;
border-radius: 12px;
border: 1px solid var(--border-color);
overflow: hidden;
}
.video-container {
position: relative;
width: 100%;
flex-grow: 1;
background: #000;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/* Chat section */
.chat-wrapper {
display: flex;
flex-direction: column;
background: var(--panel-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
height: 100%;
overflow: hidden;
box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
.chat-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 18px;
border-bottom: 1px solid var(--border-color);
background: rgba(0,0,0,0.15);
}
.chat-title {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
display: flex;
align-items: center;
gap: 8px;
}
.live-dot {
width: 8px;
height: 8px;
background-color: var(--live-color);
border-radius: 50%;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
70% { box-shadow: 0 0 0 6px rgba(255, 0, 85, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}
.chat-messages {
flex-grow: 1;
overflow-y: auto;
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
scroll-behavior: smooth;
}
/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Chat Messages styling */
.message-row {
display: flex;
flex-direction: column;
padding: 6px 8px;
background: rgba(255,255,255,0.02);
border-radius: 6px;
border-left: 3px solid transparent;
transition: background 0.2s ease;
animation: fadeIn 0.3s ease-out;
}
.message-row:hover {
background: rgba(255, 255, 255, 0.05);
border-left-color: var(--accent-color);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.message-meta {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 4px;
}
.message-time {
font-size: 11px;
color: var(--text-muted);
font-variant-numeric: tabular-nums;
}
.message-username {
font-size: 13px;
font-weight: 600;
cursor: pointer;
}
.badge {
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 1px 4px;
border-radius: 3px;
letter-spacing: 0.5px;
}
.badge-mod {
background: #166534;
color: #fff;
}
.badge-sub {
background: var(--accent-color);
color: #fff;
}
.message-text {
font-size: 13px;
line-height: 1.5;
color: #e2e8f0;
word-break: break-word;
}
/* Styled Emotes */
.emote {
display: inline-block;
padding: 2px 6px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
background: rgba(255,255,255,0.1);
margin: 0 2px;
border: 1px solid rgba(255,255,255,0.1);
}
.emote.pogchamp { color: #ffbe0b; background: rgba(255, 190, 11, 0.1); }
.emote.kappa { color: #a2d2ff; background: rgba(162, 210, 255, 0.1); }
.emote.monkas { color: #ff006e; background: rgba(255, 0, 110, 0.1); }
.emote.lul { color: #3a86c8; background: rgba(58, 134, 200, 0.1); }
.emote.biblethump { color: #8338ec; background: rgba(131, 56, 236, 0.1); }
.emote.head5 { color: #06d6a0; background: rgba(6, 214, 160, 0.1); }
.emote.pog { color: #ffd166; background: rgba(255, 209, 102, 0.1); }
.emote.pepega { color: #ef476f; background: rgba(239, 71, 111, 0.1); }
.chat-bottom {
padding: 14px 18px;
border-top: 1px solid var(--border-color);
background: rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 10px;
}
.chat-input-placeholder {
flex-grow: 1;
background: rgba(255,255,255,0.03);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 8px 12px;
font-size: 13px;
color: var(--text-muted);
user-select: none;
}
.chat-btn {
background: var(--accent-color);
color: #fff;
border: 0;
border-radius: 6px;
padding: 8px 14px;
font-size: 12px;
font-weight: 600;
cursor: not-allowed;
opacity: 0.6;
}
.provenance-container {
width: 100%;
max-width: 1350px;
margin-top: 12px;
padding: 10px 14px;
background: rgba(22, 26, 35, 0.65);
border: 1px solid var(--border-color);
border-radius: 10px;
font-size: 12px;
color: var(--text-muted);
line-height: 1.5;
box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.provenance-title {
color: var(--text-color);
font-weight: 600;
display: block;
margin-bottom: 4px;
text-transform: uppercase;
font-size: 10px;
letter-spacing: 0.8px;
}
</style>
</head>
<body>
<div class="theater-container">
<!-- Left: Video Player -->
<div class="video-wrapper">
<div class="video-container">
<div id="player"></div>
</div>
</div>
<!-- Right: Chat Window -->
<div class="chat-wrapper">
<div class="chat-header">
<div class="chat-title">
<div class="live-dot"></div>
<span>Live Chat Replay</span>
</div>
<div class="message-time" id="video-time-display">00:00</div>
</div>
<div class="chat-messages" id="chat-messages">
<!-- Messages stream in here -->
</div>
<div class="chat-bottom">
<div class="chat-input-placeholder">Simulated replay - chat is read-only</div>
<button class="chat-btn" disabled>Send</button>
</div>
</div>
</div>
{{PROVENANCE_HTML}}
<script>
// Embedded Chat Data Placeholder (Replaced by Python script)
const chatData = {{CHAT_DATA_JSON}};
const videoId = "{{VIDEO_ID}}";
let player;
let updateInterval;
let lastTime = -1;
let displayedMessageIds = new Set();
let flattenedMessages = [];
// Emote tags matching
const emoteMap = {
"PogChamp": "π² PogChamp",
"Kappa": "π Kappa",
"MonkaS": "π° MonkaS",
"LUL": "π LUL",
"BibleThump": "π BibleThump",
"5Head": "π§ 5Head",
"Pog": "π€© Pog",
"Pepega": "π€ͺ Pepega"
};
function parseEmotes(text) {
let html = text;
// Escape HTML
html = html.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">");
Object.keys(emoteMap).forEach(key => {
const regex = new RegExp(`\\b${key}\\b`, 'g');
const className = key.toLowerCase();
html = html.replace(regex, `<span class="emote ${className}">${emoteMap[key]}</span>`);
});
return html;
}
// Assign randomized usernames color based on hash
function getUsernameColor(username) {
const colors = ['#ff85a1', '#f15bb5', '#c77dff', '#70d6ff', '#00bbf9', '#00f5d4', '#fee440', '#52b788', '#70e000', '#ff4d6d', '#ffb703', '#f4a261', '#2ec4b6', '#a2d2ff', '#ff9ebb'];
let hash = 0;
for (let i = 0; i < username.length; i++) {
hash = username.charCodeAt(i) + ((hash << 5) - hash);
}
const index = Math.abs(hash) % colors.length;
return colors[index];
}
// chatData is a flat list of messages with precomputed numeric displayTime.
// No segment loops, no timestamp arithmetic, no NaN path.
function prepareMessages() {
flattenedMessages = chatData.map((msg, index) => ({
id: msg.id || `msg_${index}`,
displayTime: msg.displayTime, // numeric, pre-computed by pipeline
username: msg.username,
text: msg.text,
isMod: (index % 15 === 0),
isSub: (index % 4 === 0) && !(index % 15 === 0),
}));
// Guaranteed numeric sort β displayTime is never a string or NaN.
flattenedMessages.sort((a, b) => a.displayTime - b.displayTime);
}
// Create HTML elements for messages
function createMessageElement(msg) {
const row = document.createElement('div');
row.className = 'message-row';
const meta = document.createElement('div');
meta.className = 'message-meta';
const timeSpan = document.createElement('span');
timeSpan.className = 'message-time';
const mins = Math.floor(msg.displayTime / 60);
const secs = Math.floor(msg.displayTime % 60);
timeSpan.textContent = `${mins.toString().padStart(2, '0')}:${secs.toString().padStart(2, '0')}`;
meta.appendChild(timeSpan);
if (msg.isMod) {
const badge = document.createElement('span');
badge.className = 'badge badge-mod';
badge.textContent = 'Mod';
meta.appendChild(badge);
} else if (msg.isSub) {
const badge = document.createElement('span');
badge.className = 'badge badge-sub';
badge.textContent = 'Sub';
meta.appendChild(badge);
}
const userSpan = document.createElement('span');
userSpan.className = 'message-username';
userSpan.style.color = getUsernameColor(msg.username);
userSpan.textContent = msg.username;
meta.appendChild(userSpan);
row.appendChild(meta);
const textDiv = document.createElement('div');
textDiv.className = 'message-text';
textDiv.innerHTML = parseEmotes(msg.text);
row.appendChild(textDiv);
return row;
}
// Synchronize chat with video current time
function updateChat() {
if (!player || typeof player.getCurrentTime !== 'function') return;
const currentTime = player.getCurrentTime();
// Update timer display
const displayMins = Math.floor(currentTime / 60);
const displaySecs = Math.floor(currentTime % 60);
document.getElementById('video-time-display').textContent =
`${displayMins.toString().padStart(2, '0')}:${displaySecs.toString().padStart(2, '0')}`;
// Handle seek backwards or forwards significantly
if (currentTime < lastTime || currentTime - lastTime > 6) {
const chatMessagesDiv = document.getElementById('chat-messages');
chatMessagesDiv.innerHTML = '';
displayedMessageIds.clear();
// Catch up with messages immediately prior to seek point (max 12 messages to prevent overload)
const pastMessages = flattenedMessages.filter(m => m.displayTime <= currentTime);
const catchupCount = 12;
const startIdx = Math.max(0, pastMessages.length - catchupCount);
const toRender = pastMessages.slice(startIdx);
toRender.forEach(m => {
displayedMessageIds.add(m.id);
chatMessagesDiv.appendChild(createMessageElement(m));
});
chatMessagesDiv.scrollTop = chatMessagesDiv.scrollHeight;
}
lastTime = currentTime;
// Filter new messages to display
const newMessages = flattenedMessages.filter(m => m.displayTime <= currentTime && !displayedMessageIds.has(m.id));
if (newMessages.length > 0) {
const chatMessagesDiv = document.getElementById('chat-messages');
newMessages.forEach(m => {
displayedMessageIds.add(m.id);
chatMessagesDiv.appendChild(createMessageElement(m));
});
// Keep list to a reasonable limit (e.g. 100 elements max to maintain DOM performance)
while (chatMessagesDiv.children.length > 100) {
chatMessagesDiv.removeChild(chatMessagesDiv.firstChild);
}
chatMessagesDiv.scrollTop = chatMessagesDiv.scrollHeight;
}
}
// YouTube IFrame Player API initialization
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '100%',
width: '100%',
videoId: videoId,
playerVars: {
'playsinline': 1,
'modestbranding': 1,
'rel': 0
},
events: {
'onStateChange': onPlayerStateChange
}
});
}
function onPlayerStateChange(event) {
if (event.data === YT.PlayerState.PLAYING) {
if (!updateInterval) {
updateInterval = setInterval(updateChat, 250);
}
} else {
if (updateInterval) {
clearInterval(updateInterval);
updateInterval = null;
}
// Run one final update to align timestamps
updateChat();
}
}
// Initialize
prepareMessages();
// Asynchronously load the YouTube IFrame Player API
if (window.YT && window.YT.Player) {
onYouTubeIframeAPIReady();
} else {
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
if (firstScriptTag) {
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
} else {
document.head.appendChild(tag);
}
}
</script>
</body>
</html>
|