Experimental: Prevent default action on outgoing events when debouncing

experimental
Charlotte Som 2021-12-04 12:28:45 +00:00
parent d446869a28
commit 4dfe6a544d
1 changed files with 5 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import { setupChat, logEventToChat } from "./chat.mjs?v=5";
const createWebSocket = (sessionId, nickname) => { const createWebSocket = (sessionId, nickname) => {
const wsUrl = new URL( const wsUrl = new URL(
`/sess/${sessionId}/subscribe` + `/sess/${sessionId}/subscribe` +
`?nickname=${encodeURIComponent(nickname)}`, `?nickname=${encodeURIComponent(nickname)}`,
window.location.href window.location.href
); );
wsUrl.protocol = { "http:": "ws:", "https:": "wss:" }[wsUrl.protocol]; wsUrl.protocol = { "http:": "ws:", "https:": "wss:" }[wsUrl.protocol];
@ -73,7 +73,7 @@ const setupIncomingEvents = (video, socket) => {
} }
logEventToChat(event); logEventToChat(event);
} catch (_err) { } } catch (_err) {}
}); });
}; };
@ -86,6 +86,7 @@ const setupOutgoingEvents = (video, socket) => {
video.addEventListener("pause", async (event) => { video.addEventListener("pause", async (event) => {
if (outgoingDebounce || !video.controls) { if (outgoingDebounce || !video.controls) {
event.preventDefault();
return; return;
} }
@ -107,6 +108,7 @@ const setupOutgoingEvents = (video, socket) => {
video.addEventListener("play", (event) => { video.addEventListener("play", (event) => {
if (outgoingDebounce || !video.controls) { if (outgoingDebounce || !video.controls) {
event.preventDefault();
return; return;
} }
@ -130,6 +132,7 @@ const setupOutgoingEvents = (video, socket) => {
} }
if (outgoingDebounce || !video.controls) { if (outgoingDebounce || !video.controls) {
event.preventDefault();
return; return;
} }