Coder Social home page Coder Social logo

janeksmielowski / event-bus Goto Github PK

View Code? Open in Web Editor NEW
14.0 2.0 2.0 8 KB

React Event Bus library for post messaging in JS/TS

Home Page: https://janeksmielowski.github.io/event-bus/

License: MIT License

JavaScript 33.10% TypeScript 66.90%
post message post-message postmessage react typescript javascript eventbus event bus event-bus spa

event-bus's Introduction

React Event Bus hook

This library provides easy-to-use React hook, for dispatching messages, via JavaScript postMessage function. It is implemented using event bus design pattern, which is based on publish/subscription model.

Basic usage

  1. Create a file for event bus message types (skip if you're not using TypeScript):
export interface LoaderVisibilityMessage {
    visible: boolean;
}

// ... more message structures here

export interface EventBusMessages {
    LoaderVisibility: LoaderVisibilityMessage;
    // ... rest of messages here
}

Let's pretend you have some SPA application, that will show some microservice in a frame. For better user experience, you would like to show some loader on it, before the service will finish loading.

For this reason, you will need to create LoaderVisibilityMessage, that will carry loader visibility state. Finally, you put all message structures, that your app will use, into a single EventBusMessages interface.

  1. Subscribe for a topic in your subscriber component:
import { EventBusMessages } from 'EventBus.types.ts';

const SubscriberComponent: FunctionComponent = () => {
    const eventBus = useEventBus<EventBusMessages>();
    const [loaderVisible, setLoaderVisible] = useState(true);

    useEffect(() => {
        const loaderListener = eventBus.subscribe('LoaderVisibility', handler);
        return () => {
            loaderListener.unsubscribe();
        };
    }, []);

    const handler = (message: LoaderVisibilityMessage) => {
        setLoaderVisible(message.visible);
    };

    return <div>{loaderVisible && 'Loading...'}</div>;
}

This will be the code for your SPA application. The subscriber will 'listen' to any message with topic LoaderVisibility. When the message comes, the event bus will fire handler function and pass incoming message payload.

Important: Always remember to unsubscribe from the event. Event bus works with listeners, so you wouldn't like to have any 'zombie' listeners in your application.

  1. Publish message from your publisher component:
import { EventBusMessages } from 'EventBus.types.ts';

const PublisherComponent: FunctionComponent = () => {
    const eventBus = useEventBus<EventBusMessages>();

    useEffect(() => {
        eventBus.publish({
            topic: 'LoaderVisibility',
            payload: { visible: false }
        });
        return () => {
            eventBus.publish({
                topic: 'LoaderVisibility',
                payload: { visible: true }
            });
        };
    }, []);

    return <div>Hello from microservice!</div>;
}

Once the microservice application renders, it will automatically publish message indicating, that it doesn't need loader to be visible.

Note: We're also publishing the message to show the loader back again, when the component will unmount or reload.

Learn more

This project was bootstrapped with React TypeScript Library Template

event-bus's People

Contributors

janeksmielowski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

event-bus's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.