317 lines
9.1 KiB
JavaScript
317 lines
9.1 KiB
JavaScript
'use strict';
|
|
const socket = io();
|
|
const buttonLocation = document.querySelector('#sendLocation');
|
|
const form = document.querySelector('#sendMessForm');
|
|
const formButton = document.querySelector('#formButton');
|
|
const input = form.childNodes[1];
|
|
const button = form.childNodes[3];
|
|
const messageContainer = document.querySelector('#messages-container');
|
|
const sidebarContainer = document.querySelector('.chat__sidebar');
|
|
const changeVideoButton = document.querySelector('#changeVideo');
|
|
const syncVideosButton = document.querySelector('#syncVideos');
|
|
const chatBox = document.querySelector('.chat');
|
|
const modal = document.getElementById('myModal');
|
|
const span = document.getElementsByClassName('close')[0];
|
|
|
|
// ###### YOUTUBE PLAYER ###### //
|
|
|
|
// Load the IFrame Player API code asynchronously.
|
|
var tag = document.createElement('script');
|
|
tag.src = 'https://www.youtube.com/player_api';
|
|
var firstScriptTag = document.getElementsByTagName('script')[0];
|
|
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
|
|
|
|
// Replace the 'ytplayer' element with an <iframe> and
|
|
// YouTube player after the API code downloads.
|
|
var player;
|
|
function onYouTubePlayerAPIReady() {
|
|
player = new YT.Player('ytplayer', {
|
|
height: '420',
|
|
width: '860',
|
|
videoId: '',
|
|
});
|
|
|
|
// STATE OF PLAYER
|
|
player.addEventListener('onStateChange', (e) => {
|
|
// 3 bufforing, 1 playing, 2 paused, -1 stopped entirely
|
|
if (e.data !== 3) {
|
|
const time = e.target.getCurrentTime();
|
|
socket.emit(
|
|
'onPlayerState',
|
|
e.data,
|
|
time,
|
|
videoIdParse(e.target.getVideoUrl())
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
// Parsing room query
|
|
|
|
const { username, room } = Qs.parse(location.search, {
|
|
ignoreQueryPrefix: true,
|
|
});
|
|
|
|
// ###### SOCKETS LOGIC ###### //
|
|
|
|
socket.on('videoSync', (time, id) => {
|
|
player.loadVideoById(id, time);
|
|
});
|
|
|
|
socket.on('changeVideo', (videoId) => {
|
|
player.loadVideoById(`${videoId}`, 'large');
|
|
});
|
|
|
|
socket.on('welcomeMessage', (object) => {
|
|
const string = object.text;
|
|
const user = object.username;
|
|
const createdAt = moment(object.createdAt).format('HH:mm:ss');
|
|
|
|
const html = Mustache.render(htmlTemplate[0], {
|
|
string,
|
|
user,
|
|
createdAt,
|
|
});
|
|
messageContainer.insertAdjacentHTML('beforeend', html);
|
|
|
|
const time = player.getCurrentTime();
|
|
const id = videoIdParse(player.getVideoUrl());
|
|
setTimeout(() => {
|
|
socket.emit('videoSync', time, id);
|
|
}, 700);
|
|
|
|
autoscroll();
|
|
});
|
|
|
|
socket.on('message', (object) => {
|
|
// console.log(object);
|
|
const string = object.text;
|
|
const user = object.username;
|
|
const createdAt = moment(object.createdAt).format('HH:mm:ss');
|
|
|
|
if (
|
|
(string.includes('https://') &&
|
|
(string.includes('.com') ||
|
|
string.includes('.pl') ||
|
|
string.includes('.org'))) ||
|
|
(string.includes('http://') &&
|
|
(string.includes('.com') ||
|
|
string.includes('.pl') ||
|
|
string.includes('.org')))
|
|
) {
|
|
const html = Mustache.render(htmlTemplate[1], {
|
|
user,
|
|
string,
|
|
createdAt,
|
|
});
|
|
messageContainer.insertAdjacentHTML('beforeend', html);
|
|
autoscroll();
|
|
|
|
// console.log('not includes');
|
|
} else if (string.includes('Welcome to the server')) {
|
|
const html = Mustache.render(htmlTemplate[2], {
|
|
string,
|
|
});
|
|
messageContainer.insertAdjacentHTML('beforeend', html);
|
|
autoscroll();
|
|
} else {
|
|
const html = Mustache.render(htmlTemplate[0], {
|
|
string,
|
|
user,
|
|
createdAt,
|
|
});
|
|
messageContainer.insertAdjacentHTML('beforeend', html);
|
|
autoscroll();
|
|
}
|
|
});
|
|
|
|
socket.on('roomData', ({ room, users }) => {
|
|
const html = Mustache.render(sidebarTemplate, { room, users });
|
|
sidebarContainer.innerHTML = html;
|
|
});
|
|
|
|
socket.on('videoData', (videoData) => {
|
|
player.loadVideoById(`${videoData}`, 'large');
|
|
});
|
|
|
|
// ON PLAYER STATE DATA RECV
|
|
socket.on('onPlayerState', (data, time) => {
|
|
if (data === 1 || data === -1) {
|
|
// player.seekTo(time, true);
|
|
player.playVideo();
|
|
} else if (data === 2) {
|
|
if (Math.abs(player.getCurrentTime() - time) > 2) {
|
|
player.seekTo(time, true);
|
|
player.playVideo();
|
|
} else {
|
|
player.pauseVideo();
|
|
}
|
|
} else if (data === 0) player.stopVideo();
|
|
});
|
|
|
|
socket.emit('join', { username, room }, (error) => {
|
|
if (error) {
|
|
alert(error);
|
|
location.href = '/';
|
|
}
|
|
});
|
|
// ####### EVENT LISTENERS ####### //
|
|
|
|
// SYNC VIDEOS BUTTON
|
|
|
|
syncVideosButton.addEventListener('click', () => {
|
|
console.log(player.getVideoUrl());
|
|
|
|
// If video is the same as starting video
|
|
if (
|
|
videoIdParse(player.getVideoUrl()) ===
|
|
videoIdParse(`https://youtube.com/watch?v=M7lc1UVf-VE`)
|
|
)
|
|
return alert(
|
|
'This is a default video, you cannot synchronize it. \nWrite a request for synchronization in the chat or paste your own link.'
|
|
);
|
|
|
|
const time = player.getCurrentTime();
|
|
const id = videoIdParse(player.getVideoUrl());
|
|
socket.emit('videoSync', time, id);
|
|
});
|
|
|
|
// Change video
|
|
changeVideoButton.addEventListener('click', () => {
|
|
let link = input.value;
|
|
if (!link) return alert('You should pass the youtube link');
|
|
const videoId = videoIdParse(link);
|
|
socket.emit('changeVideo', videoId);
|
|
player.loadVideoById(`${videoId}`, 'large');
|
|
input.value = '';
|
|
});
|
|
|
|
// Form submission
|
|
form.addEventListener('submit', (e) => {
|
|
e.preventDefault();
|
|
input.focus();
|
|
|
|
// Disable form
|
|
if (input.value === '' || input.value === ' ')
|
|
return alert('Your message is blank');
|
|
else if (input.value[0] === ' ')
|
|
return alert('Delete the space at the beggining');
|
|
button.setAttribute('disabled', 'disabled');
|
|
|
|
socket.emit('message', input.value, (error) => {
|
|
// Re-enable form
|
|
button.removeAttribute('disabled');
|
|
if (error) return console.log(error);
|
|
input.value = '';
|
|
input.focus();
|
|
});
|
|
});
|
|
|
|
// Send location
|
|
buttonLocation.addEventListener('click', (e) => {
|
|
e.preventDefault();
|
|
|
|
if (!navigator.geolocation) return alert('No geolocation');
|
|
buttonLocation.setAttribute('disabled', 'disabled');
|
|
|
|
navigator.geolocation.getCurrentPosition((position) => {
|
|
const { latitude, longitude } = position.coords;
|
|
const coordsObj = `https://www.google.com/maps/?q=${latitude},${longitude}`;
|
|
|
|
socket.emit('message', coordsObj, () => {
|
|
// console.log('Location delivered');
|
|
buttonLocation.removeAttribute('disabled');
|
|
});
|
|
});
|
|
});
|
|
|
|
// ###### UTILITIES ######//
|
|
|
|
// Auto scroll function
|
|
const autoscroll = () => {
|
|
// New message elemnt
|
|
const newMessage = messageContainer.lastElementChild;
|
|
|
|
// Height of the new message
|
|
const newMessageStyles = getComputedStyle(newMessage);
|
|
const newMessageMargin = parseInt(newMessageStyles.marginBottom);
|
|
const newMessageHeight = newMessage.offsetHeight + newMessageMargin;
|
|
|
|
// Visible height
|
|
const visibleHeight = messageContainer.offsetHeight;
|
|
|
|
// Height of messages container
|
|
const containerHeight = messageContainer.scrollHeight;
|
|
|
|
// scrolloffset
|
|
const scrolloffset = messageContainer.scrollTop + visibleHeight + 120;
|
|
|
|
if (containerHeight - newMessageHeight <= scrolloffset) {
|
|
messageContainer.scrollTop = messageContainer.scrollHeight;
|
|
}
|
|
};
|
|
|
|
// Parsing yt video
|
|
const videoIdParse = (link) => {
|
|
console.log(link);
|
|
if (link === 'https://www.youtube.com/watch') return;
|
|
else if (link.includes('&ab_channel')) {
|
|
const substr = link.substring(
|
|
link.indexOf('v=') + 2,
|
|
link.indexOf('&')
|
|
);
|
|
return substr;
|
|
} else {
|
|
return link.slice(link.indexOf('v=') + 2);
|
|
}
|
|
};
|
|
// socket.on('joinSynchronization', (ytVideoToSync) => {
|
|
span.onclick = function () {
|
|
modal.style.display = 'none';
|
|
chatBox.style.visibility = 'visible';
|
|
// TUTAJ LOGIKA
|
|
// if (!ytVideoToSync) return;
|
|
// player.loadVideoById(ytVideoToSync);
|
|
};
|
|
|
|
window.onclick = function (event) {
|
|
if (event.target == modal) {
|
|
modal.style.display = 'none';
|
|
chatBox.style.visibility = 'visible';
|
|
// if (!ytVideoToSync) return;
|
|
// player.loadVideoById(ytVideoToSync);
|
|
}
|
|
};
|
|
|
|
// return console.log(ytVideoToSync);
|
|
// });
|
|
|
|
// TEMPLATES
|
|
const sidebarTemplate = `<h2 class="room-title">{{room}}</h2>
|
|
<h3 class="list-title">Users</h3>
|
|
<ul class="users">
|
|
{{#users}}
|
|
<li>{{username}}</li>
|
|
{{/users}}
|
|
</ul>`;
|
|
|
|
const htmlTemplate = [
|
|
`<div class="message">
|
|
<p>
|
|
<span class="message__name"> {{user}} </span>
|
|
<span class="message__meta"> {{createdAt}} </span>
|
|
</p>
|
|
<p>{{string}}</p>
|
|
</div>`,
|
|
`<div class="message">
|
|
<p>
|
|
<span class="message__name"> {{user}} </span>
|
|
<span class="message__meta"> {{createdAt}} </span>
|
|
</p>
|
|
<p><a target=”_blank” href="{{string}}">{{string}}</a></p>
|
|
</div>`,
|
|
`<div class="message">
|
|
<p class="welcome-mess">{{string}}</p>
|
|
</div>`,
|
|
];
|