Skip to content
Snippets Groups Projects
Unverified Commit 4fabe0d8 authored by Marius Friess's avatar Marius Friess Committed by GitHub
Browse files

Close browser when websocket event is recieved (#55)

* Listen for close browser websocket event

* Add doc
parent 52750429
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,23 @@ export class BrowserGateway {
return true;
}
/**
* Handles the "close-browser" event, allowing a client to close the browser.
*
* @param client - The connected socket client.
* @returns A boolean indicating the success of closing the browser.
*/
@SubscribeMessage('close-browser')
@UseRequestContext()
public async closeBrowser(@ConnectedSocket() client: Socket) {
const channel = await this.channels.fromClientOrFail(client);
await this.browserService.closeBrowserContext(channel.id);
this.server.to(channel.id).emit('close-browser');
return true;
}
/**
* Handles the "move-mouse" event, allowing a client to move the mouse in the browser.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment