forked from snxraven/LinkUp-P2P-Chat
Removed Enum class because it does not work 😭
This commit is contained in:
@ -12,9 +12,9 @@ class Client extends EventEmitter {
|
||||
|
||||
setupSwarm() {
|
||||
this.swarm.on('connection', (peer) => {
|
||||
peer.on('data', message => this.emit(Event.onMessage, peer, JSON.parse(message.toString())));
|
||||
peer.on('data', message => this.emit('onMessage', peer, JSON.parse(message.toString())));
|
||||
peer.on('error', e => {
|
||||
this.emit(Event.onError, e);
|
||||
this.emit('onError', e);
|
||||
console.error(`Connection error: ${e}`)
|
||||
});
|
||||
});
|
||||
@ -25,9 +25,9 @@ class Client extends EventEmitter {
|
||||
}
|
||||
|
||||
joinChatRoom() {
|
||||
this.discovery = this.swarm.join(this.topicBuffer, { client: true, server: true });
|
||||
this.discovery = this.swarm.join(this.topicBuffer, {client: true, server: true});
|
||||
this.discovery.flushed().then(() => {
|
||||
this.emit(Event.onBotJoinRoom)
|
||||
this.emit('onBotJoinRoom')
|
||||
console.log(`Bot ${this.botName} joined the chat room.`);
|
||||
});
|
||||
}
|
||||
@ -36,7 +36,7 @@ class Client extends EventEmitter {
|
||||
console.log('Bot name:', this.botName);
|
||||
const timestamp = Date.now(); // Generate timestamp
|
||||
const peers = [...this.swarm.connections];
|
||||
const data = JSON.stringify({ name: this.botName, message, timestamp }); // Include timestamp
|
||||
const data = JSON.stringify({name: this.botName, message, timestamp}); // Include timestamp
|
||||
for (const peer of peers) peer.write(data);
|
||||
}
|
||||
|
||||
@ -46,10 +46,4 @@ class Client extends EventEmitter {
|
||||
}
|
||||
}
|
||||
|
||||
enum Event {
|
||||
onMessage,
|
||||
onError,
|
||||
onBotJoinRoom
|
||||
}
|
||||
|
||||
export default { Client, Event };
|
||||
export default Client;
|
||||
|
Reference in New Issue
Block a user