Compare commits
2 Commits
768882cacc
...
96b9eac4f7
Author | SHA1 | Date |
---|---|---|
Kevin C. Coram | 96b9eac4f7 | |
Kevin C. Coram | 2ef8c15f63 |
|
@ -6,15 +6,18 @@ import {
|
|||
import { Logger } from '@nestjs/common';
|
||||
import {
|
||||
OnGatewayConnection,
|
||||
OnGatewayDisconnect,
|
||||
OnGatewayInit,
|
||||
SubscribeMessage,
|
||||
WebSocketGateway,
|
||||
WebSocketServer,
|
||||
} from '@nestjs/websockets';
|
||||
import { Server } from 'http';
|
||||
import { AppService } from './app.service';
|
||||
import { Server, Socket } from 'socket.io';
|
||||
|
||||
@WebSocketGateway(4001)
|
||||
export class AppGateway implements OnGatewayConnection {
|
||||
export class AppGateway
|
||||
implements OnGatewayInit, OnGatewayConnection, OnGatewayDisconnect {
|
||||
@WebSocketServer()
|
||||
wss: Server;
|
||||
|
||||
|
@ -22,12 +25,21 @@ export class AppGateway implements OnGatewayConnection {
|
|||
|
||||
constructor(private appService: AppService) {}
|
||||
|
||||
handleConnection(client: any, ...args: any[]) {
|
||||
afterInit(server: Server) {
|
||||
this.logger.log('Initialized...');
|
||||
}
|
||||
|
||||
handleConnection(client: Socket, ...args: any[]) {
|
||||
this.logger.log(`Client connected: ${client.id}`);
|
||||
client.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());
|
||||
}
|
||||
|
||||
handleDisconnect(client: Socket) {
|
||||
this.logger.log(`Client disconnected: ${client.id}`);
|
||||
}
|
||||
|
||||
@SubscribeMessage(MESSAGE_TO_SERVER)
|
||||
handleMessage(client: any, payload: Message): void {
|
||||
handleMessage(client: Socket, payload: Message): void {
|
||||
this.logger.log(payload);
|
||||
this.appService.addMessage(payload);
|
||||
this.wss.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());
|
||||
|
|
Loading…
Reference in New Issue