2022-02-14 17:31:30 +00:00
|
|
|
import { setDebounce, setVideoTime, setPlaying } from "./watch-session.mjs?v=9";
|
|
|
|
import { emojify } from "./emojis.mjs?v=9";
|
2022-02-14 14:30:42 +00:00
|
|
|
|
2021-11-09 13:21:14 +00:00
|
|
|
const setupChatboxEvents = (socket) => {
|
|
|
|
// clear events by just reconstructing the form
|
|
|
|
const oldChatForm = document.querySelector("#chatbox-send");
|
|
|
|
const chatForm = oldChatForm.cloneNode(true);
|
|
|
|
oldChatForm.replaceWith(chatForm);
|
|
|
|
|
2022-02-14 14:30:42 +00:00
|
|
|
chatForm.addEventListener("submit", async (e) => {
|
2021-11-09 13:21:14 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const input = chatForm.querySelector("input");
|
|
|
|
const content = input.value;
|
|
|
|
if (content.trim().length) {
|
|
|
|
input.value = "";
|
|
|
|
|
2022-02-13 18:35:52 +00:00
|
|
|
// handle commands
|
|
|
|
if (content.startsWith("/")) {
|
|
|
|
const command = content.toLowerCase().match(/^\/\S+/)[0];
|
|
|
|
const args = content.slice(command.length).trim();
|
|
|
|
|
|
|
|
let handled = false;
|
|
|
|
switch (command) {
|
|
|
|
case "/ping":
|
|
|
|
socket.send(
|
|
|
|
JSON.stringify({
|
|
|
|
op: "Ping",
|
|
|
|
data: args,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2022-02-14 14:30:42 +00:00
|
|
|
case "/sync":
|
|
|
|
const sessionId = window.location.hash.slice(1);
|
|
|
|
const { current_time_ms, is_playing } = await fetch(
|
|
|
|
`/sess/${sessionId}`
|
|
|
|
).then((r) => r.json());
|
|
|
|
|
|
|
|
setDebounce();
|
|
|
|
setPlaying(is_playing);
|
|
|
|
setVideoTime(current_time_ms);
|
|
|
|
|
|
|
|
const syncMessageContent = document.createElement("span");
|
|
|
|
syncMessageContent.appendChild(
|
|
|
|
document.createTextNode("resynced you to ")
|
|
|
|
);
|
|
|
|
syncMessageContent.appendChild(
|
|
|
|
document.createTextNode(formatTime(current_time_ms))
|
|
|
|
);
|
|
|
|
printChatMessage("set-time", "/sync", "b57fdc", syncMessageContent);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2022-02-13 18:35:52 +00:00
|
|
|
case "/help":
|
2022-02-14 14:30:42 +00:00
|
|
|
const helpMessageContent = document.createElement("span");
|
|
|
|
helpMessageContent.innerHTML =
|
|
|
|
"Available commands:<br>" +
|
|
|
|
" <code>/help</code> - display this help message<br>" +
|
|
|
|
" <code>/ping [message]</code> - ping all viewers<br>" +
|
|
|
|
" <code>/sync</code> - resyncs you with other viewers";
|
|
|
|
|
|
|
|
printChatMessage("command-message", "/help", "b57fdc", helpMessageContent);
|
2022-02-13 18:35:52 +00:00
|
|
|
handled = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-13 16:32:28 +00:00
|
|
|
}
|
2022-02-13 18:35:52 +00:00
|
|
|
|
|
|
|
// handle regular chat messages
|
|
|
|
socket.send(
|
|
|
|
JSON.stringify({
|
|
|
|
op: "ChatMessage",
|
|
|
|
data: content,
|
|
|
|
})
|
|
|
|
);
|
2021-11-09 13:21:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const fixChatSize = () => {
|
|
|
|
const video = document.querySelector("video");
|
|
|
|
const chatbox = document.querySelector("#chatbox");
|
|
|
|
const chatboxContainer = document.querySelector("#chatbox-container");
|
|
|
|
|
|
|
|
if (video && chatbox && chatboxContainer) {
|
|
|
|
const delta = chatboxContainer.clientHeight - chatbox.clientHeight;
|
|
|
|
|
|
|
|
chatbox.style["height"] = `calc(${
|
|
|
|
window.innerHeight - video.clientHeight
|
|
|
|
}px - ${delta}px - 1em)`;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {WebSocket} socket
|
|
|
|
*/
|
|
|
|
export const setupChat = async (socket) => {
|
|
|
|
document.querySelector("#chatbox-container").style["display"] = "block";
|
|
|
|
setupChatboxEvents(socket);
|
|
|
|
|
2022-01-18 11:42:55 +00:00
|
|
|
window.addEventListener("keydown", (event) => {
|
2021-12-24 00:42:17 +00:00
|
|
|
try {
|
|
|
|
const isSelectionEmpty = window.getSelection().toString().length === 0;
|
|
|
|
if (event.code.match(/Key\w/) && isSelectionEmpty)
|
2022-01-18 11:42:55 +00:00
|
|
|
document.querySelector("#chatbox-send > input").focus();
|
|
|
|
} catch (_err) {}
|
2021-12-24 00:42:17 +00:00
|
|
|
});
|
|
|
|
|
2021-11-09 13:21:14 +00:00
|
|
|
fixChatSize();
|
|
|
|
window.addEventListener("resize", () => {
|
|
|
|
fixChatSize();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-11-10 14:29:52 +00:00
|
|
|
const addToChat = (node) => {
|
2021-11-09 13:21:14 +00:00
|
|
|
const chatbox = document.querySelector("#chatbox");
|
2021-11-10 14:29:52 +00:00
|
|
|
chatbox.appendChild(node);
|
2021-11-09 13:21:14 +00:00
|
|
|
chatbox.scrollTop = chatbox.scrollHeight;
|
|
|
|
};
|
|
|
|
|
2021-11-10 14:29:52 +00:00
|
|
|
let lastTimeMs = null;
|
|
|
|
let lastPlaying = false;
|
|
|
|
|
|
|
|
const checkDebounce = (event) => {
|
|
|
|
let timeMs = null;
|
|
|
|
let playing = null;
|
|
|
|
if (event.op == "SetTime") {
|
|
|
|
timeMs = event.data;
|
|
|
|
} else if (event.op == "SetPlaying") {
|
|
|
|
timeMs = event.data.time;
|
|
|
|
playing = event.data.playing;
|
|
|
|
}
|
|
|
|
|
|
|
|
let shouldIgnore = false;
|
|
|
|
|
|
|
|
if (timeMs != null) {
|
|
|
|
if (lastTimeMs && Math.abs(lastTimeMs - timeMs) < 500) {
|
|
|
|
shouldIgnore = true;
|
|
|
|
}
|
|
|
|
lastTimeMs = timeMs;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (playing != null) {
|
|
|
|
if (lastPlaying != playing) {
|
|
|
|
shouldIgnore = false;
|
|
|
|
}
|
|
|
|
lastPlaying = playing;
|
|
|
|
}
|
|
|
|
|
|
|
|
return shouldIgnore;
|
|
|
|
};
|
|
|
|
|
2022-01-15 23:03:50 +00:00
|
|
|
/**
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
const getCurrentTimestamp = () => {
|
|
|
|
const t = new Date();
|
2022-01-18 11:42:55 +00:00
|
|
|
return `${matpad(t.getHours())}:${matpad(t.getMinutes())}:${matpad(
|
|
|
|
t.getSeconds()
|
|
|
|
)}`;
|
2022-01-15 23:03:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* https://media.discordapp.net/attachments/834541919568527361/931678814751301632/66d2c68c48daa414c96951381665ec2e.png
|
|
|
|
*/
|
|
|
|
const matpad = (n) => {
|
|
|
|
return ("00" + n).slice(-2);
|
|
|
|
};
|
|
|
|
|
2021-11-10 14:29:52 +00:00
|
|
|
/**
|
|
|
|
* @param {string} eventType
|
|
|
|
* @param {string?} user
|
|
|
|
* @param {Node?} content
|
|
|
|
*/
|
2022-01-18 11:42:55 +00:00
|
|
|
const printChatMessage = (eventType, user, colour, content) => {
|
2021-11-10 14:29:52 +00:00
|
|
|
const chatMessage = document.createElement("div");
|
|
|
|
chatMessage.classList.add("chat-message");
|
|
|
|
chatMessage.classList.add(eventType);
|
2022-01-15 23:03:50 +00:00
|
|
|
chatMessage.title = getCurrentTimestamp();
|
2021-11-10 14:29:52 +00:00
|
|
|
|
|
|
|
if (user != null) {
|
|
|
|
const userName = document.createElement("strong");
|
2022-01-18 11:42:55 +00:00
|
|
|
userName.style = `color: #${colour}`;
|
2021-11-10 14:29:52 +00:00
|
|
|
userName.textContent = user;
|
|
|
|
chatMessage.appendChild(userName);
|
|
|
|
}
|
|
|
|
|
|
|
|
chatMessage.appendChild(document.createTextNode(" "));
|
|
|
|
|
|
|
|
if (content != null) {
|
|
|
|
chatMessage.appendChild(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
addToChat(chatMessage);
|
|
|
|
|
|
|
|
return chatMessage;
|
|
|
|
};
|
|
|
|
|
|
|
|
const formatTime = (ms) => {
|
|
|
|
const seconds = Math.floor((ms / 1000) % 60);
|
|
|
|
const minutes = Math.floor((ms / (60 * 1000)) % 60);
|
|
|
|
const hours = Math.floor((ms / (3600 * 1000)) % 3600);
|
|
|
|
return `${hours < 10 ? "0" + hours : hours}:${
|
|
|
|
minutes < 10 ? "0" + minutes : minutes
|
|
|
|
}:${seconds < 10 ? "0" + seconds : seconds}`;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const logEventToChat = (event) => {
|
|
|
|
if (checkDebounce(event)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-09 13:21:14 +00:00
|
|
|
switch (event.op) {
|
|
|
|
case "UserJoin": {
|
2021-11-10 14:29:52 +00:00
|
|
|
printChatMessage(
|
|
|
|
"user-join",
|
|
|
|
event.user,
|
2022-01-18 11:42:55 +00:00
|
|
|
event.colour,
|
2021-11-10 14:29:52 +00:00
|
|
|
document.createTextNode("joined")
|
|
|
|
);
|
2021-11-09 13:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "UserLeave": {
|
2021-11-10 14:29:52 +00:00
|
|
|
printChatMessage(
|
|
|
|
"user-leave",
|
|
|
|
event.user,
|
2022-01-18 11:42:55 +00:00
|
|
|
event.colour,
|
2021-11-10 14:29:52 +00:00
|
|
|
document.createTextNode("left")
|
|
|
|
);
|
2021-11-09 13:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "ChatMessage": {
|
|
|
|
const messageContent = document.createElement("span");
|
|
|
|
messageContent.classList.add("message-content");
|
2022-02-14 17:31:30 +00:00
|
|
|
messageContent.append(...emojify(event.data));
|
2022-01-18 11:42:55 +00:00
|
|
|
printChatMessage(
|
|
|
|
"chat-message",
|
|
|
|
event.user,
|
|
|
|
event.colour,
|
|
|
|
messageContent
|
|
|
|
);
|
2021-11-10 14:29:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "SetTime": {
|
|
|
|
const messageContent = document.createElement("span");
|
2022-02-13 16:58:31 +00:00
|
|
|
if (event.data.from != undefined) {
|
|
|
|
messageContent.appendChild(
|
|
|
|
document.createTextNode("set the time from ")
|
|
|
|
);
|
|
|
|
|
|
|
|
messageContent.appendChild(
|
|
|
|
document.createTextNode(formatTime(event.data.from))
|
|
|
|
);
|
|
|
|
|
|
|
|
messageContent.appendChild(document.createTextNode(" to "));
|
|
|
|
} else {
|
|
|
|
messageContent.appendChild(document.createTextNode("set the time to "));
|
|
|
|
}
|
2021-11-10 14:29:52 +00:00
|
|
|
|
|
|
|
messageContent.appendChild(
|
2022-02-13 16:58:31 +00:00
|
|
|
document.createTextNode(formatTime(event.data.to))
|
2021-11-10 14:29:52 +00:00
|
|
|
);
|
|
|
|
|
2022-01-18 11:42:55 +00:00
|
|
|
printChatMessage("set-time", event.user, event.colour, messageContent);
|
2021-11-10 14:29:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "SetPlaying": {
|
|
|
|
const messageContent = document.createElement("span");
|
|
|
|
messageContent.appendChild(
|
|
|
|
document.createTextNode(
|
|
|
|
event.data.playing ? "started playing" : "paused"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
messageContent.appendChild(document.createTextNode(" at "));
|
|
|
|
messageContent.appendChild(
|
|
|
|
document.createTextNode(formatTime(event.data.time))
|
|
|
|
);
|
|
|
|
|
2022-01-18 11:42:55 +00:00
|
|
|
printChatMessage("set-playing", event.user, event.colour, messageContent);
|
2021-11-09 13:21:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-02-13 16:32:28 +00:00
|
|
|
case "Ping": {
|
|
|
|
const messageContent = document.createElement("span");
|
|
|
|
if (event.data) {
|
|
|
|
messageContent.appendChild(document.createTextNode("pinged saying: "));
|
|
|
|
messageContent.appendChild(document.createTextNode(event.data));
|
|
|
|
} else {
|
|
|
|
messageContent.appendChild(document.createTextNode("pinged"));
|
|
|
|
}
|
|
|
|
|
|
|
|
printChatMessage("ping", event.user, event.colour, messageContent);
|
|
|
|
beep();
|
|
|
|
break;
|
|
|
|
}
|
2021-11-09 13:21:14 +00:00
|
|
|
}
|
|
|
|
};
|
2022-02-13 16:32:28 +00:00
|
|
|
|
|
|
|
const beep = () => {
|
|
|
|
const context = new AudioContext();
|
|
|
|
|
|
|
|
const gain = context.createGain();
|
|
|
|
gain.connect(context.destination);
|
|
|
|
gain.gain.value = 0.1;
|
2022-02-13 16:58:31 +00:00
|
|
|
|
2022-02-13 16:32:28 +00:00
|
|
|
const oscillator = context.createOscillator();
|
|
|
|
oscillator.connect(gain);
|
|
|
|
oscillator.frequency.value = 520;
|
|
|
|
oscillator.type = "square";
|
2022-02-13 16:58:31 +00:00
|
|
|
|
2022-02-13 16:32:28 +00:00
|
|
|
oscillator.start(context.currentTime);
|
|
|
|
oscillator.stop(context.currentTime + 0.22);
|
|
|
|
};
|
2022-02-13 17:23:20 +00:00
|
|
|
|
|
|
|
export const updateViewerList = (viewers) => {
|
|
|
|
const listContainer = document.querySelector("#viewer-list");
|
|
|
|
|
|
|
|
// empty out the current list
|
|
|
|
listContainer.innerHTML = "";
|
|
|
|
|
|
|
|
// display the updated list
|
|
|
|
for (const viewer of viewers) {
|
|
|
|
const viewerElem = document.createElement("div");
|
|
|
|
const content = document.createElement("strong");
|
|
|
|
content.textContent = viewer.nickname;
|
|
|
|
content.style = `color: #${viewer.colour}`;
|
|
|
|
viewerElem.appendChild(content);
|
|
|
|
listContainer.appendChild(viewerElem);
|
|
|
|
}
|
|
|
|
};
|