DEV Community

Cover image for Synapses: Event-driven Alternative to React Context
Can Mingir for Nucleoid

Posted on

Synapses: Event-driven Alternative to React Context

npm i @nucleoidjs/synapses
Enter fullscreen mode Exit fullscreen mode

Synapses is an alternative to React Context with event-driven style that helps to build loosely coupled components.


https://github.com/NucleoidJS/Synapses

How it works?

Subscribers are registered an event with the custom hook useEvent(eventType, initialValue), once publisher posts an event and its payload, Synapses asynchronously sends the event to subscribed components and subscribed components will eventually be re-rendered with fresh data.

Hello World 🐦

import { publish } from "@nucleoidjs/synapses";

const PublishComponent = () => {
  return (
      <button
          onClick={() => {
            publish("BUTTON_CLICKED", { number: 11, string: "red" });
          }}
      >
        Button
      </button>
  );
};
Enter fullscreen mode Exit fullscreen mode
import { useEvent } from "@nucleoidjs/synapses";

const Component1 = () => {
  const initValue = { number: 10 };
  const [event] = useEvent("BUTTON_CLICKED", initValue);

  return <div>{event.number}</div>;
};
Enter fullscreen mode Exit fullscreen mode
import { useEvent } from "@nucleoidjs/synapses";

const Component2 = () => {
  const initValue = { string: "blue" };
  const [event] = useEvent("BUTTON_CLICKED", initValue);

  return <div>{event.string}</div>;
};
Enter fullscreen mode Exit fullscreen mode

Sample Synapses
The complete sample project is here.

Stateless Handling πŸ’Š

Synapses supports stateless components with caching last published payload for the event type, so that if the component is re-rendered, it won't lose the payload. For example, Component 3 in this example is not re-rendered yet, but Synapses holds the last payload for the event type, and once the component is rendered, it returns the payload instead of initial value.

Synapses Diagram

Event-driven Architecture

Event-driven Architecture is commonly used in Microservices systems that pretty much targets similar problem; loose coupling. This style of architecture require middleware like Kafka, RabbitMQ etc. and we are trying to adopt the very same idea to React.js, of course with some modification such as "Stateless Handling".

πŸ’‘ My personal experience with React Context wasn't pleasant especially, when a project gets bigger. We've been working on Low-code IDE project, which contains a good amount of reusable components, but they are connected with the giant reducer. We were considering having multi context reducers concept to ease the problem, seems like it may even complicate more the structure when contexts have to talk to each other.
React Reducer Funny Meme

Advanced Usage πŸ™Œ

Synapses can coexist with React Context, actually, it might be even better for complex projects. React Context may handle large dataset with dispatching, which re-renders all listening components (Usually majority of components) and in meanwhile, Synapses can help with local events and limit re-rendering for components that reacting only certain events. This can help to lower workload on a context reducer as well as provide better performance overall.



Star us on GitHub for the support
https://github.com/NucleoidJS/Synapses

Nucleoid Logo

Latest comments (3)

Collapse
 
canmingir profile image
Can Mingir

There are publish and subscribe functions that the custom hook uses. Technically, they should work with non-react elements, but I didn't try them outside of react environment, I'll give a try.

github.com/NucleoidJS/Synapses#api

Collapse
 
gabrielprogramerx profile image
Gabrielprogramerx

Great post

Collapse
 
joestomopolous profile image
joestomopolous • Edited

Synapses can coexist with React Context, actually, it might be even better for complex projects.

πŸ‘ Nice!