forked from snxraven/LinkUp-P2P-Chat
more test
This commit is contained in:
parent
181d011b8d
commit
d423031cfb
19
app.js
19
app.js
@ -351,6 +351,8 @@ function handleIncomingMessage(messageObj) {
|
|||||||
peer.write(renameMessage);
|
peer.write(renameMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (messageObj.type === 'guildJoin') {
|
} else if (messageObj.type === 'guildJoin') {
|
||||||
@ -361,7 +363,22 @@ function handleIncomingMessage(messageObj) {
|
|||||||
renderGuildList();
|
renderGuildList();
|
||||||
joinGuild(guildTopic);
|
joinGuild(guildTopic);
|
||||||
}
|
}
|
||||||
} else {
|
} else if (messageObj.type === 'guildRequest') {
|
||||||
|
const guildTopic = messageObj.guildTopic;
|
||||||
|
const guild = config.guilds[guildTopic];
|
||||||
|
if (guild) {
|
||||||
|
const guildResponseMessage = JSON.stringify({
|
||||||
|
type: 'guildResponse',
|
||||||
|
guildData: JSON.stringify({
|
||||||
|
guildTopic,
|
||||||
|
guildAlias: guild.alias,
|
||||||
|
rooms: guild.rooms,
|
||||||
|
owner: guild.owner
|
||||||
|
})
|
||||||
|
});
|
||||||
|
connection.write(guildResponseMessage);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
console.error('Received unknown message type:', messageObj);
|
console.error('Received unknown message type:', messageObj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -185,7 +185,7 @@
|
|||||||
joinGuildBtn.addEventListener('click', async (event) => {
|
joinGuildBtn.addEventListener('click', async (event) => {
|
||||||
const guildTopic = document.getElementById('join-guild-topic').value.trim();
|
const guildTopic = document.getElementById('join-guild-topic').value.trim();
|
||||||
if (guildTopic) {
|
if (guildTopic) {
|
||||||
await processGuild(guildTopic);
|
await joinGuildRequest(guildTopic);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -254,4 +254,4 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user