npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpubsub-react

v1.0.2

Published

Publish & Subscribe Real-time Messaging with WebPubSub

Downloads

4

Readme

WebPubSub React Framework

This is the official WebPubSub React framework repository.

WebPubSub takes care of the infrastructure and APIs needed for the realtime communication layer of your application. Work on your app's logic and let WebPubSub handle sending and receiving data across the world in less than 100ms.

Requirements

To use the WebPubSub React framework, you need:

This library is compatible with the latest versions of the React Native framework. For examples, refer to examples/reactnative.

Get keys

You will need publish and subscribe keys to authenticate your app. Get your keys from the Admin Portal.

Sample app

Follow these instructions to set up a simple chat app using WebPubSub.

Note: These instructions assume you're using JavaScript. If you'd prefer to use TypeScript, follow the instructions in the React framework documentation.

  1. Set up your React project.

    For a quick single-page app, create-react-app is a good starting point:

    npx create-react-app react-sample-chat
  2. Add the WebPubSub JavaScript SDK and React framework packages to your project:

    cd react-sample-chat
    npm install --save webpubsub-js webpubsub-react
  3. Replace the contents of src/App.js with the following, replacing myPublishKey and mySubscribeKey with your own keys, and myUniqueUUID with a value of your choice:

    import React, { useState, useEffect } from 'react';
    import WebPubSub from 'webpubsub';
    import { WebPubSubProvider, useWebPubSub } from 'webpubsub-react';
    
    const webpubsub = new WebPubSub({
      publishKey: 'myPublishKey',
      subscribeKey: 'mySubscribeKey',
      uuid: 'myUniqueUUID'
    });
    
    function App() {
      return (
        <WebPubSubProvider client={webpubsub}>
          <Chat />
        </WebPubSubProvider>
      );
    }
    
    function Chat() {
      const webpubsub = useWebPubSub();
      const [channels] = useState(['awesome-channel']);
      const [messages, addMessage] = useState([]);
      const [message, setMessage] = useState('');
    
      const handleMessage = event => {
        const message = event.message;
        if (typeof message === 'string' || message.hasOwnProperty('text')) {
          const text = message.text || message;
          addMessage(messages => [...messages, text]);
        }
      };
    
      const sendMessage = message => {
        if (message) {
          webpubsub
            .publish({ channel: channels[0], message })
            .then(() => setMessage(''));
        }
      };
    
      useEffect(() => {
        webpubsub.addListener({ message: handleMessage });
        webpubsub.subscribe({ channels });
      }, [webpubsub, channels]);
    
      return (
        <div style={pageStyles}>
          <div style={chatStyles}>
            <div style={headerStyles}>React Chat Example</div>
            <div style={listStyles}>
              {messages.map((message, index) => {
                return (
                  <div key={`message-${index}`} style={messageStyles}>
                    {message}
                  </div>
                );
              })}
            </div>
            <div style={footerStyles}>
              <input
                type="text"
                style={inputStyles}
                placeholder="Type your message"
                value={message}
                onKeyPress={e => {
                  if (e.key !== 'Enter') return;
                  sendMessage(message);
                }}
                onChange={e => setMessage(e.target.value)}
              />
              <button
                style={buttonStyles}
                onClick={e => {
                  e.preventDefault();
                  sendMessage(message);
                }}
              >
                Send Message
              </button>
            </div>
          </div>
        </div>
      );
    }
    
    const pageStyles = {
      alignItems: 'center',
      background: '#282c34',
      display: 'flex',
      justifyContent: 'center',
      minHeight: '100vh',
    };
    
    const chatStyles = {
      display: 'flex',
      flexDirection: 'column',
      height: '50vh',
      width: '50%',
    };
    
    const headerStyles = {
      background: '#323742',
      color: 'white',
      fontSize: '1.4rem',
      padding: '10px 15px',
    };
    
    const listStyles = {
      alignItems: 'flex-start',
      backgroundColor: 'white',
      display: 'flex',
      flexDirection: 'column',
      flexGrow: 1,
      overflow: 'auto',
      padding: '10px',
    };
    
    const messageStyles = {
      backgroundColor: '#eee',
      borderRadius: '5px',
      color: '#333',
      fontSize: '1.1rem',
      margin: '5px',
      padding: '8px 15px',
    };
    
    const footerStyles = {
      display: 'flex',
    };
    
    const inputStyles = {
      flexGrow: 1,
      fontSize: '1.1rem',
      padding: '10px 15px',
    };
    
    const buttonStyles = {
      fontSize: '1.1rem',
      padding: '10px 15px',
    };
    
    export default App;
  4. In your project, run the following command:

    npm start

    You should see the following in your browser: chat UI screenshot

Add listeners

In the code in the previous section, the following adds a message listener in the Chat() function:

      useEffect(() => {
        webpubsub.addListener({ message: handleMessage });
        webpubsub.subscribe({ channels });
      }, [webpubsub, channels]);

Publish and subscribe

Publishing a message:

const [channels] = useState(['awesome-channel']);

// ...

const sendMessage = message => {
  if (message) {
    webpubsub
      .publish({ channel: channels[0], message })
      .then(() => setMessage(''));
  }
};

Subscribing to a channel:

const [channels] = useState(['awesome-channel']);

// ...

useEffect(() => {
  webpubsub.addListener({ message: handleMessage });
  webpubsub.subscribe({ channels });
}, [webpubsub, channels]);

文档链接

Reference information

WebPubSubProvider

The WebPubSubProvider makes available a WebPubSub client instance to a React component tree. You instantiate the provider as follows (note that this example assumes that your publish and subscribe keys are contained in the webpubsub.config.json file):

import WebPubSub from 'webpubsub';
import { WebPubSubProvider } from 'webpubsub-react';

const webPubSubConfig = require('./webpubsub.config.json');
const webPubSubClient = new WebPubSub(webPubSubConfig.Demo.keySet);

const App = () => {
  return (
    <WebPubSubProvider client={webPubSubClient}>
      <MyRootComponent />
    </WebPubSubProvider>
  );
};

export default App;

WebPubSubProvider props

The WebPubSubProvider component takes a single prop:

  • client is the required webPubSubClient instance. This is used by all components that require WebPubSub functionality.

useWebPubSub hook

The WebPubSub hook lets you interact with WebPubSub in function components.

Hooks are a new feature added in React 16.8 that allow you to use React features without writing a class. For a general overview of hooks, refer to the React documentation.

Example useWebPubSub hook usage

import React, { useState, useEffect } from 'react';
import { useWebPubSub } from '../../src/index';

const WebPubSubTime = () => {
  const client = useWebPubSub();
  const [time, setTime] = useState(null);
  const [error, setError] = useState(error);

  useEffect(() => {
    client
      .time()
      .then(({ timetoken }) => {
        setTime(timetoken);
      })
      .catch(error => {
        setError(error);
      });
  }, []);

  if (error !== null) {
    return <div>An error has occured: {error.message}</div>;
  }

  if (time === null) {
    return <div>Loading...</div>;
  }

  return <div>Current time: {time}</div>;
};

export default WebPubSubTime;

Then, to load WebPubSubTime on-demand, you could use React.Lazy and Suspense:

import React, { Suspense, lazy } from 'react';

const MyRootComponent = () => {
  const DisplayWebPubSubTime = lazy(() => import('./WebPubSubTime'));

  return (
    <Suspense fallback={<div>Loading. . .</div>}>
      <DisplayWebPubSubTime />
    </Suspense>
  );
};

export default MyRootComponent;

WebPubSubConsumer

The WebPubSubConsumer allows you to access the client instance you made available with a WebPubSubProvider.

Note: Be careful, as the children function will be called every time component rerenders. Wrap components using WebPubSubConsumer using React.memo to prevent this behaviour.

WebPubSubConsumer props

The WebPubSubConsumer component takes a single prop:

  • client is the required WebPubSub Client instance. This is used by all components that require WebPubSub functionality.

WebPubSubConsumer 使用示例

Once you've created a WebPubSubProvider, you can access the client with a WebPubSubConsumer.

import React from 'react';
import WebPubSub from 'webpubsub';
import { WebPubSubProvider } from '../WebPubSubProvider';
import { WebPubSubConsumer } from '../WebPubSubConsumer';
import { getWebPubSubContext } from '../WebPubSubContext';

const webPubSubConfig = require('../config/webpubsub.json');
const webPubSubClient = new WebPubSub(webPubSubConfig.Demo.keySet);

const App = () => {
  return (
    <WebPubSubProvider client={webPubSubClient}>
      <WebPubSubConsumer>
        {client => 'success!' /* do something now */}
      </WebPubSubConsumer>
    </WebPubSubProvider>
  );
};

Support

If you need help or have a general question, contact [email protected].