npm i @nucleoidai/react-event
react-event
is an alternative to React Context with event-driven style that helps to build loosely coupled components.
How it works?
Subscribers are registered an event with the custom hook useEvent(eventType, initialValue)
, once publisher posts an event and its payload, react-event
asynchronously sends the event to subscribed components and subscribed components will eventually be re-rendered with fresh data.
Hello World π¦
import { publish } from "@nucleoidai/react-event";
const PublishComponent = () => {
return (
<button
onClick={() => {
publish("BUTTON_CLICKED", { number: 11, string: "red" });
}}
>
Button
</button>
);
};
import { useEvent } from "@nucleoidai/react-event";
const Component1 = () => {
const initValue = { number: 10 };
const [event] = useEvent("BUTTON_CLICKED", initValue);
return <div>{event.number}</div>;
};
import { useEvent } from "@nucleoidai/react-event";
const Component2 = () => {
const initValue = { string: "blue" };
const [event] = useEvent("BUTTON_CLICKED", initValue);
return <div>{event.string}</div>;
};
The complete sample project is here.
Stateless Handling π
react-event
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 react-event
holds the last payload for the event type, and once the component is rendered, it returns the payload instead of initial value.
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.
Advanced Usage π
react-event
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.
Top comments (3)
There are
publish
andsubscribe
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/NucleoidAI/react-event#api
π Nice!
Great post