This content originally appeared on DEV Community and was authored by Huzaifa Rasheed
When working with socketIO client in your SPA, it may become very hard to manage the socket instance, events emitters, and work with the callbacks in different places of the app. Especially when there are multiple different servers to connect with. What can be done?
Solution
We can create a closure that takes event callbacks as functions and return event emitters, to abstract socketIO implementation in a single file (let's call it SocketManager.js).
Example
import io from "socket.io-client";
const SocketManager = ({
onCallback = () => {},
}) => {
const socket = io(/* server url to connect */);
// Callbacks
socket.on('callback-event-name', (payload) => {
onCallback && onCallback(payload);
});
// Emitters
const emitEvent = (eventPayload) => {
socket.emit('emit-event-name', eventPayload);
};
return {
socket,
emitEvent
};
};
export default SocketManager;
then we can use this in our React code like this
import React from "react";
import SocketManager from "./SocketManager.js";
const SocketConsumer = () => {
const { emitEvent } = SocketManager({
onCallback: handleCallback,
});
const handleCallback = (payload) => {
/** Do something with the payload */
};
return <button onClick={emitEvent}>Fire Event</button>;
};
export default SocketConsumer;
Hope this helps you in your projects. Thanks 🙂
This content originally appeared on DEV Community and was authored by Huzaifa Rasheed

Huzaifa Rasheed | Sciencx (2022-02-10T18:49:58+00:00) How do abstract Socket.IO connections in your SPA.. Retrieved from https://www.scien.cx/2022/02/10/how-do-abstract-socket-io-connections-in-your-spa/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.