Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 10, 2023 07:45 pm GMT

Synapses: Event-driven Alternative to React Context

npm i @nucleoidjs/synapses

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>  );};
import { useEvent } from "@nucleoidjs/synapses";const Component1 = () => {  const init = { number: 10 };  const [event] = useEvent("BUTTON_CLICKED", init);  return <div>{event.number}</div>;};
import { useEvent } from "@nucleoidjs/synapses";const Component2 = () => {  const init = { string: "blue" };  const [event] = useEvent("BUTTON_CLICKED", init);  return <div>{event.string}</div>;};

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


Original Link: https://dev.to/nucleoid/synapses-event-driven-alternative-to-react-context-2mdm

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To