Compare commits

...

5 Commits

Author SHA1 Message Date
MrMasrozYTLIVE
e33244c1f1 Merge https://git.ssh.surf/MiTask/LinkUp-P2P-Chat 2024-06-08 22:56:23 +03:00
MrMasrozYTLIVE
0587f261b7 Merge branch 'main' of https://git.ssh.surf/snxraven/LinkUp-P2P-Chat 2024-06-08 22:55:01 +03:00
Raven Scott
ac2da1524d Trying to fix peer counts 2024-06-08 15:52:44 -04:00
Raven Scott
8c54e4ca77 Try to fix update icons 2024-06-08 15:48:56 -04:00
MrMasrozYTLIVE
28be0822f6 Merge branch 'main' of https://git.ssh.surf/snxraven/LinkUp-P2P-Chat 2024-06-08 22:45:00 +03:00

7
app.js
View File

@ -67,6 +67,7 @@ async function initialize() {
swarm.on('connection', async (connection, info) => {
peerCount++;
updatePeerCount();
console.log('Peer connected, current peer count:', peerCount);
// Send the current user's icon to the new peer
const iconBuffer = await drive.get(`/icons/${userName}.png`);
@ -94,6 +95,7 @@ async function initialize() {
connection.on('close', () => {
peerCount--;
updatePeerCount();
console.log('Peer disconnected, current peer count:', peerCount);
});
});
@ -121,7 +123,7 @@ function registerUser(e) {
reader.onload = (event) => {
const buffer = new Uint8Array(event.target.result);
drive.put(`/icons/${regUsername}.png`, buffer);
userAvatar = URL.createObjectURL(new Blob([buffer]));
userAvatar = `http://localhost:1337/icons/${regUsername}.png`; // Set the correct URL
registeredUsers[regUsername] = userAvatar;
localStorage.setItem('registeredUsers', JSON.stringify(registeredUsers));
continueRegistration(regUsername);
@ -285,11 +287,10 @@ async function updateIcon(username, avatarBuffer) {
// This can be adjusted as per your needs
const userIcon = document.querySelector(`img[src*="${username}.png"]`);
if (userIcon) {
userIcon.src = URL.createObjectURL(new Blob([avatarBuffer]));
userIcon.src = `http://localhost:1337/icons/${username}.png`; // Ensure the URL is correct
}
}
function clearMessages() {
const messagesContainer = document.querySelector('#messages');
while (messagesContainer.firstChild) {